]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - CHANGELOG
Update CHANGELOG, tiny coding style cleanup.
[karo-tx-uboot.git] / CHANGELOG
1 commit cf7e399fb35b3aea90a27d1df72f45f5d6156204
2 Author: Mike Frysinger <vapier@gentoo.org>
3 Date:   Tue Jan 27 16:12:21 2009 -0500
4
5     SATA: do not auto-initialize during boot
6
7     Rather than have the board code initialize SATA automatically during boot,
8     make the user manually run "sata init".  This brings the SATA subsystem in
9     line with common U-Boot policy.
10
11     Rather than having a dedicated weak function "is_sata_supported", people
12     can override sata_initialize() to do their weird board stuff.  Then they
13     can call the actual __sata_initialize().
14
15     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16
17 commit 50970839712dda35399e2fa83fe818df9354d618
18 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
19 Date:   Mon Jan 26 08:45:14 2009 -0500
20
21     part_efi: Fix partition size calculation due to inclusive ending LBA.
22
23     The ending LBA is inclusive. Hence, the partition size should be
24     ((ending-LBA + 1) - starting-LBA) to get the proper partition size.
25
26     This is confirmed against the results from the parted tool.
27     (e.g. use parted /dev/sda -s unit S print) and observe the size.
28
29     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30
31 commit b5b004ad8a0ac6f98bd5708ec8b22fbddd1c1042
32 Author: Tomasz Figa <tomasz.figa@gmail.com>
33 Date:   Tue Dec 30 18:35:57 2008 +0100
34
35     jffs2: Fix zero sector_size when not using CONFIG_JFFS2_CMDLINE
36
37     This patch fixes a bug (?) introduced after inclusion of the new
38     JFFS2 code.
39
40     When not using CONFIG_JFFS2_CMDLINE, the code in cmd_jffs2.c doesn't
41     fill in part->sector_size (keeping it as 0), but a correct value is
42     needed by the code in jffs2_1pass.c. This causes all JFFS2 accesses
43     to be in the same place of the memory, what obviously means
44     impossibility to use the JFFS2 partition.
45
46     This problem is fixed in this patch by including sector size
47     calculation in non-CONFIG_JFFS2_CMDLINE mtdparts_init variant.
48
49     Signed-off-by: Tomasz Figa <tomasz.figa_at_gmail.com>
50
51 commit ba69dc26a5fd606da49573bb2f15e756a34f3f98
52 Author: Mike Frysinger <vapier@gentoo.org>
53 Date:   Tue Dec 30 02:59:25 2008 -0500
54
55     saveenv: standardize enablement
56
57     Rather than special casing each environment type for enabling the saveenv
58     command, have them all behave the same.  This avoids bitrot as new env
59     sources are added/removed.
60
61     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
62
63 commit 2ac6985a7466a1c8a7aa8b2fa24d360925a82764
64 Author: Andrew Dyer <adyer@righthandtech.com>
65 Date:   Mon Dec 29 17:36:01 2008 -0600
66
67     soft_i2c.c add option for repeated start in i2c_read()
68
69     This patch adds a #define to optionally change the behaviour of
70     i2c_read() in soft_i2c.c to send an I2C repeated start instead of a
71     stop-start between sending the device address pointer write and
72     reading back the data.  The current behaviour is retained as the
73     default.
74
75     While most devices will work either way, I have a smart battery(*)
76     that requires repeated start, and someone at some point found a
77     device that required a stop-start.
78
79     (*) http://www.inspired-energy.com/Standard_Products/NL2054/NL2054%20Rev1.0%20Data%20Sheet.pdf
80
81     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
82
83 commit 3429071700963ca2f944c51d695a7481af0cee33
84 Author: Wolfgang Denk <wd@denx.de>
85 Date:   Tue Jan 27 22:07:14 2009 +0100
86
87     {delta,zylonite}/lowlevel_init.S: fix typo
88
89     Commit 9d803d8c mistakenly changed some constants
90     from 0x300 into 300 - this patch fixes it.
91
92     Pointed out by Tom Evans <tom@ceos.com.au>, see
93     http://article.gmane.org/gmane.comp.boot-loaders.u-boot/51992 for
94     details.
95
96     Signed-off-by: Wolfgang Denk <wd@denx.de>
97
98 commit 1bc434373013af241835c14011ac3f291dccbf53
99 Author: Stefan Althoefer <stefan.althoefer@web.de>
100 Date:   Sat Dec 20 19:40:41 2008 +0100
101
102     drivers/net/e1000.c: missing terminator for supported devices
103
104     Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
105
106 commit 65f7d41031a70b1649b35020995c505edca91533
107 Author: Wolfgang Denk <wd@denx.de>
108 Date:   Tue Jan 27 21:36:28 2009 +0100
109
110     fat.c: fix warning: array subscript is above array bounds
111
112     Fix based on suggestion by David Hawkins <dwh@ovro.caltech.edu>.
113
114     Signed-off-by: Wolfgang Denk <wd@denx.de>
115
116 commit 107b801cf3fe39612d69d70581ebc3bf5e215554
117 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
118 Date:   Fri Jan 2 15:11:41 2009 +0100
119
120     Fix gunzip in case of insufficient output buffer
121
122     U-Boot's gunzip() function does not handle the return code
123     of zlib's inflate() function correctly. gunzip() is implemented
124     to uncompress all input data in one run. So the correct return
125     code for the good case is Z_STREAM_END. In case of insufficient
126     output buffer memory inflate returns Z_OK. For gunzip() this
127     is an error.
128
129     It also makes sense to me to call inflateEnd() also in case
130     of an error.
131
132     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
133
134 commit 2a61eff6a82f0d6e2335d968799b3fbeb3ff4d8e
135 Author: Stefan Roese <sr@denx.de>
136 Date:   Wed Jan 21 17:25:01 2009 +0100
137
138     MIPS: Add VCT board series support (Part 3/3)
139
140     Signed-off-by: Stefan Roese <sr@denx.de>
141
142 commit ae691e5719c48f1d2826cb72722497d1d162765b
143 Author: Stefan Roese <sr@denx.de>
144 Date:   Wed Jan 21 17:24:49 2009 +0100
145
146     MIPS: Add VCT board series support (Part 2/3)
147
148     Signed-off-by: Stefan Roese <sr@denx.de>
149
150 commit 50752790bc9285c0c1c5235e88f3a4ef2eec1e72
151 Author: Stefan Roese <sr@denx.de>
152 Date:   Wed Jan 21 17:24:39 2009 +0100
153
154     MIPS: Add VCT board series support (Part 1/3)
155
156     Signed-off-by: Stefan Roese <sr@denx.de>
157
158 commit 03d3bfb00806b5441f1871c7408c1749863e0fdc
159 Author: Stefan Roese <sr@denx.de>
160 Date:   Wed Jan 21 17:20:20 2009 +0100
161
162     MIPS: Add flush_dcache_range() and invalidate_dcache_range()
163
164     This patch adds flush_/invalidate_dcache_range() to the MIPS architecture.
165     Those functions are needed for the upcoming dcache support for the USB
166     EHCI driver. I chose this API because those cache handling functions are
167     already present in the PPC architecture.
168
169     Signed-off-by: Stefan Roese <sr@denx.de>
170     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
171
172 commit e8eac437189430d8e04a5d254ed92c58bc534a79
173 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
174 Date:   Wed Jan 14 08:44:26 2009 -0500
175
176     CFI: Add geometry reversal for STMicro M29W320ET
177
178     Added flash_fixup_stm to fix geometry reversal on STMicro M29W320ET flash chip.
179
180     Modeled after flash_fixup_amd, this patch handles the geometry reversal
181     or erase sectors that exist for ST Micro (now Numonyx) M29W320ET flash.
182     Since I cannot test all STM's chips, the detection is implemented as
183     narrow as possible for now.
184
185     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
186     Signed-off-by: Stefan Roese <sr@denx.de>
187
188 commit 0f8e851e897b535959a0781171910cd97f33c30c
189 Author: Jens Gehrlein <sew_s@tqs.de>
190 Date:   Tue Dec 16 17:25:55 2008 +0100
191
192     CFI: increase performance of function find_sector()
193
194     Tested on TQM5200S-BD with Samsung K8P2815UQB
195
196     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
197     Signed-off-by: Stefan Roese <sr@denx.de>
198
199 commit a7292871a79cc48d98e3a708dd3c3b81580db6ef
200 Author: Jens Gehrlein <sew_s@tqs.de>
201 Date:   Tue Dec 16 17:25:54 2008 +0100
202
203     CFI: avoid redundant function call in single word programming mode
204
205     The function find_sector() doesn't need to be called twice in
206     the case of AMD command set.
207     Tested on TQM5200S-BD with Samsung K8P2815UQB.
208
209     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
210     Signed-off-by: Stefan Roese <sr@denx.de>
211
212 commit c8901f46a71ec16e084e604596a09e23bfb0f6ac
213 Author: Stefan Roese <sr@denx.de>
214 Date:   Mon Jan 26 10:15:23 2009 +0100
215
216     ppc4xx: Remove compilation warning in gdppc440etc.c
217
218     Signed-off-by: Stefan Roese <sr@denx.de>
219
220 commit 91f33534728e6416d332ad2b53ad1d6fde57f7fc
221 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
222 Date:   Fri Jan 2 12:19:47 2009 +0100
223
224     ppc4xx: Remove CONFIG_SYS_IGNORE_405_UART_ERRATA_59 from config files
225
226     Lot's of 405 board config files use CONFIG_SYS_IGNORE_405_UART_ERRATA_59.
227     Either they define or undef it. Because it's not used in any source
228     files this patch removes any references to it.
229
230     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
231     Signed-off-by: Stefan Roese <sr@denx.de>
232
233 commit 89b8619aaeafc922ca0c3bb249872591050c8dcc
234 Author: Dirk Eibach <eibach@gdsys.de>
235 Date:   Tue Dec 9 13:12:40 2008 +0100
236
237     ppc4xx: Add GDsys PowerPC 440 ETX board support.
238
239     Board support for the Guntermann & Drunck PowerPC 440 ETX module.
240     Based on the AMCC Yosemite board support by Stefan Roese.
241
242     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
243     Signed-off-by: Stefan Roese <sr@denx.de>
244
245 commit 3943d2ff6cc40dd601a9feeb39eb6d3d5090ea6d
246 Author: Dirk Eibach <eibach@gdsys.de>
247 Date:   Tue Dec 9 11:00:07 2008 +0100
248
249     ppc4xx: Improve DDR autodetect
250
251     Added support for a second memory bank to DDR autodetection for 440
252     platforms.
253     Made hardcoded values configurable.
254
255     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
256     Signed-off-by: Stefan Roese <sr@denx.de>
257
258 commit 24113a44ed5cd3257a0237c3961e121812fca6db
259 Author: Mike Frysinger <vapier@gentoo.org>
260 Date:   Tue Dec 30 03:15:38 2008 -0500
261
262     easylogo: add optional gzip support
263
264     Some images can be quite large, so add an option to compress the
265     image data with gzip in the U-Boot image. Then at runtime, the
266     board can decompress it with the normal zlib functions.
267
268     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
269
270 commit 7e4b9b4f6f43838fad3ad72c029a3d7fc7c7d48c
271 Author: Bryan Wu <bryan.wu@analog.com>
272 Date:   Fri Jan 2 20:47:45 2009 -0500
273
274     fat: fix unaligned errors
275
276     A couple of buffers in the fat code are declared as an array of bytes.
277     But it is then cast up to a structure with 16bit and 32bit members.
278     Since GCC assumes structure alignment here, we have to force the
279     buffers to be aligned according to the structure usage.
280
281     Signed-off-by: Bryan Wu <bryan.wu@analog.com>
282     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
283
284 commit 68f8718df2ed4c2f43031407ccf6cfa81125dddc
285 Author: Brad Bozarth <bflinux@yumbrad.com>
286 Date:   Thu Jan 1 22:45:47 2009 -0500
287
288     spi flash: fix crash due to spi flash miscommunication
289
290     Higher spi flash layers expect to be given back a pointer that was
291     malloced so that it can free the result, but the lower layers return
292     a pointer that is in the middle of the malloced memory. Reorder the
293     members of the lower spi structures so that things work out.
294
295     Signed-off-by: Brad Bozarth <bflinux@yumbrad.com>
296     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
297     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
298
299 commit ce82ff05388b5ddafdf6082ef0776cce72c40b1c
300 Author: Yuri Tikhonov <yur@emcraft.com>
301 Date:   Sat Dec 20 14:54:21 2008 +0300
302
303     FPU POST: fix warnings when building with 2.18 binutils
304
305     When compile u-boot with the 2.18 binutils the following
306     warning messages for each object file in post/lib_ppc/fpu/ is
307     produced at the linking stage:
308
309     post/libpost.a(acc1.o) uses hard float, u-boot uses soft-float
310     ...
311
312     This is because of the fact that, in general, the soft-float and
313     hard-float ABIs are incompatible; the 2.18 binutils do checking
314     of the Tag_GNU_Power_ABI_FP attribute of the files to be linked, and
315     produce the worning like above if these are not compatible.
316
317     The incompatibility of ABIs is concerned only the float values:
318     e.g. the soft-float ABI assumes the float argument passing in the
319     pair of rX registers, and the hard-float ABI assumes passing of
320     the float argument in the fX register. When we don't pass the float
321     arguments between the functions compiled with different floatness,
322     then such an application will work correctly.
323     This is the case for the FPU POST: u-boot (compiled with soft-float)
324     doesn't pass to (and doesn't get from) the FPU POST functions any
325     floats; there are no functions exported from the post/lib_ppc/fpu/
326     objects which would work with float parameters/returns too. So, we
327     can reassure the linker not to worry about the difference in ABI
328     attributes of linking files just by setting the 'soft-float'
329     attribute for the objects in post/lib_ppc/fpu. And this patch does
330     this.
331
332     Also, to avoid passing both soft- and hard-float options in CFLAGS
333     when compiling the files from post/lib_ppc/fpu (which is OK, but
334     looks rather dirty) this patch removes the soft-float string from
335     CFLAGS in post/lib_ppc/fpu/Makefile.
336
337     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
338
339 commit a7c9310457e85b4598abe5b304108edf11332e2f
340 Author: Peter Tyser <ptyser@xes-inc.com>
341 Date:   Wed Dec 17 16:36:22 2008 -0600
342
343     Add support for Maxim's DS4510 I2C device
344
345     Initial support for the DS4510, a CPU supervisor with
346     integrated EEPROM, SRAM, and 4 programmable non-volatile
347     GPIO pins. The CONFIG_DS4510 define enables support
348     for the device while the CONFIG_CMD_DS4510 define
349     enables the ds4510 command. The additional
350     CONFIG_DS4510_INFO, CONFIG_DS4510_MEM, and
351     CONFIG_DS4510_RST defines add additional sub-commands
352     to the ds4510 command when defined.
353
354     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
355
356 commit b6fc6fd49a84543e1324e1620b9f301ff7c1f27f
357 Author: Dirk Eibach <eibach@gdsys.de>
358 Date:   Tue Dec 16 14:51:56 2008 +0100
359
360     common: Iteration limit for memory test.
361
362     The iteration limit is passed to mtest as a fourth parameter:
363     [start [end [pattern [iterations]]]]
364     If no fourth parameter is supplied, there is no iteration limit and the
365     test will loop forever.
366
367     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
368
369 commit 97cae3a4c68d856374ccc70fd2c5f8714cc94f7d
370 Author: Stefan Roese <sr@denx.de>
371 Date:   Mon Dec 15 15:40:12 2008 +0100
372
373     serial: Rename driver vcth to vct to support other board variants
374
375     Moved driver vcth.c to vct.c to better reflect the VCT board series.
376     This driver is now used by the VCT platforms:
377
378     vct_premium
379     vct_platinum
380     vct_platinumsvc
381
382     Signed-off-by: Stefan Roese <sr@denx.de>
383
384 commit 36ede4d63e59c9277ec180b09c39b8bf46425ba2
385 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
386 Date:   Fri Dec 12 00:45:27 2008 +0900
387
388     nios: Move README.nios_CONFIG_SYS_NIOS_CPU to doc/ dir
389
390     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
391
392 commit c3284b030b1cd492b4f46c576aea01bef258599d
393 Author: Peter Korsgaard <jacmet@sunsite.dk>
394 Date:   Wed Dec 10 16:24:16 2008 +0100
395
396     common/main: support bootdelay=0 for CONFIG_AUTOBOOT_KEYED
397
398     Support bootdelay=0 in abortboot for the CONFIG_AUTOBOOT_KEYED case
399     similar to the CONFIG_ZERO_BOOTDELAY_CHECK support for the
400     !CONFIG_AUTOBOOT_KEYED case.
401
402     Do this by reversing the loop so we do at least one iteration before
403     checking for timeout.
404
405     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
406
407 commit 94f9279f7bbdc01bbc7cf85aedf9b545943b94c3
408 Author: Niklaus Giger <niklaus.giger@netstal.com>
409 Date:   Mon Dec 8 17:24:08 2008 +0100
410
411     Added legacy flash ST Micro M29W040B
412
413 commit 626d07348e5f9f302f4ea182161a89f7362a0488
414 Author: Graeme Russ <graeme.russ@gmail.com>
415 Date:   Mon Dec 8 20:04:51 2008 +1100
416
417     Fixed off-by-one errors in lib_m68k/interrupts.c
418
419     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
420
421 commit a5989c42ae5e295f274a795c426c47819bbdbfda
422 Author: Graeme Russ <graeme.russ@gmail.com>
423 Date:   Sun Dec 7 10:29:05 2008 +1100
424
425     Removed all references to CONFIG_SYS_RESET_GENERIC
426
427     Generic i386 reset - #define made redundant by weak function
428
429     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
430
431 commit 2b5360eb2bc0b741ae5cb3c84d35ccdd17667c8a
432 Author: Graeme Russ <graeme.russ@gmail.com>
433 Date:   Sun Dec 7 10:29:04 2008 +1100
434
435     Remove #ifdef CONFIG_SC520 in source code
436
437     CONFIG_SC520 is now used for conditional compile
438
439     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
440
441 commit ead056bc206f6b7ee6dc98766678b64635ea20b8
442 Author: Graeme Russ <graeme.russ@gmail.com>
443 Date:   Sun Dec 7 10:29:03 2008 +1100
444
445     Added MMCR reset functionality
446
447     Reset function specific to AMD SC520 microcontroller - Is more of a
448     'hard reset' that the triple fault.
449
450     Requires CONFIG_SYS_RESET_SC520 to be defined in config
451
452     I would have liked to add this to a new file (cpu/i386/sc520/reset.c)
453     but ld requires that a object file in a library arhive MUST contain
454     at least one function which does not override a weak function (and is
455     called from outside the object file) in order for that object file to
456     be extracted from the archive. This would be the only function on the
457     new file, and hence, will never get linked in.
458
459     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
460
461 commit 3f5f18d12d32ee0661bf51dfc55752c005230d6e
462 Author: Graeme Russ <graeme.russ@gmail.com>
463 Date:   Sun Dec 7 10:29:02 2008 +1100
464
465     Moved generic (triple fault) reset code
466
467     Moved from interrupts.c to cpu.c and made into a weak function to
468     allow vendor specific override
469
470     Vendor specific CPU reset (like the AMD SC520 MMCR reset) can now be
471     added to the vendor specific code without the need to remember to
472     #undef usage of the generic method and if you forget to include your
473     custom reset method, you will always get the default.
474
475     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
476
477 commit 9933d609020c297788f53f334c8465fa7a99b10c
478 Author: Graeme Russ <graeme.russ@gmail.com>
479 Date:   Sun Dec 7 10:29:01 2008 +1100
480
481     Moved definition of set_vector() to new header file
482
483     This allows for future tidy ups and functionality that will require
484     set_vector ()
485
486     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
487
488 commit 407976185e0dda2c90e89027121a1071b9c77bfb
489 Author: Graeme Russ <graeme.russ@gmail.com>
490 Date:   Sun Dec 7 10:29:00 2008 +1100
491
492     Moved sc520 specific code into new cpu/i386/sc520 folder
493
494     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
495     Signed-off-by: Wolfgang Denk <wd@denx.de>
496
497 commit 85ffbbd51914925a542d8528be7f072e5ab02157
498 Author: Graeme Russ <graeme.russ@gmail.com>
499 Date:   Sun Dec 7 10:28:58 2008 +1100
500
501     Renamed cpu/i386/reset.S to resetvec.S
502
503     Brings i386 in line with other CPUs with a reset vector and frees up reset.c
504     for CPU reset functions
505
506     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
507
508 commit a3f4c123f569474e80ea012b8db0de46afdb6443
509 Author: Wolfgang Denk <wd@denx.de>
510 Date:   Sat Jan 24 01:01:49 2009 +0100
511
512     Makefile: keep lists sorted.
513
514     Signed-off-by: Wolfgang Denk <wd@denx.de>
515
516 commit c620c01e96814558470698ed5cab1bf2f504d1b5
517 Author: Graeme Russ <graeme.russ@gmail.com>
518 Date:   Sun Dec 7 10:28:57 2008 +1100
519
520     Added initial eNET board support
521
522     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
523
524 commit 0c0ccf401ee03a5008fc2c19b05a662bce1a1086
525 Author: Gary Jennejohn <garyj@denx.de>
526 Date:   Thu Nov 20 11:37:26 2008 +0100
527
528     POWERPC 82xx: add the SCC as an HDLC controller
529
530     Right now this is only used by keymile.
531
532     Signed-off-by: Gary Jennejohn <garyj@denx.de>
533
534 commit 1e8f4e78ca393b3d8e86bd8055758dd465d9113f
535 Author: Heiko Schocher <hs@denx.de>
536 Date:   Thu Nov 20 09:59:09 2008 +0100
537
538     powerpc, keymile boards: extract identical config options
539
540     This patch extracts the identical config options for the
541     keymile boards mgcoge, mgsuvd and kmeter1 in a new
542     common config file keymile-common.h.
543
544     Signed-off-by: Heiko Schocher <hs@denx.de>
545
546 commit 210c8c00aad3328145204adab434bb7d70b06b75
547 Author: Heiko Schocher <hs@denx.de>
548 Date:   Fri Nov 21 08:29:40 2008 +0100
549
550     powerpc: keymile: Add a check for the PIGGY debug board
551
552     Check the presence of the PIGGY on the keymile boards mgcoge,
553     mgsuvd and kmeter1. If the PIGGY is not present, dont register
554     this Ethernet device.
555
556     Signed-off-by: Heiko Schocher <hs@denx.de>
557     Acked-by: Ben Warren <biggerbadderben@gmail.com>
558
559 commit de0443614af4d16675ab436665aeb11ddc9f7214
560 Author: Heiko Schocher <hs@denx.de>
561 Date:   Thu Nov 20 09:57:47 2008 +0100
562
563     powerpc: 83xx: add support for the kmeter1 board
564
565     This patch adds support for the kmeter1 board from Keymile,
566     based on a Freescale MPC8360 CPU.
567
568     - serial console on UART 1
569     - 256 MB DDR2 RAM
570     - 64 MB NOR Flash
571     - Ethernet RMII Mode over UCC4
572     - PHY SMSC LAN8700
573
574     Signed-off-by: Heiko Schocher <hs@denx.de>
575
576 commit 3feb647f3fd0881382c7a29f4cf280b66473ae0a
577 Author: Sergei Poselenov <sposelenov@emcraft.com>
578 Date:   Tue Nov 4 13:51:18 2008 +0100
579
580     Add a do_div() wrapper macro, lldiv().
581
582     Add a do_div() wrapper, lldiv(). The new inline function doesn't modify
583     the dividend and returns the result of division, so it is useful
584     in complex expressions, i.e. "return(a/b)" -> "return(lldiv(a,b))"
585
586     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
587
588 commit 18af1c5f0f7402dc0d6a71b012c68025dd97cf72
589 Author: Kumar Gala <galak@kernel.crashing.org>
590 Date:   Fri Jan 23 14:22:14 2009 -0600
591
592     85xx: Add a 36-bit physical configuration for MPC8572DS
593
594     We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary
595     to allow for larger memory sizes.
596
597     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
598
599 commit c51fc5d53c4560abc4d0a6126c06fc68133d1528
600 Author: Kumar Gala <galak@kernel.crashing.org>
601 Date:   Fri Jan 23 14:22:13 2009 -0600
602
603     85xx: Handle eLBC difference w/36-bit physical
604
605     The eLBC only handles 32-bit physical address in systems with 36-bit
606     physical.  The previos generation of LBC handled 34-bit physical
607     address in 36-bit systems.  Added a new CONFIG option to convey
608     the difference between the LBC and eLBC.
609
610     Also added defines for XAM bits used in LBC for the extended 34-bit
611     support.
612
613     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
614
615 commit 72a9414a8e21e9536822c7353bc08d21ce5ad53d
616 Author: Kumar Gala <galak@kernel.crashing.org>
617 Date:   Fri Jan 23 14:22:12 2009 -0600
618
619     85xx: Use BR_ADDR macro for NAND chipselects
620
621     Use the new BR_ADDR macro to properly setup the address field of the
622     localbus chipselects used by NAND.
623
624     This allows us to deal with 36-bit phys on these boards in the future.
625
626     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
627
628 commit 2fc7eb0cfc608c9369001d57a0411af5e6a58f7c
629 Author: Haiying Wang <Haiying.Wang@freescale.com>
630 Date:   Thu Jan 15 11:58:35 2009 -0500
631
632     Add secondary CPUs processor frequency for e500 core
633
634     This patch updates e500 freqProcessor to array based on CONFIG_NUM_CPUS,
635     and prints each CPU's frequency separately. It also fixes up each CPU's
636     frequency in "clock-frequency" of fdt blob.
637
638     Signed-off-by: James Yang <James.Yang@freescale.com>
639     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
640
641 commit bf5b1f0c0d28ce062e1d368680632dfb099de692
642 Author: Dave Liu <daveliu@freescale.com>
643 Date:   Fri Nov 21 16:31:53 2008 +0800
644
645     85xx: enable the auto self refresh for wake up ARP
646
647     The wake up ARP feature need use the memory to process
648     wake up packet, we enable auto self refresh to support it.
649
650     Signed-off-by: Dave Liu <daveliu@freescale.com>
651     Acked-by: Andy Fleming <afleming@freescale.com>
652
653 commit b4983e16d150ab7d039704c310aacbd2f4dc1e0f
654 Author: Dave Liu <daveliu@freescale.com>
655 Date:   Fri Nov 21 16:31:43 2008 +0800
656
657     fsl-ddr: use the 1T timing as default configuration
658
659     For light loaded system, we use the 1T timing to gain better
660     memory performance, but for some heavily loaded system,
661     you have to add the 2T timing options to board files.
662
663     Signed-off-by: Dave Liu <daveliu@freescale.com>
664     Acked-by: Andy Fleming <afleming@freescale.com>
665
666 commit 22cca7e1cd54590e967c73558b07ffbdccd39504
667 Author: Dave Liu <daveliu@freescale.com>
668 Date:   Fri Nov 21 16:31:35 2008 +0800
669
670     fsl-ddr: make the self refresh idle threshold configurable
671
672     Some 85xx processors have the advanced power management feature,
673     such as wake up ARP, that needs enable the automatic self refresh.
674
675     If the DDR controller pass the SR_IT (self refresh idle threshold)
676     idle cycles, it will automatically enter self refresh. However,
677     anytime one transaction is issued to the DDR controller, it will
678     reset the counter and exit self refresh state.
679
680     Signed-off-by: Dave Liu <daveliu@freescale.com>
681     Acked-by: Andy Fleming <afleming@freescale.com>
682
683 commit 22ff3d01348e0a2dc369b7efcbac30e4ce86d178
684 Author: Dave Liu <daveliu@freescale.com>
685 Date:   Fri Nov 21 16:31:29 2008 +0800
686
687     fsl-ddr: clean up the ddr code for DDR3 controller
688
689     - The DDR3 controller is expanding the bits for timing config
690     - Add the DDR3 32-bit bus mode support
691
692     Signed-off-by: Dave Liu <daveliu@freescale.com>
693     Acked-by: Andy Fleming <afleming@freescale.com>
694
695 commit 80ee3ce6d7fe9441b4352d7cfaf6afc2507b1106
696 Author: Dave Liu <daveliu@freescale.com>
697 Date:   Fri Nov 21 16:31:22 2008 +0800
698
699     fsl-ddr: update the bit mask for DDR3 controller
700
701     According to the latest 8572 UM, the DDR3 controller
702     is expanding the bit mask, and we use the extend ACTTOPRE
703     mode when tRAS more than 19 MCLK.
704
705     Signed-off-by: Dave Liu <daveliu@freescale.com>
706
707 commit aca5f018a8386b85469482ed9867e3e29a2437d0
708 Author: Kumar Gala <galak@kernel.crashing.org>
709 Date:   Tue Dec 2 16:08:40 2008 -0600
710
711     85xx: Introduce CONFIG_SYS_PCI*_IO_VIRT for FSL boards
712
713     Introduce a new define to seperate out the virtual address that PCI
714     IO space is at from the physical address.  In most situations these are
715     mapped 1:1.  However any code accessing the bus should use VIRT.
716
717     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
718     Acked-by: Andy Fleming <afleming@freescale.com>
719
720 commit 5af0fdd81c3370c3a51421208fda568bdcbbec23
721 Author: Kumar Gala <galak@kernel.crashing.org>
722 Date:   Tue Dec 2 16:08:39 2008 -0600
723
724     85xx: Introduce CONFIG_SYS_PCI*_MEM_VIRT for FSL boards
725
726     Introduce a new define to seperate out the virtual address that PCI
727     memory is at from the physical address.  In most situations these are
728     mapped 1:1.  However any code accessing the bus should use VIRT.
729
730     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
731     Acked-by: Andy Fleming <afleming@freescale.com>
732
733 commit a6e04c344ad1eefd47a75484441b385da815b8df
734 Author: Kumar Gala <galak@kernel.crashing.org>
735 Date:   Tue Dec 2 16:08:38 2008 -0600
736
737     85xx: Use CONFIG_SYS_{PCI*,RIO*}_MEM_PHYS for physical address on FSL boards
738
739     Use the _MEM_PHYS defines instead of _MEM_BUS for LAW and real address fields
740     of TLBs.  This is what we should have always been using from the start.
741
742     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
743     Acked-by: Andy Fleming <afleming@freescale.com>
744
745 commit 5f91ef6acdbadec33e0192049e2b24a1d9692f1d
746 Author: Kumar Gala <galak@kernel.crashing.org>
747 Date:   Tue Dec 2 16:08:37 2008 -0600
748
749     85xx: Convert CONFIG_SYS_PCI*_IO_BASE to _IO_BUS for FSL boards
750
751     Use CONFIG_SYS_PCI*_IO_BUS for the bus relative address instead
752     of _IO_BASE so we are more explicit.
753
754     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
755
756 commit 10795f42cb94e71bcb262b615084f69dd886399a
757 Author: Kumar Gala <galak@kernel.crashing.org>
758 Date:   Tue Dec 2 16:08:36 2008 -0600
759
760     85xx: Convert CONFIG_SYS_{PCI*,RIO*}_MEM_BASE to _MEM_BUS for FSL boards
761
762     Use CONFIG_SYS_{PCI,RIO}_MEM_BUS for the bus relative address instead
763     of _MEM_BASE so we are more explicit.
764
765     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
766     Acked-by: Andy Fleming <afleming@freescale.com>
767
768 commit c953ddfd56b3ae3f28910fe3aed6de6968d1c9aa
769 Author: Kumar Gala <galak@kernel.crashing.org>
770 Date:   Tue Dec 2 14:19:34 2008 -0600
771
772     85xx: separate FLASH BASE virtual from physical address
773
774     Added a CONFIG_SYS_FLASH_BASE_PHYS for use as the physical address and
775     maintain CONFIG_SYS_FLASH_BASE as the virtual address of the flash.
776
777     This allows us to deal with 36-bit phys on these boards in the future.
778
779     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
780     Acked-by: Andy Fleming <afleming@freescale.com>
781
782 commit 52b565f5ad23b682489055b187767d8bf1c2e444
783 Author: Kumar Gala <galak@kernel.crashing.org>
784 Date:   Tue Dec 2 14:19:33 2008 -0600
785
786     85xx: separate PIXIS virtual from physical address
787
788     Added a PIXIS_BASE_PHYS for use as the physical address and maintain
789     PIXIS_BASE as the virtual address of the PIXIS fpga registers.
790
791     This allows us to deal with 36-bit phys on these boards in the future.
792
793     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
794     Acked-by: Andy Fleming <afleming@freescale.com>
795
796 commit 30837e5b21d5a742983581ab9ee3fac085311d19
797 Author: Haiying Wang <Haiying.Wang@freescale.com>
798 Date:   Tue Nov 11 08:52:09 2008 -0500
799
800     Add README file for MPC8572DS board
801
802     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
803     Acked-by: Andy Fleming <afleming@freescale.com>
804
805 commit 6dadc9195ad642cc662632f4d92f92d3d71e8bf2
806 Author: Mike Frysinger <vapier@gentoo.org>
807 Date:   Mon Oct 20 16:15:04 2008 -0400
808
809     Blackfin: use common strmhz() in system output
810
811     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
812
813 commit 5bb907a4925397789c90d074f4f7e92ce6b39402
814 Author: Ron Madrid <ron_madrid@sbcglobal.net>
815 Date:   Thu Jan 22 15:05:24 2009 -0800
816
817     mpc83xx: New board support for SIMPC8313
818
819     This patch will create a new board, SIMPC8313, from Sheldon Instruments.  This
820     board boots from NAND devices and is configureable for either large or small
821     page devices.  The board supports non-soldered DDR2, one ethernet port, a
822     Marvell 88E1118 PHY, and PCI host support.  The board also has a FPGA connected
823     to the eLBC providing glue logic to a TMS320C67xx DSP.
824
825     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
826     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
827
828 commit d4bade8d77aa20e2846fa4accff0e7fa7961a134
829 Author: Mike Frysinger <vapier@gentoo.org>
830 Date:   Sun Jan 18 19:46:06 2009 -0500
831
832     nand: fixup printf modifiers to match types used
833
834     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
835     Signed-off-by: Scott Wood <scottwood@freescale.com>
836
837 commit 389e6620e2271096df3316917528003627db4021
838 Author: Schlaegl Manfred jun <manfred.schlaegl@gmx.at>
839 Date:   Tue Jan 20 16:57:55 2009 +0100
840
841     nand read.jffs2 (nand_legacy) in common/cmd_nand.c
842
843     Error with CONFIG_NAND_LEGACY in common/cmd_nand.c:
844     With current code "nand read.jffs2s" (read and skip bad blocks) is always interpreted as
845     "nand read.jffs2" (read and fill bad blocks with 0xff). This is because ".jffs2" is
846     tested before ".jffs2s" and only the first two characters are compared.
847
848     Correction:
849     Test for ".jffs2s" first and compare the first 7 characters.
850
851     Signed-off-by: Scott Wood <scottwood@freescale.com>
852
853 commit 6c869637fef31e66380f0ea1d49690a2e26ec0d7
854 Author: Wolfgang Grandegger <wg@grandegger.com>
855 Date:   Fri Jan 16 18:55:54 2009 +0100
856
857     NAND: rename NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS
858
859     This patch renames NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS and
860     changes the default from 8 to 1 for the legacy and the new MTD
861     NAND layer. This allows to remove all NAND_MAX_CHIPS definitions
862     in the board config files because none of the boards use multi
863     chip support (NAND_MAX_CHIPS > 1) so far. The bamboo and the DU440
864     define
865
866      #define NAND_MAX_CHIPS          CONFIG_SYS_MAX_NAND_DEVICE
867
868     but that's bogus and did not work anyhow.
869
870     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
871     Signed-off-by: Scott Wood <scottwood@freescale.com>
872
873 commit c70564e6b1bd08f3230182392238907f3531a87e
874 Author: Dave Liu <daveliu@freescale.com>
875 Date:   Tue Dec 2 11:48:51 2008 +0800
876
877     NAND: Fix cache and memory inconsistency issue
878
879     We load the secondary stage u-boot image from NAND to
880     system memory by nand_load, but we did not flush d-cache
881     to memory, nor invalidate i-cache before we jump to RAM.
882     When the system has cache enabled and the TLB/page attribute
883     of system memory is cacheable, it will cause issues.
884
885     - 83xx family is using the d-cache lock, so all of d-cache
886       access is cache-inhibited. so you can't see the issue.
887     - 85xx family is using d-cache, i-cache enable, partial
888       cache lock. you will see the issue.
889
890     This patch fixes the cache issue.
891
892     Signed-off-by: Dave Liu <daveliu@freescale.com>
893     Signed-off-by: Scott Wood <scottwood@freescale.com>
894
895 commit 50657c273278f74378e1ac39b41d612b92fdffa0
896 Author: Nishanth Menon <menon.nishanth@gmail.com>
897 Date:   Sat Dec 13 09:43:06 2008 -0600
898
899     NAND: Enable nand lock, unlock feature
900
901     Enable nand lock, unlock and status of lock feature.
902     Not every device and platform requires this, hence,
903     it is under define for CONFIG_CMD_NAND_LOCK_UNLOCK
904
905     Nand unlock and status operate on block boundary instead
906     of page boundary. Details in:
907     http://www.micron.com/products/partdetail?part=MT29C2G24MAKLAJG-6%20IT
908
909     Intial solution provided by Vikram Pandita <vikram.pandita@ti.com>
910     Includes preliminary suggestions from Scott Wood
911
912     Signed-off-by: Nishanth Menon <nm@ti.com>
913     Signed-off-by: Scott Wood <scottwood@freescale.com>
914
915 commit 69fb8be4fc07162fdf6edf04bdc7233b0e9a920e
916 Author: Mike Frysinger <vapier@gentoo.org>
917 Date:   Sat Dec 6 02:40:55 2008 -0500
918
919     NAND: move board_nand_init to nand.h
920
921     Rather than putting the function prototype for board_nand_init() in the one
922     place where it gets called, put it into nand.h so that every place that also
923     defines it gets the prototype.  Otherwise, errors can go silently unnoticed
924     such as using the wrong return value (void rather than int) when defining
925     the function.
926
927     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
928     Signed-off-by: Scott Wood <scottwood@freescale.com>
929
930 commit 1ae39862044ebb1e682234b51f94421e3f871d6a
931 Author: Stefan Roese <sr@denx.de>
932 Date:   Tue Dec 2 11:06:47 2008 +0100
933
934     OneNAND: Additional sync with 2.6.27
935
936     - Add subpage write support
937     - Add onenand_oob_64/32 ecclayout
938
939     This has been missing and without it UBI has some incompatibilies issues
940     with the current (>= 2.6.27) Linux kernel version. vid_hdr_offset is
941     placed differently (2048 instead of 512) without this fix.
942
943     Signed-off-by: Stefan Roese <sr@denx.de>
944     Signed-off-by: Scott Wood <scottwood@freescale.com>
945
946 commit 1714f51a2009baaecf3d4f6e3bd8c4e93a8d3f23
947 Author: Kyungmin Park <kmpark@infradead.org>
948 Date:   Thu Nov 13 15:14:33 2008 +0900
949
950     Add markbad function
951
952     Add missing markbad function
953     If not, it's hang when it entered the mtd->mark_bad().
954
955     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
956
957 commit c438ea175d8d002c1063b7a94b0c0e26668d1ac9
958 Author: Stefan Roese <sr@denx.de>
959 Date:   Wed Nov 12 13:47:24 2008 +0100
960
961     OneNAND: Bad block aware read/write command support
962
963     Update OneNAND command to support bad block awareness.
964     Also change the OneNAND command style to better match the
965     NAND version.
966
967     Signed-off-by: Stefan Roese <sr@denx.de>
968     Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
969
970 commit 8cf11f3aa78673730e9ecbbe4b75213b53f212c8
971 Author: Stefan Roese <sr@denx.de>
972 Date:   Tue Nov 11 10:29:09 2008 +0100
973
974     OneNAND: Save version_id in onenand_chip struct
975
976     The version (ver_id) was not stored in the onenand_chip structure and
977     because of this the continuous locking scheme could be enabled on some
978     chips.
979
980     Signed-off-by: Stefan Roese <sr@denx.de>
981
982 commit 4fca3310d611cc0f51d7295ef3557afbdbd91dc3
983 Author: Stefan Roese <sr@denx.de>
984 Date:   Tue Nov 11 10:28:53 2008 +0100
985
986     OneNAND: Fix compiler warnings
987
988     Signed-off-by: Stefan Roese <sr@denx.de>
989
990 commit 1ac5744e33ee0aa6d6ddab3b99f9e70953156e69
991 Author: Dave Liu <daveliu@freescale.com>
992 Date:   Tue Nov 4 14:55:06 2008 +0800
993
994     mpc83xx: enable eLBC NAND support for MPC8315ERDB board
995
996     Signed-off-by: Dave Liu <daveliu@freescale.com>
997
998 commit ef0921d6b05aeb9034158f9bef5323d6da9c925e
999 Author: Kyungmin Park <kmpark@infradead.org>
1000 Date:   Tue Nov 4 09:24:07 2008 +0900
1001
1002     Sync with 2.6.27
1003
1004     Sync with OneNAND kernel codes
1005
1006     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
1007
1008 commit e7f325be9edeb84bb457301776bbac1f7257dafc
1009 Author: Michal Simek <monstr@monstr.eu>
1010 Date:   Mon Jan 5 13:35:31 2009 +0100
1011
1012     microblaze: Use cache functions (especially cache status)
1013     in systems which are configured without flash
1014
1015 commit e9b737deb2c30125362d20e24170617476026e94
1016 Author: Michal Simek <monstr@monstr.eu>
1017 Date:   Mon Jan 5 13:29:32 2009 +0100
1018
1019     microblaze: Add cache flush
1020
1021 commit b4f8dda35bfad447b4106828232705b2e878d168
1022 Author: Michal Simek <monstr@monstr.eu>
1023 Date:   Mon Jan 5 13:28:40 2009 +0100
1024
1025     microblaze: Add bootup messages to board.c
1026
1027 commit 330e55459bc9983341da6c1d5c7fe00a664436fe
1028 Author: Michal Simek <monstr@monstr.eu>
1029 Date:   Fri Dec 19 13:25:55 2008 +0100
1030
1031     microblaze: Change microblaze-generic config file
1032
1033     Signed-off-by: Michal Simek <monstr@monstr.eu>
1034
1035 commit 52a822ed9c37a2ea0ed112a26d8ff5a6cb1c6f10
1036 Author: Michal Simek <monstr@monstr.eu>
1037 Date:   Fri Dec 19 13:14:05 2008 +0100
1038
1039     microblaze: Rename ml401 to microblaze-generic
1040
1041     Signed-off-by: Michal Simek <monstr@monstr.eu>
1042
1043 commit 6677876181cc8772bca8a372479a500d160f3993
1044 Author: Scott Wood <scottwood@freescale.com>
1045 Date:   Tue Jan 20 11:56:11 2009 -0600
1046
1047     83xx: Use the proper sequence for updating IMMR.
1048
1049     This ensures that subsequent accesses properly hit the new window.
1050
1051     The dcbi during the NAND loop was accidentally working around this;
1052     it's no longer necessary, as the cache is not enabled.
1053
1054     Reported-by: Suchit Lepcha <Suchit.Lepcha@freescale.com>
1055     Signed-off-by: Scott Wood <scottwood@freescale.com>
1056     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1057
1058 commit 8b34557c546e5e9f34ebf83c93413dad973d93df
1059 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1060 Date:   Thu Jan 8 04:26:19 2009 +0300
1061
1062     mpc83xx: Add PCI-E support for MPC837XEMDS boards
1063
1064     MPC837XEMDS boards can support PCI-E via "PCI-E riser card". The card
1065     provides two PCI-E (x2) ports. Though, only one port can be used in x2
1066     mode. Two ports can function simultaneously in x1 mode.
1067
1068     PCI-E x1/x2 modes can be switched via "pex_x2" environment variable.
1069
1070     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1071     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1072
1073 commit 8f11e34b31a7be124a3239653f33af9510502045
1074 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1075 Date:   Thu Jan 8 04:26:17 2009 +0300
1076
1077     mpc83xx: Add PCI-E support for MPC8315ERDB boards
1078
1079     MPC8315ERDB boards features PCI-E x1 and Mini PCI-E x1 ports. Let's
1080     support them.
1081
1082     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1083     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1084
1085 commit fd6646c0b9ebe7e5afc4ae4c78097d9cd317a5e8
1086 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1087 Date:   Thu Jan 8 04:26:12 2009 +0300
1088
1089     mpc83xx: Add support for MPC83xx PCI-E controllers
1090
1091     This patch adds support for MPC83xx PCI-E controllers in Root Complex
1092     mode.
1093
1094     The patch is based on Tony Li and Dave Liu work[1].
1095
1096     Though unlike the original patch, by default we don't register PCI-E
1097     buses for use in U-Boot, we only configure the controllers for future
1098     use in other OSes (Linux). This is done because we don't have enough
1099     of spare BATs to map all the PCI-E regions.
1100
1101     To actually use PCI-E in U-Boot, users should explicitly define
1102     CONFIG_83XX_GENERIC_PCIE_REGISTER_HOSES symbol in the board file. And
1103     only then U-Boot will able to access PCI-E, but at the cost of disabled
1104     address translation.
1105
1106     [1] http://lists.denx.de/pipermail/u-boot/2008-January/027630.html
1107
1108     Signed-off-by: Tony Li <tony.li@freescale.com>
1109     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1110     Acked-by: Dave Liu <daveliu@freescale.com>
1111     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1112
1113 commit 88ecf55cabd7aea28fe8093720e208f53ccfdcf5
1114 Author: Ira Snyder <iws@ovro.caltech.edu>
1115 Date:   Mon Jan 12 13:33:17 2009 -0800
1116
1117     MPC8349EMDS: do not setup unused PCI clock outputs in PCI agent mode
1118
1119     When running in PCI agent mode, the PCI_CLK_OUT signals are not used, so do
1120     not enable them. See the MPC8349EA Reference Manual, Section 4.4.2
1121     "Clocking in PCI Agent Mode".
1122
1123     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
1124     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1125
1126 commit 75f35209f702bb26826855ed8c8e4d108ab5f412
1127 Author: Ira Snyder <iws@ovro.caltech.edu>
1128 Date:   Mon Jan 12 13:32:26 2009 -0800
1129
1130     83xx: PCI agent mode fixes for multi-board systems
1131
1132     When running a system with 2 or more MPC8349EMDS boards in PCI agent mode,
1133     the boards will lock up the PCI bus by scanning against each other.
1134
1135     The boards lock against each other by trying to access the PCI bus before
1136     clearing their configuration lock bit. Both boards end up in a loop,
1137     sending and receiving "Target Not Ready" messages forever.
1138
1139     When running in PCI agent mode, the scanning now takes place after the
1140     boards have cleared their configuration lock bit.
1141
1142     Also, add a missing declaration to the mpc83xx.h header file, fixing a
1143     build warning.
1144
1145     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
1146     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1147
1148 commit 455a46915b82896cc2070eb326d075555c2bc580
1149 Author: Ron Madrid <ron_madrid@sbcglobal.net>
1150 Date:   Fri Dec 12 13:12:45 2008 -0800
1151
1152     mpc83xx: Size optimization of start.S
1153
1154     Currently there are in excess of 100 bytes located at the beginning of the image
1155     built by start.S that are not being utilized.  This patch moves a few functions
1156     into this part of the image.  This will create a greater number of *available*
1157     bytes that can be used by board specific code in NAND builds and will decrease
1158     the size of the assembled code in other builds.
1159
1160     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
1161     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1162
1163 commit 72d15e705bc3983884105cb7755c7ba80e74a0a5
1164 Author: Wolfgang Denk <wd@denx.de>
1165 Date:   Wed Jan 21 23:08:12 2009 +0100
1166
1167     Prepare v2009.01
1168
1169     Signed-off-by: Wolfgang Denk <wd@denx.de>
1170
1171 commit 635e5f8fc82365e6e9734b3132bc95135a6de679
1172 Author: Wolfgang Denk <wd@denx.de>
1173 Date:   Sun Jan 18 21:37:48 2009 +0100
1174
1175     Prepare 2009.01-rc3
1176
1177     Update CHANGELOG
1178
1179     Signed-off-by: Wolfgang Denk <wd@denx.de>
1180
1181 commit 4cda437898f7873752f0201757cd33f12196ce87
1182 Author: Mike Frysinger <vapier@gentoo.org>
1183 Date:   Sat Jan 17 13:32:42 2009 -0500
1184
1185     build system: treat all Darwin's alike
1186
1187     The x86 based version of Darwin behaves the same quirky way as the powerpc
1188     Darwin, so only check HOSTOS when setting up Darwin workarounds.
1189
1190     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1191
1192 commit c088a108c75db565e07292fd668dfa5491e85bc2
1193 Author: Peter Korsgaard <jacmet@sunsite.dk>
1194 Date:   Wed Jan 14 13:52:24 2009 +0100
1195
1196     fdt_resize(): fix actualsize calculations with unaligned blobs
1197
1198     The code in fdt_resize() to extend the fdt size to end on a page boundary
1199     is wrong for fdt's not located at an address aligned on a page boundary.
1200     What's even worse, the code would make actualsize shrink rather than grow
1201     if (blob & 0xfff) was bigger than the amount of padding added by ALIGN(),
1202     causing fdt_add_mem_rsv to fail.
1203
1204     Fix it by aligning end address (blob + size) to a page boundary instead.
1205     For aligned fdt's this is equivalent to what we had before.
1206
1207     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
1208
1209 commit fadad1573fb16c90025f08a2861d6047d093cba7
1210 Author: Mike Frysinger <vapier@gentoo.org>
1211 Date:   Fri Jan 9 04:38:17 2009 -0500
1212
1213     ncb: use socklen_t
1214
1215     The recvfrom() function takes a socklen_t, not an int.
1216
1217     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1218
1219 commit fc83c9273cec6e6e542f4a0ea3b653b7d0513ffa
1220 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1221 Date:   Sun Jan 11 16:35:16 2009 +0100
1222
1223     sh: serial: use readx/writex accessors
1224
1225     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1226     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1227
1228 commit 9e1fa628bdb64745811cdd26c4f953846c076180
1229 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1230 Date:   Sun Jan 11 16:35:15 2009 +0100
1231
1232     sh: serial: coding style cleanup
1233
1234     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1235     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1236
1237 commit c9935c992575922b7ef13eec0656ed8665d324e3
1238 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1239 Date:   Sun Jan 11 17:48:56 2009 +0900
1240
1241     sh: Fix compile error on lowlevel_init file
1242
1243     lowlevel_init of SH was corrected to use the write/readXX macro.
1244     However, there was a problem that was not able to be compiled partially.
1245     This patch corrected this.
1246
1247     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1248
1249 commit a5b04d00bfeb940c62232972ce644d50b45797f9
1250 Author: Kieran Bingham <kieranbingham@gmail.com>
1251 Date:   Tue Dec 30 01:16:03 2008 +0000
1252
1253     sh: Fix up rsk7203 target for out of tree build
1254
1255     Fix up rsk7203 target to build successfully using out-of-tree build.
1256
1257     Signed-off-by: Kieran Bingham <kbingham@mpc-data.co.uk>
1258     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1259
1260 commit f7e78f3b74aae9caca2997bad865a72338326c0a
1261 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1262 Date:   Sat Dec 20 19:29:49 2008 +0100
1263
1264     sh: use write{8,16,32} in all lowlevel_init
1265
1266     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1267     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1268
1269 commit e4430779623af500de1cee7892c379f07ef59813
1270 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1271 Date:   Sat Dec 20 19:29:48 2008 +0100
1272
1273     sh: lowlevel_init coding style cleanup
1274
1275     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1276     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1277
1278 commit 85cb052ee41675ca361e6a4c69455dc715c8f2d9
1279 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1280 Date:   Sat Dec 20 15:27:45 2008 +0100
1281
1282     sh: update sh2/sh2a timer coding style
1283
1284     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1285     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1286
1287 commit 1e15ff999322e81af4c0c0c548908f38944ba39c
1288 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1289 Date:   Sat Dec 20 15:25:22 2008 +0100
1290
1291     sh: update sh timer coding style
1292
1293     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1294     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1295
1296 commit 0e3ece33801e377be67ffa29f083421ad820f28b
1297 Author: Wolfgang Denk <wd@denx.de>
1298 Date:   Wed Jan 14 23:26:05 2009 +0100
1299
1300     Prepare 2009.01-rc2
1301
1302     Update CHANGELOG.
1303
1304     Signed-off-by: Wolfgang Denk <wd@denx.de>
1305
1306 commit e92c9a860e44c14513c8909ce4299e253a775eeb
1307 Author: Wolfgang Denk <wd@denx.de>
1308 Date:   Wed Jan 14 22:35:30 2009 +0100
1309
1310     cpu/mpc824x/Makefile: fix warning with parallel builds
1311
1312     Parallel builds would occasionally issue this build warning:
1313
1314         ln: creating symbolic link `cpu/mpc824x/bedbug_603e.c': File exists
1315
1316     Use "ln -sf" as quick work around for the issue.
1317
1318     Signed-off-by: Wolfgang Denk <wd@denx.de>
1319
1320 commit 3ba605d4beec649438539e7df97b5fedb26592fb
1321 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1322 Date:   Fri Jan 2 12:18:49 2009 +0100
1323
1324     ppc4xx: Add loadpci command to esd's CPCI4052 and CPCI405AB boards
1325
1326     This patch adds esd's loadpci BSP command to CPCI4052 and
1327     CPCI405AB board. This requires CONFIG_CMD_BSP and CONFIG_PRAM.
1328
1329     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1330     Signed-off-by: Stefan Roese <sr@denx.de>
1331
1332 commit 600fe46fb3dab7f07604f9009904f31584415114
1333 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1334 Date:   Fri Jan 2 12:18:12 2009 +0100
1335
1336     ppc4xx: Disable pci node in device tree on CPCI405 pci adapters
1337
1338     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1339     Signed-off-by: Stefan Roese <sr@denx.de>
1340
1341 commit f6a1f490d224c600a09137e58d1026d150b8e679
1342 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1343 Date:   Fri Jan 2 12:17:36 2009 +0100
1344
1345     ppc4xx: Cleanup CPCI405 board code
1346
1347     This patch cleans up CPCI405 board support:
1348     - wrap long lines
1349     - unification of spaces in function calls
1350     - remove dead code
1351
1352     Use correct io accessors on peripherals.
1353
1354     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1355     Signed-off-by: Stefan Roese <sr@denx.de>
1356
1357 commit fceebb45a0b97e92f9889861f8c3b9cb885e706f
1358 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1359 Date:   Fri Jan 2 12:16:35 2009 +0100
1360
1361     ppc4xx: Enable auto RS485 mode on PLU405 boards
1362
1363     This patch turns on the auto RS485 mode in the 2nd external
1364     uart on PLU405 boards. This is a special mode of the used
1365     Exar XR16C2850 uart. Because these boards only have a 485 physical
1366     layer connected it's a good idea to turn it on by default.
1367
1368     Signed-off-by: Matthias Fuchs <mf@esd.eu>
1369     Signed-off-by: Stefan Roese <sr@denx.de>
1370
1371 commit b5f65dfa9aa8e068e62aba4733dc4fd97b1d9bf6
1372 Author: Haiying Wang <Haiying.Wang@freescale.com>
1373 Date:   Tue Jan 13 16:29:28 2009 -0500
1374
1375     Some changes of TLB entry setting for MPC8572DS
1376
1377     - Move the TLB entry of PIXIS_BASE from TLB0 to TLB1[8], because in CAMP mode,
1378     all the TLB0 entries will be invalidated after cpu1 brings up kernel, thus cpu0
1379     can not access PIXIS_BASE anymore (any access will cause DataTLBError exception)
1380
1381     - Set CONFIG_SYS_DDR_TLB_START to 9 for MPC8572DS board.
1382
1383     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
1384
1385 commit 950264317eb9594b2b5ee2fb65206200a1c6007a
1386 Author: Haiying Wang <Haiying.Wang@freescale.com>
1387 Date:   Tue Jan 13 16:29:22 2009 -0500
1388
1389     Change DDR tlb start entry to CONFIG param for 85xx
1390
1391     So that we can locate the DDR tlb start entry to the value other than 8. By
1392     default, it is still 8.
1393
1394     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
1395
1396 commit 6d3a10f73ece7ffb736890c10e023222612a4aa0
1397 Author: Roy Zang <tie-fei.zang@freescale.com>
1398 Date:   Fri Jan 9 16:02:35 2009 +0800
1399
1400     Change PCIE1&2 deciide logic on MPC8544DS board more readable
1401
1402     The IO port selection for MPC8544DS board:
1403      Port                       cfg_io_ports
1404      PCIE1              0x2, 0x3, 0x4, 0x5, 0x6, 0x7
1405      PCIE2              0x4, 0x5, 0x6, 0x7
1406      PCIE3              0x6, 0x7
1407      This patch changes the PCIE12 and PCIE2 logic more readable.
1408     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
1409
1410 commit 028e116811d28a031660f1ad9e20ac1293b3c5c7
1411 Author: Roy Zang <tie-fei.zang@freescale.com>
1412 Date:   Fri Jan 9 16:01:52 2009 +0800
1413
1414     PCIE2 and PCIE3 are decided by corresponing bit in devdisr instead of PCIE1 bit
1415
1416     PCIE2 and PCIE3 should be decided by corresponing bit in devdisr instead of
1417     PCIE1 bit.
1418     On MPC8572DS board, PCIE refers to PCIE1.
1419     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
1420
1421 commit 9afc2ef0307aecf52482df67c31b75d5f9e66b47
1422 Author: Roy Zang <tie-fei.zang@freescale.com>
1423 Date:   Fri Jan 9 16:00:55 2009 +0800
1424
1425     Fix IO port selection issue on MPC8544DS and MPC8572DS boards
1426
1427     The IO port selection is not correct on MPC8572DS and MPC8544DS board.
1428      This patch fixes this issue.
1429      For MPC8572
1430      Port                       cfg_io_ports
1431      PCIE1              0x2, 0x3, 0x7, 0xb, 0xc, 0xf
1432      PCIE2              0x3, 0x7
1433      PCIE3              0x7
1434
1435     For MPC8544
1436     Port                        cfg_io_ports
1437     PCIE1               0x2, 0x3, 0x4, 0x5, 0x6, 0x7
1438     PCIE2               0x4, 0x5, 0x6, 0x7
1439     PCIE3               0x6, 0x7
1440     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
1441
1442 commit 3e3fffe3baf3befde287fec1fcbfe55052fb8946
1443 Author: Becky Bruce <beckyb@kernel.crashing.org>
1444 Date:   Wed Dec 3 22:36:44 2008 -0600
1445
1446     mpc8610hpcd: Fix PCI mapping concepts
1447
1448     Rename _BASE to _BUS, as it's actually a PCI bus address,
1449     separate virtual and physical addresses into _VIRT and _PHYS,
1450     and use each appopriately.  This makes the code easier to read
1451     and understand, and facilitates mapping changes going forward.
1452
1453     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
1454
1455 commit 79e436cad3b4a7db88408c3f05175028f30d700d
1456 Author: Becky Bruce <beckyb@kernel.crashing.org>
1457 Date:   Wed Dec 3 22:36:26 2008 -0600
1458
1459     sbc8641d: Fix PCI mapping concepts
1460
1461     Rename _BASE to _BUS, as it's actually a PCI bus address,
1462     separate virtual and physical addresses into _VIRT and _PHYS,
1463     and use each appopriately.  This makes the code easier to read
1464     and understand, and facilitates mapping changes going forward.
1465
1466     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
1467
1468 commit a9f3acbcd07da72b5446ce557531a3ed8b8beff0
1469 Author: Wolfgang Denk <wd@denx.de>
1470 Date:   Mon Jan 12 14:50:35 2009 +0100
1471
1472     MPC86xx: fix build warnings
1473
1474     Signed-off-by: Wolfgang Denk <wd@denx.de>
1475
1476 commit 032a1c934ef4dc003281f57302b6e693062c1868
1477 Author: Mike Frysinger <vapier@gentoo.org>
1478 Date:   Mon Jan 5 16:09:44 2009 -0500
1479
1480     bf537-stamp/nand: fix board_nand_init prototype
1481
1482     The board_nand_init() function should return an int, not void.
1483
1484     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1485
1486 commit 687f952e4119594ab913be11c90f7f018c2a7a79
1487 Author: Mike Frysinger <vapier@gentoo.org>
1488 Date:   Thu Dec 11 07:04:48 2008 -0500
1489
1490     Blackfin: drop CONFIG_SPI handling in board init
1491
1492     The eeprom SPI init functions are duplicated as the common code already
1493     executes these for us.
1494
1495     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1496
1497 commit e7e684b10d73a303902208594c7c3e7e0d753282
1498 Author: Mike Frysinger <vapier@gentoo.org>
1499 Date:   Fri Oct 24 17:51:57 2008 -0400
1500
1501     Blackfin: fix out-of-tree building with ldscripts
1502
1503     Many of the Blackfin board linker scripts are preprocessed, so make sure we
1504     output the linker script into the build tree rather than the source tree.
1505
1506     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1507
1508 commit b9eecc342f767b50e1476fbc1aad7d88dd4ce5eb
1509 Author: Mike Frysinger <vapier@gentoo.org>
1510 Date:   Fri Oct 24 17:48:54 2008 -0400
1511
1512     Blackfin: fix linker scripts to work with --gc-sections
1513
1514     Make sure all .text sections get pulled in and the entry point is properly
1515     referenced so they don't get discarded when linking with --gc-sections.
1516
1517     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1518
1519 commit 509fc553bc6087a6f705b3bf52f3950d7d1eaa58
1520 Author: Mike Frysinger <vapier@gentoo.org>
1521 Date:   Sat Oct 11 20:45:44 2008 -0400
1522
1523     Blackfin: set proper LDRFLAGS for parallel booting LDRs
1524
1525     In order to boot an LDR out of parallel flash, the ldr utility needs a few
1526     flags to tell it to generate the right header.
1527
1528     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1529
1530 commit 3dd9395a0d7ce69a335d0e743c04b9caedd681d3
1531 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1532 Date:   Tue Jan 6 21:41:59 2009 +0100
1533
1534     at91rm9200: move define from lowlevel_init to header
1535
1536     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1537
1538 commit 8a48686fac2030287765f1970ea046bd5734b733
1539 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1540 Date:   Sat Jan 3 17:22:26 2009 +0100
1541
1542     m501sk: move to the common memory setup
1543
1544     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1545
1546 commit d481c80d78f954133c035dae6c7d22de3625795d
1547 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1548 Date:   Sat Jan 3 17:22:25 2009 +0100
1549
1550     at91rm9200: rename lowlevel init value to CONFIG_SYS_
1551
1552     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1553
1554 commit 4e170b16625291aa10d0d9abc3f34e8a5945d157
1555 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
1556 Date:   Tue Jan 6 21:13:14 2009 +0100
1557
1558     at91: add at91sam9xeek board support
1559
1560     At91sam9xe is basically an at91sam9260 with embedded flash. We can manage
1561     it as another entry for at91sam9260 in the Makefile.
1562
1563     Check documentation at :
1564     http://www.atmel.com/dyn/products/product_card.asp?part_id=4263
1565
1566     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
1567     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1568
1569 commit 9ffd53db870a7da134f9a1ae76894a6b31237be5
1570 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1571 Date:   Tue Jan 6 21:15:57 2009 +0100
1572
1573     fix bmp_logo.h make dependencies to allow parallel build
1574
1575     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1576
1577 commit e12d9a8fb48d24176efffccc072b445e60a3afe4
1578 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1579 Date:   Sat Jan 3 17:22:24 2009 +0100
1580
1581     at91: Fix Atmel's at91sam9 boards out of tree build
1582
1583     introduced in commit 89a7a87f084c
1584
1585     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1586
1587 commit 0668236bafaa1c11c521652a2facebc74beecbf0
1588 Author: Wolfgang Denk <wd@denx.de>
1589 Date:   Tue Dec 30 22:56:11 2008 +0100
1590
1591     README: update mailing list name and hits to patch submission.
1592
1593     Signed-off-by: Wolfgang Denk <wd@denx.de>
1594
1595 commit d9011f9b75561a0bd9254934c2bb2bc799d4f645
1596 Author: Peter Tyser <ptyser@xes-inc.com>
1597 Date:   Tue Dec 23 16:32:01 2008 -0600
1598
1599     85xx: Enable inbound PCI config cycles for X-ES boards cleanup
1600
1601     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1602
1603 commit 1f03cbfae221b24ba1341a0a3f62ff01c5c874df
1604 Author: Peter Tyser <ptyser@xes-inc.com>
1605 Date:   Tue Dec 23 16:32:00 2008 -0600
1606
1607     XPedite5200 board support cleanup
1608
1609     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1610
1611 commit fea91edee8ae0295e3c30b1ff544df51f4d668e1
1612 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1613 Date:   Tue Dec 2 21:58:04 2008 +0100
1614
1615     usb_kbd: fix usb_kbd_deregister when DEVICE_DEREGISTER not enable
1616
1617     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1618     Signed-off-by: Remy Böhmer <linux@bohmer.net>
1619
1620 commit ada591d2a0ecff5f9bc5ed1ebf310f439c3d0a28
1621 Author: Trent Piepho <tpiepho@freescale.com>
1622 Date:   Wed Dec 3 15:16:37 2008 -0800
1623
1624     mpc8[56]xx: Put localbus clock in sysinfo and gd
1625
1626     Currently MPC85xx and MPC86xx boards just calculate the localbus frequency
1627     and print it out, but don't save it.
1628
1629     This changes where its calculated and stored to be more consistent with the
1630     CPU, CCB, TB, and DDR frequencies and the MPC83xx localbus clock.
1631
1632     The localbus frequency is added to sysinfo and calculated when sysinfo is
1633     set up, in cpu/mpc8[56]xx/speed.c, the same as the other frequencies are.
1634
1635     get_clocks() copies the frequency into the global data, as the other
1636     frequencies are, into a new field that is only enabled for MPC85xx and
1637     MPC86xx.
1638
1639     checkcpu() in cpu/mpc8[56]xx/cpu.c will print out the local bus frequency
1640     from sysinfo, like the other frequencies, instead of calculating it on the
1641     spot.
1642
1643     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
1644     Acked-by: Kumar Gala <galak@kernel.crashing.org>
1645     Acked-by: Jon Loeliger <jdl@freescale.com>
1646
1647 commit 9863d6aca11405e1e0d8aba2045d78aeec4d4ee7
1648 Author: Trent Piepho <tpiepho@freescale.com>
1649 Date:   Wed Dec 3 15:16:36 2008 -0800
1650
1651     mpc86xx: Double local bus clock divider
1652
1653     The local bus clock divider should be doubled for both 8610 and 8641.
1654
1655     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
1656     Acked-by: Kumar Gala <galak@kernel.crashing.org>
1657     Acked-by: Jon Loeliger <jdl@freescale.com>
1658
1659 commit 446c381e3e16f19857b72ea0d06241267b8b9d58
1660 Author: Trent Piepho <tpiepho@freescale.com>
1661 Date:   Wed Dec 3 15:16:35 2008 -0800
1662
1663     mpc8568: Double local bus clock divider
1664
1665     The clock divider for the MPC8568 local bus should be doubled, like the
1666     other newer MPC85xx chips.
1667
1668     Since there are now more chips with a 2x divider than a 1x, and any new
1669     85xx chips will probably be 2x, invert the sense of the #if so that it
1670     lists the 1x chips instead of the 2x ones.
1671
1672     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
1673     Acked-by: Kumar Gala <galak@kernel.crashing.org>
1674     Acked-by: Jon Loeliger <jdl@freescale.com>
1675
1676 commit f51f07eb58fad12de9294ba4ee6c09a0ddeaee03
1677 Author: Dave Liu <daveliu@freescale.com>
1678 Date:   Tue Dec 16 12:09:27 2008 +0800
1679
1680     85xx: Fix the boot window issue
1681
1682     If one custom board is using the 8MB flash, it is set
1683     as FLASH_BASE = 0xef000000, TEXT_BASE = 0xef780000.
1684     The current start.S code will be broken at switch_as.
1685
1686     It is because the TLB1[15] is set as 16MB page size,
1687     EPN = TEXT_BASE & 0xff000000, RPN = 0xff000000.
1688
1689     For the 8MB flash case, the EPN = 0xefxxxxxx,
1690     RPN = 0xffxxxxxx. Assume the virt address of switch_as
1691     is 0xef7ff18c, the real address of the instruction at
1692     switch_as should be 0xff7ff18c. the 0xff7ff18c is out
1693     of the range of the default 8MB boot LAW window
1694     0xff800000 - 0xffffffff.
1695
1696     So when we switch to AS1 address space at switch_as,
1697     the core can't fetch the instruction at switch_as any
1698     more. It will cause broken issue.
1699
1700     Signed-off-by: Dave Liu <daveliu@freescale.com>
1701
1702 commit 58da8890d5fbd074746037722a423de9ac408616
1703 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
1704 Date:   Thu Dec 11 15:47:50 2008 -0500
1705
1706     sbc8548: use proper PHY address
1707
1708     The values given for the PHY address were wrong, so the code
1709     read no valid PHY ID, and fell through to the generic PHY
1710     support, which would work on 1000M but would not auto negotiate
1711     down to 100M or 10M.
1712
1713     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
1714
1715 commit ad22f9273c6f24fbfa917e867680e9688e0c59c5
1716 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
1717 Date:   Thu Dec 11 15:47:51 2008 -0500
1718
1719     sbc8548: enable command line editing by default.
1720
1721     Lets make things a bit more user friendly.  It isn't 1985 anymore.
1722
1723     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
1724
1725 commit bd93105fa171184a71ca8b22be03dc2705cfbd3f
1726 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
1727 Date:   Thu Dec 11 15:47:49 2008 -0500
1728
1729     sbc8548: don't enable the 3rd and 4th eTSEC
1730
1731     These interfaces don't have usable connectors on the board, so don't
1732     bother enumerating or configuring them.
1733
1734     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
1735
1736 commit 181a3650113883728927928b3ac81ad6dade4b2c
1737 Author: Haiying Wang <Haiying.Wang@freescale.com>
1738 Date:   Wed Dec 3 10:08:19 2008 -0500
1739
1740     Set IVPR to kenrel entry point in second core boot page
1741
1742     Assuming the OSes exception vectors start from the base of kernel address, and
1743     the kernel physical starting address can be relocated to an non-zero address.
1744     This patch enables the second core to have a valid IVPR for debugger before
1745     kernel setting IVPR in CAMP mode. Otherwise, IVPR is 0x0 and it is not a valid
1746     value for second core which runs kernel at different physical address other
1747     than 0x0.
1748
1749     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
1750
1751 commit a5d212a263c58cc746481bf1fc878510533ce7d6
1752 Author: Trent Piepho <tpiepho@freescale.com>
1753 Date:   Wed Dec 3 15:16:34 2008 -0800
1754
1755     mpc8xxx: LCRR[CLKDIV] is sometimes five bits
1756
1757     On newer CPUs, 8536, 8572, and 8610, the CLKDIV field of LCRR is five bits
1758     instead of four.
1759
1760     In order to avoid an ifdef, LCRR_CLKDIV is set to 0x1f on all systems.  It
1761     should be safe as the fifth bit was defined as reserved and set to 0.
1762
1763     Code that was using a hard coded 0x0f is changed to use LCRR_CLKDIV.
1764
1765     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
1766     Acked-by: Kumar Gala <galak@kernel.crashing.org>
1767     Acked-by: Jon Loeliger <jdl@freescale.com>
1768
1769 commit 58ec4866ed916c7e422f5107bb27b0822084728e
1770 Author: Trent Piepho <tpiepho@freescale.com>
1771 Date:   Wed Dec 3 15:16:38 2008 -0800
1772
1773     mpc8[56]xx: Put localbus clock in device tree
1774
1775     Export the localbus frequency in the device tree, the same way the CPU, TB,
1776     CCB, and various other frequencies are exported in their respective device
1777     tree nodes.
1778
1779     Some localbus devices need this information to be programed correctly, so
1780     it makes sense to export it along with the other frequencies.
1781
1782     Unfortunately, when someone wrote the localbus dts bindings, they didn't
1783     bother to define what the "compatible" property should be.  So it seems no
1784     one was quite sure what to put in their dts files.
1785
1786     Based on current existing dts files in the kernel source, I've used
1787     "fsl,pq3-localbus" and "fsl,elbc" for MPC85xx, which are used by almost all
1788     of the 85xx devices, and are looked for by the Linux code.  The eLBC is
1789     apparently not entirely backward compatible with the pq3 LBC and so eLBC
1790     equipped platforms like 8572 won't use pq3-localbus.
1791
1792     For MPC86xx, I've used "fsl,elbc" which is used by some of the 86xx systems
1793     and is also looked for by the Linux code.  On MPC8641, I've also used
1794     "fsl,mpc8641-localbus" as it is also commonly used in dts files, some of
1795     which don't use "fsl,elbc" or any other acceptable name to match on.
1796
1797     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
1798     Acked-by: Kumar Gala <galak@kernel.crashing.org>
1799     Acked-by: Jon Loeliger <jdl@freescale.com>
1800
1801 commit 9d94aff699eed38b286814fcbb335f3eb8516a0e
1802 Author: Kumar Gala <galak@kernel.crashing.org>
1803 Date:   Tue Dec 16 14:59:22 2008 -0600
1804
1805     NAND FSL elbc: Use virt_to_phys to determine which bank is in use
1806
1807     The current code that determines which bank/chipselect is used for a
1808     given NAND instance only worked for 32-bit addresses and assumed
1809     a 1:1 mapping.  This breaks in 36-bit physical configs.
1810
1811     The proper way to handle this is to use the virt_to_phys() and
1812     BR_PHYS_ADDR() routinues to match the 34-bit lbc bus address
1813     with the the virtual address the NAND code uses.
1814
1815     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1816     Acked-by: Scott Wood <scottwood@freescale.com>
1817
1818 commit 77c8115b1f1871811633eae77a5a700fac1f0e50
1819 Author: Kumar Gala <galak@kernel.crashing.org>
1820 Date:   Tue Dec 16 14:59:21 2008 -0600
1821
1822     ppc: Use addrmap in virt_to_phys and map_physmem.
1823
1824     If we have addr map support enabled use the mapping functions to
1825     implement virt_to_phys() and map_physmem().
1826
1827     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1828
1829 commit ecf5b98c7a6a2e2256dfddd48fab26678dcd6b90
1830 Author: Kumar Gala <galak@kernel.crashing.org>
1831 Date:   Tue Dec 16 14:59:20 2008 -0600
1832
1833     85xx: Add support to populate addr map based on TLB settings
1834
1835     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1836
1837 commit 78bbc5ce151c5a484bb51bf1866b4a993ffc16ec
1838 Author: Peter Tyser <ptyser@xes-inc.com>
1839 Date:   Mon Dec 1 13:47:13 2008 -0600
1840
1841     XPedite5200 board support
1842
1843     Initial support for Extreme Engineering Solutions XPedite5200 -
1844     a MPC8548-based PMC single board computer.
1845
1846     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1847
1848 commit 487dcb4fb89be0992bc06ec1341090017bd9cf2f
1849 Author: Peter Tyser <ptyser@xes-inc.com>
1850 Date:   Wed Oct 29 12:39:27 2008 -0500
1851
1852     85xx: Enable inbound PCI config cycles for X-ES boards
1853
1854     Update X-ES Freescale boards to allow inbound PCI configuration
1855     cycles when configured as agent/endpoint.
1856
1857     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1858
1859 commit ccf0fdd02b97323f8caae18d06cc9daeac2f192f
1860 Author: Peter Tyser <ptyser@xes-inc.com>
1861 Date:   Wed Dec 17 16:36:23 2008 -0600
1862
1863     XPedite5370 board support
1864
1865     Initial support for Extreme Engineering Solutions XPedite5370 -
1866     a MPC8572-based 3U VPX single board computer with a PMC/XMC
1867     site.
1868
1869     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1870
1871 commit e92739d34e2d6b6aca93b2598248210710897ce8
1872 Author: Peter Tyser <ptyser@xes-inc.com>
1873 Date:   Wed Dec 17 16:36:21 2008 -0600
1874
1875     Add support for PCA953x I2C gpio devices
1876
1877     Initial support for NXP's 4 and 8 bit I2C gpio expanders
1878     (eg pca9537, pca9557, etc). The CONFIG_PCA953X define
1879     enables support for the devices while the CONFIG_CMD_PCA953X
1880     define enables the pca953x command. The CONFIG_CMD_PCA953X_INFO
1881     define enables an 'info' sub-command which provides summary
1882     information for the given pca953x device.
1883
1884     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1885
1886 commit 7a8979591171676417ab36852d8811a8c46accd8
1887 Author: Peter Tyser <ptyser@xes-inc.com>
1888 Date:   Wed Oct 29 12:39:26 2008 -0500
1889
1890     pci/fsl_pci_init: Enable inbound PCI config cycles
1891
1892     Add fsl_pci_config_unlock() function to enable a
1893     PCI/PCIe interface configured in agent/endpoint mode to
1894     respond to inbound PCI configuration cycles.
1895
1896     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1897
1898 commit 92c78a3bbcb2ce508b4bf1c4a1e0940406a024bb
1899 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
1900 Date:   Wed Dec 17 16:43:18 2008 +0100
1901
1902     avr32: Remove second definition of virt_to_phys()
1903
1904     The second definition introduced by 65e43a1063 conflicts with the
1905     existing one.
1906
1907     Also, convert the existing definition to use phys_addr_t. The volatile
1908     qualifier is still needed due to brain damage elsewhere.
1909
1910     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
1911
1912 commit b616f2b545f73757669b37386f0b37bb61fc6797
1913 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1914 Date:   Mon Sep 8 22:27:18 2008 +0200
1915
1916     MIPS: qemu_mips: update doc to generate and to use qemu flash, ide file
1917
1918     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1919     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
1920
1921 commit 16cdf816779f5b602a9b3b4d2ea4dea05095c35b
1922 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1923 Date:   Tue Dec 16 22:10:31 2008 +0100
1924
1925     MIPS: qemu_mips: update doc to use all disk and boot linux kernel
1926
1927     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1928     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
1929
1930 commit 13095b2f07dacb1f863772266c1789d47a523a8a
1931 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1932 Date:   Tue Dec 16 22:10:30 2008 +0100
1933
1934     MIPS: qemu_mips: move env storage just after u-boot
1935
1936     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1937     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
1938
1939 commit aced78d852d0b009e8aaa1445af8cb40861ee549
1940 Author: Wolfgang Denk <wd@denx.de>
1941 Date:   Tue Dec 16 23:48:27 2008 +0100
1942
1943     Prepare 2009.01-rc1
1944
1945     Signed-off-by: Wolfgang Denk <wd@denx.de>
1946
1947 commit 9e2a79b4c585ad31138fb90b68fd0234d64a8da8
1948 Author: Wolfgang Denk <wd@denx.de>
1949 Date:   Tue Dec 16 23:13:46 2008 +0100
1950
1951     include/configs/at91cap9adk.h: fix typo.
1952
1953     Signed-off-by: Wolfgang Denk <wd@denx.de>
1954
1955 commit 45ca04f2377361593151d2d4da51f8ba4832d233
1956 Author: Wolfgang Denk <wd@denx.de>
1957 Date:   Tue Dec 16 22:32:25 2008 +0100
1958
1959     board/trab/memory.c: Fix compile problems.
1960
1961     Apply changes from commit 44b4dbed to board/trab/memory.c, too.
1962
1963     Actually we'd need a major cleanup here - as it turns out,
1964     board/trab/memory.c is more or less a verbatim copy of
1965     post/drivers/memory.c ... but then, trab is EOL anyway,r
1966     so this is not worth the effort.
1967
1968     Signed-off-by: Wolfgang Denk <wd@denx.de>
1969
1970 commit ff49ea8977b56916edd5b1766d9939010e30b181
1971 Author: Scott Wood <scottwood@freescale.com>
1972 Date:   Tue Dec 16 14:24:16 2008 -0600
1973
1974     NAND: Mark the BBT as scanned prior to calling scan_bbt.
1975
1976     Otherwise, recursion can occur if scan_bbt does not find a bad block
1977     table, and tries to write one, and the attempt to erase the BBT area
1978     causes a bad block check.
1979
1980     Signed-off-by: Scott Wood <scottwood@freescale.com>
1981
1982 commit 584eedab66d0828f2d571a24b10526c4e65f547b
1983 Author: Ilya Yanok <yanok@emcraft.com>
1984 Date:   Thu Dec 11 05:51:57 2008 +0300
1985
1986     jffs2: include <linux/mtd/compat.h> instead of defining own min_t
1987
1988     Include <linux/mtd/compat.h> header for min_t definition instead of
1989     providing our own one. Removes warnings in case of OneNAND support
1990     enabled.
1991
1992     Although I thinks it's a bit silly to include <linux/mtd/compat.h>
1993     just for min_t...
1994
1995     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
1996     Acked-by: Stefan Roese <sr@denx.de>
1997
1998 commit b1ffecec37b57a59c139042267faac458e5324e9
1999 Author: Becky Bruce <beckyb@kernel.crashing.org>
2000 Date:   Wed Dec 3 23:04:37 2008 -0600
2001
2002     powerpc: fix io.h build warning with CONFIG_PHYS_64BIT
2003
2004     Casting a pointer to a phys_addr_t when it's an unsigned long long
2005     on a 32-bit system without first casting to a non-pointer type
2006     generates a compiler warning. Fix this.
2007
2008     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
2009
2010 commit 6cdadcb3f1b6eac4a1c4256acaa1438413f95351
2011 Author: Wolfgang Denk <wd@denx.de>
2012 Date:   Tue Dec 16 16:22:50 2008 +0100
2013
2014     trab: make trab_fkt standalone code independent of libgcc
2015
2016     Use our own local functions in lib_arm/ instead.
2017
2018     Signed-off-by: Wolfgang Denk <wd@denx.de>
2019
2020 commit aa1bcca3d2e22af4dea9f02132f9b56a30378ded
2021 Author: Wolfgang Denk <wd@denx.de>
2022 Date:   Tue Dec 16 14:44:06 2008 +0100
2023
2024     post/Makefile: fix dependency problem with parallel builds
2025
2026     Parallel builds (using "make -jN") would occasionally fail with error
2027     messages like
2028         ppc_4xxFP-objdump: string.o: File format not recognized
2029     or
2030         post/libpost.a(cpu.o): In function `cpu_post_test':
2031         /home/wd/git/u-boot/work/post/lib_ppc/cpu.c:130: undefined reference to `cpu_post_test_string'
2032     or similar. We now make sure to run the 'postdeps" step before
2033     attempting to build the specific POST libraries.
2034
2035     Signed-off-by: Wolfgang Denk <wd@denx.de>
2036
2037 commit 4a0f7538c5c0805fd9a791967bbabacc41deadd9
2038 Author: Wolfgang Denk <wd@denx.de>
2039 Date:   Tue Dec 16 14:41:02 2008 +0100
2040
2041     Makefile: fix dependency problem with parallel builds
2042
2043     Parallel builds (using "make -jN") would occasionally fail with error
2044     messages like
2045         include/autoconf.mk:212: *** missing separator.  Stop.
2046     Line numbers and affected boards were changing. Obviously some
2047     Makefiles included autoconf.mk while it was still being written to.
2048     As a fix, we now write to a temporary file first and then rename it,
2049     so that it is really ready to use as soon as it appears.
2050
2051     Signed-off-by: Wolfgang Denk <wd@denx.de>
2052
2053 commit 455ae7e87f67c44e6aea68865c83acadd3fcd36c
2054 Author: Wolfgang Denk <wd@denx.de>
2055 Date:   Tue Dec 16 01:02:17 2008 +0100
2056
2057     Coding style cleanup, update CHANGELOG.
2058
2059     Signed-off-by: Wolfgang Denk <wd@denx.de>
2060
2061 commit 84bc72d90c505fec3ef4b693995407a0bd4064e5
2062 Author: Mike Frysinger <vapier@gentoo.org>
2063 Date:   Thu Dec 11 18:39:08 2008 -0500
2064
2065     spi/stmicro: fix debug() display of cmd
2066
2067     The stmicro_wait_ready() func tries to show the actual opcode that was sent
2068     to the device, but instead it displays the array pointer.  Fix it to pull
2069     out the opcode from the start of the array.
2070
2071     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2072
2073 commit 5b3375ac8c36c29c87abb132fede0509eb21e5c9
2074 Author: Mike Frysinger <vapier@gentoo.org>
2075 Date:   Thu Dec 11 06:23:37 2008 -0500
2076
2077     env_sf: support embedded environments
2078
2079     If both CONFIG_ENV_SECT_SIZE and CONFIG_ENV_SIZE are defined, and the sect
2080     size is larger than the env size, then it means the env is embedded in a
2081     block.  So we have to save/restore the part of the sector which is not the
2082     environment.  Previously, saving the environment in SPI flash in this
2083     setup would probably brick the board as the rest of the sector tends to
2084     contain actual U-Boot data/code.
2085
2086     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2087     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
2088
2089 commit ecf5f077c8e77454f532eaac3e3afb7cfc48c62d
2090 Author: Timur Tabi <timur@freescale.com>
2091 Date:   Wed Dec 3 11:28:30 2008 -0600
2092
2093     i2c: merge all i2c_reg_read() and i2c_reg_write() into inline functions
2094
2095     All implementations of the functions i2c_reg_read() and
2096     i2c_reg_write() are identical. We can save space and simplify the
2097     code by converting these functions into inlines and putting them in
2098     i2c.h.
2099
2100     Signed-off-by: Timur Tabi <timur@freescale.com>
2101     Acked-By: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2102
2103 commit e39cd81c44740d7355d277ed3d38536cbe1e003d
2104 Author: Dave Liu <daveliu@freescale.com>
2105 Date:   Fri Dec 5 15:36:14 2008 +0800
2106
2107     lib_ppc: rework the flush_cache
2108
2109     - It is possible to miss flush/invalidate the last
2110       cache line, we fix it at here.
2111     - add the volatile and memory clobber.
2112
2113     They are pointed by Scott Wood.
2114
2115     Signed-off-by: Dave Liu <daveliu@freescale.com>
2116
2117 commit 63240ba88cd6a220057a0f28e5bf97f5b17ac84b
2118 Author: Kumar Gala <galak@kernel.crashing.org>
2119 Date:   Sat Dec 13 17:20:28 2008 -0600
2120
2121     Introduce addr_map library
2122
2123     Add a library that helps in translating between virtual and physical
2124     addresses.  This library can be useful as a simple means to implement
2125     map_physmem() and virt_to_phys() for platforms that need functionality
2126     beyond the simple 1:1 mapping.
2127
2128     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2129
2130 commit 65e43a10631537dcb92c302d36301a12308216c3
2131 Author: Kumar Gala <galak@kernel.crashing.org>
2132 Date:   Sat Dec 13 17:20:27 2008 -0600
2133
2134     Introduce virt_to_phys()
2135
2136     virt_to_phys() returns the physical address given a virtual. In most
2137     cases this will be just the input value as the vast majority of
2138     systems run in a 1:1 mode.
2139
2140     However in systems that are not running this way it should report the
2141     physical address or ~0 if no mapping exists for the given virtual
2142     address.
2143
2144     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2145
2146 commit 45845301af3de8675c1f7bbc815c6de35452605a
2147 Author: Yuri Tikhonov <yur@emcraft.com>
2148 Date:   Sun Dec 7 22:12:50 2008 +0100
2149
2150     POST Make: fix the sub-dir dependencies missing.
2151
2152     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
2153
2154 commit 22525779cb51f1bbe4e96fea7b778de1935a5a69
2155 Author: Martin Michlmayr <tbm@cyrius.com>
2156 Date:   Wed Aug 6 14:44:05 2008 +0300
2157
2158     Fix a typo in fw_env.config
2159
2160     Reported-by: Martin Michlmayr <tbm@cyrius.com>
2161     Signed-off-by: Wolfgang Denk <wd@denx.de>
2162
2163 commit ba490b7761c62b549c222a9723e532dc801a3899
2164 Author: Peter Tyser <ptyser@xes-inc.com>
2165 Date:   Mon Dec 1 16:22:45 2008 -0600
2166
2167     Remove unused CONFIG_ADDR_STREAMING defines
2168
2169     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2170
2171 commit d16da93430520d3e46c1ab52eedacf36ab7a2311
2172 Author: Peter Tyser <ptyser@xes-inc.com>
2173 Date:   Mon Nov 24 11:54:47 2008 -0600
2174
2175     cmd_mem: Remove unused variable
2176
2177     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2178
2179 commit 3aed3aa2c128ce9fb39ca3f4e9385a7499e93dbf
2180 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2181 Date:   Sun Dec 14 10:29:39 2008 +0100
2182
2183     Fix new found CFG_
2184
2185     Also fix some minor typos.
2186
2187     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2188     Signed-off-by: Wolfgang Denk <wd@denx.de>
2189
2190 commit 0e0c862efe7279e9609db74d758cd1b84c6c7209
2191 Author: Sergei Poselenov <sposelenov@emcraft.com>
2192 Date:   Fri Sep 19 12:07:34 2008 +0200
2193
2194     Remove compiler warning: target CPU does not support interworking
2195
2196     This warning is issued by modern ARM-EABI GCC on non-thumb targets.
2197
2198     Signed-off-by: Vladimir Panfilov <pvr@emcraft.com>
2199     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
2200
2201 commit cd6734510a9ff0f41c4a73567d4080ea0033d2c1
2202 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2203 Date:   Mon Nov 24 13:33:51 2008 +0100
2204
2205     Fix FIT and FDT support to have CONFIG_OF_LIBFDT and CONFIG_FIT independent
2206
2207     FDT support is used for both FIT style images and for architectures
2208     that can pass a fdt blob to an OS (ppc, m68k, sparc).
2209
2210     For other architectures and boards which do not pass a fdt blob to an
2211     OS but want to use the new uImage format, we just need FIT support.
2212
2213     Now we can have the 4 following configurations :
2214
2215     1) FIT only             CONFIG_FIT
2216     2) fdt blob only        CONFIG_OF_LIBFDT
2217     3) both                 CONFIG_OF_LIBFDT & CONFIG_FIT
2218     4) none                 none
2219
2220     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2221
2222 commit 19ef4f7a6ef3b725aa9fe4b4f5fb676a84160172
2223 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2224 Date:   Wed Dec 10 15:13:32 2008 +0100
2225
2226     ppc4xx: Disable EEPROM write access on PMC440 boards
2227
2228     This patch disables EEPROM wrtie access by default on PMC440 board.
2229
2230     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2231
2232 commit 5b67a1439a73ba6c34007d9ff60a2c6aa90265df
2233 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2234 Date:   Wed Dec 10 15:12:56 2008 +0100
2235
2236     ppc4xx: Fix Ethernet PHY LED configuration on PMC440 boards
2237
2238     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2239
2240 commit 71fa0714fe5134bc8718c38d5261d267e88582ba
2241 Author: Stefan Roese <sr@denx.de>
2242 Date:   Tue Nov 18 16:36:12 2008 +0100
2243
2244     MIPS: Flush data cache upon relocation
2245
2246     This patch now adds a flush to the data cache upon relocation. The
2247     current implementation is missing this. Only a comment states that it
2248     should be done. So let's really do it now.
2249
2250     Signed-off-by: Stefan Roese <sr@denx.de>
2251     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
2252
2253 commit 44174343688dba32571a34550dba08971c65fef1
2254 Author: Stefan Roese <sr@denx.de>
2255 Date:   Tue Nov 18 16:36:22 2008 +0100
2256
2257     MIPS: Add CONFIG_SKIP_LOWLEVEL_INIT
2258
2259     This patch adds the CONFIG_SKIP_LOWLEVEL_INIT option to start.S. This
2260     enables support for boards where the lowlevel initialization is
2261     already done when U-Boot runs (e.g. via OnChip ROM).
2262
2263     This will be used in the upcoming VCTH board support.
2264
2265     Signed-off-by: Stefan Roese <sr@denx.de>
2266     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
2267
2268 commit db08ecaa6eb8176904b3bae103a85ee8f735dc40
2269 Author: Stefan Roese <sr@denx.de>
2270 Date:   Wed Nov 12 13:18:02 2008 +0100
2271
2272     MIPS: Add board_early_init_f() to init_sequence
2273
2274     This patch adds the board_early_init_f() call to the MIPS init
2275     sequence. A weak dummy implementation is also added which can be
2276     overridden by a board specific version.
2277
2278     This will be used by the upcoming VCTH board support.
2279
2280     Signed-off-by: Stefan Roese <sr@denx.de>
2281     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
2282
2283 commit 9d23fc584c4b7b8bb9ecbee48920b1b04b08fa1b
2284 Author: Stefan Roese <sr@denx.de>
2285 Date:   Wed Nov 12 13:18:19 2008 +0100
2286
2287     MIPS: Add onenand_init() to board.c and move nand_init()
2288
2289     This patch adds a call to onenand_init() for OneNAND support and moves
2290     the nand_init() call to an earlier place, so that the environment can
2291     be used from NAND and OneNAND.
2292
2293     Signed-off-by: Stefan Roese <sr@denx.de>
2294     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
2295
2296 commit d8bbc51c7ba9b737a20984333d19fe28a3526431
2297 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2298 Date:   Tue Dec 9 11:32:46 2008 +0900
2299
2300     sh: Update sh2/sh2a timer
2301
2302     Renesas SH2/SH2A timer broken.
2303     This patch fix timer function.
2304
2305     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2306     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2307
2308 commit a319f1496210117b73198e3d889ffffaf6825d00
2309 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2310 Date:   Fri Dec 5 07:27:37 2008 +0100
2311
2312     sh: r2dplus fix register access
2313
2314     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2315     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2316
2317 commit 4d4a96055f6917335a89dbdf2e5556fa5ac329f6
2318 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2319 Date:   Tue Dec 2 07:40:03 2008 +0100
2320
2321     sh: r2dplus/lowlevel_init: coding style fix
2322
2323     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2324     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2325
2326 commit c54b9a42d8f5ab5b2a039b3a2e6fde8b427745e5
2327 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2328 Date:   Tue Nov 25 11:05:19 2008 +0900
2329
2330     sh: Changed value of CACHE_OC_NUM_ENTRIES and CACHE_OC_WAY_SHIFT
2331
2332     SH4 is different a value of CACHE_OC_NUM_ENTRIES and
2333     CACHE_OC_WAY_SHIFT every CPU.
2334     This patch corrects these values.
2335
2336     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2337     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2338
2339 commit e9d5f35497885b3c65d494d09a525d443dcccd3b
2340 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2341 Date:   Thu Nov 20 16:44:42 2008 +0900
2342
2343     sh: Update sh timer function
2344
2345     Change to write/readX function and fix timer problem.
2346
2347     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2348     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2349
2350 commit b81786cff476c41e332eaeb679158f6527cd67d4
2351 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2352 Date:   Tue Nov 4 11:58:58 2008 +0900
2353
2354     sh: Migo-R: Update BSC value
2355
2356     A value of BSC CS4 was wrong, Fixed it.
2357
2358     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2359     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2360
2361 commit 5783758fd260a02f44566ad8f29f899565cd0403
2362 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2363 Date:   Mon Nov 17 16:52:09 2008 +0900
2364
2365     sh: Update ms7722se board config
2366
2367     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2368     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2369
2370 commit 15e2697c9f7fb2ba672a1a70f07cd6d9d4e92b51
2371 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2372 Date:   Mon Nov 17 16:53:09 2008 +0900
2373
2374     sh: Update SuperH serial driver
2375
2376     The address of SCFSR register is wrong at SH7720/SH7721.
2377     This patch fix this.
2378
2379     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2380     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2381
2382 commit 9a1d3557dcd47365c12eeab584b822e57d994352
2383 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2384 Date:   Tue Nov 11 22:20:15 2008 +0100
2385
2386     sh: fix rsk7203 and MigoR out of tree build
2387
2388     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2389     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2390
2391 commit 1951f847f0a851853871b613ad7cf21a5242226c
2392 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2393 Date:   Wed Dec 10 14:41:25 2008 +0100
2394
2395     ppc4xx: Update TEXT_BASE for CPCI405 boards
2396
2397     This patch fixes building U-Boot for CPCI405 boards.
2398
2399     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2400     Signed-off-by: Stefan Roese <sr@denx.de>
2401
2402 commit 8c92af7b2fbd60ae87379477f93c7ec9441b7452
2403 Author: Stefan Roese <sr@denx.de>
2404 Date:   Tue Dec 9 20:08:01 2008 +0100
2405
2406     ppc4xx: Remove some features from ALPR to fit into 256k again
2407
2408     Signed-off-by: Stefan Roese <sr@denx.de>
2409
2410 commit 3b089e4f889a2902449d55e081c886ae607cae89
2411 Author: Stefan Roese <sr@denx.de>
2412 Date:   Wed Dec 10 10:32:59 2008 +0100
2413
2414     UBI: Set ubi_dev.type back to DEV_TYPE_NONE upon failing initialization
2415
2416     With this patch we set the type back to NONE upon failing UBI partition
2417     initialization. Otherwise further calls to the UBI subsystem would try
2418     to really access the non-existing UBI partition.
2419
2420     Thanks to Michael Lawnick for pointing this out.
2421
2422     Signed-off-by: Stefan Roese <sr@denx.de>
2423
2424 commit 817329351639a8895cd9b87b33aeff043f3d5a44
2425 Author: Stefan Roese <sr@denx.de>
2426 Date:   Wed Dec 10 10:28:33 2008 +0100
2427
2428     UBI: Return -ENOMEM upon failing malloc
2429
2430     Return with correct error code (-ENOMEM) from ubi_attach_mtd_dev() upon
2431     failing malloc().
2432
2433     Signed-off-by: Stefan Roese <sr@denx.de>
2434
2435 commit 2145188bea2df8f2b47a87ec3071b55027e8d0ae
2436 Author: Ben Warren <biggerbadderben@gmail.com>
2437 Date:   Tue Dec 9 23:34:15 2008 -0800
2438
2439     Fix compile error in building MBX860T.
2440
2441     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2442
2443 commit 8fab49ea911fe925392fa5afcc9bc7373a3d0cee
2444 Author: Michal Simek <monstr@monstr.eu>
2445 Date:   Tue Nov 25 11:42:20 2008 +0100
2446
2447     microblaze: Remove XUPV2P board
2448
2449     ---
2450
2451     Microblaze platforms use generic settings and to have
2452     many platforms is confusing that's why I decided to remove this
2453     platform from U-BOOT. ml401 tree is sufficient for covering
2454     all Microblaze platforms.
2455
2456     This change will go through microblaze custodian tree.
2457
2458 commit 99ba6f353582720defff6e6e6761dc455a207d31
2459 Author: Michal Simek <monstr@monstr.eu>
2460 Date:   Mon Nov 24 18:25:41 2008 +0100
2461
2462     microblaze: Remove CONFIG_LIBFDT due to error in common files
2463
2464 commit e7d591e823a991513833af7030468409e25a3b13
2465 Author: Michal Simek <monstr@monstr.eu>
2466 Date:   Mon Nov 24 11:43:00 2008 +0100
2467
2468     microblaze: Fix ml401 uart16550 setting
2469
2470     Signed-off-by: Michal Simek <monstr@monstr.eu>
2471
2472 commit c85ff0553a8cfbcca51c15b947e1ed55d3810a39
2473 Author: Michal Simek <monstr@monstr.eu>
2474 Date:   Mon Nov 24 11:38:22 2008 +0100
2475
2476     microblaze: Set up relocation is done
2477
2478 commit bcb6dd9187d4b23c748704767bd12d20c829e996
2479 Author: Mike Frysinger <vapier@gentoo.org>
2480 Date:   Tue Dec 9 23:20:31 2008 -0500
2481
2482     tools/netconsole: new script for working with netconsole over UDP
2483
2484     While the doc/README.NetConsole does have a snippet for people to
2485     create their own netcat script, it's a lot easier to make a simple
2486     dedicated script and tell people to use it.
2487
2488     Also spruce it up a bit to make it user friendly.
2489
2490     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2491
2492 commit 8c5170a7d088601d5f30d85093388dab1f1e8ec0
2493 Author: Sonic Zhang <Sonic.Zhang@analog.com>
2494 Date:   Tue Dec 9 23:20:18 2008 -0500
2495
2496     fs/fat: handle FAT on SATA
2497
2498     The FAT file system driver should also handle FAT on SATA devices.
2499
2500     Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
2501     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2502
2503 commit 97a24a78ee6f34b89b821cb70eda1cf34aa11d97
2504 Author: Jerry Van Baren <gvb.uboot@gmail.com>
2505 Date:   Mon Nov 24 08:15:02 2008 -0500
2506
2507     libfdt: Fix redefined uintptr_t warning for USE_HOSTCC
2508
2509     Compiling U-Boot in an old OS environment (RedHat-7.3  :-)  gives the
2510     following warnings from FDT:
2511
2512     include/libfdt_env.h:50: warning: redefinition of 'uintptr_t'
2513     /usr/include/stdint.h:129: warning: 'uintptr_t' previously declared here
2514
2515     Fix: Protect the definition of uintptr_t when compiling on the host
2516     system.
2517
2518     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
2519
2520 commit 1fc2b165c51d6f40c8d505f1b3eaefdb6599b17b
2521 Author: Graeme Russ <graeme.russ@gmail.com>
2522 Date:   Sat Nov 22 08:43:29 2008 +1100
2523
2524     Moved sc520 PCI definitions to stand-alone file
2525
2526     Signed Off By: Graeme Russ <graeme.russ@gmail.com>
2527
2528 commit 1f5070c0c18fa5684bfce09c8abdf10c04ed48fa
2529 Author: Graeme Russ <graeme.russ@gmail.com>
2530 Date:   Sat Nov 22 08:43:21 2008 +1100
2531
2532     Fixed path to sc520 SSI include file
2533
2534     Signed Off By: Graeme Russ <graeme.russ@gmail.com>
2535
2536 commit d4f70da544c33db3e4fce6473dea4ecca4322545
2537 Author: Graeme Russ <graeme.russ@gmail.com>
2538 Date:   Fri Nov 21 06:28:05 2008 +1100
2539
2540     Fixed build error due to #define of _LINUX_STRING_H_ in 82559_eeprom.c
2541
2542     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
2543
2544 commit c034075a713b60e654c64e88e87da29440f31bb4
2545 Author: Stefan Roese <sr@denx.de>
2546 Date:   Wed Nov 12 13:30:10 2008 +0100
2547
2548     serial: Add vcth UART driver
2549
2550     This patch adds the UART driver for the upcoming VCTH board support.
2551
2552     Signed-off-by: Stefan Roese <sr@denx.de>
2553
2554 commit 142a80ffc3b537a9c45acd2444a42a77f147c602
2555 Author: Ilya Yanok <yanok@emcraft.com>
2556 Date:   Thu Nov 13 19:49:36 2008 +0300
2557
2558     jffs2: cache data_crc results
2559
2560     As we moved data_crc() invocation from jffs2_1pass_build_lists() to
2561     jffs2_1pass_read_inode() data_crc is going to be calculated on each
2562     inode access. This patch adds caching of data_crc() results. There
2563     is no significant improvement in speed (because of flash access
2564     caching added in previous patch I think, crc in RAM is really fast)
2565     but this patch impacts memory usage -- every b_node structure uses
2566     12 bytes instead of 8.
2567
2568     Signed-off-by: Alexey Neyman <avn@emcraft.com>
2569     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
2570
2571 commit 9b7076229ec6a958bd835ab70745f7676297ce82
2572 Author: Ilya Yanok <yanok@emcraft.com>
2573 Date:   Thu Nov 13 19:49:35 2008 +0300
2574
2575     jffs2: summary support
2576
2577     This patch adds support for reading fs information from summary
2578     node instead of scanning full eraseblock.
2579
2580     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
2581
2582 commit 70741004dc28946cd82c7af6789c4ddb3fc94526
2583 Author: Ilya Yanok <yanok@emcraft.com>
2584 Date:   Thu Nov 13 19:49:34 2008 +0300
2585
2586     jffs2: add buffer to cache flash accesses
2587
2588     With this patch JFFS2 code allocates memory buffer of max_totlen size
2589     (size of the largest node, calculated during scan time) and uses it to
2590     store entire node. Speeds up loading. If malloc fails we use old ways
2591     to do things.
2592
2593     Signed-off-by: Alexey Neyman <avn@emcraft.com>
2594     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
2595
2596 commit 8a36d31f72411144ac0412ee7e1880e801acd754
2597 Author: Ilya Yanok <yanok@emcraft.com>
2598 Date:   Thu Nov 13 19:49:33 2008 +0300
2599
2600     jffs2: rewrite jffs2 scanning code based on Linux one
2601
2602     Rewrites jffs2_1pass_build_lists() function in style of Linux's
2603     jffs2_scan_medium() and jffs2_scan_eraseblock().
2604     This includes:
2605      - Caching flash acceses
2606      - Smart dealing with free space
2607
2608     Signed-off-by: Alexey Neyman <avn@emcraft.com>
2609     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
2610
2611 commit e0b5532579eda8b4629f1b4f6e49c3cc60f52237
2612 Author: Ilya Yanok <yanok@emcraft.com>
2613 Date:   Thu Nov 13 19:49:32 2008 +0300
2614
2615     jffs2: add sector_size field to part_info structure
2616
2617     This patch adds sector_size field to part_info structure (used
2618     by new JFFS2 code).
2619
2620     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
2621
2622 commit f73846956778a7dfee83403ef9747aff77198848
2623 Author: Ilya Yanok <yanok@emcraft.com>
2624 Date:   Thu Nov 13 19:49:31 2008 +0300
2625
2626     jffs2: fix searching for latest version in jffs2_1pass_list_inodes()
2627
2628     We need to update i_version inside cycle to find really latest version
2629     inside jffs2_1pass_list_inodes(). With that fixed we can use isize inside
2630     dump_inode() instead of calling expensive jffs2_1pass_read_inode().
2631
2632     Signed-off-by: Alexey Neyman <avn@emcraft.com>
2633     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
2634
2635 commit 1113cb764b3da256ef8a1f9539f4efbe221ff3c4
2636 Author: Wolfgang Denk <wd@denx.de>
2637 Date:   Tue Dec 9 23:13:51 2008 +0100
2638
2639     evb64260: fix "cast to pointer from integer of different size" warnings
2640
2641     Signed-off-by: Wolfgang Denk <wd@denx.de>
2642
2643 commit d2776827315c3d469b8cb4cec14d58877798daa2
2644 Author: Stefan Althoefer <stefan.althoefer@web.de>
2645 Date:   Sun Dec 7 19:39:11 2008 +0100
2646
2647     USB: descriptor handling
2648
2649     Hi,
2650
2651     I found a bug when working with the u-boot USB subsystem on IXP425 processor
2652     (big endian Xscale aka ARMv5).
2653     I recognized that the second usb_endpoint_descriptor of the attached memory
2654     stick was corrupted.
2655
2656     The reason for this are the packed structures below (either u-boot and
2657     u-boot-usb):
2658
2659     --------------
2660     /* Endpoint descriptor */
2661     struct usb_endpoint_descriptor {
2662         unsigned char  bLength;
2663         unsigned char  bDescriptorType;
2664         unsigned char  bEndpointAddress;
2665         unsigned char  bmAttributes;
2666         unsigned short wMaxPacketSize;
2667         unsigned char  bInterval;
2668         unsigned char  bRefresh;
2669         unsigned char  bSynchAddress;
2670
2671     } __attribute__ ((packed));
2672     /* Interface descriptor */
2673     struct usb_interface_descriptor {
2674         unsigned char  bLength;
2675         unsigned char  bDescriptorType;
2676         unsigned char  bInterfaceNumber;
2677         unsigned char  bAlternateSetting;
2678         unsigned char  bNumEndpoints;
2679         unsigned char  bInterfaceClass;
2680         unsigned char  bInterfaceSubClass;
2681         unsigned char  bInterfaceProtocol;
2682         unsigned char  iInterface;
2683
2684         unsigned char  no_of_ep;
2685         unsigned char  num_altsetting;
2686         unsigned char  act_altsetting;
2687         struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
2688     } __attribute__ ((packed));
2689     ------------
2690
2691     As usb_endpoint_descriptor is only 7byte in length, the start of all
2692     odd ep_desc[] structures is not word aligned. This makes wMaxPacketSize
2693     of these structures also not word aligned.
2694
2695     ARMv5 Architecture however does not support non-aligned multibyte
2696     data type (see A2.8 of ARM Architecture Reference Manual).
2697
2698     Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
2699     Signed-off-by: Remy Böhmer <linux@bohmer.net>
2700
2701 commit 4c253fdb2a175ea3472c38a1455a16faa58e81f0
2702 Author: Kumar Gala <galak@kernel.crashing.org>
2703 Date:   Tue Dec 9 10:27:33 2008 -0600
2704
2705     drivers/fsl_pci_init: Fix compile warning
2706
2707     fsl_pci_init.c: In function 'fsl_pci_setup_inbound_windows':
2708     fsl_pci_init.c:122: warning: comparison is always true due to limited range of data type
2709
2710     The check only makes sense if we are CONFIG_PHYS_64BIT
2711
2712     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2713
2714 commit dedacc18a8c2b3951581eb721fa055a4e0ac4845
2715 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2716 Date:   Sun Dec 7 09:45:35 2008 +0100
2717
2718     usbtty/omap: update to current API
2719
2720     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2721     Signed-off-by: Remy Böhmer <linux@bohmer.net>
2722
2723 commit ee2e9ba917a62cc2e3a484bb79c8da0e01cb93ed
2724 Author: Anatolij Gustschin <agust@denx.de>
2725 Date:   Tue Dec 9 17:52:05 2008 +0100
2726
2727     video: fix FADS823 and RRvision compiling issues
2728
2729     Since commit 561858ee building for FADS823 and RRvision
2730     doesn't work. Let's include version.h and timestamp.h
2731     unconditionally to fix the problem.
2732
2733     Signed-off-by: Anatolij Gustschin <agust@denx.de>
2734
2735 commit 2d2e05727fe4013f807ffa814dff0e75259a1db4
2736 Author: Stefan Roese <sr@denx.de>
2737 Date:   Tue Dec 2 10:53:47 2008 +0100
2738
2739     UBI: Fix size parsing in "ubi create"
2740
2741     Signed-off-by: Stefan Roese <sr@denx.de>
2742
2743 commit 2ee951ba2ac9874d2a93d52e7a187d3184be937e
2744 Author: Stefan Roese <sr@denx.de>
2745 Date:   Thu Nov 27 14:07:09 2008 +0100
2746
2747     UBI: Enable re-initializing of the "ubi part" command
2748
2749     With this patch now, the user can call "ubi part" multiple times to
2750     re-connect the UBI device to another MTD partition.
2751
2752     Signed-off-by: Stefan Roese <sr@denx.de>
2753
2754 commit 9def12cae33d2d3ea2dd56b197fd3dfb3ad60bf4
2755 Author: Stefan Roese <sr@denx.de>
2756 Date:   Thu Nov 27 14:05:15 2008 +0100
2757
2758     MTD: Fix problem based on non-working relocation (list head mtd_partitions)
2759
2760     Don't use LIST_HEAD() but initialize the struct via INIT_LIST_HEAD() upon
2761     first call of add_mtd_partitions(). Otherwise this won't work on platforms
2762     where the relocation is broken (like MIPS or PPC).
2763
2764     Signed-off-by: Stefan Roese <sr@denx.de>
2765
2766 commit 5e3ab68e9acf9edf304b8aa32ad7e005483a2c47
2767 Author: Trent Piepho <tpiepho@freescale.com>
2768 Date:   Wed Nov 12 17:29:48 2008 -0800
2769
2770     Section name should be ".data", not "data"
2771
2772     Signed-off-by: Trent Piepho <tpiepho@freescale.com>
2773     Signed-off-by: Wolfgang Denk <wd@denx.de>
2774
2775 commit 7fa6a2f3b66579dea8bc1a9177646e1141731b15
2776 Author: Wolfgang Denk <wd@denx.de>
2777 Date:   Tue Dec 9 00:39:08 2008 +0100
2778
2779     MAKEALL: Automatically use parallel builds
2780
2781     Add logic to the MAKEALL script to determine the number of CPU cores
2782     on the system, and run a parallel build if there is more than one.
2783     Usually this significantrly accelerates builds.
2784
2785     Allow to manually adjust the number of parallel make jobs by using
2786     the "BUILD_NCPUS" environment variable.
2787
2788     Signed-off-by: Wolfgang Denk <wd@denx.de>
2789
2790 commit 268405fa7c44156c5192a70779920c70906af8d6
2791 Author: Wolfgang Denk <wd@denx.de>
2792 Date:   Tue Dec 9 00:24:30 2008 +0100
2793
2794     vxworks.h: Fix build problem introduced by commits 29a4c24d/e9084b23
2795
2796     Signed-off-by: Wolfgang Denk <wd@denx.de>
2797
2798 commit 153176a9414120ca1736f3cc4951623d6e14e6af
2799 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2800 Date:   Tue Nov 11 06:08:59 2008 +0100
2801
2802     avr32/bootm: remove unused variable 'ret'
2803
2804     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2805     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
2806
2807 commit 434c51a5e62f608a2a78ed5398ac43a1c77cc183
2808 Author: Peter Tyser <ptyser@xes-inc.com>
2809 Date:   Wed Nov 12 13:06:48 2008 -0600
2810
2811     Remove unneeded CONFIG_SHELL references
2812
2813     Make should be using the bash shell by default which makes
2814     CONFIG_SHELL unnecessary
2815
2816     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2817
2818 commit cf7a7b99794bac936899819b95539be1dbd71708
2819 Author: Peter Tyser <ptyser@xes-inc.com>
2820 Date:   Wed Nov 12 12:33:20 2008 -0600
2821
2822     Use bash for default GNU Make shell application
2823
2824     Some Make script commands rely on bash-specific features like brace
2825     expansion, so default to bash for the SHELL variable with a fallback
2826     to the standard sh shell
2827
2828     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2829
2830 commit 4b530018764934ad5689196e9aa5714a6f4d1a6c
2831 Author: Heiko Schocher <hs@denx.de>
2832 Date:   Wed Nov 12 09:50:45 2008 +0100
2833
2834     jffs2: rename devices_init () in common/jffs2.c
2835
2836     rename devices_init () in common/jffs2.c to
2837     jffs2_devices_init (), because there is also a
2838     devices_init () in common/devices.c.
2839
2840     Signed-off-by: Heiko Schocher <hs@denx.de>
2841
2842 commit af5eb847a10f1037590001355d88bab3fe7be48b
2843 Author: Daniel Hellstrom <daniel@gaisler.com>
2844 Date:   Mon Nov 10 12:46:20 2008 +0000
2845
2846     SPARC: Fixed compiler error introduced by commit c160a9544743
2847
2848     This patch fixes a build error for the SPARC platform. It was
2849     introduced by commit c160a9544743e80e8889edb2275538e7764ce334.
2850
2851     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
2852
2853 commit 4c60259899aa00f59db0d936b8807f9a26411c0f
2854 Author: Gary Jennejohn <garyj@denx.de>
2855 Date:   Sun Nov 9 12:50:59 2008 +0100
2856
2857     mgsuvd add the board-specific part of the HDLC driver
2858
2859     Signed-off-by: Gary Jennejohn <garyj@denx.de>
2860
2861 commit 534a4359666af48bd69a3743d8a8c2bdb1d3ec70
2862 Author: Gary Jennejohn <garyj@denx.de>
2863 Date:   Sun Nov 9 12:45:03 2008 +0100
2864
2865     mgcoge add the board-specific part of the HDLC driver
2866
2867     Signed-off-by: Gary Jennejohn <garyj@denx.de>
2868
2869 commit 135f5534538bb8ea4f38a7030da12187d22ef7e0
2870 Author: Gary Jennejohn <garyj@denx.de>
2871 Date:   Sun Nov 9 12:36:15 2008 +0100
2872
2873     keymile add the common parts of the HDLC driver
2874
2875     This implements the ICN protocol used across the backplane and is
2876     needed by all the keymile boards.
2877
2878     Signed-off-by: Gary Jennejohn <garyj@denx.de>
2879
2880 commit 1cb82a9207a550557399eabc7fe47f21bbd9ddf8
2881 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2882 Date:   Fri Nov 7 22:46:22 2008 +0100
2883
2884     drivers/bios_emulator: Move conditional compilation to Makefile
2885
2886     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2887
2888 commit bcdf1d2cf6b24fb905fd7da80da4b3c65a7995b5
2889 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
2890 Date:   Thu Nov 6 14:01:51 2008 -0500
2891
2892     common/cmd_ide.c: Corrected endian order printing for compact flash serial number.
2893
2894     Corrected endian order printing for compact flash serial number.
2895
2896     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
2897
2898 commit 16a28ef219c27423a1ef502f19070c4d375079b8
2899 Author: Gary Jennejohn <garyj@denx.de>
2900 Date:   Thu Nov 6 15:04:23 2008 +0100
2901
2902     IOMUX: Add console multiplexing support.
2903
2904     Modifications to support console multiplexing.  This is controlled using
2905     CONFIG_SYS_CONSOLE_MUX in the board configuration file.
2906
2907     This allows a user to specify multiple console devices in the environment
2908     with a command like this: setenv stdin serial,nc.  As a result, the user can
2909     enter text on both the serial and netconsole interfaces.
2910
2911     All devices - stdin, stdout and stderr - can be set in this manner.
2912
2913     1) common/iomux.c and include/iomux.h contain the environment setting
2914     implementation.
2915     2) doc/README.iomux contains a somewhat more detailed description.
2916     3) The implementation in (1) is called from common/cmd_nvedit.c to
2917     handle setenv and from common/console.c to handle initialization of
2918     input/output devices at boot time.
2919     4) common/console.c also contains the code needed to poll multiple console
2920     devices for input and send output to all devices registered for output.
2921     5) include/common.h includes iomux.h and common/Makefile generates iomux.o
2922     when CONFIG_SYS_CONSOLE_MUX is set.
2923
2924     Signed-off-by: Gary Jennejohn <garyj@denx.de>
2925
2926 commit 774ce72026f74ac9641bcbbc588b20f2e13f7ab8
2927 Author: Mike Frysinger <vapier@gentoo.org>
2928 Date:   Tue Nov 4 16:03:46 2008 -0500
2929
2930     strings: use puts() rather than printf()
2931
2932     When running `strings` on really long strings, the stack tends to get
2933     smashed due to printf().  Switch to puts() instead since we're only passing
2934     the data through.
2935
2936     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2937
2938 commit b03150b52e3c491a86a3cc0945274f0e8f9872e7
2939 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
2940 Date:   Mon Nov 3 22:16:18 2008 +0100
2941
2942     Use new CONFIG_SYS_VXWORKS parameters for Netstal boards
2943
2944     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
2945
2946 commit 29a4c24de99d8cb4ac32991c04cab87ed94ca1f9
2947 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
2948 Date:   Mon Nov 3 22:15:34 2008 +0100
2949
2950     cmd_elf.c: Cleanup bootvx and handle new CONFIG_SYS_VXWORKS parameters
2951
2952     - fix size too small by one in sprintf
2953     - changed old (pre 2004) device name ibmEmac to emac
2954     - boot device may be overriden in board config
2955     - servername may be defined in board config
2956     - additional parameters may be defined in board config
2957     - fixed some line wrappings
2958     - replaced  redundant MAX define by max
2959
2960     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
2961
2962 commit e9084b23d16102f44ace24379a1c0c352497ef80
2963 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
2964 Date:   Mon Nov 3 22:14:36 2008 +0100
2965
2966     Add vxworks.h to handle CONFIG_SYS_VXWORKS parameters
2967
2968     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
2969
2970 commit 0b2f4ecad473d785959c7976f20d2a00bd0ee01f
2971 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
2972 Date:   Mon Nov 3 22:13:47 2008 +0100
2973
2974     README: Document CONFIG_SYS parameters for vxworks
2975
2976     Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
2977
2978 commit ace514837cac656e29c37a19569cb8ea83071126
2979 Author: Peter Tyser <ptyser@xes-inc.com>
2980 Date:   Fri Oct 31 11:12:38 2008 -0500
2981
2982     lcd: Let the board code show board-specific info cleanup
2983
2984     remove unneeded version.h from lcd.c
2985
2986     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2987     Signed-off-by: Wolfgang Denk <wd@denx.de>
2988
2989 commit 561858ee7d0274c3e89dc98d4d0698cb6fcf6fd9
2990 Author: Peter Tyser <ptyser@xes-inc.com>
2991 Date:   Mon Nov 3 09:30:59 2008 -0600
2992
2993     Update U-Boot's build timestamp on every compile
2994
2995     Use the GNU 'date' command to auto-generate a new U-Boot
2996     timestamp on every compile.
2997
2998     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2999
3000 commit 83ad179e2f0f625b88adb8ef5696709e46fb9077
3001 Author: Remy Bohmer <linux@bohmer.net>
3002 Date:   Thu Dec 4 22:25:57 2008 +0100
3003
3004     Remove redundant armv4 flag from arm926ejs compile flags
3005
3006     Currently the arm926ejs tree has the armv4 option set during compilation.
3007     This flag does not belong here because a arm926 CPU is always a armv5 CPU.
3008
3009     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3010
3011 commit 89a7a87f084c657f8e32b513a77b50eca07e17ec
3012 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
3013 Date:   Sat Dec 6 13:11:14 2008 +0100
3014
3015     at91: Choose environment variables location within make config target
3016
3017     This patch adds the possiblity to choose the media where the environment will
3018     be located. This allow to choose this fundamental configuration without editing
3019     config files.
3020
3021     Documentation file added.
3022
3023     Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
3024     Acked-by: Stelian Pop <stelian@popies.net>
3025     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3026
3027 commit 1450c4a6682378567030414a9f1198c39b7730c7
3028 Author: Anatolij Gustschin <agust@denx.de>
3029 Date:   Mon Nov 3 15:30:34 2008 +0100
3030
3031     lwmon, tqm8xx: Fix build errors
3032
3033     Commit 6b59e03e0237a40a2305ea385defdfd92000978b
3034     lcd: Let the board code show board-specific info
3035
3036     introduced some bugs which prevent U-Boot building
3037     for lwmon board if CONFIG_LCD_INFO_BELOW_LOGO will
3038     be defined in the board configuration.
3039
3040     Also "LCD enabled" building for TQM823L doesn't work
3041     since this commit.
3042
3043     This patch fixes above-mentioned issues.
3044
3045     Signed-off-by: Anatolij Gustschin <agust@denx.de>
3046
3047 commit bfa0af6b22ff25b0719a8910f9b6d1f975aa6fb0
3048 Author: Mike Frysinger <vapier@gentoo.org>
3049 Date:   Sun Nov 2 01:18:18 2008 -0400
3050
3051     ignore .gdb_history files
3052
3053     When using gdb, history files will often get generated.  So ignore them.
3054
3055     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3056
3057 commit c8aa7dfc18f7cc90d0aea6c7becbb67dfc5bba4b
3058 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3059 Date:   Fri Oct 31 12:26:55 2008 +0100
3060
3061     FPGA: move fpga drivers to drivers/fpga
3062
3063     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3064
3065 commit 6a86bb6c25376f0358478219fa28d7c84dd01ed0
3066 Author: Peter Tyser <ptyser@xes-inc.com>
3067 Date:   Mon Dec 1 16:29:38 2008 -0600
3068
3069     net: Fix TftpStart() ip:filename bug
3070
3071     The TftpStart() function modifies the 'BootFile'
3072     string when 'BootFile' contains both an IP address
3073     and filename (eg 1.2.3.4:/path/file). This causes
3074     subsequent calls to TftpStart to incorrectly parse
3075     the TFTP filename and server IP address to use.
3076     For example:
3077
3078     => tftp 0x100000 10.52.0.62:/home/ptyser/non_existant
3079     Speed: 100, half duplex
3080     Using eTSEC1 device
3081     TFTP from server 10.52.0.62; our IP address is 10.52.253.79
3082                      ^^^^^^^^^^ CORRECT
3083     Filename '/home/ptyser/non_existant'.
3084               ^^^^^^^^^^^^^^^^^^^^^^^^^ CORRECT
3085     Load address: 0x100000
3086     Loading: *
3087     TFTP error: 'File not found' (1)
3088     Starting again
3089
3090     eTSEC2: No link.
3091     Speed: 100, half duplex
3092     Using eTSEC1 device
3093     TFTP from server 10.52.0.33; our IP address is 10.52.253.79
3094                      ^^^^^^^^^^ WRONG
3095     Filename '10.52.0.62'.
3096               ^^^^^^^^^^ WRONG
3097     Load address: 0x100000
3098     Loading: *
3099     TFTP error: 'File not found' (1)
3100     Starting again
3101
3102     TftpStart() was modified to not modify the 'BootFile' string.
3103
3104     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3105     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3106
3107 commit d32c5be50bf0600bfdc54223ef341ee9c63db445
3108 Author: Peter Tyser <ptyser@xes-inc.com>
3109 Date:   Mon Dec 1 16:26:21 2008 -0600
3110
3111     net: Add additional IP fragmentation check
3112
3113     Ignore IP packets which have the "more fragments" flag bit
3114     set.  This flag indicates the IP packet is fragmented and
3115     must be ignored by U-Boot.
3116
3117     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3118     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3119
3120 commit e0c07b868cab405ab4b5335a0247899bfc5ea0b6
3121 Author: Peter Tyser <ptyser@xes-inc.com>
3122 Date:   Mon Dec 1 16:26:20 2008 -0600
3123
3124     net: Define IP flag field values
3125
3126     These defines were pulled from the "Add simple
3127     IP/UDP fragmentation support" patch from Frank
3128     Haverkamp <haver@vnet.ibm.com>.
3129
3130     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3131     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3132
3133 commit 23afaba65ec5206757e589ef334a8b38168c045f
3134 Author: Anatolij Gustschin <agust@denx.de>
3135 Date:   Tue Dec 2 10:31:04 2008 +0100
3136
3137     net: tsec: Fix Marvell 88E1121R phy init
3138
3139     This patch tries to ensure that phy interrupt pin
3140     won't be asserted after booting. We experienced
3141     following issues with current 88E1121R phy init:
3142
3143     Marvell 88E1121R phy can be hardware-configured
3144     to share MDC/MDIO and interrupt pins for both ports
3145     P0 and P1 (e.g. as configured on socrates board).
3146     Port 0 interrupt pin will be shared by both ports
3147     in such configuration. After booting Linux and
3148     configuring eth0 interface, port 0 phy interrupts
3149     are enabled. After rebooting without proper eth0
3150     interface shutdown port 0 phy interrupts remain
3151     enabled so any change on port 0 (link status, etc.)
3152     cause assertion of the interrupt. Now booting Linux
3153     and configuring eth1 interface will cause permanent
3154     phy interrupt storm as the registered phy 1 interrupt
3155     handler doesn't acknowledge phy 0 interrupts. This
3156     of course should be fixed in Linux driver too.
3157
3158     Signed-off-by: Anatolij Gustschin <agust@denx.de>
3159     Acked-by: Andy Fleming <afleming@freescale.com>
3160     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3161
3162 commit 2e4970d8109d690adcf615d9e3cac7b5b2e8eaed
3163 Author: Peter Tyser <ptyser@xes-inc.com>
3164 Date:   Tue Dec 2 12:59:51 2008 -0600
3165
3166     net: Fix download command parsing
3167
3168     When CONFIG_SYS_HUSH_PARSER is defined network download
3169     commands with 1 argument in the format 'tftp "/path/file"'
3170     do not work as expected. The hush command parser strips
3171     the quotes from "/path/file" which causes the network
3172     commands to interpret "/path/file" as an address
3173     instead of the intended filename.
3174
3175     The previous check for a leading quote in netboot_common()
3176     was replaced with a check which ensures only valid
3177     numbers are treated as addresses.
3178
3179     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3180     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3181
3182 commit 3c2c2f427905040c1513d0c51d637689cba48346
3183 Author: Remy Bohmer <linux@bohmer.net>
3184 Date:   Thu Nov 27 22:30:27 2008 +0100
3185
3186     Remove non-ascii characters from fat code
3187
3188     This code contains some non-ascii characters in comment lines and code.
3189     Most editors do not display those characters properly and editing those
3190     files results always in diffs at these places which are usually not required
3191     to be changed at all. This is error prone.
3192
3193     So, remove those weird characters and replace them by normal C-style
3194     equivalents for which the proper defines were already in the header.
3195
3196     Signed-off-by: Remy Bohmer <linux@bohmer.net>
3197
3198 commit dc889e865356497d3e495570118c2245ebce2631
3199 Author: Dave Liu <daveliu@freescale.com>
3200 Date:   Fri Nov 28 20:16:58 2008 +0800
3201
3202     85xx: fix the wrong DDR settings for MPC8572DS
3203
3204     The default DDR freq is 400MHz or 800M data rate,
3205     the old settings is pure wrong for the default case.
3206
3207     Signed-off-by: Dave Liu <daveliu@freescale.com>
3208     Acked-by: Andy Fleming <afleming@freescale.com>
3209
3210 commit 9df59533f77de2829b4b66e5b7620e04edaa391c
3211 Author: Kumar Gala <galak@kernel.crashing.org>
3212 Date:   Mon Nov 24 10:29:26 2008 -0600
3213
3214     85xx: init gd as early as possible
3215
3216     Moved up the initialization of GD so C code like set_tlb() can use
3217     gd->flags to determine if we've relocated or not in the future.
3218
3219     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3220     Acked-by: Andy Fleming <afleming@freescale.com>
3221
3222 commit aed461af81012a398a205e9be67ab37667491838
3223 Author: Kumar Gala <galak@kernel.crashing.org>
3224 Date:   Mon Nov 24 10:29:25 2008 -0600
3225
3226     85xx: Fix relocation of CCSRBAR
3227
3228     If the virtual address for CCSRBAR is the same after relocation but
3229     the physical address is changing we'd end up having two TLB entries with
3230     the same VA.  Instead we new us the new CCSRBAR virt address + 4k as a
3231     temp virt address to access the old CCSRBAR to relocate it.
3232
3233     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3234     Acked-by: Andy Fleming <afleming@freescale.com>
3235
3236 commit ea154a1781135d822eedee7567cc156089eae93c
3237 Author: Kumar Gala <galak@kernel.crashing.org>
3238 Date:   Mon Nov 24 10:25:14 2008 -0600
3239
3240     FSL: Moved BR_PHYS_ADDR for localbus to common header
3241
3242     The BR_PHYS_ADDR macro is useful on all machines that have local bus
3243     which is pretty much all 83xx/85xx/86xx chips.
3244
3245     Additionally most 85xx & 86xx will need it if they want to support
3246     36-bit physical addresses.
3247
3248     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3249     Acked-by: Andy Fleming <afleming@freescale.com>
3250
3251 commit 9427ccde0355a2ebf47454e8e1be59f5b9864e08
3252 Author: Peter Tyser <ptyser@xes-inc.com>
3253 Date:   Mon Dec 1 13:47:12 2008 -0600
3254
3255     85xx: Add PORDEVSR_PCI1 define
3256
3257     Add define used to determine if PCI1 interface is in PCI or PCIX mode.
3258
3259     Convert users of the old PORDEVSR_PCI constant to use MPC85xx_PORDEVSR_PCI1
3260
3261     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3262     Signed-off-by: Andy Fleming <afleming@freescale.com>
3263
3264 commit 35db1c6d34b57ae15e99cf03c8e8f8a6148d74f3
3265 Author: Becky Bruce <becky.bruce@freescale.com>
3266 Date:   Fri Nov 21 19:24:22 2008 -0600
3267
3268     drivers/fsl_pci_init: Fix inbound window mapping bug
3269
3270     The current code will cause the creation of a 4GB window
3271     starting at 0 if we have more than 4GB of RAM installed,
3272     which overlaps with PCI_MEM space and causes pci_bus_to_phys()
3273     to return erroneous information. Limit the size to 4GB - 1;
3274     which causes the code to create one 2GB and one 1GB window
3275     instead.
3276
3277     Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
3278     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3279     Acked-by: Andy Fleming <afleming@freescale.com>
3280
3281 commit 5a105a333dab6a23e92d763ce76d6f31d57f45df
3282 Author: Jon Loeliger <jdl@freescale.com>
3283 Date:   Thu Nov 20 15:36:48 2008 -0600
3284
3285     Removed unused CONFIG_L1_INIT_RAM symbol.
3286
3287     Prevent further viral propogation of the unused
3288     symbol CONFIG_L1_INIT_RAM by just removing it.
3289
3290     Signed-off-by: Jon Loeliger <jdl@freescale.com>
3291     Acked-by: Andy Fleming <afleming@freescale.com>
3292
3293 commit 7008d26a40a76f90cae5824c812cfed449fb97b8
3294 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
3295 Date:   Wed Oct 29 09:21:44 2008 -0500
3296
3297     fsl ddr skip interleaving if not supported.
3298
3299     Removed while(1) hang if memctl_intlv_ctl is set wrong.
3300     Remove embedded tabs from strings.
3301
3302     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
3303     Acked-by: Kumar Gala <galak@kernel.crashing.org>
3304     Acked-by: Andy Fleming <afleming@freescale.com>
3305
3306 commit dd332e18d082de75eca3fc2c7c778f5d4571a096
3307 Author: Anatolij Gustschin <agust@denx.de>
3308 Date:   Thu Nov 13 18:08:57 2008 +0100
3309
3310     85xx: socrates: fix DDR SDRAM tlb entry configuration
3311
3312     since commit be0bd8234b9777ecd63c4c686f72af070d886517
3313     tlb entry for socrates DDR SDRAM will be reconfigured
3314     by setup_ddr_tlbs() from initdram() causing an
3315     inconsistency with previously configured DDR SDRAM tlb
3316     entry from tlb_table:
3317
3318     socrates>l2cam 7 9
3319     IDX  PID      EPN  SIZE V TS           RPN U0-U3 WIMGE UUUSSS
3320       7 : 00 00000000 256MB V  0 -> 0_00000000  0000 -I-G- ---RWX
3321       8 : 00 00000000 256MB V  0 -> 0_00000000  0000 ----- ---RWX
3322       9 : 00 10000000 256MB V  0 -> 0_10000000  0000 ----- ---RWX
3323
3324     This patch makes the presence of the DDR SDRAM tlb entry in
3325     the tlb_table dependent on CONFIG_SPD_EEPROM to avoid this
3326     inconsistency.
3327
3328     Signed-off-by: Anatolij Gustschin <agust@denx.de>
3329     Acked-by: Andy Fleming <afleming@freescale.com>
3330
3331 commit a2cd50ed6ef0ac6b127b3d6db756979a8336718d
3332 Author: Peter Tyser <ptyser@xes-inc.com>
3333 Date:   Tue Nov 11 10:17:10 2008 -0600
3334
3335     85xx: Add CPU 2 errata workaround to all 8548 boards
3336
3337     All mpc8548-based boards should implement the suggested workaround
3338     to CPU 2 errata. Without the workaround, its possible for the
3339     8548's core to hang while executing a msync or mbar 0 instruction
3340     and a snoopable transaction from an I/O master tagged to make
3341     quick forward progress is present.
3342
3343     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3344     Acked-by: Andy Fleming <afleming@freescale.com>
3345
3346 commit e57f0fa1333cdf3ca36110aac2900712a5f82976
3347 Author: Dave Liu <daveliu@freescale.com>
3348 Date:   Tue Oct 28 17:53:45 2008 +0800
3349
3350     85xx: the DDR tlb is missed for the !CONFIG_SPD_EEPROM case
3351
3352     we need TLB entry for DDR at !SPD case.
3353
3354     Signed-off-by: Dave Liu <daveliu@freescale.com>
3355     Acked-by: Andy Fleming <afleming@freescale.com>
3356
3357 commit 9b0ad1b1c7a15ff674978705c7c52264978dc5d8
3358 Author: Dave Liu <daveliu@freescale.com>
3359 Date:   Tue Oct 28 17:53:38 2008 +0800
3360
3361     85xx: remove the unused ddr_enable_ecc in the board file
3362
3363     The DDR controller of 8548/8544/8568/8572/8536 processors
3364     have the ECC data init feature, and the new DDR code is
3365     using the feature, and we don't need the way with DMA to
3366     init memory any more.
3367
3368     Signed-off-by: Dave Liu <daveliu@freescale.com>
3369     Acked-by: Andy Fleming <afleming@freescale.com>
3370
3371 commit 4a129a57d923f7c15aa1f567028a80a32d66a100
3372 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3373 Date:   Sun Nov 30 19:36:53 2008 +0100
3374
3375     at91rm9200dk: Fix typo
3376
3377     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3378
3379 commit ed3b18e05c9a8ffa5fb643da9bcec7452e5d5e01
3380 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3381 Date:   Sun Nov 30 19:36:50 2008 +0100
3382
3383     AT91: remove non supported board AT91RM9200DF macro
3384
3385     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3386
3387 commit bd876772ee04095e5dd943d97515a1f14bad4b1c
3388 Author: Ilko Iliev <iliev@ronetix.at>
3389 Date:   Tue Dec 2 17:27:54 2008 +0100
3390
3391     mtd/dataflash.c: fix a problem with the last partition
3392
3393     This patch fix the problem that only the [NB_DATAFLASH_AREA - 1] dataflash
3394     partition can be defined to use the area to the end of dataflash size.
3395     Now it is possible to have only one dataflash partition from 0 to the end
3396     of of dataflash size.
3397
3398     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
3399
3400 commit 03f797793b124dccaae145b977d15d6cb9e74504
3401 Author: Ilko Iliev <iliev@ronetix.at>
3402 Date:   Tue Dec 2 17:20:17 2008 +0100
3403
3404     fix some coding style violations.
3405
3406     This patch fix some coding style violations.
3407
3408     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
3409
3410 commit 5e46b1e54112f4b7fd5185665e571510132c12a7
3411 Author: Stefan Roese <sr@denx.de>
3412 Date:   Thu Nov 27 14:11:37 2008 +0100
3413
3414     OneNAND: Add missing mtd info struct before calling onenand_erase()
3415
3416     Without this patch "saveenv" crashes when MTD partitions are enabled (e.g.
3417     for use in UBI) via CONFIG_MTD_PARTITIONS.
3418
3419     Signed-off-by: Stefan Roese <sr@denx.de>
3420     Signed-off-by: Scott Wood <scottwood@freescale.com>
3421
3422 commit 29382d4064fbaff5daacff4c3209370fa5713966
3423 Author: Becky Bruce <becky.bruce@freescale.com>
3424 Date:   Thu Nov 20 16:43:52 2008 -0600
3425
3426     mpc8641: Fix error in README
3427
3428     I made some updates to the code that didn't make it into the
3429     README - fix this
3430
3431     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
3432
3433 commit 801a194616d95e6fc426a176d9615ccbf9876c7f
3434 Author: Jon Loeliger <jdl@freescale.com>
3435 Date:   Thu Nov 20 12:01:02 2008 -0600
3436
3437     Removed unused CONFIG_L1_INIT_RAM symbol.
3438
3439     Prevent further viral propogation of the unused
3440     symbol CONFIG_L1_INIT_RAM by just removing it.
3441
3442     Signed-off-by: Jon Loeliger <jdl@freescale.com>
3443
3444 commit f698738e46cb461e28c2d58228bb34a2fcf5a475
3445 Author: Jon Loeliger <jdl@freescale.com>
3446 Date:   Thu Nov 20 14:02:56 2008 -0600
3447
3448     86xx: Fix non-64-bit compilation problems.
3449
3450     Introducing 64-bit (36-bit) support for the MPC8641HPCN
3451     failed to accomodate the other two 86xx boards.
3452     Introduce definitions for CONFIG_SYS_CCSRBAR_PHYS_{LOW,HIGH}
3453     CONFIG_SYS_CCSR_DEFAULT_DBAT{U,L} and CONFIG_SYS_CCSR_DEFAULT_IBAT{U,L}
3454     with nominal 32-bit values.
3455
3456     Signed-off-by: Jon Loeliger <jdl@freescale.com>
3457     Acked-by: Becky Bruce <becky.bruce@freescale.com>
3458
3459 commit bebfc6ef3ec994c8e18783269b1d8d41f8e38afd
3460 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
3461 Date:   Wed Nov 26 17:40:37 2008 +0100
3462
3463     Remove obsolete command (apply afte USB style patch, 80 chars strict)
3464
3465     Remove USB obsolete commmand
3466
3467     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
3468     Signed-off-by: Remy Böhmer <linux@bohmer.net>
3469
3470 commit de39f8c19d7c12017248c49d432dcb81db68f724
3471 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
3472 Date:   Wed Nov 26 17:41:34 2008 +0100
3473
3474     USB style patch, 80 chars strict
3475
3476     USB Code style patch
3477
3478     Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
3479     Signed-off-by: Remy Böhmer <linux@bohmer.net>
3480
3481 commit d10c5a87cb8affbb4d35a311370316d4383d598e
3482 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3483 Date:   Fri Nov 7 22:46:21 2008 +0100
3484
3485     drivers/usb: Move conditional compilation to Makefile
3486
3487     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3488     Signed-off-by: Remy Böhmer <linux@bohmer.net>
3489
3490 commit 2077e348c2a84901022ad95311b47b70361e6daa
3491 Author: Scott Wood <scottwood@freescale.com>
3492 Date:   Tue Nov 25 10:47:02 2008 -0600
3493
3494     NAND: Fix misplaced return statement in nand_{read,write}_skip_bad().
3495
3496     This caused the operation to be needlessly repeated if there were
3497     no bad blocks and no errors.
3498
3499     Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
3500     Signed-off-by: Scott Wood <scottwood@freescale.com>
3501
3502 commit 89295028e7d8f7a524f485328279d72fdb102385
3503 Author: Michal Simek <monstr@monstr.eu>
3504 Date:   Mon Nov 24 12:09:50 2008 +0100
3505
3506     ppc4xx: ml300 remove Xilinx BSP from ml300 folder
3507
3508     This BSP should be outside u-boot source tree.
3509     The second reason is that xilinx ppc405 was moved to generic platform.
3510
3511     Signed-off-by: Michal Simek <monstr@monstr.eu>
3512     Signed-off-by: Stefan Roese <sr@denx.de>
3513
3514 commit 24eea623d4974a169026a975ba12fb23d48154b1
3515 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3516 Date:   Mon Nov 24 15:11:10 2008 +0100
3517
3518     ppc4xx: Remove unused features
3519
3520     This patch disables some unused features from the PCI405 configuration
3521     to keep U-Boot image size below 192k.
3522
3523     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3524     Signed-off-by: Stefan Roese <sr@denx.de>
3525
3526 commit 0c2385c3bb51f5d3911fce1ec4720db86b534c2b
3527 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3528 Date:   Mon Nov 24 15:11:09 2008 +0100
3529
3530     ppc4xx: Use correct io accessors for PCI405
3531
3532     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3533     Signed-off-by: Stefan Roese <sr@denx.de>
3534
3535 commit 348c849d86a6f0785752b9bc497a34658713d1d1
3536 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3537 Date:   Mon Nov 24 15:11:08 2008 +0100
3538
3539     ppc4xx: Remove unused code from PCI405 code
3540
3541     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3542     Signed-off-by: Stefan Roese <sr@denx.de>
3543
3544 commit 633639587e3596f0dbf5e6247dd3faf80b1d9063
3545 Author: Heiko Schocher <hs@denx.de>
3546 Date:   Thu Nov 20 09:59:09 2008 +0100
3547
3548     powerpc, keymile boards: extract identical config options
3549
3550     This patch extracts the identical config options for the
3551     keymile boards mgcoge, mgsuvd and kmeter1 in a new
3552     common config file keymile-common.h.
3553
3554     Signed-off-by: Heiko Schocher <hs@denx.de>
3555     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3556
3557 commit 9482a8e3d6ac766d90e5059dce777b1e4c868a30
3558 Author: Heiko Schocher <hs@denx.de>
3559 Date:   Fri Nov 21 08:29:40 2008 +0100
3560
3561     powerpc: keymile: Add a check for the PIGGY debug board
3562
3563     Check the presence of the PIGGY on the keymile boards mgcoge,
3564     mgsuvd and kmeter1. If the PIGGY is not present, dont register
3565     this Ethernet device.
3566
3567     Signed-off-by: Heiko Schocher <hs@denx.de>
3568     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3569
3570 commit 58c696eed839af894e0265064669c402dc28b371
3571 Author: Wolfgang Denk <wd@xpert.denx.de>
3572 Date:   Mon Nov 24 21:50:59 2008 +0100
3573
3574     AT91RM9200DK: fix broken boot from NOR flash
3575
3576     Signed-off-by: Wolfgang Denk <wd@denx.de>
3577
3578 commit 8052352f20b33bef8f9872fc983eac73d4693c38
3579 Author: Jens Scharsig <esw@bus-elektronik.de>
3580 Date:   Tue Nov 18 10:48:46 2008 +0100
3581
3582     at91rm9200: fix broken boot from nor flash
3583
3584     This patch fix the broken boot from NOR Flash on AT91RM9200 boards, if
3585     CONFIG_AT91RM9200 is defined and nor preloader is used.
3586
3587     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
3588
3589 commit 25ea652e907516a283b38237e83712a918f125d7
3590 Author: Piotr Ziecik <kosmo@semihalf.com>
3591 Date:   Mon Nov 17 15:58:00 2008 +0100
3592
3593     UBI: Add proof-of-concept CFI flash support
3594
3595     With this patch UBI can be used on CFI flash chips.
3596
3597     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
3598     Signed-off-by: Stefan Roese <sr@denx.de>
3599
3600 commit e6a7edbc1778d27431ac663b40a71dafa5d20578
3601 Author: Piotr Ziecik <kosmo@semihalf.com>
3602 Date:   Mon Nov 17 15:57:59 2008 +0100
3603
3604     mtd: Remove a printf() from add_mtd_device().
3605
3606     Remove a printf() from add_mtd_device(), which produces spurious output.
3607
3608     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
3609     Signed-off-by: Stefan Roese <sr@denx.de>
3610
3611 commit 91809ed51d8327a8dbbf29aa98a091154c282171
3612 Author: Piotr Ziecik <kosmo@semihalf.com>
3613 Date:   Mon Nov 17 15:57:58 2008 +0100
3614
3615     cfi-mtd: Add cfi-mtd driver.
3616
3617     Add cfi-mtd driver, which exports CFI flash to MTD layer.
3618     This allows CFI flash devices to be used from MTD layer.
3619
3620     Building of the new driver is controlled by CONFIG_FLASH_CFI_MTD
3621     option. Initialization is done by calling cfi_mtd_init() from
3622     flash_init().
3623
3624     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
3625     Signed-off-by: Stefan Roese <sr@denx.de>
3626
3627 commit 6ea808efdf9aa5d9067fbfac32acde8539129ed2
3628 Author: Piotr Ziecik <kosmo@semihalf.com>
3629 Date:   Mon Nov 17 15:49:32 2008 +0100
3630
3631     cfi_flash: Add interface for flash verbosity control
3632
3633     Add interface for flash verbosity control. It allows
3634     to disable output from low-level flash API. It is useful
3635     when calling these low-level functions from context other
3636     than flash commands (for example the MTD/CFI interface
3637     implmentation).
3638
3639     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
3640     Signed-off-by: Stefan Roese <sr@denx.de>
3641
3642 commit ebc9784ce6528385bb8d2558e783622d4bbf20f8
3643 Author: Piotr Ziecik <kosmo@semihalf.com>
3644 Date:   Thu Nov 20 15:17:38 2008 +0100
3645
3646     cfi_flash: Export flash_sector_size() function.
3647
3648     Export flash_sector_size() function from drivers/mtd/cfi_flash.c,
3649     so that it can be used in the upcoming cfi-mtd driver.
3650
3651     Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
3652     Signed-off-by: Stefan Roese <sr@denx.de>
3653
3654 commit 45aa5a7f4d5bcb79927ddfc896c1d7c4326e235d
3655 Author: Stefan Roese <sr@denx.de>
3656 Date:   Mon Nov 17 14:45:22 2008 +0100
3657
3658     cfi_flash: Make all flash access functions weak
3659
3660     This patch defines all flash access functions as weak so that
3661     they can be overridden by board specific versions.
3662
3663     This will be used by the upcoming VCTH board support where the NOR
3664     FLASH unfortunately can't be accessed memory-mapped. Special
3665     accessor functions are needed here.
3666
3667     To enable this weak functions you need to define
3668     CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS in your board config header.
3669     Otherwise the "old" default functions will be used resulting
3670     in smaller code.
3671
3672     Signed-off-by: Stefan Roese <sr@denx.de>
3673     Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
3674
3675 commit a5c4067017631d903e1afa6ad615f0ce19fea517
3676 Author: Stefan Roese <sr@denx.de>
3677 Date:   Mon Nov 24 08:31:16 2008 +0100
3678
3679     UBI: Change parsing of size in commands to default to hex
3680
3681     Currently the size parameters of the UBI commands (e.g. "ubi write") are
3682     decoded as decimal instead of hex as default. This patch now interprets
3683     all these values consistantly as hex, as all other standard U-Boot commands
3684     do.
3685
3686     Signed-off-by: Stefan Roese <sr@denx.de>
3687
3688 commit de01c76c3ccc4e6c5989228eed58e955a3a1a968
3689 Author: Stefan Roese <sr@denx.de>
3690 Date:   Fri Nov 21 13:06:06 2008 +0100
3691
3692     ppc4xx: ML2 shouldn't include the 4xx EMAC driver
3693
3694     Signed-off-by: Stefan Roese <sr@denx.de>
3695
3696 commit 1a6a00dcc5bdfc6e9b4b00f39c1f583a7f96fc7f
3697 Author: Yuri Tikhonov <yur@emcraft.com>
3698 Date:   Fri Nov 14 16:19:19 2008 +0300
3699
3700     ppc4xx: katmai: Change default config
3701
3702      This patch enables support for EXT2, and increases the
3703     CONFIG_SYS_BOOTMAPSZ size for the default configuration
3704     of the katmai boards to use them as the RAID-reference
3705     AMCC setups.
3706
3707      EXT2 enabling allows one to boot kernels from the EXT2
3708     formatted Compact Flash cards.
3709
3710      CONFIG_SYS_BOOTMAPSZ increasing allows one to boot the
3711     Linux kernels, which use PAGE_SIZE of 256KB. Otherwise,
3712     the memory area with DTB file (which is placed at the
3713     end of the bootmap area) will turn out to be overlapped
3714     with the BSS segment of the 256KB kernel, and zeroed
3715     in early_init() of Linux.
3716
3717      Actually, increasing of the bootmap size could be done
3718     via setting of the bootm_size U-Boot variable, but it looks
3719     like the current U-Boot implementation have some bootm_size-
3720     related functionality lost. In many places through the U-Boot
3721     code the CONFIG_SYS_BOOTMAPSZ definition is used directly
3722     (instead of trying to read the corresponding value from the
3723     environment). The same is truth for the boot_jump_linux()
3724     function in lib_ppc/bootm.c, where U-Boot transfers control
3725     to Linux passing the CONFIG_SYS_BOOTMAPSZ (not bootm_size)
3726     value to the booting kernel.
3727
3728     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
3729     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
3730     Signed-off-by: Stefan Roese <sr@denx.de>
3731
3732 commit ddf45cc758d394591fb9bcdcbe96530f733f2bce
3733 Author: Dave Mitchell <dmitch71@gmail.com>
3734 Date:   Thu Nov 20 14:09:50 2008 -0600
3735
3736     ppc4xx: Changed 460EX/GT OCM TLB and internal SRAM initialization
3737
3738     Expanded OCM TLB to allow access to 64K OCM as well as 256K of
3739     internal SRAM.
3740
3741     Adjusted internal SRAM initialization to match updated user
3742     manual recommendation.
3743
3744     OCM & ISRAM are now mapped as follows:
3745             physical        virtual         size
3746     ISRAM   0x4_0000_0000   0xE300_0000     256k
3747     OCM     0x4_0004_0000   0xE304_0000     64k
3748
3749     A single TLB was used for this mapping.
3750
3751     Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
3752     Signed-off-by: Stefan Roese <sr@denx.de>
3753
3754 commit b14ca4b61a681f75f3125676e09d7ce6af66e927
3755 Author: Dave Mitchell <dmitch71@gmail.com>
3756 Date:   Thu Nov 20 14:00:49 2008 -0600
3757
3758     ppc4xx: Added ppc4xx-isram.h for internal SRAM and L2 cache DCRs
3759
3760     Added include/asm-ppc/ppc4xx-isram.h and moved internal SRAM and
3761     L2 cache DCRs from ppc440.h to this new header.
3762
3763     Also converted these DCR defines from lowercase to uppercase and
3764     modified referencing modules to use them.
3765
3766     Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
3767     Signed-off-by: Stefan Roese <sr@denx.de>
3768
3769 commit 711e2b2af820d21d9931d4cf8057d3894600fd54
3770 Author: Steven A. Falco <sfalco@harris.com>
3771 Date:   Thu Nov 20 14:37:57 2008 -0500
3772
3773     ppc4xx: Delete unused definitions for SDR0_DDRCFG from ppc4xx.h
3774
3775     The definitions of bits in SDR_CFG are incorrect, and not used within
3776     U-Boot.  Therefore, they can be removed.
3777
3778     The naming of the sdr_ddrdl/sdr_cfg registers do not follow conventions,
3779     and are unused, so they can be removed too.
3780
3781     A definition for SDR0_DDRCFG is added.
3782
3783     Signed-off-by: Steven A. Falco <sfalco@harris.com>
3784     Signed-off-by: Stefan Roese <sr@denx.de>
3785
3786 commit e23c7c95a96eb0f068efe5c532215a10a1512a95
3787 Author: Dirk Behme <dirk.behme@gmail.com>
3788 Date:   Mon Nov 10 20:15:25 2008 +0100
3789
3790     ARM: OMAP: Convert IO macros
3791
3792     Convert IO macros to readx/writex.
3793
3794     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
3795
3796 commit 263b749e2e25473a48776d317bd2a7e2ddcdd212
3797 Author: Ilko Iliev <iliev@ronetix.at>
3798 Date:   Sun Nov 9 15:53:14 2008 +0100
3799
3800     lib_arm: do_bootm_linux() - correct a small mistake
3801
3802     This patch corrects a small bug in the "if" condition:
3803     the parameter "flag" is 0 and the "if" condition is always true.
3804     The result is - the boom command doesn't start the kernel.
3805     Affected targets: all arm based.
3806
3807     Signed-off-by: Ilko Iliev <iliev@ronetix.at>
3808
3809 commit 3e0cda071a67cb5709e3fa4faf6b31a731859acc
3810 Author: Stelian Pop <stelian@popies.net>
3811 Date:   Sun Nov 9 00:14:46 2008 +0100
3812
3813     AT91: Enable PLLB for USB
3814
3815     At least some (old ?) versions of the AT91Bootstrap do not set up the
3816     PLLB correctly to 48 MHz in order to make USB host function correctly.
3817
3818     This patch sets up the PLLB to the same values Linux uses, and makes USB
3819     work ok on the following CPUs:
3820         - AT91CAP9
3821         - AT91SAM9260
3822         - AT91SAM9263
3823
3824     This patch also defines CONFIG_USB_STORAGE and CONFIG_CMD_FAT for all
3825     the relevant AT91CAP9/AT91SAM9 atmel boards.
3826
3827     Signed-off-by: Stelian Pop <stelian@popies.net>
3828     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3829
3830 commit ad229a44e162af0f65e57e4e3dc133d5f0364ecb
3831 Author: Stelian Pop <stelian@popies.net>
3832 Date:   Fri Nov 7 13:55:14 2008 +0100
3833
3834     AT91: Use AT91_CPU_CLOCK in displays
3835
3836     Introduce AT91_CPU_CLOCK and use it for displaying the CPU
3837     speed in the LCD driver.
3838
3839     Also make AT91_MAIN_CLOCK and AT91_MASTER_CLOCK reflect the
3840     corresponding board clocks.
3841
3842     Signed-off-by: Stelian Pop <stelian@popies.net>
3843
3844 commit fed36ac5ae613773b6cd90e61e292c45440e10c8
3845 Author: Heiko Schocher <hs@denx.de>
3846 Date:   Thu Nov 20 09:57:47 2008 +0100
3847
3848     powerpc: 83xx: add support for the kmeter1 board
3849
3850     This patch adds support for the kmeter1 board from Keymile,
3851     based on a Freescale MPC8360 CPU.
3852
3853     - serial console on UART 1
3854     - 256 MB DDR2 RAM
3855     - 64 MB NOR Flash
3856     - Ethernet RMII Mode over UCC4
3857     - PHY SMSC LAN8700
3858
3859     Signed-off-by: Heiko Schocher <hs@denx.de>
3860     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3861
3862 commit 25fb4eaaeab3f8866020818f4729d990dcc91cf0
3863 Author: Stefan Roese <sr@denx.de>
3864 Date:   Thu Nov 20 11:46:20 2008 +0100
3865
3866     ppc4xx: Clear all potentially pending exceptions in MCSR
3867
3868     This is needed on Canyonlands which still has an exception pending
3869     while running relocate_code(). This leads to a failure after trap_init()
3870     is moved to the top of board_init_r().
3871
3872     Signed-off-by: Stefan Roese <sr@denx.de>
3873
3874 commit facdad5f2602e899a01746916beddbf9e856b5ee
3875 Author: Heiko Schocher <hs@denx.de>
3876 Date:   Wed Nov 19 10:10:30 2008 +0100
3877
3878     powerpc: 83xx: add missing TIMING_CFG1_CASLAT_* defines
3879
3880     Signed-off-by: Heiko Schocher <hs@denx.de>
3881     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3882
3883 commit 2f2a5c3714d17f4ead18b713128b7226e0e822f4
3884 Author: Howard Gregory <Greg.Howard@freescale.com>
3885 Date:   Tue Nov 4 14:55:33 2008 +0800
3886
3887     mpc83xx: Improve the performance of DDR memory
3888
3889     modify the CAS timings. my understanding is that these
3890     settings decrease various wait times in the DDR interface.
3891     Because these wait times are in clock cycles, and the DDR
3892     clock on the 8315 RDB runs slower than on some other 83xx
3893     platforms, we can dial down these values without a problem,
3894     thereby decreasing the latency of memory a little.
3895
3896     Signed-off-by: Howard Gregory <Greg.Howard@freescale.com>
3897     Signed-off-by: Dave Liu <daveliu@freescale.com>
3898     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3899
3900 commit 8000b086b33a5a81f3f390f37e178db7956dc08b
3901 Author: Kyungmin Park <kyungmin.park@samsung.com>
3902 Date:   Fri Oct 24 14:55:33 2008 +0200
3903
3904     ARM: Add Apollon UBI support
3905
3906     To enable UBI on Apollon you need to uncomment the CONFIG_SYS_USE_UBI
3907     macro.
3908
3909     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
3910     Signed-off-by: Stefan Roese <sr@denx.de>
3911
3912 commit 694a0b3f1c0accd0de94b89555155d69f8022824
3913 Author: Kyungmin Park <kyungmin.park@samsung.com>
3914 Date:   Wed Nov 19 11:47:05 2008 +0100
3915
3916     UBI: Add UBI command support
3917
3918     This patch adds these UBI commands:
3919
3920     ubi part [nand|onenand] [part] - Show or set current partition
3921     ubi info [l[ayout]] -Display volume and UBI layout information
3922     ubi create[vol] volume [size] [type] - Create volume name with size
3923     ubi write[vol] address volume size - Write volume from address with size
3924     ubi read[vol] address volume [size] - Read volume to address with size
3925     ubi remove[vol] volume - Remove volume
3926
3927     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
3928     Signed-off-by: Stefan Roese <sr@denx.de>
3929
3930 commit 58be3a1056d88c6d05f3e914389282807e69923a
3931 Author: Kyungmin Park <kyungmin.park@samsung.com>
3932 Date:   Wed Nov 19 16:38:24 2008 +0100
3933
3934     UBI: Add basic UBI support to U-Boot (Part 8/8)
3935
3936     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
3937     It's based on the Linux UBI version and basically has a "OS"
3938     translation wrapper that defines most Linux specific calls
3939     (spin_lock() etc.) into no-ops. Some source code parts have been
3940     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
3941     this version with the Linux version and simplifies future UBI
3942     ports/bug-fixes from the Linux version.
3943
3944     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
3945     Signed-off-by: Stefan Roese <sr@denx.de>
3946
3947 commit 47ae6693f54f80455ae32c2e0d995e0e4bdc15b9
3948 Author: Kyungmin Park <kyungmin.park@samsung.com>
3949 Date:   Wed Nov 19 16:36:36 2008 +0100
3950
3951     UBI: Add basic UBI support to U-Boot (Part 7/8)
3952
3953     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
3954     It's based on the Linux UBI version and basically has a "OS"
3955     translation wrapper that defines most Linux specific calls
3956     (spin_lock() etc.) into no-ops. Some source code parts have been
3957     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
3958     this version with the Linux version and simplifies future UBI
3959     ports/bug-fixes from the Linux version.
3960
3961     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
3962     Signed-off-by: Stefan Roese <sr@denx.de>
3963
3964 commit 7e6ee7ad27de5216db1baef76f38c3429c8f4a2a
3965 Author: Kyungmin Park <kyungmin.park@samsung.com>
3966 Date:   Wed Nov 19 16:32:36 2008 +0100
3967
3968     UBI: Add basic UBI support to U-Boot (Part 6/8)
3969
3970     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
3971     It's based on the Linux UBI version and basically has a "OS"
3972     translation wrapper that defines most Linux specific calls
3973     (spin_lock() etc.) into no-ops. Some source code parts have been
3974     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
3975     this version with the Linux version and simplifies future UBI
3976     ports/bug-fixes from the Linux version.
3977
3978     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
3979     Signed-off-by: Stefan Roese <sr@denx.de>
3980
3981 commit c91a719daa331b5856109313371e4ece5ec06d96
3982 Author: Kyungmin Park <kyungmin.park@samsung.com>
3983 Date:   Wed Nov 19 16:28:06 2008 +0100
3984
3985     UBI: Add basic UBI support to U-Boot (Part 5/8)
3986
3987     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
3988     It's based on the Linux UBI version and basically has a "OS"
3989     translation wrapper that defines most Linux specific calls
3990     (spin_lock() etc.) into no-ops. Some source code parts have been
3991     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
3992     this version with the Linux version and simplifies future UBI
3993     ports/bug-fixes from the Linux version.
3994
3995     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
3996     Signed-off-by: Stefan Roese <sr@denx.de>
3997
3998 commit f412fefa079c6aa9a9763f6869bf787ea6bf6e1b
3999 Author: Kyungmin Park <kyungmin.park@samsung.com>
4000 Date:   Wed Nov 19 16:27:23 2008 +0100
4001
4002     UBI: Add basic UBI support to U-Boot (Part 4/8)
4003
4004     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
4005     It's based on the Linux UBI version and basically has a "OS"
4006     translation wrapper that defines most Linux specific calls
4007     (spin_lock() etc.) into no-ops. Some source code parts have been
4008     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
4009     this version with the Linux version and simplifies future UBI
4010     ports/bug-fixes from the Linux version.
4011
4012     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
4013     Signed-off-by: Stefan Roese <sr@denx.de>
4014
4015 commit 2d262c4853cb5b6ddce1a28a9641f2de3688d7ea
4016 Author: Kyungmin Park <kyungmin.park@samsung.com>
4017 Date:   Wed Nov 19 16:26:54 2008 +0100
4018
4019     UBI: Add basic UBI support to U-Boot (Part 3/8)
4020
4021     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
4022     It's based on the Linux UBI version and basically has a "OS"
4023     translation wrapper that defines most Linux specific calls
4024     (spin_lock() etc.) into no-ops. Some source code parts have been
4025     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
4026     this version with the Linux version and simplifies future UBI
4027     ports/bug-fixes from the Linux version.
4028
4029     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
4030     Signed-off-by: Stefan Roese <sr@denx.de>
4031
4032 commit 961df83361aff9a14f226214224eb8a06e05ba24
4033 Author: Kyungmin Park <kyungmin.park@samsung.com>
4034 Date:   Wed Nov 19 16:25:44 2008 +0100
4035
4036     UBI: Add basic UBI support to U-Boot (Part 2/8)
4037
4038     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
4039     It's based on the Linux UBI version and basically has a "OS"
4040     translation wrapper that defines most Linux specific calls
4041     (spin_lock() etc.) into no-ops. Some source code parts have been
4042     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
4043     this version with the Linux version and simplifies future UBI
4044     ports/bug-fixes from the Linux version.
4045
4046     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
4047     Signed-off-by: Stefan Roese <sr@denx.de>
4048
4049 commit f399d4a281713d5ef2d764f05d545fe61e3bd569
4050 Author: Kyungmin Park <kyungmin.park@samsung.com>
4051 Date:   Wed Nov 19 16:23:06 2008 +0100
4052
4053     UBI: Add basic UBI support to U-Boot (Part 1/8)
4054
4055     This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
4056     It's based on the Linux UBI version and basically has a "OS"
4057     translation wrapper that defines most Linux specific calls
4058     (spin_lock() etc.) into no-ops. Some source code parts have been
4059     uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
4060     this version with the Linux version and simplifies future UBI
4061     ports/bug-fixes from the Linux version.
4062
4063     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
4064     Signed-off-by: Stefan Roese <sr@denx.de>
4065
4066 commit e29c22f5abe6e0f4baa6251efed6074cdfc3db79
4067 Author: Kyungmin Park <kyungmin.park@samsung.com>
4068 Date:   Wed Nov 19 16:20:36 2008 +0100
4069
4070     MTD: Add MTD paritioning infrastructure
4071
4072     This MTD part infrastructure will be used by the upcoming
4073     UBI support.
4074
4075     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
4076     Signed-off-by: Stefan Roese <sr@denx.de>
4077
4078 commit 9b827cf1720acda2473afa516956eab6f7cca9a1
4079 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
4080 Date:   Thu Oct 16 22:54:03 2008 +0530
4081
4082     Align end of bss by 4 bytes
4083
4084     Most of the bss initialization loop increments 4 bytes
4085     at a time. And the loop end is checked for an 'equal'
4086     condition. Make the bss end address aligned by 4, so
4087     that the loop will end as expected.
4088
4089     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
4090     Signed-off-by: Wolfgang Denk <wd@denx.de>
4091
4092 commit 3f510db522d160179dff3ddcce9b18f6241c2c24
4093 Author: Becky Bruce <becky.bruce@freescale.com>
4094 Date:   Mon Nov 10 19:45:35 2008 -0600
4095
4096     mpc8641: fix address-cells default in old .dts detection
4097
4098     address-cells defaults to 2, not 1; so in the unlikely
4099     event that it isn't specified, this patch is required
4100     for correct operation.
4101
4102     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4103
4104 commit d025aa4b20a0618a2bada0132a9a0a4afb717f1a
4105 Author: Becky Bruce <becky.bruce@freescale.com>
4106 Date:   Fri Oct 31 17:14:39 2008 -0500
4107
4108     lib_ppc: Move trap_init to occur earlier
4109
4110     Doing trap_init immediately once we're running from RAM
4111     means we're no longer dependent on the physical location of
4112     the flash on non-BookE platforms. Before trap_init, those
4113     platforms switch to real mode and go to 0xfff00100 on exception.
4114     After the switch, they go to 0x00000100  This makes it easier to
4115     move the flash location.
4116
4117     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4118
4119 commit d52082b12c6e545705a19433a2f4142526536189
4120 Author: Becky Bruce <becky.bruce@freescale.com>
4121 Date:   Fri Nov 7 13:46:19 2008 -0600
4122
4123     mpc8641: Try to detect old .dts files
4124
4125     Since we've changed the memory map of the board, be nice and
4126     add some checking to try to catch out-of-date .dts files.  We do
4127     this by checking the CCSRBAR location in the .dts and comparing
4128     it to the CCSRBAR location in u-boot.  If they don't match, a
4129     warning msg is printed.  This isn't foolproof, but it's simple and
4130     will catch most of the cases where an out-of-date .dts is present,
4131     including all of the cases where a new u-boot is used with an old
4132     standard MPC8641 .dts file as supplied with Linux.
4133
4134     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4135
4136 commit 8db0400a27839f91c047dcb83f4a0f09e054a180
4137 Author: Becky Bruce <becky.bruce@freescale.com>
4138 Date:   Thu Nov 6 13:04:09 2008 -0600
4139
4140     toplevel Makefile: Add MPC8641HPCN_36BIT target
4141
4142     This will enable CONFIG_PHYS_36BIT for MPC8641HPCN.
4143
4144     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4145
4146 commit 3111d32c494e8251b90917447796a7206b757e1e
4147 Author: Becky Bruce <becky.bruce@freescale.com>
4148 Date:   Thu Nov 6 17:37:35 2008 -0600
4149
4150     mpc8641: Support 36-bit physical addressing
4151
4152     This patch creates a memory map with all the devices
4153     in 36-bit physical space, in addition to the 32-bit map.
4154     The CCSR relocation is moved (again, sorry) to
4155     allow for the physical address to be 36 bits - this
4156     requires translation to be enabled.  With 36-bit physical
4157     addressing enabled, we are no longer running with VA=PA
4158     translations.  This means we have to distinguish between
4159     the two in the config file.  The existing region name is
4160     used to indicate the virtual address, and a _PHYS variety
4161     is created to represent the physical address.
4162
4163     Large physical addressing is not enabled by default.
4164     Set CONFIG_PHYS_64BIT in the config file to turn this on.
4165
4166     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4167
4168 commit c759a01a0022de9378a3a761f49786f87684c916
4169 Author: Becky Bruce <becky.bruce@freescale.com>
4170 Date:   Thu Nov 6 17:36:04 2008 -0600
4171
4172     mpc8641: Change 32-bit memory map
4173
4174     The memory map on the 8641hpcn is modified to look more like
4175     the 85xx boards; this is a step towards a more standardized
4176     layout going forward. As part of this change, we now relocate
4177     the flash.
4178
4179     The regions for some of the mappings were far larger than they
4180     needed to be.  I have reduced the mappings to match the
4181     actual sizes supported by the hardware.
4182
4183     In addition I have removed the comments at the head
4184     of the BAT blocks in the config file, rather than updating
4185     them.  These get horribly out of date, and it's a simple
4186     matter to look at the defines to see what they are set to
4187     since everything is right here in the same file.
4188
4189     Documentation has been changed to reflect the new map, as this
4190     change is user visible, and affects the OS which runs post-uboot.
4191
4192     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4193
4194 commit bf9a8c34309ed9276258295db9e9212aabb2531a
4195 Author: Becky Bruce <becky.bruce@freescale.com>
4196 Date:   Wed Nov 5 14:55:35 2008 -0600
4197
4198     mpc86xx: Change early FLASH mapping to 1M at CONFIG_MONITOR_BASE_EARLY
4199
4200     We define CONFIG_MONITOR_BASE_EARLY to define the initial location
4201     of the bootpage in flash.   Use this to create an early mapping
4202     definition for the FLASH, and change the early_bats code to use this.
4203
4204     This  change facilitates the relocation of the flash since the early
4205     mappings are no longer tied to the final location of the flash.
4206
4207     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4208
4209 commit c1e1cf69547b138173f87a7f81c42a5d8dbfde3d
4210 Author: Becky Bruce <becky.bruce@freescale.com>
4211 Date:   Wed Nov 5 14:55:34 2008 -0600
4212
4213     mpc86xx: Use SRR0/1/rfi to enable address translation, not blr
4214
4215     Using a mtmsr/blr means that you have to be executing at the
4216     same virtual address once you enable translation.  This is
4217     unnecessarily restrictive, and is not really how this is
4218     usually done.  Change it to use the more common mtspr SRR0/SRR1
4219     and rfi method.
4220
4221     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4222
4223 commit 6bf98b1362f0cb237620355ed3e6762fff82388d
4224 Author: Becky Bruce <becky.bruce@freescale.com>
4225 Date:   Wed Nov 5 14:55:33 2008 -0600
4226
4227     mpc8641: make DIAG_ADDR == FLASH_BASE
4228
4229     Currently, that's what it is, but it's hardcoded.
4230
4231     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4232
4233 commit 170deacb1ddc39164bdb68f3963e0c0456a5369b
4234 Author: Becky Bruce <becky.bruce@freescale.com>
4235 Date:   Wed Nov 5 14:55:32 2008 -0600
4236
4237     mpc8641: Drop imaginary second flash bank, map 8MB
4238
4239     There's a lot of setup and foo for the second flash
4240     bank.  The problem is, this board doesn't actually have one.
4241     Clean this up.  Also, the flash is 8M in size.  Get rid
4242     of the confusing aliased overmapping, and just map 8M.
4243
4244     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4245
4246 commit 0f2d66027bfc60dc7eea2f096af8891988c5abe4
4247 Author: Becky Bruce <becky.bruce@freescale.com>
4248 Date:   Wed Nov 5 14:55:31 2008 -0600
4249
4250     mpc8641: only define CONFIG_ENV_SIZE once
4251
4252     It's currently defined twice inside in an if/else block, but
4253     both halves set the same value.  Move the define outside
4254     the if.
4255
4256     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4257
4258 commit 24bfb48c35fed6ad1f047e3e4a27df302482cd93
4259 Author: Becky Bruce <becky.bruce@freescale.com>
4260 Date:   Wed Nov 5 14:55:30 2008 -0600
4261
4262     mpc86xx: Move setup_bats into cpu_init_f
4263
4264     In order to later allow for a physical relocation of the
4265     flash, setup_bats, which sets up the final BAT mapping
4266     for the board, needs to happen *after* init_laws().
4267     Otherwise, there will be no window programmed for the flash
4268     at the new physical location at the point when we change
4269     the mmu translation.
4270
4271     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4272
4273 commit 05df3e5a638be8c5b0899eae1766bbe8e4b92c17
4274 Author: Becky Bruce <becky.bruce@freescale.com>
4275 Date:   Wed Nov 5 14:55:29 2008 -0600
4276
4277     mpc8641: Remove extra "0" from BR2 define
4278
4279     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4280
4281 commit edf3fe7d39a1ee07353128af5221422ce9ccfad6
4282 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
4283 Date:   Thu Oct 23 09:08:18 2008 -0400
4284
4285     drivers/qe/uec_phy.c: Added PHY-less (fixed PHY) driver.
4286
4287     Copied over the fixed PHY driver as used in pp4xx/4xx_enet.c.
4288     This adds support for PHY-less MAC connections to the UEC.
4289
4290     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
4291     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4292
4293 commit 54bdcc9fb6670afde9c26dcf364f582879bf21d6
4294 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4295 Date:   Thu Oct 23 16:27:24 2008 +0000
4296
4297     ColdFire: Add mii driver in drivers/net
4298
4299     All CF platforms' mii.c are consolidated into one
4300
4301     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4302     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4303
4304 commit 25a859066b3af1070eb69f12022113c0a91bd813
4305 Author: Ben Warren <biggerbadderben@gmail.com>
4306 Date:   Mon Oct 27 23:53:17 2008 -0700
4307
4308     Moved initialization of PPC4xx EMAC to cpu_eth_init()
4309
4310     Removed initialization of the driver from net/eth.c
4311
4312     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4313     Acked-by: Stefan Roese <sr@denx.de>
4314
4315 commit 4d03a4e20e58552cb96d61a0e8b56cdb6cc60126
4316 Author: Ben Warren <biggerbadderben@gmail.com>
4317 Date:   Sun Nov 9 21:29:23 2008 -0800
4318
4319     Moved PPC4xx EMAC driver to drivers/net
4320
4321     Also changed path in all linker scripts that reference this driver
4322
4323     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4324     Acked-by: Stefan Roese <sr@denx.de>
4325
4326 commit 96e21f86e8266ed40759e5495ee461265d7f6d28
4327 Author: Ben Warren <biggerbadderben@gmail.com>
4328 Date:   Mon Oct 27 23:50:15 2008 -0700
4329
4330     Changed PPC4xx EMAC driver to require CONFIG_PPC4xx_EMAC
4331
4332     All in-tree IBM/AMCC PPC4xx boards using the EMAC get this new CONFIG
4333
4334     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4335     Acked-by: Stefan Roese <sr@denx.de>
4336
4337 commit 9eb79bd8856bcab896ed5e1f1bca159807a124dd
4338 Author: Ben Warren <biggerbadderben@gmail.com>
4339 Date:   Thu Oct 23 22:02:49 2008 -0700
4340
4341     Moved initialization of MPC8XX SCC to cpu_eth_init()
4342
4343     Removed initialization of the driver from net/eth.c
4344
4345     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4346
4347 commit a9bec96d6359ac9f90a852962bf3040cad9e0256
4348 Author: Ben Warren <biggerbadderben@gmail.com>
4349 Date:   Wed Oct 22 23:47:51 2008 -0700
4350
4351     Moved initialization of MPC8220 FEC to cpu_eth_init()
4352
4353     Removed initialization of the driver from net/eth.c
4354
4355     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4356
4357 commit 0e8454e990385a58f708c2fc26d31ac041c7a6c5
4358 Author: Ben Warren <biggerbadderben@gmail.com>
4359 Date:   Wed Oct 22 23:32:48 2008 -0700
4360
4361     Moved initialization of QE Ethernet controller to cpu_eth_init()
4362
4363     Removed initialization of the driver from net/eth.c
4364
4365     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4366
4367 commit 3456a148276d5494b53ee40242efb6462d163504
4368 Author: Ben Warren <biggerbadderben@gmail.com>
4369 Date:   Wed Oct 22 23:20:29 2008 -0700
4370
4371     Moved initialization of FCC Ethernet controller to cpu_eth_init
4372
4373     Affected boards:
4374         Several MPC8xx boards
4375         Several MPC8260/MPC8272 boards
4376         Several MPC85xx boards
4377
4378     Removed initialization of the driver from net/eth.c
4379
4380     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4381
4382 commit 62e15b497f5c6334c059512678c8db7940ae4c61
4383 Author: Ben Warren <biggerbadderben@gmail.com>
4384 Date:   Thu Oct 30 22:15:35 2008 -0700
4385
4386     Fix typo in cpu/mpc85xx/cpu.c
4387
4388     CONFIG_MPC85xx_FEC -> CONFIG_MPC85XX_FEC
4389
4390     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4391
4392 commit 5dfb3ee3f54e2382a08d72906f0e79ecf944f6e3
4393 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
4394 Date:   Sun Oct 19 12:08:50 2008 +0900
4395
4396     net: Move initialization of Au1x00 SoC ethernet MAC to cpu_eth_init
4397
4398     This patch will move au1x00_eth_initialize from net/eth.c to cpu_eth_init
4399     as a part of ongoing eth_initialize cleanup work.  The function ret value
4400     is also fixed as it should be negative on fail.
4401
4402     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
4403     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4404
4405 commit cc94074ecac1885d18ddb683eb934b3c0268aa5b
4406 Author: Ben Warren <biggerbadderben@gmail.com>
4407 Date:   Fri Sep 5 01:55:22 2008 -0400
4408
4409     Moved initialization of IXP4XX_NPE Ethernet controller to cpu_eth_init()
4410
4411     Also, removed the driver initialization from net/eth.c
4412
4413     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4414
4415 commit f2a7806fc23e82d30c8548911369e0c530607354
4416 Author: Clive Stubbings <uboot@xentech.co.uk>
4417 Date:   Mon Oct 27 15:05:00 2008 +0000
4418
4419     xilinx_emaclite buffer overrun
4420
4421     Patch to fix buffer allocation size and alignment. Buffer needs to be u32 aligned and
4422     PKTSIZE_ALIGN bytes long.
4423
4424     Acked-by: Michal Simek <monstr@monstr.eu>
4425
4426     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4427
4428 commit 0115b1953718a2969f6469d3d5da51ba11e12d42
4429 Author: richardretanubun <richardretanubun@ruggedcom.com>
4430 Date:   Fri Sep 26 08:59:12 2008 -0400
4431
4432     NET: QE: UEC: Make uec_miiphy_read() and uec_miiphy_write() use the devname arg.
4433
4434     The current uec_miiphy_read and uec_miiphy_write hardcode access devlist[0]
4435     This patch makes these function use the devname argument that is passed in to
4436     allow access to the phy registers of other devices in devlist[].
4437
4438     Signed-of-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
4439
4440     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4441
4442 commit 44dcb7332033db8de2810f2fffcae3084f15c8d4
4443 Author: richardretanubun <richardretanubun@ruggedcom.com>
4444 Date:   Mon Oct 6 15:31:43 2008 -0400
4445
4446     Adds two more ethernet interface to 83xx
4447
4448     Fixed compiler warning "declared but unused" eth5_uec_info and eth6_uec_info.
4449     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
4450     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4451
4452 commit d8003fa03733901b73d6c4667b4d80fc8eb1ddd3
4453 Author: Stelian Pop <stelian@popies.net>
4454 Date:   Fri Nov 7 13:54:31 2008 +0100
4455
4456     AT91: Replace AT91_BASE_EMAC by the board specific values.
4457
4458     AT91_BASE_EMAC is never used outside the board specific files,
4459     so replace its usage by the board specific AT91xxx_BASE_EMAC.
4460
4461     Signed-off-by: Stelian Pop <stelian@popies.net>
4462     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4463
4464 commit c91e17affa175ce06afa89b04752301eb4a61666
4465 Author: Stelian Pop <stelian@popies.net>
4466 Date:   Fri Nov 7 12:09:21 2008 +0100
4467
4468     AT91: Replace (undefined) AT91_ID_US* by the board specific values.
4469
4470     AT91_ID_US0 / AT91_ID_US1 / AT91_ID_US2 were used but never defined.
4471     Since they are never used outside the board specific files, they can
4472     be replaced by the board specific AT91xxx_ID_US0 / AT91xxx_ID_US1 /
4473     AT91xxx_ID_US2.
4474
4475     Bug spotted by Jesus Alvarez <jalvarez@micromint.com>.
4476
4477     Signed-off-by: Stelian Pop <stelian@popies.net>
4478     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4479
4480 commit 28962f5a2de81bc0eed1c0b08c6bfaa1cc134ea2
4481 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4482 Date:   Sat Nov 1 10:47:59 2008 +0100
4483
4484     Makefile/at91sam9: move some at91sam9 to the correct subsection for arm926ejs
4485
4486     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4487
4488 commit 1079432e04ccf71aa3684181186182cd63512f19
4489 Author: Sergey Lapin <slapin@ossfans.org>
4490 Date:   Fri Oct 31 12:28:43 2008 +0100
4491
4492     Custom AFEB9260 board support
4493
4494     This patch provides support for AFEB9260 board, a product of
4495     OpenSource hardware and software. Some commertial projects
4496     are made with this design. A board is basically AT91SAM9260-EK
4497     with some modifications and different peripherals and different
4498     parts used. Main purpose of this project is to gain experience in
4499     hardware design.
4500     More info: http://groups.google.com/group/arm9fpga-evolution-board
4501     (In Russian only, sorry).
4502     Subversion repository: svn://194.85.238.22/home/users/george/svn/arm9eb
4503
4504     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
4505
4506 commit 26eecd24f97130e56e9c2c2af0e714e05bce6e00
4507 Author: Tomohiro Masubuchi <tomohiro_masubuchiattripeaks.co.jp>
4508 Date:   Tue Oct 21 13:17:16 2008 +0900
4509
4510     Change to use "do_div" macro
4511
4512     Signed-off-by: Tomohiro Masubuchi <tomohiro_masubuchi@tripeaks.co.jp>
4513
4514 commit e352495318d8056a00faa21b633b3e4374bfbf52
4515 Author: Roman Mashak <romez777@gmail.com>
4516 Date:   Wed Oct 22 16:00:26 2008 -0400
4517
4518     ARM926EJ-S: relocate OMAP specific 'cpuinfo.c' into OMAP directory
4519
4520     OMAP identification is implemented in 'cpuinfo.c' and located in ARM926EJ-S directory.
4521     It makes sense to place this file in OMAP specific subdirectory, i.e. cpu/arm926ejs/omap
4522
4523     Signed-off-by: Roman Mashak <romez777@gmail.com>
4524
4525 commit 248b2c367210c06dbd5fbdecf27e97fbe9d05fdb
4526 Author: Roman Mashak <romez777@gmail.com>
4527 Date:   Tue Oct 21 03:01:41 2008 -0700
4528
4529     ARM/Versatile port: Removed unused functions
4530
4531     Removal of never used functions.
4532
4533     Signed-off-by: Roman Mashak <romez777@gmail.com>
4534
4535 commit 1266df887781c779deaf6d05eea2ef90a470cb34
4536 Author: Becky Bruce <becky.bruce@freescale.com>
4537 Date:   Mon Nov 3 15:44:01 2008 -0600
4538
4539     powerpc: change 86xx SMP boot method
4540
4541     We put the bootpg for the secondary cpus into memory and use
4542     BPTR to get to it.  This is a step towards converting to the
4543     ePAPR boot methodology.  Also, the code is written to
4544     deal properly with more than 4GB of RAM.
4545
4546     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4547
4548 commit b5431560682d8f318fbc49db87cfe13ab41d2ee4
4549 Author: Becky Bruce <becky.bruce@freescale.com>
4550 Date:   Fri Oct 31 17:13:49 2008 -0500
4551
4552     8641HPCN: Config file cleanup
4553
4554     There are several items in the config file that were hardcoded
4555     but that should really be based on other config options, since
4556     the regions are contiguous and depend on being so.  This cleans
4557     that up a bit.  Also, add BR_PHYS_ADDR() macro to convert
4558     addresses into the proper format for BR registers.
4559
4560     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4561
4562 commit 4c77de3f144ca088c3867bd6240718c10f5a9d69
4563 Author: Becky Bruce <becky.bruce@freescale.com>
4564 Date:   Fri Oct 31 17:13:32 2008 -0500
4565
4566     86xx: Make dram_size a phys_size_t
4567
4568     It's currently a long and should be phys_size_t.
4569
4570     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4571
4572 commit 104992fc541302a6bac74448e01e7fdad20abca0
4573 Author: Becky Bruce <becky.bruce@freescale.com>
4574 Date:   Sun Nov 2 18:19:32 2008 -0600
4575
4576     powerpc 86xx: Handle CCSR relocation earlier
4577
4578     Currently, the CCSR gets relocated while translation is
4579     enabled, meaning we need 2 BAT translations to get to both the
4580     old location and the new location.  Also, the DEFAULT
4581     CCSR location has a dependency on the BAT that maps the
4582     FLASH region.  Moving the relocation removes this unnecessary
4583     dependency. This makes it easier and more intutive to
4584     modify the board's memory map.
4585
4586     Swap BATs 3 and 4 on 8610 so that all 86xx boards use the same
4587     BAT for CCSR space.
4588
4589     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4590
4591 commit af5d100e8d5cd49d69d52d20f1181eb06ddb4ddf
4592 Author: Becky Bruce <becky.bruce@freescale.com>
4593 Date:   Fri Oct 31 17:14:14 2008 -0500
4594
4595     mpc8641: Make PCI and RIO mutually exclusive, fix non-PCI build
4596
4597     You can't actually have both, and with some coming changes to
4598     change the memory map for the board and support 36-bit physical,
4599     we need the extra BAT that is being consumed by having both.
4600
4601     I also make non-PCI configs build cleanly, for the sake of sanity.
4602
4603     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4604
4605 commit 98693b85d42ff438375dc6d6dcadc70eb7b050bb
4606 Author: Becky Bruce <becky.bruce@freescale.com>
4607 Date:   Fri Oct 31 17:14:00 2008 -0500
4608
4609     mpc8641: Stop supporting non-PCI_PNP configs
4610
4611     We don't actually ever do this, remove the code so we
4612     can stop maintaining it.
4613
4614     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4615
4616 commit e4f69d1bd21a12049744989d2dd6b5199c9b8f23
4617 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4618 Date:   Fri Oct 24 12:59:12 2008 +0000
4619
4620     ColdFire: Fix M5329EVB and M5373EVB nand issue
4621
4622     Fix compilation issue caused by a few mismatches.
4623     Provide proper nand chip select enable/disable in
4624     nand_hwcontrol() rather than in board_nand_init()
4625     just enable once. Remove redundant local nand driver
4626     functions - nand_read_byte(), nand_write_byte() and
4627     nand_dev_ready() to use common nand driver.
4628
4629     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4630
4631 commit 1b2708442224a551a0b865b52710306333888932
4632 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4633 Date:   Wed Oct 22 11:55:30 2008 +0000
4634
4635     ColdFire: Fix compilation error
4636
4637     The error was caused by the change for strmhz() in cpu.c.
4638     A few of them were one extra close parenthesis.
4639
4640     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4641
4642 commit 536e7dac16769954915a484e682a2efb28699133
4643 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4644 Date:   Wed Oct 22 11:38:21 2008 +0000
4645
4646     ColdFire: Add MCF5301x CPU and M53017EVB support
4647
4648     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4649
4650 commit a21d0c2cc9add8894d971ab791f4032f077db817
4651 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4652 Date:   Tue Oct 21 15:37:02 2008 +0000
4653
4654     ColdFire: Add SBF support for M52277EVB
4655
4656     Add serial boot support
4657
4658     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4659
4660 commit b202816c61042c183fe67d097a5893b0f2dafba0
4661 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4662 Date:   Tue Oct 21 14:19:26 2008 +0000
4663
4664     ColdFire: Use CFI driver for M5272C3
4665
4666     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4667
4668 commit f3962d3f574e5a1cffacd4e9bc48713060a2a314
4669 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4670 Date:   Tue Oct 21 13:47:54 2008 +0000
4671
4672     ColdFire: Relocate FEC's GPIO and mii functions protocols
4673
4674     Place FEC pin assignments in cpu_init.c from platform's
4675     mii.c
4676
4677     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4678
4679 commit 6e80f5aa09f8d41bac50b38dc7488ecd22107802
4680 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4681 Date:   Tue Oct 21 12:15:44 2008 +0000
4682
4683     ColdFire: Remove platforms mii.c file
4684
4685     Will use mcfmii.c driver in drivers/net rather than
4686     keep creating new mii.c for each future platform.
4687     Remove EB+MCF-EV123, cobra5272, idmr, M5235EVB,
4688     M5271EVB, M5272C3, M5275EVB, M5282EVB, M5329EVB,
4689     M5373EVB, M54451EVB, M54455EVB, M547xEVB, and M548xEVB's
4690     mii.c
4691
4692     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4693
4694 commit 012522fef3b382469125beb46a315ab4dee02fb0
4695 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4696 Date:   Tue Oct 21 10:03:07 2008 +0000
4697
4698     ColdFire: Modules header files cleanup
4699
4700     Consolidate ATA, ePORT, QSPI, FlexCan, PWM, RNG,
4701     MDHA, SKHA, INTC, and FlexBus structures and
4702     definitions in immap_5xxx.h to more unify modules
4703     header files. Append DSPI support for m547x_8x.
4704     SSI cleanup. Remove USB Host structure from immap_539.h.
4705     Apply changes to use FlexBus structures in mcf52x2's
4706     cpu_init.c and platform configuration files.
4707
4708     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4709
4710 commit ac2331aee99ad36be0fcfed8c49922e3c61b576d
4711 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4712 Date:   Tue Oct 21 08:52:36 2008 +0000
4713
4714     ColdFire: Remove linker file
4715
4716     Each different build for M54455EVB and M5235EVB will
4717     create a u-boot.lds linker file. It is redundant to
4718     keep the u-boot.lds
4719
4720     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4721
4722 commit 0829323073c505556ed5f5073f91adb504584d45
4723 Author: Peter Tyser <ptyser@xes-inc.com>
4724 Date:   Fri Oct 31 11:26:44 2008 -0500
4725
4726     ppc: Fix compile warnings when !CONFIG_OF_LIBFDT
4727
4728     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4729
4730 commit a80b21d5127583171d6e9bc7f722947641898012
4731 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4732 Date:   Fri Oct 31 12:12:12 2008 +0100
4733
4734     common/Makefile: create others group for non core, environment and command files
4735
4736     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4737
4738 commit 60c68d9c1c6d18ce02c862a05718fd94f97c13d0
4739 Author: Wolfgang Denk <wd@denx.de>
4740 Date:   Fri Oct 31 01:13:37 2008 +0100
4741
4742     TQM8260: use CFI flash driver instead of custom driver.
4743
4744     Signed-off-by: Wolfgang Denk <wd@denx.de>
4745
4746 commit 20d04774f4ef3f6e38974636e0e36ae0f0b5501f
4747 Author: Andy Fleming <afleming@freescale.com>
4748 Date:   Thu Oct 30 17:35:30 2008 -0500
4749
4750     Consolidate MAX/MIN definitions
4751
4752     There were several, now there is one (two if you count the lower-case
4753     versions).
4754
4755     Signed-off-by: Andy Fleming <afleming@freescale.com>
4756
4757 commit 298e476c66fd88d0bc4f0371118652d2b5de4e8a
4758 Author: Heiko Schocher <hs@denx.de>
4759 Date:   Thu Oct 30 09:23:09 2008 +0100
4760
4761     mgsuvd: remove unused defines in config file.
4762
4763     Signed-off-by: Heiko Schocher <hs@denx.de>
4764
4765 commit 3cbd823116ea8b7c654e275a8c2fca87cd1f5dc5
4766 Author: Wolfgang Denk <wd@denx.de>
4767 Date:   Sun Nov 2 16:14:22 2008 +0100
4768
4769     Coding Style cleanup, update CHANGELOG
4770
4771     Signed-off-by: Wolfgang Denk <wd@denx.de>
4772
4773 commit a47f957ab523019992fdef857af01bd71c58a4da
4774 Author: Alessandro Rubini <rubini-list@gnudd.com>
4775 Date:   Fri Oct 31 22:33:21 2008 +0100
4776
4777     NAND: Allow NAND and OneNAND to coexist
4778
4779     This removes in nand.h code that is verbatim duplicated from bbm.h,
4780     including directly bbm.h in nand.h. The previous state of affairs
4781     prevented compiling code for a board hosting both NAND and OneNAND chips.
4782
4783     Reported-by: Scott Wood <scottwood@freescale.com>
4784     Signed-off-by: Alessandro Rubini <rubini@unipv.it>
4785     Signed-off-by: Scott Wood <scottwood@freescale.com>
4786
4787 commit 2f77c7f45b9a37ef265a8dbe3c18efa706fed214
4788 Author: Scott Wood <scottwood@freescale.com>
4789 Date:   Fri Oct 31 13:51:12 2008 -0500
4790
4791     JFFS2: Eliminate compiler error when both NAND and OneNAND are enabled.
4792
4793     Reported-by: Alessandro Rubini <rubini-list@gnudd.com>
4794     Signed-off-by: Scott Wood <scottwood@freescale.com>
4795
4796 commit c57fc28947e248fb03c49a28b467686299895055
4797 Author: Jason Jin <Jason.Jin@freescale.com>
4798 Date:   Fri Oct 31 05:07:04 2008 -0500
4799
4800     NAND: Add NAND support for MPC8536DS board
4801
4802     This patch defines 1M TLB&LAW size for NAND on MPC8536DS, assigns 0xffa00000
4803     for CONFIG_SYS_NAND_BASE and adds other NAND supports in config file.
4804     It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image.
4805
4806     Singed-off-by: Jason Jin <Jason.Jin@freescale.com>
4807     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4808     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4809
4810 commit 6fc110bd8a8d642b8f7b0653bd9a08a0b7c3d50b
4811 Author: Haiying Wang <Haiying.Wang@freescale.com>
4812 Date:   Fri Oct 31 05:06:14 2008 -0500
4813
4814     NAND: Fix CONFIG_ENV_ADDR for MPC8572DS
4815
4816     CONFIG_ENV_ADDR should be (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE).
4817
4818     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4819     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4820
4821 commit 51b572a801be57790fe26adaa530210e7fba59cc
4822 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4823 Date:   Fri Oct 24 10:49:48 2008 +0900
4824
4825     sh: rsk7203: Moved rsk7203 board to board/renesas
4826
4827     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4828
4829 commit 58453b00b3ebb26aaa901210023f99504a90bb00
4830 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4831 Date:   Fri Oct 24 10:48:31 2008 +0900
4832
4833     sh: MigoR: Moved MigoR board to board/renesas
4834
4835     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4836
4837 commit c1da2a22817ba85b437afa2f4e715e658b219fd1
4838 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4839 Date:   Fri Oct 24 10:39:44 2008 +0900
4840
4841     sh: r2dplus: Moved r2dplus board to board/renesas
4842
4843     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4844
4845 commit 78385bf2359d828184d0b3649f7ae6b933420000
4846 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4847 Date:   Fri Oct 24 10:36:13 2008 +0900
4848
4849     sh: sh7763rdp: Moved sh7763rdp board to board/renesas
4850
4851     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4852
4853 commit c6525d459c350bfc246ea7826456af77e1e314eb
4854 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4855 Date:   Fri Oct 24 10:35:19 2008 +0900
4856
4857     sh: sh7785lcr: Moved sh7785lcr board to board/renesas
4858
4859     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4860
4861 commit acd3e30d09a73f876222f0d496c4f52ee9d0771d
4862 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4863 Date:   Fri Oct 24 10:34:21 2008 +0900
4864
4865     sh: r7780mp: Moved r7780mp board to board/renesas
4866
4867     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4868
4869 commit f84e6ea275353b8fea772ec7553ff7e4b1f642e0
4870 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4871 Date:   Fri Oct 24 10:32:14 2008 +0900
4872
4873     sh: ap325rxa: Moved ap325rxa board to board/renesas
4874
4875     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4876
4877 commit 9abda6ba735efb059f63dcb25d78b174bfcad1ad
4878 Author: Wolfgang Denk <wd@xpert.denx.de>
4879 Date:   Fri Oct 31 01:12:28 2008 +0100
4880
4881     CFI Driver: Fix "flash not ready" problem
4882
4883     This patch fixes a problem on systems where the NOR flash is attached
4884     to a 64 bit bus.  The toggle bit detection in flash_toggle() is based
4885     on the assumption that the same flash address is read twice without
4886     any other interjacent flash accesses.  However, on 32 bit systems the
4887     function flash_read64() [as currently implemented] does not perform
4888     an atomic 64 bit read - instead, this is broken down into two 32 bit
4889     read accesses on addresses "addr" and "addr + 4".  So instead of
4890     reading a 64 bit value twice from "addr", we see a sequence of 4 32
4891     bit reads from "addr", "addr + 4", "addr", and "addr + 4".  The
4892     consequence is that flash_toggle() fails to work.
4893
4894     This patch implements a simple, but somewhat ugly solution, as it
4895     avoids the use of flash_read64() in this critical place (by breaking
4896     it down manually into 32 bit read operations) instead of rewriting
4897     flash_read64() such to perform atomic 64 bit reads as one could
4898     expect.  However, such a rewrite would require the use of floating
4899     point load operations, which becomes pretty complex:
4900
4901         save MSR;
4902         set Floating Point Enable bit in MSR;
4903         use "lfd" instruction to perform atomic 64 bit read;
4904         use "stfd" to store value to temporary variable on stack;
4905         load u64 value from temporary variable;
4906         restore saved MSR;
4907         return u64 value;
4908
4909     The benefit-cost ratio of such an implementation was considered too
4910     bad to actually attempt this, especially as we can expect that such
4911     an implementation would not only have a bigger memory footprint but
4912     also cause a performance degradation.
4913
4914     Signed-off-by: Wolfgang Denk <wd@denx.de>
4915     Signed-off-by: Stefan Roese <sr@denx.de>
4916
4917 commit cdd4fe63b094d4b767f12ff241d72566b461ee61
4918 Author: Stefan Roese <sr@denx.de>
4919 Date:   Fri Oct 31 10:48:08 2008 +0100
4920
4921     ppc4xx: Fix spelling error in MAINTAINERS file
4922
4923     Signed-off-by: Stefan Roese <sr@denx.de>
4924
4925 commit be270798900b75ad9c47c7b79c72f70441196c56
4926 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4927 Date:   Tue Oct 28 13:37:00 2008 +0100
4928
4929     ppc4xx: Update PMC440 board support
4930
4931     This patch brings PMC440 board support up to date:
4932
4933     - fix GPIO configuration
4934     - add misc_init_f()
4935     - use better values for usbact variable
4936     - fix USB 2.0 phy reset sequence
4937     - shrink BAR2 to save PCI address space
4938     - add FDT support
4939
4940     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4941     Signed-off-by: Stefan Roese <sr@denx.de>
4942
4943 commit 75183b1a7fc04206d9779d13f16e03853d7e965d
4944 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4945 Date:   Tue Oct 28 13:36:59 2008 +0100
4946
4947     ppc4xx: Fix PMC440 BSP commands
4948
4949     This patch fixes the PMC440 BSP commands painit and selfreset
4950
4951     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4952     Signed-off-by: Stefan Roese <sr@denx.de>
4953
4954 commit 76b565b69f886d5ae748db65e44f464b0e70d41a
4955 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4956 Date:   Tue Oct 28 13:36:58 2008 +0100
4957
4958     ppc4xx: Update PMC440 board configuration
4959
4960     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4961     Signed-off-by: Stefan Roese <sr@denx.de>
4962
4963 commit ca0c2d42b93116a8e1b8ef8ad4493c7dc9b5f2e4
4964 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4965 Date:   Tue Oct 28 13:36:57 2008 +0100
4966
4967     ppc4xx: Fix esd loadpci command
4968
4969     This patch fixes esd's loadpci command when not all
4970     memory on adapter boards is accessable via PCI.
4971
4972     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4973     Signed-off-by: Stefan Roese <sr@denx.de>
4974
4975 commit 492aa9ea13791ca4591b5bde895a425e27ae2d10
4976 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4977 Date:   Tue Oct 28 13:36:56 2008 +0100
4978
4979     ppc4xx: Clean up PMC440 header
4980
4981     -Codingstyle cleanup
4982     -Remove unused GPIO define
4983
4984     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4985     Signed-off-by: Stefan Roese <sr@denx.de>
4986
4987 commit 295133258a44f97a57fb2ec339aecfda11f4db95
4988 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4989 Date:   Tue Oct 28 13:36:55 2008 +0100
4990
4991     ppc4xx: Handle other board variant in PMC440 FPGA code
4992
4993     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4994     Signed-off-by: Stefan Roese <sr@denx.de>
4995
4996 commit cc2dc9b08cf7c09f9f237f8cb9303f11603d4fb0
4997 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
4998 Date:   Mon Oct 27 12:35:59 2008 +0100
4999
5000     ppc4xx: Merge xilinx-ppc440 and xilinx-ppc405 cfg
5001
5002     Xilinx ppc440 and ppc405 have many similarities. This patch merge the
5003     config files of both infrastuctures
5004
5005     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
5006     Signed-off-by: Stefan Roese <sr@denx.de>
5007
5008 commit 3befd85633d33c4dcca1f359c3f4848c5ab8e4d2
5009 Author: Stefan Roese <sr@denx.de>
5010 Date:   Sat Oct 25 06:45:31 2008 +0200
5011
5012     ppc4xx: Correctly configure the GPIO pin muxing on Arches
5013
5014     Arches doesn't use PerCS3 but GPIO43, so let's configure the GPIO
5015     pin multiplexing correctly
5016
5017     Signed-off-by: Stefan Roese <sr@denx.de>
5018
5019 commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c
5020 Author: Bartlomiej Sieka <tur@semihalf.com>
5021 Date:   Thu Oct 30 23:22:04 2008 +0100
5022
5023     Fix to the auto-update feature documentation (CONFIG_UPDATE_TFTP_MSEC_MAX)
5024
5025     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
5026
5027 commit 4bc7deee9095f21e243b724ca3d634251c1d5432
5028 Author: David Gibson <david@gibson.dropbear.id.au>
5029 Date:   Wed Oct 29 23:27:45 2008 -0500
5030
5031     libfdt: Fix bug in fdt_subnode_offset_namelen()
5032
5033     There's currently an off-by-one bug in fdt_subnode_offset_namelen()
5034     which causes it to keep searching after it's finished the subnodes of
5035     the given parent, and into the subnodes of siblings of the original
5036     node which come after it in the tree.
5037
5038     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
5039     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5040
5041 commit f242a08871839eac081ba5b599af979f3a148a0d
5042 Author: Peter Korsgaard <jacmet@sunsite.dk>
5043 Date:   Tue Oct 28 08:26:52 2008 +0100
5044
5045     fdt_resize(): ensure minimum padding
5046
5047     fdt_add_mem_rsv() requires space for a struct fdt_reserve_entry
5048     (16 bytes), so make sure that fdt_resize at least adds that much
5049     padding, no matter what the location or size of the fdt is.
5050
5051     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
5052     Acked-by: Andy Fleming <afleming@freescale.com>
5053
5054 commit d685b74c64a38849f1a129b3ab846fbf67dd937e
5055 Author: Dave Liu <daveliu@freescale.com>
5056 Date:   Thu Oct 23 21:59:35 2008 +0800
5057
5058     74xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
5059
5060     The patch is following the commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
5061
5062     mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
5063
5064     This is needed in unlock_ram_in_cache() because it is called from C and
5065     will corrupt the small data area anchor that is kept in R2.
5066
5067     lock_ram_in_cache() is modified similarly as good coding practice, but
5068     is not called from C.
5069
5070     Signed-off-by: Nick Spence <nick.spence@freescale.com>
5071
5072     also, the r2 is used as global data pointer.
5073
5074     Signed-off-by: Dave Liu <daveliu@freescale.com>
5075
5076 commit e053ab1903ccae6048ef759025b9f675bba91450
5077 Author: Scott Wood <scottwood@freescale.com>
5078 Date:   Tue Oct 28 11:45:04 2008 -0500
5079
5080     mpc83xx pci: Round up memory size in inbound window.
5081
5082     The current calculation will fail to cover all memory if
5083     its size is not a power of two.
5084
5085     Signed-off-by: Scott Wood <scottwood@freescale.com>
5086     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5087
5088 commit 1c671977dc81359628be27ac99c174e76e8069ba
5089 Author: Dave Liu <daveliu@freescale.com>
5090 Date:   Thu Oct 23 21:19:13 2008 +0800
5091
5092     86xx: remove the unused definition
5093
5094     Signed-off-by: Dave Liu <daveliu@freescale.com>
5095
5096 commit eaa44c5dc83756c3067b9e6c9db626facd0b0660
5097 Author: Dave Liu <daveliu@freescale.com>
5098 Date:   Tue Oct 28 17:47:49 2008 +0800
5099
5100     86xx: remove the redundant r2 global data pointer save
5101
5102     The commit 67256678f00c09b0a7f19e862e5c1847553d31bc add
5103     the another global data pointer save, but in fact the
5104     global data pointer will be initialized in the board_init_r,
5105     so remove it such as the 85xx/83xx family.
5106
5107     Signed-off-by: Dave Liu <daveliu@freescale.com>
5108     Acked-by: Kumar Gala <kumar.gala@freescale.com>
5109
5110 commit bd888e9544419665334a6f47f81f34011cea38f3
5111 Author: Dave Liu <daveliu@freescale.com>
5112 Date:   Tue Oct 28 17:47:41 2008 +0800
5113
5114     86xx: remove the unused code for 86xx family
5115
5116     I believe these code was copied from 74xx family, but for
5117     86xx, it is unused.
5118
5119     Signed-off-by: Dave Liu <daveliu@freescale.com>
5120     Acked-by: Kumar Gala <kumar.gala@freescale.com>
5121
5122 commit 5ba1ef507402bc5e344dc374203792a40f222e8a
5123 Author: Dave Liu <daveliu@freescale.com>
5124 Date:   Tue Oct 28 17:46:35 2008 +0800
5125
5126     86xx: remove the second DDR LAW setting for mpc8641hpcn
5127
5128     The DDR1 LAW will precedence the DDR2 LAW, so remove
5129     the second DDR LAW.
5130
5131     Signed-off-by: Dave Liu <daveliu@freescale.com>
5132     Acked-by: Becky Bruce <becky.bruce@freescale.com>
5133
5134 commit 137a2dfd11ac51ae3154f13f323609b33a4a072e
5135 Author: Dave Liu <daveliu@freescale.com>
5136 Date:   Tue Oct 28 17:46:23 2008 +0800
5137
5138     86xx: remove the unused ddr_enable_ecc in the board file
5139
5140     The DDR controller of 86xx processors have the ECC data init
5141     feature, and the new DDR code is using the feature, we don't
5142     need the way with DMA to init memory again.
5143
5144     Signed-off-by: Dave Liu <daveliu@freescale.com>
5145     Acked-by: Kumar Gala <kumar.gala@freescale.com>
5146
5147 commit dc2adad85bf580d65916c940683f6e9671e8a5dd
5148 Author: Dave Liu <daveliu@freescale.com>
5149 Date:   Tue Oct 28 17:46:12 2008 +0800
5150
5151     86xx: Move the clear_tlbs before MMU turn on
5152
5153     We must invalidate TLBs before MMU turn on, but
5154     currently the code is not, if there are some stale
5155     TLB entry valid in the TLBs, it will cause strange
5156     issue.
5157
5158     Signed-off-by: Dave Liu <daveliu@freescale.com>
5159     Acked-by: Becky Bruce <becky.bruce@freescale.com>
5160
5161 commit 5cdade07b118d07154cb882650f9778cecc8a87c
5162 Author: Scott Wood <scottwood@freescale.com>
5163 Date:   Mon Oct 27 15:57:08 2008 -0500
5164
5165     mpc8313erdb: Document NAND boot.
5166
5167     Previously, the documentation claimed that NAND boot is not supported.
5168     This is no longer true.
5169
5170     Signed-off-by: Scott Wood <scottwood@freescale.com>
5171
5172 commit bd78bc6b2aebf5566aac464f936b88dfd97ab0bd
5173 Author: Scott Wood <scottwood@freescale.com>
5174 Date:   Wed Oct 29 14:20:26 2008 -0500
5175
5176     NAND: Properly create JFFS2 cleanmarkers.
5177
5178     As reported by Ilko Iliev <iliev@ronetix.at>, the "nand erase clean"
5179     command is currently broken, and among other things causes all blocks
5180     to be marked bad.
5181
5182     This implements it properly using MTD_OOB_AUTO, along with some
5183     indentation fixes.
5184
5185     Signed-off-by: Scott Wood <scottwood@freescale.com>
5186
5187 commit f7fe57c09866b44692d18c8cf22828bd137ec58d
5188 Author: Scott Wood <scottwood@freescale.com>
5189 Date:   Wed Oct 29 13:42:41 2008 -0500
5190
5191     NAND fsl elbc: Set FMR[ECCM] based on page size.
5192
5193     Hardware expects ECCM 0 for small page and ECCM 1 for large page
5194     when booting from NAND, so use those defaults.
5195
5196     Signed-off-by: Scott Wood <scottwood@freescale.com>
5197
5198 commit c013b74975dab0805ef6d369b013230c4e8a660d
5199 Author: Haiying Wang <Haiying.Wang@freescale.com>
5200 Date:   Wed Oct 29 13:32:59 2008 -0400
5201
5202     NAND: Add support for MPC8572DS board
5203
5204     This patch defines 1M TLB&LAW size for NAND on MPC8572DS, assigns
5205     0xffa00000 for CONFIG_SYS_NAND_BASE and adds other NAND supports in
5206     config file.
5207
5208     It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image, to
5209     make room for the increased code size with NAND enabled.
5210
5211     Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
5212     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
5213     Signed-off-by: Scott Wood <scottwood@freescale.com>
5214
5215 commit 4e190b03aaf2309bd2e025d1187a2ca880fedc95
5216 Author: Haiying Wang <Haiying.Wang@freescale.com>
5217 Date:   Wed Oct 29 11:05:55 2008 -0400
5218
5219     Make Freescale local bus registers available for both 83xx and 85xx.
5220
5221     - Rename lbus83xx_t to fsl_lbus_t and move it to asm/fsl_lbc.h so that it
5222       can be shared by both 83xx and 85xx
5223     - Remove lbus83xx_t and replace it with fsl_lbus_t in all 83xx boards
5224       files which use lbus83xx_t.
5225     - Move FMR, FIR, FCR, FPAR, LTESR from mpc83xx.h to asm/fsl_lbc.h so that
5226       85xx can share them.
5227
5228     Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
5229     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
5230     Signed-off-by: Scott Wood <scottwood@freescale.com>
5231
5232 commit 695c130e4bf75b444720ddfd83aca88f41c046cf
5233 Author: Scott Wood <scottwood@freescale.com>
5234 Date:   Mon Oct 27 15:38:30 2008 -0500
5235
5236     NAND: Align right column of the shorthelp with other commands.
5237
5238     I accidentally broke this in when making consistent the partial
5239     alignment of the longhelp.
5240
5241     Signed-off-by: Scott Wood <scottwood@freescale.com>
5242
5243 commit 33efde5ecac91ab118ff00b95a181fd6d75f8645
5244 Author: Karl Beldan <karl.beldan@gmail.com>
5245 Date:   Mon Sep 15 16:08:03 2008 +0200
5246
5247     NAND: Reset chip on power-up
5248
5249     Some chips require a RESET after power-up (e.g. Micron MT29FxGxxxxx).
5250     The first command sent is NAND_CMD_READID.
5251     Issue a NAND_CMD_RESET in nand_scan_ident before reading the device id.
5252     Tested with an MT29F4G08AAC.
5253
5254     Signed-off-by: Karl Beldan <karl.beldan@gmail.com>
5255     Signed-off-by: Scott Wood <scottwood@freescale.com>
5256
5257 commit c45912d8abc52de796b9059a58faf7c4166eab58
5258 Author: Scott Wood <scottwood@freescale.com>
5259 Date:   Fri Oct 24 16:20:43 2008 -0500
5260
5261     NAND: sync with 2.6.27
5262
5263     This brings the core NAND code up to date with the Linux kernel.
5264
5265     Since there were several drivers in Linux as of the last update that are
5266     not in u-boot, I'm not bringing over new drivers that have been added
5267     since in the absence of an interested party.
5268
5269     I did not update OneNAND since it was recently synced by Kyungmin Park,
5270     and I'm not sure exactly what the common ancestor is.
5271
5272     Signed-off-by: Scott Wood <scottwood@freescale.com>
5273
5274 commit b1d0db1805c3395149777e507b6da53410abac4e
5275 Author: Kumar Gala <galak@kernel.crashing.org>
5276 Date:   Tue Oct 21 17:25:47 2008 -0500
5277
5278     bootm: Added CONFIG_BOOTM_{LINUX, NETBSD, RTEMS}
5279
5280     Added the ability to config out bootm support for Linux, NetBSD, RTEMS
5281
5282     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5283
5284 commit 5a98127d81a6eefc5a78a704df619bfe362eeb87
5285 Author: Kumar Gala <galak@kernel.crashing.org>
5286 Date:   Tue Oct 21 17:25:46 2008 -0500
5287
5288     bootm: support subcommands in linux ppc bootm
5289
5290     Add support for 'bdt', 'cmdline', 'prep' to the linux PPC bootm.
5291
5292     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5293
5294 commit 49c3a861d11735838f1f1b11999ce433006dc919
5295 Author: Kumar Gala <galak@kernel.crashing.org>
5296 Date:   Tue Oct 21 17:25:45 2008 -0500
5297
5298     bootm: Add subcommands
5299
5300     Add the ability to break the steps of the bootm command into several
5301     subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
5302
5303     This allows us to do things like manipulate device trees before
5304     they are passed to a booting kernel or setup memory for a secondary
5305     core in multicore situations.
5306
5307     Not all OS types support all subcommands (currently only start, loados,
5308     ramdisk, fdt, and go are supported).
5309
5310     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5311
5312 commit be08315933537f061bc1ce61f33a29c56458bbad
5313 Author: Kumar Gala <galak@kernel.crashing.org>
5314 Date:   Tue Oct 21 17:25:44 2008 -0500
5315
5316     bootm: Move to using a function pointer table for the boot os function
5317
5318     This removes a bit of code and makes it easier for the upcoming sub bootm
5319     command support to call into the proper OS specific handler.
5320
5321     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5322     Signed-off-by: Wolfgang Denk <wd@denx.de>
5323
5324 commit a369f4a492fa2805d87775d27380f0eeaca35aa6
5325 Author: Graeme Russ <graeme.russ@gmail.com>
5326 Date:   Mon Sep 29 23:03:14 2008 +1000
5327
5328     i386: Renamed show_boot_progress in assembler code
5329
5330     Renamed show_boot_progress in assembler init phase to
5331     show_boot_progress_asm to avoid link conflicts with C version
5332
5333     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
5334
5335 commit 4442f45b0e1cbad35aa22d4cad22b90a57e3f32d
5336 Author: Peter Tyser <ptyser@xes-inc.com>
5337 Date:   Mon Oct 27 16:42:00 2008 -0500
5338
5339     85xx: Update MPC85xx_PORDEVSR_IO_SEL mask
5340
5341     The MPC8572 has a 4-bit wide PORDEVSR IO_SEL field. Other MPC85xx
5342     processors have a 3-bit wide IO_SEL field but have the most
5343     significant bit is wired to 0 so this change should not affect
5344     them.
5345
5346     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5347
5348 commit cd4251624205cb97104f6e32679dc7754934f711
5349 Author: Becky Bruce <becky.bruce@freescale.com>
5350 Date:   Mon Oct 27 16:09:42 2008 -0500
5351
5352     powerpc: fix pci window initialization to work with > 4GB DRAM
5353
5354     The existing code has a few errors that need to be fixed in
5355     order to support large RAM sizes.  Fix those, and add a
5356     comment to make it clearer.
5357
5358     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
5359     Acked-by: Kumar Gala <galak@kernel.crashing.org>
5360
5361 commit 219542a1a66ca017b12860920714a9859b18a5d7
5362 Author: Kumar Gala <galak@kernel.crashing.org>
5363 Date:   Mon Oct 27 13:16:20 2008 -0500
5364
5365     pci/fsl_pci_init: Removed a bunch pointless trailing backslashes.
5366
5367     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5368
5369 commit 6b59e03e0237a40a2305ea385defdfd92000978b
5370 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5371 Date:   Mon Sep 1 16:21:22 2008 +0200
5372
5373     lcd: Let the board code show board-specific info
5374
5375     The information displayed when CONFIG_LCD_INFO is set is inherently
5376     board-specific, so it should be done by the board code. The current code
5377     dealing with this only handles two cases, and is already a horrible mess
5378     of #ifdeffery.
5379
5380     Yes, this duplicates some code, but it also allows boards to print more
5381     board-specific information; this used to be very difficult.
5382
5383     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5384     Signed-off-by: Anatolij Gustschin <agust@denx.de>
5385
5386 commit 6f93d2b8fca504200a5758f7c6dd2d6852900765
5387 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5388 Date:   Mon Sep 1 16:21:21 2008 +0200
5389
5390     lcd: Set lcd_is_enabled before clearing the screen
5391
5392     This allows the logo/info rendering routines to use the regular
5393     lcd_putc/lcd_puts/lcd_printf calls.
5394
5395     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5396     Signed-off-by: Anatolij Gustschin <agust@denx.de>
5397
5398 commit 15b17ab52b7c15d46d9fc631cc06092e1e764de2
5399 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5400 Date:   Mon Sep 1 16:21:20 2008 +0200
5401
5402     lcd: Implement lcd_printf()
5403
5404     lcd_printf() has a prototype in include/lcd.h but no implementation. Fix
5405     this by borrowing the lcd_printf() implementation from the cogent board
5406     code (which appears to use its own LCD framework.)
5407
5408     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5409     Signed-off-by: Anatolij Gustschin <agust@denx.de>
5410
5411 commit 70dbc54c0a5c798bcf82ae2a1e227404f412e892
5412 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5413 Date:   Mon Sep 1 16:21:19 2008 +0200
5414
5415     atmel_lcdfb: Straighten out funky vl_sync logic
5416
5417     If the board _didn't_ request INVLINE_INVERTED, we set INVLINE_INVERTED,
5418     otherwise we don't. WTF?
5419
5420     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5421     Signed-off-by: Anatolij Gustschin <agust@denx.de>
5422
5423 commit 23bb28f0f76b46c4b573374b0bb3b3f23d85ef55
5424 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5425 Date:   Mon Sep 1 16:21:18 2008 +0200
5426
5427     atmel_lcdfb: Eliminate unneeded #include <asm/arch/hardware.h>
5428
5429     atmel_lcdfb doesn't actually need anything from asm/arch/hardware.h. It
5430     includes a file that does, asm/arch/gpio.h, but this file doesn't
5431     include <asm/arch/hardware.h> like it's supposed to.
5432
5433     Add the missing include to asm/arch/gpio.h and remove the workaround
5434     from the atmel_lcdfb driver. This makes the driver compile on avr32.
5435
5436     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5437     Signed-off-by: Anatolij Gustschin <agust@denx.de>
5438
5439 commit c2083e0e11a03ef8be2e9f0ed8720fdc20832f3e
5440 Author: Kumar Gala <galak@kernel.crashing.org>
5441 Date:   Wed Oct 22 14:38:55 2008 -0500
5442
5443     86xx: Convert all fsl_pci_init users to new APIs
5444
5445     Converted MPC8610HCPD, MPC8641HPCN, and SBC8641D to use
5446     fsl_pci_setup_inbound_windows() and ft_fsl_pci_setup().
5447
5448     With these changes the board code is a bit smaller and we get dma-ranges
5449     set in the device tree for these boards.
5450
5451     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5452     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
5453     Acked-by: Jon Loeliger <jdl@freescale.com>
5454
5455 commit 2dba0dea98c0dee1799ffd6fd6eb541645dbbd98
5456 Author: Kumar Gala <galak@kernel.crashing.org>
5457 Date:   Tue Oct 21 08:28:33 2008 -0500
5458
5459     85xx: Convert all fsl_pci_init users to new APIs
5460
5461     Converted ATUM8548, MPC8536DS, MPC8544DS, MPC8548CDS, MPC8568MDS,
5462     MPC8572DS, TQM85xx, and SBC8548 to use fsl_pci_setup_inbound_windows()
5463     and ft_fsl_pci_setup().
5464
5465     With these changes the board code is a bit smaller and we get dma-ranges
5466     set in the device tree for these boards.
5467
5468     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5469     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
5470
5471 commit a2aab460727e5f674353a83a81000ef794bffcae
5472 Author: Kumar Gala <galak@kernel.crashing.org>
5473 Date:   Thu Oct 23 00:01:06 2008 -0500
5474
5475     pci/fsl_pci_init: Added fdt helper for setting up bus-ranges & dma-ranges
5476
5477     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5478     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
5479
5480 commit b9a1fa9787a3a79573f5f932a4f8aa216bcb1785
5481 Author: Kumar Gala <galak@kernel.crashing.org>
5482 Date:   Wed Oct 22 14:06:24 2008 -0500
5483
5484     pci/fsl_pci_init: Add a common PCI inbound setup function
5485
5486     Add a common setup function that determines the pci_region(s) based
5487     on how much memory we have in the system.
5488
5489     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5490     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
5491
5492 commit 612ea01018a459234d54ed57ec6a5a244ce75678
5493 Author: Kumar Gala <galak@kernel.crashing.org>
5494 Date:   Tue Oct 21 10:13:14 2008 -0500
5495
5496     pci/fsl_pci_init: Enable larger address and setting inbound windows properly
5497
5498     * PCI Inbound window was setup incorrectly.  The PCI address and system
5499       address were swapped.  The PCI address should be setting piwar/piwbear
5500       and the system address should be setting pitar.
5501
5502     * Removed masking of addresses to allow for system address to support
5503       system address & PCI address >32-bits
5504
5505     * Set PIWBEAR & POTEAR to allow for full 64-bit PCI addresses
5506
5507     * Respect the PCI_REGION_PREFETCH for inbound windows
5508
5509     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5510     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
5511
5512 commit 8ab451c46b846f2bbd7122b29ffdd9a4a04da228
5513 Author: Kumar Gala <galak@kernel.crashing.org>
5514 Date:   Wed Oct 22 23:33:56 2008 -0500
5515
5516     fdt: Added helper to set PCI dma-ranges property
5517
5518     Added fdt_pci_dma_ranges() that parses the pci_region info from the
5519     struct pci_controller and populates the dma-ranges based on it.
5520
5521     The max # of windws/dma-ranges we support is 3 since on embedded
5522     PowerPC based systems this is the max number of windows.
5523
5524     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5525     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
5526
5527 commit 3bed2aaf2d50fd13273c14d17d4fd40ef42e0d0f
5528 Author: Kumar Gala <galak@kernel.crashing.org>
5529 Date:   Thu Oct 23 00:05:47 2008 -0500
5530
5531     fdt: Add fdt_getprop_u32_default helpers
5532
5533     Add helper functions to return find a node and return it's property
5534     or a default value.
5535
5536     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5537     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
5538     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
5539
5540 commit 8ba93f68a1bae89e033527ce67b41b4a87aa5b7f
5541 Author: Kumar Gala <galak@kernel.crashing.org>
5542 Date:   Tue Oct 21 18:06:15 2008 -0500
5543
5544     86xx: Enable 64-bit PCI resources on all Freescale boards
5545
5546     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5547     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
5548
5549 commit 0151cbaccf4504821ecfde0217299bd740086bb6
5550 Author: Kumar Gala <galak@kernel.crashing.org>
5551 Date:   Tue Oct 21 11:33:58 2008 -0500
5552
5553     85xx: Enable 64-bit PCI resources on all Freescale boards
5554
5555     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5556     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
5557
5558 commit 30e76d5e3bc4c5208ee63585fe12b409d9308cd8
5559 Author: Kumar Gala <galak@kernel.crashing.org>
5560 Date:   Tue Oct 21 08:36:08 2008 -0500
5561
5562     pci: Allow for PCI addresses to be 64-bit
5563
5564     PCI bus is inherently 64-bit.  While not all system require access to
5565     the full 64-bit PCI address range some do.  This allows those systems
5566     to enable the full PCI address width via CONFIG_SYS_PCI_64BIT.
5567
5568     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5569     Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
5570     Acked-by: Wolfgang Denk <wd@denx.de>
5571
5572 commit ae5f943ba8ede448a4b1a145fd8911856701ecc5
5573 Author: Dave Liu <daveliu@freescale.com>
5574 Date:   Thu Oct 23 21:18:53 2008 +0800
5575
5576     85xx: Fix the incorrect register used for DDR erratum1
5577
5578     The 8572 DDR erratum1:
5579     DDR controller may enter an illegal state when operating
5580     in 32-bit bus mode with 4-beat bursts.
5581
5582     Description:
5583     When operating with a 32-bit bus, it is recommended that
5584     DDR_SDRAM_CFG[8_BE] is cleared when DDR2 memories are used.
5585     This forces the DDR controller to use 4-beat bursts when
5586     communicating to the DRAMs. However, an issue exists that
5587     could lead to data corruption when the DDR controller is
5588     in 32-bit bus mode while using 4-beat bursts.
5589
5590     Projected Impact:
5591     If the DDR controller is operating in 32-bit bus mode with
5592     4-beat bursts, then the controller may enter into a bad state.
5593     All subsequent reads from memory is corrupted.
5594     Four-beat bursts with a 32-bit bus only is used with DDR2 memories.
5595     Therefore, this erratum does not affect DDR3 mode.
5596
5597     Work Arounds:
5598     To work around this issue, software must set DEBUG_1[31] in
5599     DDR memory mapped space (CCSRBAR offset + 0x2f00 for DDR_1
5600     and CCSRBAR offset + 0x6f00 for DDR_2).
5601
5602     Currenlty, the code is using incorrect register DDR_SDRAM_CFG_2
5603     as condition, but it should be DDR_SDRAM_CFG register.
5604
5605     Signed-off-by: Dave Liu <daveliu@freescale.com>
5606
5607 commit d5b693090ed08d24c18491df9d8fc7387b2906f3
5608 Author: Dave Liu <daveliu@freescale.com>
5609 Date:   Thu Oct 23 21:17:19 2008 +0800
5610
5611     85xx: remove unused config definition
5612
5613     Signed-off-by: Dave Liu <daveliu@freescale.com>
5614
5615 commit 0f060c3bf82832331a509f2e5d2442539e7aad09
5616 Author: Kumar Gala <galak@kernel.crashing.org>
5617 Date:   Thu Oct 23 01:47:38 2008 -0500
5618
5619     85xx: Add basic e500mc core support
5620
5621     Introduce CONFIG_E500MC to deal with the minor differences between
5622     e500v2 and e500mc.
5623
5624     * Certain fields of HID0/1 don't exist anymore on e500mc
5625     * Cache line size is 64-bytes on e500mc
5626     * reset value of PIR is different
5627
5628     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5629
5630 commit a38a5b6edd30f29fd5fdb1d7f674521906c0e677
5631 Author: Kumar Gala <galak@kernel.crashing.org>
5632 Date:   Thu Oct 23 01:47:37 2008 -0500
5633
5634     85xx: Use CONFIG_SYS_CACHELINE_SIZE instead of magic number
5635
5636     Using CONFIG_SYS_CACHELINE_SIZE instead of 31 means we can handle
5637     e500mc's 64-byte cacheline properly when it gets added.
5638
5639     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5640
5641 commit 5deb8022c3749faac30e9ad9694691e2442b5c93
5642 Author: Georg Schardt <schardt@team-ctech.de>
5643 Date:   Fri Oct 24 13:51:52 2008 +0200
5644
5645     ppc4xx: New board avnet fx12 minimodul
5646
5647     This patch adds support for the avnet fx12 minimodul.
5648     It needs the "ppc4xx: Generic architecture for xilinx ppc405"
5649     patch from Ricardo.
5650
5651     Signed-off-by: Georg Schardt <schardt@team-ctech.de>
5652     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
5653     Signed-off-by: Stefan Roese <sr@denx.de>
5654
5655 commit 1f4d53260ec6f8f122aed75cce7c757d97a551e0
5656 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
5657 Date:   Tue Oct 21 18:29:46 2008 +0200
5658
5659     ppc4xx: Generic architecture for xilinx ppc405(v3)
5660
5661     As "ppc44x: Unification of virtex5 pp440 boards" did for the xilinx
5662     ppc440 boards, this patch presents a common architecture for all the
5663     xilinx ppc405 boards.
5664
5665     Any custom xilinx ppc405 board can be added very easily with no code
5666     duplicity.
5667
5668     This patch also adds a simple generic board, that can be used on almost
5669     any design with xilinx ppc405 replacing the file ppc405-generic/xparameters.h
5670
5671     This patch is prepared to work with the latest version of EDK (10.1)
5672
5673     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
5674     Signed-off-by: Stefan Roese <sr@denx.de>
5675
5676 commit 485c00a57fab86f72a3769480c66bf1ca22e1459
5677 Author: Stefan Roese <sr@denx.de>
5678 Date:   Fri Oct 24 08:56:09 2008 +0200
5679
5680     ppc4xx: Disable DDR2 autocalibration on Kilauea for now
5681
5682     Since the new autocalibration still has some problems on some Kilauea
5683     boards with 200MHz DDR2 frequency we disable the autocalibration and
5684     use the hardcoded values as done before. This seems to work reliably
5685     on all known DDR2 frequencies.
5686
5687     After the autocalibration issue is fixed we will enable it again.
5688
5689     Signed-off-by: Stefan Roese <sr@denx.de>
5690
5691 commit f177f4250c729727b1629fa8d8d6556c999e9b8c
5692 Author: Mike Frysinger <vapier@gentoo.org>
5693 Date:   Wed Apr 9 02:02:07 2008 -0400
5694
5695     Blackfin: fix up UART status bit handling
5696
5697     Some Blackfin UARTs are read-to-clear while others are write-to-clear.
5698     This can cause problems when we poll the LSR and then later try and handle
5699     any errors detected.
5700
5701     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5702
5703 commit ae0910298f31f5bb3d33a64b8467c60ea3c5d6d0
5704 Author: Mike Frysinger <vapier@gentoo.org>
5705 Date:   Sat Oct 11 20:42:17 2008 -0400
5706
5707     Blackfin: bf561-ezkit: drop redundant code
5708
5709     Common Blackfin code already announces CPU information.
5710
5711     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5712
5713 commit e2eea98bff1369f77a9f59a5fd0bd4928bc3332e
5714 Author: Mike Frysinger <vapier@gentoo.org>
5715 Date:   Sat Oct 11 20:43:10 2008 -0400
5716
5717     Blackfin: bf561-ezkit: drop pointless USB code
5718
5719     The USB/LAN register settings are not actually used/needed in order to
5720     drive things from U-Boot, so drop the code.
5721
5722     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5723
5724 commit c23bff63fb03cb9dbcd26522841e53f9b34fa1ab
5725 Author: Mike Frysinger <vapier@gentoo.org>
5726 Date:   Sat Oct 11 20:47:58 2008 -0400
5727
5728     Blackfin: linker scripts: force start.o and set initcode boundaries
5729
5730     Make sure that the start.o object is always the first object in our linker
5731     script regardless of configuration settings, and add some linker symbols
5732     so the ldr utility can properly locate the initcode when generating a LDR.
5733
5734     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5735
5736 commit bd33e5c613cf70e3cb51a73fdd653fe83b942bb0
5737 Author: Mike Frysinger <vapier@gentoo.org>
5738 Date:   Sat Oct 11 21:19:39 2008 -0400
5739
5740     Blackfin: small cpu init optimization while setting interrupt mask
5741
5742     Use the sti instruction to set the initial interrupt mask rather than
5743     banging on the core IMASK MMR to save both space and time.
5744
5745     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5746
5747 commit 960922291c9594acb575cec7e47d7bed9b58182c
5748 Author: Mike Frysinger <vapier@gentoo.org>
5749 Date:   Sat Oct 11 21:18:10 2008 -0400
5750
5751     Blackfin: set initial stack correctly according to Blackfin ABI
5752
5753     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5754
5755 commit 25cd33d82ea521b7bd90ca858f8919fae1e9732b
5756 Author: Mike Frysinger <vapier@gentoo.org>
5757 Date:   Sun Apr 20 03:11:53 2008 -0400
5758
5759     Blackfin: make baud calculation more accurate
5760
5761     We should use the algorithm in the Linux kernel so that the UART divisor
5762     calculation is more accurate.  It also fixes problems on some picky UARTs
5763     that have sampling anomalies.
5764
5765     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5766
5767 commit 0ba1da116e5edcb0c5ae4a7585d73f6548400a06
5768 Author: Mike Frysinger <vapier@gentoo.org>
5769 Date:   Mon Oct 6 04:21:41 2008 -0400
5770
5771     Blackfin: decode hwerrcause/excause when crashing
5772
5773     Having to decode hwerrcause/excause values is a pain, so automate it.
5774
5775     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5776
5777 commit 2de95bb20c488f20298df6881b700a5a757ee780
5778 Author: Mike Frysinger <vapier@gentoo.org>
5779 Date:   Mon Oct 6 04:20:54 2008 -0400
5780
5781     Blackfin: fix register dump messages
5782
5783     Make sure we report RETI/IPEND correctly.
5784
5785     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5786
5787 commit 7133999e6f62a9a01f6a8ffe234b8532b3ad1e4b
5788 Author: Mike Frysinger <vapier@gentoo.org>
5789 Date:   Mon Oct 6 04:19:34 2008 -0400
5790
5791     Blackfin: don't bother displaying reboot msg when crashing
5792
5793     The hang function already tells you to reboot, so no point in showing it
5794     twice.
5795
5796     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5797
5798 commit 70c4c032ea112cc42aa1ce959c33fc4825eaef95
5799 Author: Mike Frysinger <vapier@gentoo.org>
5800 Date:   Sun Jun 1 01:23:48 2008 -0400
5801
5802     Blackfin: enable support for nested interrupts
5803
5804     During cpu init, make sure we initialize the CEC properly so that
5805     interrupts can fire and be handled while U-Boot is running.
5806
5807     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5808
5809 commit 39782727e185860faa4884c2b04e84cb33d1c6cf
5810 Author: Mike Frysinger <vapier@gentoo.org>
5811 Date:   Mon Oct 6 03:55:25 2008 -0400
5812
5813     Blackfin: init NAND before relocating env
5814
5815     If booting out of NAND, we need to make sure we initialize it properly
5816     before attempting to relocate the environment.
5817
5818     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5819
5820 commit 0f9a8819416ba40a53de50af148847a0e508f84d
5821 Author: Mike Frysinger <vapier@gentoo.org>
5822 Date:   Thu Aug 7 18:40:13 2008 -0400
5823
5824     Blackfin: check cache bits, not cplb bits
5825
5826     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5827
5828 commit 2c1ea9e370cb72dd6a5aa32338e87a8a1f77bd76
5829 Author: Mike Frysinger <vapier@gentoo.org>
5830 Date:   Thu Aug 7 17:52:59 2008 -0400
5831
5832     Blackfin: drop unused cache flush code
5833
5834     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5835
5836 commit 50f0d211912a648e31aa9123b4665a0444bb8ca9
5837 Author: Mike Frysinger <vapier@gentoo.org>
5838 Date:   Thu Aug 7 15:21:47 2008 -0400
5839
5840     Blackfin: unify cache handling code
5841
5842     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5843
5844 commit 3c8798983403cb68a827d7a0d09b1134524a1b7d
5845 Author: Mike Frysinger <vapier@gentoo.org>
5846 Date:   Mon Oct 6 03:39:07 2008 -0400
5847
5848     Blackfin: only initialize the RTC when actually used
5849
5850     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5851
5852 commit 621e579b812dd1a2e6777f7cbf6e55e736505823
5853 Author: Mike Frysinger <vapier@gentoo.org>
5854 Date:   Mon Oct 6 03:44:33 2008 -0400
5855
5856     Blackfin: fix SWRST register definition
5857
5858     The SWRST register is a 16bit, not 32bit, register.
5859
5860     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5861
5862 commit 06121c4e2d183887dcd7a4ca2dcd395b213ea15b
5863 Author: Mike Frysinger <vapier@gentoo.org>
5864 Date:   Thu Aug 7 18:54:57 2008 -0400
5865
5866     Blackfin: build with -fomit-frame-pointer
5867
5868     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5869
5870 commit adbfeeb7b32f737a9738daa583350d2bb9ed017a
5871 Author: Mike Frysinger <vapier@gentoo.org>
5872 Date:   Thu Aug 7 17:50:26 2008 -0400
5873
5874     Blackfin: document some of the blackfin directories
5875
5876     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5877
5878 commit e4337968e43698a68ba608369f46d4a4114111ca
5879 Author: Mike Frysinger <vapier@gentoo.org>
5880 Date:   Thu Aug 7 15:16:56 2008 -0400
5881
5882     Blackfin: only enable hardware error irq by default
5883
5884     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5885
5886 commit 2b66f08f257ef6a06785f27b3c6dc2a4cfc9cac4
5887 Author: Mike Frysinger <vapier@gentoo.org>
5888 Date:   Thu Aug 7 13:36:43 2008 -0400
5889
5890     Blackfin: punt old unused mem_init.h header
5891
5892     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5893
5894 commit bcc121a01608042066a19ab5bff5bcfb805bf406
5895 Author: Mike Frysinger <vapier@gentoo.org>
5896 Date:   Thu Aug 7 13:18:55 2008 -0400
5897
5898     Blackfin: delete unused page_descriptor_table_size define
5899
5900     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5901
5902 commit 30fb9d24ae16e5b0ed39e5b7cc85981165ca98bc
5903 Author: Mike Frysinger <vapier@gentoo.org>
5904 Date:   Thu Aug 7 13:17:03 2008 -0400
5905
5906     Blackfin: fix typo in boot mode comment and add NAND define
5907
5908     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5909
5910 commit 2e5cbe5461c5c4c6665e318cfe950a5a150d999c
5911 Author: Ben Maan <moo@cow>
5912 Date:   Thu Aug 7 13:14:21 2008 -0400
5913
5914     Blackfin: fix port mux defines for BF54x
5915
5916     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5917
5918 commit 0656ef2ba274910d31364fe022f6c7db0051660d
5919 Author: Mike Frysinger <vapier@gentoo.org>
5920 Date:   Thu Aug 7 13:09:50 2008 -0400
5921
5922     Blackfin: update anomaly lists
5923
5924     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5925
5926 commit 50ca95402876cf7bac4e2d4f7855f616a038763f
5927 Author: Mike Frysinger <vapier@gentoo.org>
5928 Date:   Thu Aug 7 13:08:54 2008 -0400
5929
5930     Blackfin: unify DSPID/DBGSTAT MMR definitions
5931
5932     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5933
5934 commit d9d8c7c696dec370ca714c03beb6e79d4c90bd5e
5935 Author: Wolfgang Denk <wd@denx.de>
5936 Date:   Tue Oct 21 15:53:51 2008 +0200
5937
5938     Fix strmhz(): avoid printing negative fractions
5939
5940     Signed-off-by: Wolfgang Denk <wd@denx.de>
5941
5942 commit 4a7f6b750d8de543fdf8e58acd86745010054571
5943 Author: Richard Retanubun <RichardRetanubun@ruggedcom.com>
5944 Date:   Fri Oct 17 08:55:51 2008 -0400
5945
5946     mpc83xx: Removed #ifdef CONFIG_MPC834X dependency on upmconfig function
5947
5948     This is done to allow other 83XX based platforms which also have UPM
5949     (e.g. 8360) to configure and use their UPM in u-boot.
5950
5951     Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
5952     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5953
5954 commit 3bf1be3c0cfb1129b68cc1474119e5f323536488
5955 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
5956 Date:   Tue Oct 14 22:58:53 2008 +0400
5957
5958     mpc83xx: add support for switching between USB Host/Function for MPC837XEMDS
5959
5960     With this patch u-boot can fixup the dr_mode and phy_type properties
5961     for the Dual-Role USB controller.
5962
5963     While at it, also remove #ifdefs around includes, they are not needed.
5964
5965     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
5966     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5967
5968 commit b3379f3fd13969934c00097c05754e7a8990fd39
5969 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
5970 Date:   Wed Oct 8 20:52:54 2008 +0400
5971
5972     mpc83xx: add ELBC NAND support for the MPC837XEMDS boards
5973
5974     Though NAND chip is replaceable on the MPC837XE-MDS boards, the
5975     current settings don't work with the default chip on the board.
5976     Nevertheless Freescale's U-Boot sets the option register correctly,
5977     so I just dumped the register from the working u-boot. My guess is
5978     that the old settings were applicable for some pilot boards, not
5979     found in the production.
5980
5981     This patch also enables FSL ELBC driver so that we could access
5982     the NAND storage in the u-boot.
5983
5984     The NAND support costs about 45KB, so the u-boot no longer fits
5985     into two 128KB NOR flash sectors, thus we also have to adjust
5986     environment location: add another 128KB to the monitor length.
5987
5988     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
5989
5990     It is due to hardware design and logic defect, that is the
5991     I/O[0:7] of NAND chip is connected to LAD[7:0], so when
5992     the NAND chip connected to nLCS3,  you have to set up the
5993     OR3[BCTLD] = '1' for normal operation, otherwise it will have
5994     bus contention due to the pin 48/25 of U60 is enabled.
5995
5996     Setup the OR3[BCTLD] = '1' , that meaning the LBCTL is not
5997     asserted upon access to the NAND chip, keep the default state.
5998
5999     Acked-by: Dave Liu <daveliu@freescale.com>
6000     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6001
6002 commit 00f7bbae92e3b13f2b37aeb1def9bb12445521b7
6003 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
6004 Date:   Thu Oct 2 19:17:33 2008 +0400
6005
6006     mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards
6007
6008     The MPC837xE-MDS board's CPLD can auto-detect if the board is on the PIB,
6009     standalone or acting as a PCI agent. User's Guide says:
6010
6011     - When the CPLD recognizes its location on the PIB it automatically
6012       configures RCW to the PCI Host.
6013     - If the CPLD fails to recognize its location then it is automatically
6014       configured as an Agent and the PCI is configured to an external arbiter.
6015
6016     This sounds good. Though in the standalone setup the CPLD sets PCI_HOST
6017     flag (it's ok, we can't act as PCI agents since we receive CLKIN, not
6018     PCICLK), but the CPLD doesn't set the ARBITER_ENABLE flag, and without
6019     any arbiter bad things will happen (here the board hangs during any config
6020     space reads).
6021
6022     In this situation we must disable the PCI. And in case of anybody really
6023     want to use an external arbiter, we provide "pci_external_aribter"
6024     environment variable.
6025
6026     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
6027     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6028
6029 commit 1da83a63d8e1b4bddeb82581b1745a09aac3e2d3
6030 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
6031 Date:   Thu Oct 2 18:32:25 2008 +0400
6032
6033     mpc83xx: add SGMII riser module support for the MPC8378E-MDS boards
6034
6035     This involves configuring the SerDes and fixing up the flags and
6036     PHY addresses for the TSECs.
6037
6038     For Linux we also fix up the device tree.
6039
6040     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
6041     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6042
6043 commit e6d9c8916de9c24f2c52d0b01cf00d2e74a04cd8
6044 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
6045 Date:   Thu Oct 2 18:31:59 2008 +0400
6046
6047     mpc83xx: add TSECs' HRCWH masks for MPC837x processors
6048
6049     We'll use these masks to parse TSEC modes out of HRCWH.
6050
6051     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
6052     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6053
6054 commit 6f9cc6608b4e1cefde56c0fb99ae1c95c42575ff
6055 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
6056 Date:   Thu Oct 2 18:31:56 2008 +0400
6057
6058     mpc83xx: serdes: add forgotten shifts for rfcks
6059
6060     The rfcks should be shifted by 28 bits left. We didn't notice the bug
6061     because we were using only 100MHz clocks (for which rfcks == 0).
6062
6063     Though, for SGMII we'll need 125MHz clocks.
6064
6065     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
6066     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6067
6068 commit 55c531984dcf933e4cd13a187a7e08e873b7ced1
6069 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
6070 Date:   Thu Oct 2 18:31:53 2008 +0400
6071
6072     mpc83xx: fix serdes setup for the MPC8378E boards
6073
6074     MPC837xE specs says that SerDes1 has:
6075
6076     â€” Two lanes running x1 SGMII at 1.25 Gbps;
6077     â€” Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
6078
6079     And for SerDes2:
6080
6081     â€” Two lanes running x1 PCI Express at 2.5 Gbps;
6082     â€” One lane running x2 PCI Express at 2.5 Gbps;
6083     â€” Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
6084
6085     The spec also explicitly states that PEX options are not valid for
6086     the SD1.
6087
6088     Nevertheless MPC8378 RDB and MDS boards configure the SD1 for PEX,
6089     which is wrong to do.
6090
6091     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
6092     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6093
6094 commit 5c2ff323a94e27e481f70c44838d43fcd844dd46
6095 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
6096 Date:   Wed Sep 10 18:12:37 2008 +0400
6097
6098     mpc83xx: mpc8360emds: rework LBC SDRAM setup
6099
6100     Currently 64M of LBC SDRAM are mapped at 0xF0000000 which makes
6101     it difficult to use (b/c then the memory is discontinuous and
6102     there is quite big memory hole between the DDR/SDRAM regions).
6103
6104     This patch reworks LBC SDRAM setup so that now we dynamically
6105     place the LBC SDRAM near the DDR (or at 0x0 if there isn't any
6106     DDR memory).
6107
6108     With this patch we're able to:
6109
6110     - Boot without external DDR memory;
6111     - Use most "DDR + SDRAM" setups without need to support for
6112       sparse/discontinuous memory model in the software.
6113
6114     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
6115     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6116
6117 commit def0819e920b05b34b56d8b42e1e43d9b89a52d6
6118 Author: Wolfgang Denk <wd@xpert.denx.de>
6119 Date:   Tue Oct 21 11:23:56 2008 +0200
6120
6121     FDT: don't use private kernel header files
6122
6123     On some systems (for example Fedora Core 4) U-Boot builds with the
6124     following wanrings only:
6125
6126     ...
6127     In file included from /home/wd/git/u-boot/include/libfdt_env.h:33,
6128                      from fdt.c:51:
6129                  /usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header; include <endian.h> instead!
6130
6131     This patch fixes this problem.
6132
6133     Signed-off-by: Wolfgang Denk <wd@denx.de>
6134
6135 commit f4d14c55504ce40287321bd63ee269e3233ee4ae
6136 Author: Stefan Roese <sr@denx.de>
6137 Date:   Mon Oct 13 15:15:31 2008 +0200
6138
6139     ppc4xx: Add 1.0 & 1.066 GHz to canyonlands bootstrap command for PLL setup
6140
6141     Signed-off-by: Stefan Roese <sr@denx.de>
6142
6143 commit 43cbce69d48d052574d71f50724be546d90a46a4
6144 Author: Stefan Roese <sr@denx.de>
6145 Date:   Mon Oct 13 10:45:14 2008 +0200
6146
6147     ppc4xx: Correctly setup ranges property in ebc node
6148
6149     Previously only the NOR flash mapping was written into the ranges
6150     property of the ebc node. This patch now writes all enabled chip
6151     select areas into the ranges property.
6152
6153     Signed-off-by: Stefan Roese <sr@denx.de>
6154
6155 commit d7b26d58328f137471ea97de382bfa63f7239931
6156 Author: Dirk Eibach <eibach@gdsys.de>
6157 Date:   Wed Oct 8 15:37:50 2008 +0200
6158
6159     ppc4xx: Add GDSys neo 405EP board support
6160
6161     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
6162     Signed-off-by: Stefan Roese <sr@denx.de>
6163
6164 commit c11da194545d2f4bbb54be1bb5e504e20ce8c16c
6165 Author: Niklaus Giger <niklaus.giger@netstal.com>
6166 Date:   Wed Oct 1 14:46:13 2008 +0200
6167
6168     ppc4xx: Update configs for Netstal boards
6169
6170     I reorganized my config files, putting the common stuff into netstal-common.h
6171     (got the idea by looking a amcc-common.h from Stefan).
6172
6173     Added stuff to boot the new powerpc linux via NFS (only tested with HCU4).
6174
6175     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
6176     Signed-off-by: Stefan Roese <sr@denx.de>
6177
6178 commit c9c11d751e4242cf29c3c3c290d971f6d0cb1d15
6179 Author: Adam Graham <agraham@amcc.com>
6180 Date:   Wed Oct 8 10:13:19 2008 -0700
6181
6182     ppc4xx: Add routine to retrieve CPU number
6183
6184     Provide a weak defined routine to retrieve the CPU number for
6185     reference boards that have multiple CPU's.  Default behavior
6186     is the existing single CPU print output.  Reference boards with
6187     multiple CPU's need to provide a board specific routine.
6188     See board/amcc/arches/arches.c for an example.
6189
6190     Signed-off-by: Adam Graham <agraham@amcc.com>
6191     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
6192     Signed-off-by: Stefan Roese <sr@denx.de>
6193
6194 commit 59217bae40e90982ab5400d849c08af683ace036
6195 Author: Adam Graham <agraham@amcc.com>
6196 Date:   Wed Oct 8 10:13:14 2008 -0700
6197
6198     ppc4xx: Add static support for 44x IBM SDRAM Controller
6199
6200     This patch add the capability to configure a PPC440 based IBM SDRAM
6201     Controller with static, compiled-in, values. PPC440 memory subsystem
6202     includes a Memory Queue core.
6203
6204     Signed-off-by: Adam Graham <agraham@amcc.com>
6205     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
6206     Signed-off-by: Stefan Roese <sr@denx.de>
6207
6208 commit f09f09d3899017aaaa2b031bba63c271e9c48e4d
6209 Author: Adam Graham <agraham@amcc.com>
6210 Date:   Wed Oct 8 10:12:53 2008 -0700
6211
6212     ppc4xx: Add AMCC Arches board support (dual 460GT)
6213
6214     The Arches Evaluation board is based on the AMCC 460GT SoC chip.
6215     This board is a dual processor board with each processor providing
6216     independent resources for Rapid IO, Gigabit Ethernet, and serial
6217     communications. Each 460GT has it's own 512MB DDR2 memory, 32MB NOR
6218     FLASH, UART, EEPROM and temperature sensor, along with a shared debug
6219     port. The two 460GT's will communicate with each other via shared
6220     memory, Gigabit Ethernet and x1 PCI-Express.
6221
6222     Signed-off-by: Adam Graham <agraham@amcc.com>
6223     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
6224     Signed-off-by: Stefan Roese <sr@denx.de>
6225
6226 commit 055b12f2ffd7c34eea7e983a0588b24f2e69e0e3
6227 Author: Wolfgang Denk <wd@xpert.denx.de>
6228 Date:   Sun Oct 19 21:54:30 2008 +0200
6229
6230     TQM8260: environment in flash instead EEPROM, baudrate 115k
6231
6232     Several customers have reported problems with the environment in
6233     EEPROM, including corrupted content after board reset. Probably the
6234     code to prevent I2C Enge Conditions is not working sufficiently.
6235
6236     We move the environment to flash now, which allows to have a backup
6237     copy plus gives much faster boot times.
6238
6239     Also, change the default console initialization to 115200 bps as used
6240     on most other boards.
6241
6242     Signed-off-by: Wolfgang Denk <wd@denx.de>
6243
6244 commit 1836881190b3d8a6918b0d64b39fe32bbbdf85d8
6245 Author: Kumar Gala <galak@kernel.crashing.org>
6246 Date:   Sun Oct 19 12:49:19 2008 -0500
6247
6248     85xx: Fix compile warning in mpc8536ds.c
6249
6250     mpc8536ds.c: In function 'is_sata_supported':
6251     mpc8536ds.c:615: warning: unused variable 'devdisr'
6252
6253     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6254
6255 commit 8ed44d91c8122d00368523b0b746691c895d3b3c
6256 Author: Wolfgang Denk <wd@denx.de>
6257 Date:   Sun Oct 19 02:35:50 2008 +0200
6258
6259     Cleanup: fix "MHz" spelling
6260
6261     Signed-off-by: Wolfgang Denk <wd@denx.de>
6262
6263 commit 08ef89ecd174969b3544f3f0c7cd1de3c57f737b
6264 Author: Wolfgang Denk <wd@denx.de>
6265 Date:   Sun Oct 19 02:35:49 2008 +0200
6266
6267     Use strmhz() to format clock frequencies
6268
6269     Signed-off-by: Wolfgang Denk <wd@denx.de>
6270
6271 commit d50c7d4be150b2252c0d2e16cfcf69643bdd6dc9
6272 Author: Wolfgang Denk <wd@denx.de>
6273 Date:   Sun Oct 19 02:35:48 2008 +0200
6274
6275     strmhz(): Round numbers when printing clock frequencies
6276
6277     Round clock frequencies for printing.
6278
6279     Many boards printed off clock frequencies like 399 MHz instead of the
6280     exact 400 MHz because numberes were not rounded. This is fixed now.
6281
6282     Signed-off-by: Wolfgang Denk <wd@denx.de>
6283
6284 commit 681c02d05b29c6d46093525052c74b9c4ddc8b08
6285 Author: Timur Tabi <timur@freescale.com>
6286 Date:   Mon Oct 20 15:16:47 2008 -0500
6287
6288     85xx: properly document MPC85xx_PORDEVSR2_SEC_CFG
6289
6290     Commit f7d190b1 corrected the value of MPC85xx_PORDEVSR2_SEC_CFG, but forgot
6291     to add a comment that the correct value disagrees with the 8544 reference
6292     manual.  The changelog for that commit is also wrong, as it says "bit 28"
6293     when it should be "bit 24".
6294
6295     Signed-off-by: Timur Tabi <timur@freescale.com>
6296
6297 commit 360fe71e82b83e264c964c9447c537e9a1f643c8
6298 Author: Heiko Schocher <hs@denx.de>
6299 Date:   Fri Oct 17 18:24:06 2008 +0200
6300
6301     mgcoge: add redundant environment sector
6302
6303     Signed-off-by: Heiko Schocher <hs@denx.de>
6304
6305 commit 53ebf0c470c87d5f9fa76462e5f4064d26a9b16a
6306 Author: Heiko Schocher <hs@denx.de>
6307 Date:   Fri Oct 17 18:23:27 2008 +0200
6308
6309     mgsuvd: update size of environment
6310
6311     Signed-off-by: Heiko Schocher <hs@denx.de>
6312
6313 commit 2e26d837f11460c0e6dede7d65424a31e0183d09
6314 Author: Jason Jin <Jason.jin@freescale.com>
6315 Date:   Fri Oct 10 11:41:00 2008 +0800
6316
6317     Enabled the Freescale SGMII riser card on 8536DS
6318
6319     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
6320
6321 commit 7e183cad0c5ab6415dca95d6ac290ea918b28c55
6322 Author: Liu Yu <yu.liu@freescale.com>
6323 Date:   Fri Oct 10 11:40:59 2008 +0800
6324
6325     Enabled the Freescale SGMII riser card on 8572DS
6326
6327     This patch based on Andy's work.
6328     Including command 'pixis_set_sgmii' support.
6329
6330     Signed-off-by: Liu Yu <yu.liu@freescale.com>
6331
6332 commit bff188baf9427c35745356439435acf3864d4c65
6333 Author: Liu Yu <yu.liu@freescale.com>
6334 Date:   Fri Oct 10 11:40:58 2008 +0800
6335
6336     Make pixis_set_sgmii more general to support MPC85xx boards.
6337
6338     The pixis sgmii command depend on the FPGA support on the board, some 85xx
6339     boards support SGMII riser card but did not support this command, define
6340     CONFIG_PIXIS_SGMII_CMD for those boards which support the sgmii command.
6341
6342     Not like 8544, 8572 has 4 eTsec so that the other two's pixis bits
6343     are not supported by 8544. Therefor, define PIXIS_VSPEED2_MASK and
6344     PIXIS_VCFGEN1_MASK in header file for both boards.
6345
6346     Signed-off-by: Liu Yu <yu.liu@freescale.com>
6347
6348 commit 5e981d683d2363204c76773941c2e9c2044c808f
6349 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
6350 Date:   Wed Oct 8 23:38:02 2008 -0500
6351
6352     Add cpu/8xxx to TAGS_SUBDIRS
6353
6354     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
6355
6356 commit e1f7d22b8b52fc08c4d17a6a7db1e664281aed63
6357 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
6358 Date:   Thu Oct 9 01:25:55 2008 -0500
6359
6360     fsl_law clear enable before changing.
6361
6362     Debug sessions may have left enabled laws.
6363     Changing lawbar with an unkown enabled tgtid could cause problems.
6364
6365     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
6366
6367 commit 86be510f7b5443e7e937f696bfbe037fdc740b15
6368 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
6369 Date:   Thu Oct 9 00:29:27 2008 -0500
6370
6371     mpc8572 additional end-point mode
6372
6373     mpc8572 supports all pcie controllers as end-points with cfg_host_agent=0.
6374     Include host_agent == 0 decode for end-point determination.
6375
6376     This is not needed for the ds reference board since pcie3 will be a host
6377     in order to connect to the uli chip.  Include it here as a reference for
6378     other mpc8572 boards.
6379
6380     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
6381
6382 commit 6856b3d0221a838580e6bb06f61425fd7529ba93
6383 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
6384 Date:   Wed Oct 8 23:37:59 2008 -0500
6385
6386     85xx if NUM_CPUS>1, print cpu number
6387
6388     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
6389
6390 commit f7fecc3e25050a036c9f50f0d2b85bc3199a96e0
6391 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
6392 Date:   Wed Oct 8 23:38:01 2008 -0500
6393
6394     pixis do not print long help if not configured
6395
6396     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
6397
6398 commit 0e17f02a8a78d85225a4d805f6a1ea95a0a460b5
6399 Author: Andy Fleming <afleming@freescale.com>
6400 Date:   Tue Oct 7 08:09:50 2008 -0500
6401
6402     Have u-boot pass stashing parameters into device tree
6403
6404     Some cores don't support ethernet stashing at all, and some
6405     instances have errata.  Adds 3 properties to gianfar nodes
6406     which support stashing.  For now, just add this support to
6407     85xx SoCs.
6408
6409     Signed-off-by: Andy Fleming <afleming@freescale.com>
6410
6411 commit c21617fd265b7c126c6e2f2d8a23cdb00d4fade7
6412 Author: Haiying Wang <Haiying.Wang@freescale.com>
6413 Date:   Fri Oct 3 12:37:57 2008 -0400
6414
6415     Add DDR options setting on MPC8641HPCN board
6416
6417     * Add board specific parameter table to choose correct cpo, clk_adjust,
6418     write_data_delay based on board ddr frequency and n_ranks.
6419
6420     * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
6421
6422     Signed-off-by: James Yang <James.Yang@freescale.com>
6423     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6424
6425 commit 4ca06607d60d0a6378812ef58fd1eab2a7f77111
6426 Author: Haiying Wang <Haiying.Wang@freescale.com>
6427 Date:   Fri Oct 3 12:37:41 2008 -0400
6428
6429     Add ddr interleaving suppport for MPC8572DS board
6430
6431     * Add board specific parameter table to choose correct cpo, clk_adjust,
6432     write_data_delay, 2T based on board ddr frequency and n_ranks.
6433
6434     * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
6435
6436     * Set memory controller interleaving mode to bank interleaving, and disable
6437     bank(chip select) interleaving mode by default, because the default on-board
6438     DDR DIMMs are 2x512MB single-rank.
6439
6440     * Change CONFIG_ICS307_REFCLK_HZ from 33333333 to 33333000.
6441
6442     Signed-off-by: James Yang <James.Yang@freescale.com>
6443     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6444
6445 commit 1f293b417ac6ab8e317ca2b770377ca93edf2370
6446 Author: Haiying Wang <Haiying.Wang@freescale.com>
6447 Date:   Fri Oct 3 12:37:26 2008 -0400
6448
6449     Add debug information for DDR controller registers
6450
6451     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6452
6453 commit c9ffd839b1ada502c86f88edaf1534426b6688ce
6454 Author: Haiying Wang <Haiying.Wang@freescale.com>
6455 Date:   Fri Oct 3 12:37:10 2008 -0400
6456
6457     Check DDR interleaving mode
6458
6459     * Check DDR interleaving mode from environment by reading memctl_intlv_ctl and
6460     ba_intlv_ctl.
6461     * Print DDR interleaving mode information
6462     * Add doc/README.fsl-ddr to describe the interleaving setting
6463
6464     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6465
6466 commit dfb49108e4f86c2224e1f30124328b0de66ef72e
6467 Author: Haiying Wang <Haiying.Wang@freescale.com>
6468 Date:   Fri Oct 3 12:36:55 2008 -0400
6469
6470     Pass dimm parameters to populate populate controller options
6471
6472     Because some dimm parameters like n_ranks needs to be used with the board
6473     frequency to choose the board parameters like clk_adjust etc. in the
6474     board_specific_paramesters table of the board ddr file, we need to pass
6475     the dimm parameters to the board file.
6476
6477     * move ddr dimm parameters header file from /cpu to /include directory.
6478     * add ddr dimm parameters to populate board specific options.
6479     * Fix fsl_ddr_board_options() for all the 8xxx boards which call this function.
6480
6481     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6482
6483 commit dbbbb3abeff325855cae76e33d69d5665631443f
6484 Author: Haiying Wang <Haiying.Wang@freescale.com>
6485 Date:   Fri Oct 3 12:36:39 2008 -0400
6486
6487     Make DDR interleaving mode work correctly
6488
6489     Fix some bugs:
6490       1. Correctly set intlv_ctl in cs_config.
6491       2. Correctly set sa, ea in cs_bnds when bank interleaving mode is enabled.
6492       3. Set base_address and total memory for each ddr controller in memory
6493          controller interleaving mode.
6494
6495     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6496
6497 commit 1c9aa76bf9013069e24258f46f4687c9f98a02d6
6498 Author: Kumar Gala <galak@kernel.crashing.org>
6499 Date:   Mon Sep 22 23:40:42 2008 -0500
6500
6501     85xx: Enable interrupt and setexpr commands on Freescale 85xx boards
6502
6503     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6504
6505 commit 7c0d4a7508d252d2d7c137eeb376814132dda30f
6506 Author: Kumar Gala <galak@kernel.crashing.org>
6507 Date:   Mon Sep 22 14:11:11 2008 -0500
6508
6509     85xx: Improve flash remapping on MPC8572DS & MPC8536DS
6510
6511     Changing the flash from cacheable to cache-inhibited was taking a significant
6512     amount of time due to the fact that we were iterating over the full 256M of
6513     flash.  Instead we can just flush the L1 d-cache and invalidate the i-cache.
6514
6515     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6516
6517 commit 54e091d3b603a3332c619199ca83a07e95960da4
6518 Author: Kumar Gala <galak@kernel.crashing.org>
6519 Date:   Mon Sep 22 14:11:10 2008 -0500
6520
6521     85xx: Export invalidate_{i,d}cache and add flush_dcache
6522
6523     Added the ability for C code to invalidate the i/d-cache's and
6524     to flush the d-cache.  This allows us to more efficient change mappings
6525     from cache-able to cache-inhibited.
6526
6527     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6528
6529 commit 6250f0f6297c5ba9aecdea6290799a95c5d4b1da
6530 Author: Heiko Schocher <hs@denx.de>
6531 Date:   Fri Oct 17 16:11:52 2008 +0200
6532
6533     mgcoge, mgsuvd: extract more common code
6534
6535     in ft_blob_update () for both boards was an unneccessary
6536     repetition of code, which this patch moves in a common
6537     function for this boards.
6538
6539     Signed-off-by: Heiko Schocher <hs@denx.de>
6540
6541 commit 9e299192ca9850cf725456388042a5aa5a6f3ec7
6542 Author: Heiko Schocher <hs@denx.de>
6543 Date:   Fri Oct 17 12:15:55 2008 +0200
6544
6545     mgcoge, mgsuvd: use in_*/out_* accesors
6546
6547     Signed-off-by: Heiko Schocher <hs@denx.de>
6548
6549 commit a21ca95f8b9dca22714952b348e4905ac157b5cd
6550 Author: Heiko Schocher <hs@denx.de>
6551 Date:   Fri Oct 17 13:52:51 2008 +0200
6552
6553     mgsuvd: fix compiler warning when using soft_i2c driver
6554
6555     Signed-off-by: Heiko Schocher <hs@denx.de>
6556
6557 commit cac9cf7875c2a01d63422820ed4732a9bdf5ab7b
6558 Author: Heiko Schocher <hs@denx.de>
6559 Date:   Fri Oct 17 12:15:05 2008 +0200
6560
6561     mgsuvd: fix coding style
6562
6563     Signed-off-by: Heiko Schocher <hs@denx.de>
6564
6565 commit 5f4c3137f4f051787707c548133823f1656eb508
6566 Author: Heiko Schocher <hs@denx.de>
6567 Date:   Fri Oct 17 12:13:30 2008 +0200
6568
6569     mgcoge: Second Flash on CS5 not on CS1
6570
6571     Signed-off-by: Heiko Schocher <hs@denx.de>
6572
6573 commit 76da19df5b8e186d269f29190696bd31fb6c836b
6574 Author: Kumar Gala <galak@kernel.crashing.org>
6575 Date:   Thu Oct 16 21:52:08 2008 -0500
6576
6577     Added arch_lmb_reserve to allow arch specific memory regions protection
6578
6579     Each architecture has different ways of determine what regions of memory
6580     might not be valid to get overwritten when we boot.  This provides a
6581     hook to allow them to reserve any regions they care about.  Currently
6582     only ppc, m68k and sparc need/use this.
6583
6584     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6585
6586 commit e02d4a9904c8f36395994c0c81469d552b82f5ea
6587 Author: Heiko Schocher <hs@denx.de>
6588 Date:   Thu Oct 16 16:32:35 2008 +0200
6589
6590     mgcoge: added CONFIG_FIT to support the new u-boot image format
6591
6592     Signed-off-by: Heiko Schocher <hs@denx.de>
6593
6594 commit 6d0f6bcf337c5261c08fabe12982178c2c489d76
6595 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6596 Date:   Thu Oct 16 15:01:15 2008 +0200
6597
6598     rename CFG_ macros to CONFIG_SYS
6599
6600     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6601
6602 commit 71edc271816ec82cf0550dd6980be2da3cc2ad9e
6603 Author: Kumar Gala <galak@kernel.crashing.org>
6604 Date:   Mon Oct 13 14:12:55 2008 -0500
6605
6606     74xx/7xx/86xx: Rename flush_data_cache to flush_dcache to match 85xx version
6607
6608     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6609
6610 commit b799cb4c0eebb0762e91e9653d8b9cc9a98440e3
6611 Author: Kumar Gala <galak@kernel.crashing.org>
6612 Date:   Tue Sep 23 10:05:02 2008 -0500
6613
6614     Expose command table search for sub-commands
6615
6616     Sub-command can benefit from using the same table and search functions
6617     that top level commands have.  Expose this functionality by refactoring
6618     find_cmd() and introducing find_cmd_tbl() that sub-command processing
6619     can call.
6620
6621     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6622
6623 commit f7e51b27508446f8cae3927975817137979ad5e8
6624 Author: Heiko Schocher <hs@denx.de>
6625 Date:   Wed Oct 15 09:41:33 2008 +0200
6626
6627     mgsuvd, mgcoge: added BOOTCOUNT feature.
6628
6629     Signed-off-by: Heiko Schocher <hs@denx.de>
6630
6631 commit 8f64da7f83b553889bc08400c97047998382e9d2
6632 Author: Heiko Schocher <hs@denx.de>
6633 Date:   Wed Oct 15 09:41:00 2008 +0200
6634
6635     mgcoge, mgsuvd: added support for the IVM EEprom.
6636
6637     The EEprom contains some Manufacturerinformation,
6638     which are read from u-boot at boot time, and saved
6639     in same hush shell variables.
6640
6641     Signed-off-by: Heiko Schocher <hs@denx.de>
6642
6643 commit 81473f67810c4c9b7efaed8dee258ed6bc4c7983
6644 Author: Heiko Schocher <hs@denx.de>
6645 Date:   Wed Oct 15 09:40:28 2008 +0200
6646
6647     hush: add showvar command for hush shell.
6648
6649     This new command shows the local variables defined in
6650     the hush shell:
6651
6652     => help showvar
6653     showvar
6654         - print values of all hushshell variables
6655     showvar name ...
6656         - print value of hushshell variable 'name'
6657
6658     Also make the set_local_var() and unset_local_var ()
6659     no longer static, so it is possible to define local
6660     hush shell variables at boot time. If CONFIG_HUSH_INIT_VAR
6661     is defined, u-boot calls hush_init_var (), where
6662     boardspecific code can define local hush shell
6663     variables at boottime.
6664
6665     Signed-off-by: Heiko Schocher <hs@denx.de>
6666
6667 commit 67b23a322848d828a5e45c0567b72762bfde7abf
6668 Author: Heiko Schocher <hs@denx.de>
6669 Date:   Wed Oct 15 09:39:47 2008 +0200
6670
6671     I2C: adding new "i2c bus" Command to the I2C Subsystem.
6672
6673     With this Command it is possible to add new I2C Busses,
6674     which are behind 1 .. n I2C Muxes. Details see README.
6675
6676     Signed-off-by: Heiko Schocher <hs@denx.de>
6677
6678 commit c24853644ddd2dd2e4246b5854a93e6254a14092
6679 Author: Heiko Schocher <hs@denx.de>
6680 Date:   Wed Oct 15 09:39:08 2008 +0200
6681
6682     mgcoge, mgsuvd: add board specific I2C deblocking mechanism.
6683
6684     As documented in doc/I2C_Edge_Conditions, adding a
6685     board specific deblocking mechanism via CFG_I2C_INIT_BOARD
6686     for the mgcoge and mgsuvd board.
6687
6688     This code was originally written by Keymile in association
6689     with Anatech and Atmel in 1998. The Code toggels the SCL
6690     until the SCA line goes to HIGH (max. 16 times).
6691     And after this, a start condition is sent.
6692
6693     This is another approach to deblock the I2C Bus. The
6694     soft I2C driver actually sends 9 clocks with SDA High,
6695     and then a stop at the end, to deblock the I2C Bus.
6696
6697     Maybe we should use the approach from Keymile as
6698     the new standard?
6699
6700     Signed-off-by: Heiko Schocher <hs@denx.de>
6701
6702 commit 4ca107effebfbabac1057c39632105dacef95957
6703 Author: Heiko Schocher <hs@denx.de>
6704 Date:   Wed Oct 15 09:38:38 2008 +0200
6705
6706     soft_i2c: Add CFG_I2C_INIT_BOARD option
6707
6708     This patch adds the option for a boardspecific
6709     I2C deblocking mechanism for the soft i2c driver.
6710
6711     Signed-off-by: Heiko Schocher <hs@denx.de>
6712
6713 commit e5e4edd9f1f76210a09c34ee835f6cff60fdbbd1
6714 Author: Heiko Schocher <hs@denx.de>
6715 Date:   Wed Oct 15 09:38:07 2008 +0200
6716
6717     mgcoge, mgsuvd: add DTT (LM75) support.
6718
6719     Signed-off-by: Heiko Schocher <hs@denx.de>
6720
6721 commit 8e442df438ab677057571e3ac01846bff7719bce
6722 Author: Heiko Schocher <hs@denx.de>
6723 Date:   Wed Oct 15 09:37:34 2008 +0200
6724
6725     lm75: Make the LM75 MULTI_BUS compatible.
6726
6727     Signed-off-by: Heiko Schocher <hs@denx.de>
6728
6729 commit 12f1678127c1df2b2878ba93c88948bedc060775
6730 Author: Heiko Schocher <hs@denx.de>
6731 Date:   Wed Oct 15 09:37:04 2008 +0200
6732
6733     lm75: fix Codingstyle issues.
6734
6735     Signed-off-by: Heiko Schocher <hs@denx.de>
6736
6737 commit f2202450c75ba6934b356024101500ddcde6e2a6
6738 Author: Heiko Schocher <hs@denx.de>
6739 Date:   Wed Oct 15 09:36:33 2008 +0200
6740
6741     mgcoge, mgsuvd: added EEprom support.
6742
6743     Signed-off-by: Heiko Schocher <hs@denx.de>
6744
6745 commit 9661bf9d120f760238b2a073b84f2baf05010057
6746 Author: Heiko Schocher <hs@denx.de>
6747 Date:   Wed Oct 15 09:36:03 2008 +0200
6748
6749     mgcoge, mgsuvd: add I2C support.
6750
6751     Signed-off-by: Heiko Schocher <hs@denx.de>
6752
6753 commit 98aed379586a155292efbf3209356836584b601c
6754 Author: Heiko Schocher <hs@denx.de>
6755 Date:   Wed Oct 15 09:35:26 2008 +0200
6756
6757     soft_i2c: prevent compiler warnings if driver does not use CPU Pins.
6758
6759     This patch fixes the following warnings, when using
6760     the soft_i2c driver using no CPU pins on MPC82xx or MPC8xx
6761     systems:
6762
6763     soft_i2c.c: In function 'send_reset':
6764     soft_i2c.c:93: warning: unused variable 'immr'
6765     soft_i2c.c: In function 'send_start':
6766     soft_i2c.c:124: warning: unused variable 'immr'
6767     soft_i2c.c: In function 'send_stop':
6768     soft_i2c.c:146: warning: unused variable 'immr'
6769     soft_i2c.c: In function 'send_ack':
6770     soft_i2c.c:171: warning: unused variable 'immr'
6771     soft_i2c.c: In function 'write_byte':
6772     soft_i2c.c:196: warning: unused variable 'immr'
6773     soft_i2c.c: In function 'read_byte':
6774     soft_i2c.c:244: warning: unused variable 'immr'
6775
6776     Signed-off-by: Heiko Schocher <hs@denx.de>
6777
6778 commit 799b784aa00cb03a352847ab9f9acdde79b72d21
6779 Author: Heiko Schocher <hs@denx.de>
6780 Date:   Wed Oct 15 09:34:45 2008 +0200
6781
6782     i2c: add CONFIG_I2C_MULTI_BUS for soft_i2c and mpc8260 i2c driver.
6783
6784     Signed-off-by: Heiko Schocher <hs@denx.de>
6785
6786 commit 0809ea2f4340ab2047400c7d3d3047f97987d0fd
6787 Author: Heiko Schocher <hs@denx.de>
6788 Date:   Wed Oct 15 09:34:05 2008 +0200
6789
6790     mgcoge: fix Coding Style issues.
6791
6792     Signed-off-by: Heiko Schocher <hs@denx.de>
6793
6794 commit e43a27c49712203fe8848a17714330623edfb2eb
6795 Author: Heiko Schocher <hs@denx.de>
6796 Date:   Wed Oct 15 09:33:30 2008 +0200
6797
6798     I2C: add new command i2c reset.
6799
6800     If I2C Bus is blocked (see doc/I2C_Edge_Conditions),
6801     it is not possible to get out of this, until the
6802     complete Hardware gets a reset. This new commando
6803     calls again i2c_init (and that calls i2c_init_board
6804     if defined), which will deblock the I2C Bus.
6805
6806     Signed-off-by: Heiko Schocher <hs@denx.de>
6807     Signed-off-by: Wolfgang Denk <wd@denx.de>
6808
6809 commit 86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686
6810 Author: Heiko Schocher <hs@denx.de>
6811 Date:   Wed Oct 15 09:32:25 2008 +0200
6812
6813     mgsuvd, mgcoge: move this 2 boards in one dir.
6814
6815     There are some more extensions, which are for both boards
6816     and some more boards from this manufacturer will follow soon.
6817
6818     Signed-off-by: Heiko Schocher <hs@denx.de>
6819     Signed-off-by: Wolfgang Denk <wd@denx.de>
6820
6821 commit 1c6fe6eac75d695fde677af8330c0dbe75fb6a2b
6822 Author: Dirk Eibach <eibach@gdsys.de>
6823 Date:   Wed Oct 8 13:44:27 2008 +0200
6824
6825     hwmon: Add LM63 support
6826
6827     This patch adds support for the National LM63 temperature
6828     sensor with integrated fan control. It's used on the GDSys
6829     Neo board (405EP) which will be submitted later.
6830
6831     Signed-off-by: Dirk Eibach <eibach@gdsys.de>
6832     Acked-by: Stefan Roese <sr@denx.de>
6833
6834 commit 7ba890bf2f2b92831420243c058951aa831119fd
6835 Author: Kyungmin Park <kmpark@infradead.org>
6836 Date:   Wed Oct 8 11:01:17 2008 +0900
6837
6838     Add Red Black Tree support
6839
6840     Now it's used at UBI module. Of course other modules can use it.
6841     If you want to use it, please define CONFIG_RBTREE
6842
6843     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
6844
6845 commit fbd85ad65dd9c98f36ed3fb12fe41f381b7d4794
6846 Author: richardretanubun <richardretanubun@ruggedcom.com>
6847 Date:   Mon Oct 6 16:10:53 2008 -0400
6848
6849     CONFIG_EFI_PARTITION: Added support for EFI partition in cmd_ext2fs.c
6850
6851     Added support for CONFIG_EFI_PARTITION to ext2 commands.
6852     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
6853
6854 commit 07f3d789b9beb7ce3278c974f4d5c8f51b6ab567
6855 Author: richardretanubun <richardretanubun@ruggedcom.com>
6856 Date:   Fri Sep 26 11:13:22 2008 -0400
6857
6858     Add support for CONFIG_EFI_PARTITION (GUID Partition Table)
6859
6860     The GUID (Globally Unique Identifier) Partition Table (GPT) is a part
6861     of EFI. See http://en.wikipedia.org/wiki/GUID_Partition_Table
6862
6863     Based on linux/fs/partitions/efi.[ch]
6864
6865     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
6866
6867 commit fbc87dc0546dff709b38f358e2c5d5e39c4ca374
6868 Author: Bartlomiej Sieka <tur@semihalf.com>
6869 Date:   Wed Oct 1 15:26:32 2008 +0200
6870
6871     FIT: output image load address for type 'firmware', fix message while there
6872
6873     Now that the auto-update feature uses the 'firmware' type for updates, it is
6874     useful to inspect the load address of such images.
6875
6876     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
6877
6878 commit 4bae90904b69ce3deb9f7c334ef12ed74e18a275
6879 Author: Bartlomiej Sieka <tur@semihalf.com>
6880 Date:   Wed Oct 1 15:26:31 2008 +0200
6881
6882     Automatic software update from TFTP server
6883
6884     The auto-update feature allows to automatically download software updates
6885     from a TFTP server and store them in Flash memory during boot. Updates are
6886     contained in a FIT file and protected with SHA-1 checksum.
6887
6888     More detailed description can be found in doc/README.update.
6889
6890     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
6891     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
6892
6893 commit 3f0cf51dabacc2724731c5079a60ea989103bb8f
6894 Author: Bartlomiej Sieka <tur@semihalf.com>
6895 Date:   Wed Oct 1 15:26:27 2008 +0200
6896
6897     flash: factor out adjusting of Flash address to the end of sector
6898
6899     The upcoming automatic update feature needs the ability to adjust an
6900     address within Flash to the end of its respective sector. Factor out
6901     this functionality to a new function flash_sect_roundb().
6902
6903     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
6904     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
6905     Signed-off-by: Stefan Roese <sr@denx.de>
6906
6907 commit e83cc06375ac2bea0830c6ed0f9d8fdc3c1b27d5
6908 Author: Bartlomiej Sieka <tur@semihalf.com>
6909 Date:   Wed Oct 1 15:26:29 2008 +0200
6910
6911     net: Make TFTP server timeout configurable
6912
6913     There are two aspects of a TFTP transfer involving timeouts:
6914     1. timeout waiting for initial server reply after sending RRQ
6915     2. timeouts while transferring actual data from the server
6916
6917     Since the upcoming auto-update feature attempts a TFTP download during each
6918     boot, it is undesirable to have a long delay when the TFTP server is not
6919     available. Thus, this commit makes the server timeout (1.) configurable by two
6920     global variables:
6921
6922     TftpRRQTimeoutMSecs
6923     TftpRRQTimeoutCountMax
6924
6925     TftpRRQTimeoutMSecs overrides default timeout when trying to connect to a TFTP
6926     server, TftpRRQTimeoutCountMax overrides default number of connection retries.
6927     The total delay when trying to download a file from a non-existing TFTP server
6928     is TftpRRQTimeoutMSecs x TftpRRQTimeoutCountMax milliseconds.
6929
6930     Timeouts during file transfers (2.) are unaffected.
6931
6932     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
6933     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
6934     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6935
6936 commit 49f3bdbba8071f56d950a9498b6cdb998b35340a
6937 Author: Bartlomiej Sieka <tur@semihalf.com>
6938 Date:   Wed Oct 1 15:26:28 2008 +0200
6939
6940     net: express the first argument to NetSetTimeout() in milliseconds
6941
6942     Enforce millisecond semantics of the first argument to NetSetTimeout() --
6943     the change is transparent for well-behaving boards (CFG_HZ == 1000 and
6944     get_timer() countiing in milliseconds).
6945
6946     Rationale for this patch is to enable millisecond granularity for
6947     network-related timeouts, which is needed for the upcoming automatic
6948     software update feature.
6949
6950     Summary of changes:
6951     - do not scale the first argument to NetSetTimeout() by CFG_HZ
6952     - change timeout values used in the networking code to milliseconds
6953
6954     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
6955     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
6956     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6957
6958 commit c68a05feeb88de9fcf158e67ff6423c4cc988f88
6959 Author: richardretanubun <richardretanubun@ruggedcom.com>
6960 Date:   Mon Sep 29 18:28:23 2008 -0400
6961
6962     Adds two more ethernet interface to 83xx
6963
6964     Added as a convenience for other platforms that uses MPC8360 (has 8 UCC).
6965     Six eth interface is chosen because the platform I am using combines
6966     UCC1&2 and UCC3&4 as 1000 Eth and the other four UCCs as 10/100 Eth.
6967
6968     Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
6969     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6970
6971 commit 41410eee472b0f42e03a77f961bbc55ef58f3c01
6972 Author: Haiying Wang <Haiying.Wang@freescale.com>
6973 Date:   Wed Sep 24 11:42:12 2008 -0500
6974
6975     Change UEC PHY interface to RGMII on MPC8568MDS
6976
6977     Change UEC phy interface from GMII to RGMII on MPC8568MDS board
6978
6979     Because on MPC8568MDS, GMII interface is only recommended for 1000Mbps speed,
6980     but RGMII interface can work at 10/100/1000Mbps, and RGMII interface works more stable.
6981
6982     Now both UEC1 and UEC2 can work properly under u-boot.
6983
6984     It is also in consistent with the kernel setting for 8568 UEC phy interface.
6985
6986     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
6987     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6988
6989 commit b59b16ca24bc7e77ec113021a6d77b9b32fcf192
6990 Author: Wolfgang Denk <wd@denx.de>
6991 Date:   Sat Oct 18 21:30:31 2008 +0200
6992
6993     Prepare v2008.10 release: update CHANGELOG & Makefile
6994
6995     Signed-off-by: Wolfgang Denk <wd@denx.de>
6996
6997 commit f7a35a60cf45491871a5c28e9ad24db005487857
6998 Author: Heiko Schocher <hs@denx.de>
6999 Date:   Fri Oct 17 18:24:06 2008 +0200
7000
7001     mgcoge: add redundant environment sector
7002
7003     Signed-off-by: Heiko Schocher <hs@denx.de>
7004     Signed-off-by: Wolfgang Denk <wd@denx.de>
7005
7006 commit c2537ee85954af9d036b18b644f3e18d837bf4a5
7007 Author: Heiko Schocher <hs@denx.de>
7008 Date:   Fri Oct 17 18:23:27 2008 +0200
7009
7010     mgsuvd: update size of environment
7011
7012     Signed-off-by: Heiko Schocher <hs@denx.de>
7013
7014 commit fa7b1c07e9371aea8f87ee6d3c2ea5564bd8cc8d
7015 Author: Lepcha Suchit <Suchit.Lepcha@freescale.com>
7016 Date:   Thu Oct 16 13:38:00 2008 -0500
7017
7018     83xx NAND boot: wait for LTESR[CC]
7019
7020     At least some revisions of the 8313, and possibly other chips, do not
7021     wait for all pages of the initial 4K NAND region to be loaded before
7022     beginning execution; thus, we wait for it before branching out of the
7023     first NAND page.
7024
7025     This fixes warm reset problems when booting from NAND on 8313erdb.
7026
7027     Signed-off-by: Scott Wood <scottwood@freescale.com>
7028     Acked-by: Kim Phillips <kim.phillips@freescale.com>
7029
7030 commit bf29e0ea0af03d593c64614136acc723a7a022a2
7031 Author: Yuri Tikhonov <yur@emcraft.com>
7032 Date:   Fri Oct 17 12:54:18 2008 +0200
7033
7034     ppc4xx: PPC44x MQ initialization
7035
7036     Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
7037     values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
7038     dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
7039
7040     Previously the appropriate initialization had been made in Linux, by the
7041     ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
7042     registers after normal operation has begun is not supported and could
7043     have unpredictable results.
7044
7045     Comment from Stefan: This patch doesn't change the resulting value of the
7046     MQ registers. It explicitly sets/clears all bits to the desired state which
7047     better documents the resulting register value instead of relying on pre-set
7048     default values.
7049
7050     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
7051     Signed-off-by: Stefan Roese <sr@denx.de>
7052
7053 commit ec081c2c190148b374e86a795fb6b1c49caeb549
7054 Author: Stefan Roese <sr@denx.de>
7055 Date:   Fri Oct 17 12:51:46 2008 +0200
7056
7057     ppc4xx: PPC44x MQ initialization
7058
7059     Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
7060     values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
7061     dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
7062
7063     Previously the appropriate initialization had been made in Linux, by the
7064     ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
7065     registers after normal operation has begun is not supported and could
7066     have unpredictable results.
7067
7068     Comment from Stefan: This patch doesn't change the resulting value of the
7069     MQ registers. It explicitly sets/clears all bits to the desired state which
7070     better documents the resulting register value instead of relying on pre-set
7071     default values.
7072
7073     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
7074     Signed-off-by: Stefan Roese <sr@denx.de>
7075
7076 commit f7d190b1c0b3ab7fc53074ad2862f7de99de37ff
7077 Author: Kumar Gala <galak@kernel.crashing.org>
7078 Date:   Thu Oct 16 21:58:50 2008 -0500
7079
7080     85xx: Using proper I2C source clock divider for MPC8544
7081
7082     The MPC8544 RM incorrect shows the SEC_CFG bit in PORDEVSR2 as being
7083     bit 26, instead it should be bit 28.  This caused in incorrect
7084     interpretation of the i2c_clk which is the same as the SEC clk on
7085     MPC8544.  The SEC clk is controlled by cfg_sec_freq that is reported
7086     in PORDEVSR2.
7087
7088     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7089
7090 commit 42653b826adb319a1df06e24ef26096b2a5d9d2a
7091 Author: Kumar Gala <galak@kernel.crashing.org>
7092 Date:   Thu Oct 16 21:58:49 2008 -0500
7093
7094     Revert "85xx: Using proper I2C source clock divider for MPC8544"
7095
7096     This reverts commit dffd2446fb041f38ef034b0fcf41e51e5e489159.
7097
7098     The fix introduced by this patch is not correct.  The problem is
7099     that the documentation is not correct for the MPC8544 with regards
7100     to which bit in PORDEVSR2 is for the SEC_CFG.
7101
7102     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7103
7104 commit 2179c4766bffeece98e5e92040629a96c97e230c
7105 Author: Kumar Gala <galak@kernel.crashing.org>
7106 Date:   Wed Oct 15 10:19:41 2008 -0500
7107
7108     85xx: Fix compile warning
7109
7110     mpc8536ds.c: In function 'is_sata_supported':
7111     mpc8536ds.c:614: warning: unused variable 'devdisr'
7112
7113     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7114
7115 commit 9029b68f3f81b3013044f167ea025e836e6c8c0e
7116 Author: Jason Jin <Jason.jin@freescale.com>
7117 Date:   Wed Oct 15 10:40:24 2008 +0800
7118
7119     Fix the function conflict in x86emu when DEBUG is on
7120
7121     The function parse_line() in common/main.c was exposed globally by commit
7122     6636b62a6efc7f14e6e788788631ae7a7fca4537, Result in conflict with the same
7123     name funciton in drivers/bios_emulator/x86emu/debug.c when define the DEBUG.
7124     This patch fix this by renaming the function in the debug.c file.
7125
7126     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
7127
7128 commit b4dbacf69a669a17487054552fc2761149dd6767
7129 Author: Wolfgang Denk <wd@denx.de>
7130 Date:   Wed Oct 15 15:50:45 2008 +0200
7131
7132     Coding Style cleanup, update CHANGELOG, prepare 2008.10-rc3
7133
7134     Signed-off-by: Wolfgang Denk <wd@denx.de>
7135
7136 commit 374b9038293d01d8744a46af9b7854a6fd99b228
7137 Author: Heiko Schocher <hs@denx.de>
7138 Date:   Wed Oct 15 09:51:19 2008 +0200
7139
7140     Fix compiler warning in lib_ppc/board.c
7141
7142     Fix compiler warning introduced by commit 0f8cbc18
7143
7144     Signed-off-by: Heiko Schocher <hs@denx.de>
7145     Signed-off-by: Wolfgang Denk <wd@denx.de>
7146
7147 commit 9724555755a6f1066636481b41f7094e0ce93a69
7148 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
7149 Date:   Thu Oct 9 10:29:14 2008 +0530
7150
7151     mpc83xx: wait till UPM completes the write to array
7152
7153     Reference manual states that MxMR[MAD] increment is the indication
7154     of write to UPM array is complete. Honour that. Also, make the dummy
7155     write explicit.
7156
7157     also fix the comment.
7158
7159     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
7160     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7161
7162 commit 03e2dbb18e858e2f7a6aaa437f290f3690d02d51
7163 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
7164 Date:   Wed Oct 8 18:12:20 2008 -0500
7165
7166     Remove unwanted ';' at end of define.
7167
7168     Currently this is not creating any problem. But it will result
7169     in compilation error when used as below.
7170
7171     printf("CFG_SDRAM_CFG2 - %08x\n", CFG_SDRAM_CFG2);
7172
7173     Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
7174
7175     continuation of the theme based on git grep "^#define CFG_.*;$" include/
7176
7177     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7178
7179 commit b2934a56650e9a6c54432f9ce6dc36757967385e
7180 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7181 Date:   Mon Oct 6 10:53:59 2008 -0400
7182
7183     ARM DaVinci: Add maintainer information for SFFSDR board.
7184
7185     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7186
7187 commit 12c6670f873ed632c264a6f3e8bf1297d5c3ddbc
7188 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7189 Date:   Sat Oct 4 19:26:16 2008 +0200
7190
7191     api: fix type mismatch
7192
7193     This patch fixes a type mismatch and thus removes a compiler
7194     warning when compiling with CONFIG_API on powerpc.
7195
7196     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7197
7198 commit 9bc2e4eee3bcb8e63847d7a733e0c607807d6141
7199 Author: Peter Tyser <ptyser@xes-inc.com>
7200 Date:   Wed Oct 1 12:25:04 2008 -0500
7201
7202     cmd_i2c: Fix help for CONFIG_I2C_CMD_TREE && !CONFIG_I2C_MULTI_BUS
7203
7204     Original code displayed:
7205      => help i2c
7206      i2c i2c speed [speed] - show or set I2C bus speed
7207      i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device
7208      ...
7209
7210     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7211
7212 commit a0b1b610e980e253d4c2519ee15bd0937c3f8be1
7213 Author: Wolfgang Denk <wd@denx.de>
7214 Date:   Tue Oct 14 22:13:41 2008 +0200
7215
7216     Update CHANGELOG
7217
7218     Signed-off-by: Wolfgang Denk <wd@denx.de>
7219
7220 commit 0f8cbc1829d9c7d9616fd29b366a99d037facdcd
7221 Author: Jason Jin <Jason.jin@freescale.com>
7222 Date:   Fri Oct 10 11:41:01 2008 +0800
7223
7224     Do not init SATA when disabled on 8536DS.
7225
7226     SGMII and SATA share the serdes on MPC8536 CPU, When SATA disabled and the
7227     driver still try to access the SATA registers, the cpu will hangup.
7228     This patch try to fix this by reading the serdes status before the SATA
7229     initialize.
7230
7231     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
7232     Acked-by: Andy Fleming <afleming@freescale.com>
7233
7234 commit 9dbc366744960013965fce8851035b6141f3b3ae
7235 Author: Remy Bohmer <linux@bohmer.net>
7236 Date:   Fri Oct 10 10:23:22 2008 +0200
7237
7238     The PIPE_INTERRUPT flag is used wrong
7239
7240     At a lot of places in the code the PIPE_INTERRUPT flags and friends
7241     are used wrong. The wrong bits are compared to this flag resulting
7242     in wrong conditions. Also there are macros that should be used for
7243     PIPE_* flags.
7244     This patch tries to fix them all, however, I was not able to test the
7245     changes, because I do not have any of these boards.
7246
7247     Review required!
7248
7249     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7250     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
7251
7252 commit 48867208444cb2a82e2af9c3249e90b7ed4a1751
7253 Author: Remy Bohmer <linux@bohmer.net>
7254 Date:   Fri Oct 10 10:23:21 2008 +0200
7255
7256     fix USB initialisation procedure
7257
7258     The max packet size is encoded as 0,1,2,3 for 8,16,32,64 bytes.
7259     At some places directly 8,16,32,64 was used instead of the encoded
7260     value. Made a enum for the options to make this more clear and to help
7261     preventing similar errors in the future.
7262
7263     After fixing this bug it became clear that another bug existed where
7264     the 'pipe' is and-ed with PIPE_* flags, where it should have been
7265     'usb_pipetype(pipe)', or even better usb_pipeint(pipe).
7266
7267     Also removed the triple 'get_device_descriptor' sequence, it has no use,
7268     and Windows nor Linux behaves that way.
7269     There is also a poll going on with a timeout when usb_control_msg() fails.
7270     However, the poll is useless, because the flag will never be set on a error,
7271     because there is no code that runs in a parallel that can set this flag.
7272     Changed this to something more logical.
7273
7274     Tested on AT91SAM9261ek and compared the flow on the USB bus to what
7275     Linux is doing. There is no difference anymore in the early initialisation
7276     sequence.
7277
7278     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7279     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
7280
7281 commit ec4d8c1c1d94a790c1473ae8aace282b817c3123
7282 Author: Nikita V. Youshchenko <yoush@cs.msu.su>
7283 Date:   Fri Oct 3 00:03:55 2008 +0400
7284
7285     fsl_diu: fix alignment error that caused malloc corruption
7286
7287     When aligning malloc()ed screen_base, invalid offset was added.
7288     This not only caused misaligned result (which did not cause hardware
7289     misbehaviour), but - worse - caused screen_base + smem_len to
7290     be out of malloc()ed space, which in turn caused breakage of
7291     futher malloc()/free() operation.
7292
7293     This patch fixes screen_base alignment.
7294
7295     Also this patch makes memset() that cleans framebuffer to be executed
7296     on first initialization of diu, not only on re-initialization. It looks
7297     correct to clean the framebuffer instead of displaying random garbage;
7298     I believe that was disabled only because that memset caused breakage
7299     of malloc/free described above - which no longer happens with the fix
7300     described above.
7301
7302     Signed-off-by: Nikita V. Youshchenko <yoush@debian.org>
7303
7304 commit 3d0ea3110f3431b6c2aee882784f39f97b20bce9
7305 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7306 Date:   Wed Sep 24 10:29:37 2008 +0200
7307
7308     api: Fix building with CONFIG_API
7309
7310     This patch fixes building with CONFIG_API and CONFIG_USB_STORAGE.
7311
7312     USB_MAX_STOR_DEV is defined in include/usb.h, but
7313     needed in api/api_storage.c.
7314
7315     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7316
7317 commit abbb90666d5ef2f500ebbedbb80ff60adc56b043
7318 Author: Peter Tyser <ptyser@xes-inc.com>
7319 Date:   Tue Sep 23 12:39:40 2008 -0500
7320
7321     Remove unused CFG_EEPROM_PAGE_WRITE_ENABLE references
7322
7323     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7324
7325 commit 81e612014c40c922ec35488d17c504d4e9286f06
7326 Author: Peter Tyser <ptyser@xes-inc.com>
7327 Date:   Tue Sep 23 12:38:42 2008 -0500
7328
7329     Remove CFG_EEPROM_PAGE* dependencies for temperature sensors
7330
7331     The checks for CFG_EEPROM_PAGE_WRITE_ENABLE and
7332     CFG_EEPROM_PAGE_WRITE_BITS in various temperature
7333     sensor drivers are not necessary
7334
7335     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7336
7337 commit c46980f6d2135ade345dadc1fb1f1f4c8bbf255a
7338 Author: Mike Frysinger <vapier@gentoo.org>
7339 Date:   Tue Oct 14 07:04:38 2008 -0400
7340
7341     cmd_spi: remove broken signed casting for display
7342
7343     Since we're working with unsigned data, you can't apply a signed pointer
7344     cast and then attempt to print the result.  Otherwise you get wrong output
7345     when the sign bit is set like "0xFF" incorrectly extended to "0xFFFFFFFF".
7346
7347     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7348
7349 commit d5fd0b49210c941de8a1fce3947ace92243ab5ca
7350 Author: Mike Frysinger <vapier@gentoo.org>
7351 Date:   Tue Oct 14 07:05:24 2008 -0400
7352
7353     strings cmd: drop old CONFIG_CFG_STRINGS define
7354
7355     We don't need CONFIG_CFG_STRINGS anymore now that we have the define
7356     CONFIG_CMD_STRINGS and Makefile control.
7357
7358     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7359
7360 commit fecb5ade3b37f62981f2b05b621005850173aaa9
7361 Author: Jason Jin <Jason.jin@freescale.com>
7362 Date:   Fri Sep 19 17:32:49 2008 +0800
7363
7364     Fix the NAND size overflow issue.
7365
7366     When the total size of all NAND devices exceeds 4 GiB, the size  will
7367     overflow. This patch tries to fix this.
7368
7369     Note that we still have a problem when a single NAND device is bigger
7370     than 4 GiB: then the overflow would actually happen earlier, i. e.
7371     when storing the size in nand_info[].size, as nand_info[].size is an
7372     "u_int32_t".
7373
7374     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
7375     Signed-off-by: Wolfgang Denk <wd@denx.de>
7376
7377 commit 30f574717277238b9014b8136c90eea77196490f
7378 Author: Louis Su <louis@asix.com.tw>
7379 Date:   Wed Jul 9 11:01:37 2008 +0800
7380
7381     AX88180: new gigabit network driver
7382
7383     Signed-off-by: Louis Su <louis@asix.com.tw>
7384     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7385
7386 commit c9d6b6925344740ca1db2f8a6bab7921ff820de3
7387 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
7388 Date:   Tue Aug 19 16:07:03 2008 +0200
7389
7390     enable 10/100M at VSC8601 at tsec driver
7391
7392     Currently VSC8601 doesn't link with 10/100M partners if the
7393     EEPROM/Strapping is not set up.
7394     Setting the auto-neg register fixes this.
7395
7396     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
7397     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7398
7399 commit 702c85b0e876d587c11acdbb55738ee52acd54f4
7400 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
7401 Date:   Tue Sep 30 15:02:53 2008 +0900
7402
7403     net: ne2000: Divided a function of NE2000 driver
7404
7405     get_prom function was used __attriute__ , but it is not enable.
7406     ax88796.o does not do link besides ne2000.o. When ld is carried
7407     out, get_prom function of ax88796.c is ignored.
7408     This problem is a thing by specifications of ld.
7409     I checked and test this patch on SuperH and MIPS.
7410
7411     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
7412     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7413
7414 commit 05c7e9070fe4d751e029fd9524bfbbc93cbb1393
7415 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
7416 Date:   Tue Oct 14 11:10:59 2008 +0900
7417
7418     sh: rsk7203: Add smc911x driver support to board config file
7419
7420     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
7421     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7422
7423 commit cae6f909baf86357b3c0bd01acfc414348c4d175
7424 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
7425 Date:   Thu Oct 9 13:54:33 2008 +0900
7426
7427     sh: Fix cannot execute a stand-alone application
7428
7429     Address calculated in EXPORT_FUNC in SuperH was wrong, I revised it.
7430
7431     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
7432     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7433
7434 commit 6df0efd5c86ca1689deeb2738b46b7d83ce228ef
7435 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
7436 Date:   Wed Oct 8 23:38:00 2008 -0500
7437
7438     fsl_pci_init do not scan bus when configured as an end-point
7439
7440     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
7441     Acked-by: Andy Fleming <afleming@freescale.com>
7442
7443 commit 6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5
7444 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7445 Date:   Tue Sep 16 17:07:53 2008 -0400
7446
7447     ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board.
7448
7449     This is no longer necessary now that the GD_FLG_RELOC flag is set for
7450     all ARM boards.
7451
7452     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7453
7454 commit d977a57356657ba241256231efca32828a5822f9
7455 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
7456 Date:   Sat Sep 13 10:04:32 2008 +0200
7457
7458     Fix lzma uncompress call (image_start wrongly used instead image_len)
7459
7460     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
7461
7462 commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
7463 Author: Nick Spence <nick.spence@freescale.com>
7464 Date:   Thu Aug 28 14:09:15 2008 -0700
7465
7466     mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
7467
7468     This is needed in unlock_ram_in_cache() because it is called from C and
7469     will corrupt the small data area anchor that is kept in R2.
7470
7471     lock_ram_in_cache() is modified similarly as good coding practice, but
7472     is not called from C.
7473
7474     Signed-off-by: Nick Spence <nick.spence@freescale.com>
7475
7476 commit 5c7cbcd34d0ee566875a4fd0f2a3e5a62bba921c
7477 Author: Kumar Gala <galak@kernel.crashing.org>
7478 Date:   Tue Aug 19 15:05:34 2008 -0500
7479
7480     86xx: remove redudant code with lib_ppc/interrupts.c
7481
7482     For some reason we duplicated the majority of code in lib_ppc/interrupts.c
7483     Not know how that happened, but there is no good reason for it.
7484
7485     Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
7486     they exist.
7487
7488     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7489
7490 commit 0d01f66d235118515b5086b88f82498bc0695d6a
7491 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
7492 Date:   Thu Oct 9 01:26:36 2008 -0500
7493
7494     CFI: cfi_flash write fix for AMD legacy
7495
7496     The flash_unlock_seq requires a sector for AMD_LEGACY.
7497     Fix a retcode check typeo.
7498
7499     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
7500     Signed-off-by: Stefan Roese <sr@denx.de>
7501
7502 commit 542b385a620a1783454a00424930e51895f45073
7503 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7504 Date:   Tue Oct 7 13:13:10 2008 +0200
7505
7506     ppc4xx: Fix USB 2.0 phy reset sequence
7507
7508     This patch fixes USB 2.0 communication issues on some DU440 boards.
7509
7510     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7511     Signed-off-by: Stefan Roese <sr@denx.de>
7512
7513 commit df8c1ce11114c2260dedb5547281945f7db8fa5c
7514 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7515 Date:   Tue Oct 7 13:13:09 2008 +0200
7516
7517     ppc4xx: Add strapping mode for 667MHz CPU frequency on DU440 board
7518
7519     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7520     Signed-off-by: Stefan Roese <sr@denx.de>
7521
7522 commit 6a133d6a00b1fc7b9257cd5925d8cb67f75ecda2
7523 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7524 Date:   Tue Oct 7 13:13:08 2008 +0200
7525
7526     ppc4xx: Fix DU440 GPIO configuration
7527
7528     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7529     Signed-off-by: Stefan Roese <sr@denx.de>
7530
7531 commit 35dd025c70fcc4389317db2f2a9d14795172137d
7532 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7533 Date:   Tue Oct 7 13:13:07 2008 +0200
7534
7535     ppc4xx: Update DU440 config
7536
7537     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7538     Signed-off-by: Stefan Roese <sr@denx.de>
7539
7540 commit f3bf9273939ffe1a60a32a2eef909097f15df56b
7541 Author: Kumar Gala <galak@kernel.crashing.org>
7542 Date:   Wed Oct 8 15:36:39 2008 -0500
7543
7544     MPC8572DS: Fix compile warnings
7545
7546     Commit 445a7b38308eb05b41de74165b20855db58c7ee5 introduced the following
7547     compile warnings:
7548
7549     cmd_i2c.c:112: warning: missing braces around initializer
7550     cmd_i2c.c:112: warning: (near initialization for 'i2c_no_probes[0]')
7551
7552     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7553
7554 commit dffd2446fb041f38ef034b0fcf41e51e5e489159
7555 Author: Wolfgang Grandegger <wg@grandegger.com>
7556 Date:   Tue Sep 30 10:55:57 2008 +0200
7557
7558     85xx: Using proper I2C source clock divider for MPC8544
7559
7560     Measurements with our MPC8544 board showed that the I2C bus frequency
7561     is wrong by a factor of 1.5. Obviously, the interpretation of the
7562     MPC85xx_PORDEVSR2_SEC_CFG bit of the cfg_sec_freq register is not
7563     correct. There seems to be an error in the 8544 RM.
7564
7565     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
7566
7567 commit e46c7bfb8bc3c304cedd20f7a365d6e78d7eaf17
7568 Author: Rafal Czubak <rcz@semihalf.com>
7569 Date:   Wed Oct 8 13:41:30 2008 +0200
7570
7571     FSL: Fix get_cpu_board_revision() return value.
7572
7573     get_cpu_board_revision() returned board revision based on information stored
7574     in global static struct eeprom. It should instead use one from local struct
7575     board_eeprom, to which the data is actually read from EEPROM. The bug led to
7576     system hang after printing L1 cache information on U-Boot startup. The problem
7577     was observed on MPC8555CDS system and possibly affects other Freescale MPC85xx
7578     boards using CFG_I2C_EEPROM_CCID.
7579
7580     The change has been successfully tested on MPC8555CDS system.
7581
7582     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
7583
7584 commit 747f316cca484ed627a97dd3391febabce384186
7585 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7586 Date:   Tue Sep 30 20:08:49 2008 +0200
7587
7588     update uImage FIT multi documentation
7589
7590     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7591
7592 commit 77a0355f60b801f232ce0a5bfbe95331fa3b6bc0
7593 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7594 Date:   Tue Sep 30 20:08:36 2008 +0200
7595
7596     move README.imx31 to doc/ and merge with README.mx31
7597
7598     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7599
7600 commit 1ed7a7f0f571b13d46530f8f8b9aff3957f15a96
7601 Author: Guennadi Liakhovetski <lg@denx.de>
7602 Date:   Thu Sep 25 20:54:37 2008 +0200
7603
7604     i.MX31: switch to CFG_HZ=1000
7605
7606     Switch to the standard CFG_HZ=1000 value, while at it, minor white-space
7607     cleanup, remove CFG_CLKS_IN_HZ from config-headers. Tested on mx31ads,
7608     provides 2% or 0.4% precision depending on the
7609     CONFIG_MX31_TIMER_HIGH_PRECISION flag. Measured with stop-watch on 100s
7610     boot-delay.
7611
7612     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
7613
7614 commit f41b144c11341b571eab7dcef6c4b8e03c92d2b2
7615 Author: gnusercn <gnusercn@gmail.com>
7616 Date:   Wed Oct 8 18:58:58 2008 +0200
7617
7618     Fix bug: in arch-arm, env_get_char dose not work fine
7619
7620     due to the arm implementation which supposed that U-Boot is in RAM
7621     when we jump to start_armboot
7622
7623     Signed-off-by: gnusercn <gnusercn@gmail.com>
7624     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7625
7626 commit f8a00dea841d5d75de1f8e8107e90ee1beeddf5f
7627 Author: Adam Graham <agraham@amcc.com>
7628 Date:   Mon Oct 6 10:16:13 2008 -0700
7629
7630     ppc4xx: Reset and relock memory DLL after SDRAM_CLKTR change
7631
7632     After changing SDRAM_CLKTR phase value rerun the memory preload
7633     initialization sequence (INITPLR) to reset and relock the memory
7634     DLL. Changing the SDRAM_CLKTR memory clock phase coarse timing
7635     adjustment effects the phase relationship of the internal, to the
7636     PPC chip, and external, to the PPC chip, versions of MEMCLK_OUT.
7637
7638     Signed-off-by: Adam Graham <agraham@amcc.com>
7639     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
7640     Signed-off-by: Stefan Roese <sr@denx.de>
7641
7642 commit 5297246bbaa9943c0da1ec2e717b72e4ab6b830e
7643 Author: Haiying Wang <Haiying.Wang@freescale.com>
7644 Date:   Fri Oct 3 11:48:03 2008 -0400
7645
7646     Remove redundant #define for MPC8536DS
7647
7648     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
7649
7650 commit 445a7b38308eb05b41de74165b20855db58c7ee5
7651 Author: Haiying Wang <Haiying.Wang@freescale.com>
7652 Date:   Fri Oct 3 11:47:30 2008 -0400
7653
7654     Add ID EEPROM support for MPC8572DS
7655
7656     The ID EEPROM on MPC8572DS board locates on I2C bus 1. Its the storage for
7657     system information like mac addresses etc. This patch enables it.
7658
7659     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
7660
7661 commit 1f3ba317a5c5f3a7aabf580fddc211f4bb5a4540
7662 Author: Haiying Wang <Haiying.Wang@freescale.com>
7663 Date:   Fri Oct 3 11:46:59 2008 -0400
7664
7665     Minor fixes for I2C address on MPC8572DS
7666
7667     MPC8572DS has two i2c buses. This patch moves the DDR SPD_EEPROM to i2c bus 1
7668     according to the board spec, and adds the 2nd i2c bus offset.
7669
7670     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
7671
7672 commit c0391111c33c22fabeddf8f4ca801ec7645b4f5c
7673 Author: Jason Jin <Jason.jin@freescale.com>
7674 Date:   Sat Sep 27 14:40:57 2008 +0800
7675
7676     Fix the incorrect DDR clk freq reporting on 8536DS
7677
7678     On 8536DS board, When the DDR clk is set async mode(SW3[6:8] != 111),
7679     The display is still sync mode DDR freq. This patch try to fix
7680     this. The display DDR freq is now the actual freq in both
7681     sync and async mode.
7682
7683     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
7684
7685 commit bac6a1d1fa1cd80aa57881fa9c2152b853cd0ed4
7686 Author: Kumar Gala <galak@kernel.crashing.org>
7687 Date:   Tue Oct 7 10:28:46 2008 -0500
7688
7689     85xx: Remove setting of *cache-line-size in device trees
7690
7691     ePAPR says if the *cache-block-size is the same as *cache-line-size
7692     than we don't need the *cache-line-size property.
7693
7694     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7695
7696 commit cd3cb0d9269d155276b00207e3816a9347fd1c92
7697 Author: Gerald Van Baren <vanbaren@cideas.com>
7698 Date:   Sat Oct 4 07:56:06 2008 -0400
7699
7700     libfdt: Fix error in documentation for fdt_get_alias_namelen()
7701
7702     Oops, screwed up the function name in the documenting comment for this
7703     function.  Trivial correction in this patch.
7704
7705     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
7706     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
7707
7708 commit 9a6cf73a88ddab2e1ac39088f2806177982cc62c
7709 Author: David Gibson <david@gibson.dropbear.id.au>
7710 Date:   Wed Aug 20 16:55:14 2008 +1000
7711
7712     libfdt: Add function to explicitly expand aliases
7713
7714     Kumar has already added alias expansion to fdt_path_offset().
7715     However, in some circumstances it may be convenient for the user of
7716     libfdt to explicitly get the string expansion of an alias.  This patch
7717     adds a function to do this, fdt_get_alias(), and uses it to implement
7718     fdt_path_offset().
7719
7720     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
7721
7722 commit 2215987e100d2a841ae6d48a7cc9bb83fcf22737
7723 Author: Mike Frysinger <vapier@gentoo.org>
7724 Date:   Thu Oct 2 01:55:38 2008 -0400
7725
7726     cfi_flash: do not reset flash when probe fails
7727
7728     The CFI flash driver starts at flash_init() which calls down into
7729     flash_get_size().  This starts by calling flash_detect_cfi().  If said
7730     function fails, flash_get_size() finishes by attempting to reset the
7731     flash.  Unfortunately, it does this with an info->portwidth set to 0x10
7732     which filters down into flash_make_cmd() and that happily smashes the
7733     stack by sticking info->portwidth bytes into a cfiword_t variable that
7734     lives on the stack.  On a 64bit system you probably won't notice, but
7735     killing the last 8 bytes on a 32bit system usually leads to a corrupt
7736     return address.  Which is what happens on a Blackfin system.
7737
7738     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7739     Signed-off-by: Stefan Roese <sr@denx.de>
7740
7741 commit 3e38577208e4256956bc33bb8bcd0a6b6fab55c3
7742 Author: Stefan Roese <sr@denx.de>
7743 Date:   Fri Sep 26 17:03:26 2008 +0200
7744
7745     fdt: Overwrite /chosen node in bootm if it already exists in the dtb
7746
7747     Set force parameter in fdt_chosen() call in do_bootm_linux() call.
7748     Without this, the chosen node is not overwritten if it already
7749     exists.
7750
7751     Signed-off-by: Stefan Roese <sr@denx.de>
7752
7753 commit 741a6d010d09b5bafca8e4cdfb6b2f8a2c07994d
7754 Author: Jon Loeliger <jdl@freescale.com>
7755 Date:   Thu Sep 25 11:02:17 2008 -0500
7756
7757     Fix an overflow case in fdt_offset_ptr() detected by GCC 4.3.
7758
7759     Using Gcc 4.3 detected this problem:
7760
7761         ../dtc/libfdt/fdt.c: In function 'fdt_next_tag':
7762         ../dtc/libfdt/fdt.c:82: error: assuming signed overflow does not
7763         occur when assuming that (X + c) < X is always false
7764
7765     To fix the problem, treat the offset as an unsigned int.
7766
7767     The problem report and proposed fix were provided
7768     by Steve Papacharalambous <stevep@freescale.com>.
7769
7770     Signed-off-by: Jon Loeliger <jdl@freescale.com>
7771
7772 commit bbdbc7cb3abefda5bd998edbcf0508fe6256327d
7773 Author: David Gibson <david@gibson.dropbear.id.au>
7774 Date:   Fri Aug 29 14:19:13 2008 +1000
7775
7776     libfdt: Fix bugs in fdt_get_path()
7777
7778     The current implementation of fdt_get_path() has a couple of bugs,
7779     fixed by this patch.
7780
7781     First, contrary to its documentation, on success it returns the length
7782     of the node's path, rather than 0.  The testcase is correspondingly
7783     wrong, and the patch fixes this as well.
7784
7785     Second, in some circumstances, it will return -FDT_ERR_BADOFFSET
7786     instead of -FDT_ERR_NOSPACE when given insufficient buffer space.
7787     Specifically this happens when there is insufficient space even to
7788     hold the path's second last component.  This behaviour is corrected,
7789     and the testcase updated to check it.
7790
7791     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
7792
7793 commit 33af3e6656e84660d397b5dd95abab2dccc36f83
7794 Author: Wolfgang Denk <wd@denx.de>
7795 Date:   Wed Oct 1 12:34:58 2008 +0200
7796
7797     TQM5200: enable support for ATAPI devices
7798
7799     Signed-off-by: Wolfgang Denk <wd@denx.de>
7800
7801 commit d13ff2358ff8c384f52eaf46f5d60258acf96ea6
7802 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7803 Date:   Mon Sep 15 05:48:25 2008 +0200
7804
7805     Revert "ARM: set GD_FLG_RELOC for boards skipping relocation to RAM"
7806
7807     we need this due to the arm implementation which supposed that U-Boot
7808     is in RAM when we jump to start_armboot
7809
7810     This reverts commit f96b44cef897bd372beb86dde1b33637c119d84d.
7811     in order to do it for all arm board
7812
7813     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7814
7815 commit 7fd0bea2e4a78eab7e6693140940f9f9a0009bc2
7816 Author: Kim Phillips <kim.phillips@freescale.com>
7817 Date:   Wed Sep 24 08:46:25 2008 -0500
7818
7819     mpc83xx: don't disable autoboot
7820
7821     bootdelay set to -1 'permanently' disables autobooting, even if
7822     bootcmd is specified.  Change to a positive value to allow
7823     autobooting when a bootcmd is set.
7824
7825     Reported-by: Coray Tate <Coray.Tate@freescale.com>
7826     Cc: Scott Wood <scottwood@freescale.com>
7827     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7828
7829 commit 2fb29c520c42b7bfef33ea3fd1527eba64099164
7830 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
7831 Date:   Wed Sep 24 10:42:15 2008 +0900
7832
7833     mpc83xx: Fix typo in include/mpc83xx.h
7834
7835     Fixed typo from CONIFG_MPC837X to CONFIG_MPC837X
7836
7837     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
7838     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7839
7840 commit 162c41c03179727a1d14262f703c9a8bc40231fa
7841 Author: Kim Phillips <kim.phillips@freescale.com>
7842 Date:   Tue Sep 23 09:38:49 2008 -0500
7843
7844     mpc83xx: add h/w flash protection to board configs
7845
7846     the operating system may leave flash in a h/w locked state after writing.
7847     This allows u-boot to continue to write flash by enabling h/w unlocking
7848     by default.
7849
7850     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7851
7852 commit d26154c9a692586b66eb6d1f8e1b67c75e40ea70
7853 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7854 Date:   Thu Sep 11 21:35:36 2008 +0400
7855
7856     mpc83xx: spd_sdram: fix ddr sdram base address assignment bug
7857
7858     The spd_dram code shifts the base address, then masks 20 bits, but
7859     forgets to shift the base address back. Fix this by just masking the
7860     base address correctly.
7861
7862     Found this bug while trying to relocate a DDR memory at the base != 0.
7863
7864     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7865     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7866
7867 commit 8fd4166c467a46773f80208bda1ec3b4757747bc
7868 Author: Stefan Roese <sr@denx.de>
7869 Date:   Mon Sep 22 16:10:43 2008 +0200
7870
7871     ppc4xx: Canyonlands: Remove unnecessary FDT warning upon DTB fixup
7872
7873     Depending on the configuration jumper "SATA SELECT", U-Boot disabled
7874     either one PCIe node or the SATA node in the device tree blob. This
7875     patch removes the unnecessary and even confusing warning, when the node
7876     is not found at all.
7877
7878     Signed-off-by: Stefan Roese <sr@denx.de>
7879
7880 commit 6e24a1eb1490aa043770bcf0061ac1fad0864fd9
7881 Author: Remy Bohmer <linux@bohmer.net>
7882 Date:   Fri Sep 19 13:30:06 2008 +0200
7883
7884     Add missing device types to dev_print() in part.c
7885
7886     Signed-off-by: Remy Bohmer <linux@bohmer.net>
7887
7888 commit 5fdc215f0b351b0c36cc3f8a0fa5850f24454bed
7889 Author: Wolfgang Denk <wd@denx.de>
7890 Date:   Mon Sep 22 22:23:06 2008 +0200
7891
7892     Fix DPRAM memory leak when CFG_ALLOC_DPRAM is defined, which
7893     eventually leads to a machine check. This change assures that DPRAM
7894     is allocated only once in that case.
7895
7896     Signed-off-by: Gary Jennejohn <garyj@denx.de>
7897     Signed-off-by: Wolfgang Denk <wd@denx.de>
7898
7899 commit a07faf7b9ad5a86763a577c79922c4ff9a70ef23
7900 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
7901 Date:   Wed Sep 17 17:57:34 2008 +0200
7902
7903     Fix Spartan-3 definitions.
7904
7905     A few Spartan-3 definitions erroneously use Spartan-3E size
7906     constants. This patch fixes them.
7907
7908     Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
7909
7910 commit 28113e1f0da4146b823ffce37680d31d5685a60b
7911 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
7912 Date:   Wed Sep 17 17:41:58 2008 +0200
7913
7914     Remove duplicate Spartan-3E definition.
7915
7916     Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
7917     Signed-off-by: Wolfgang Denk <wd@denx.de>
7918
7919 commit 5c65ecf7cd94df250b295621f3b24135cbcfe579
7920 Author: Anatolij Gustschin <agust@denx.de>
7921 Date:   Wed Sep 17 13:46:17 2008 +0200
7922
7923     socrates: change default mtest address range
7924
7925     Running mtest command on socrates without specifying
7926     an address range crashes the board. This patch changes
7927     default mtest address range to prevent this behavior.
7928
7929     Signed-off-by: Anatolij Gustschin <agust@denx.de>
7930
7931 commit d666b2d59674b5e002c0821b7ab83ec3ff90d670
7932 Author: Anatolij Gustschin <agust@denx.de>
7933 Date:   Wed Sep 17 12:34:45 2008 +0200
7934
7935     socrates: fix crash after relocation
7936
7937     Currently U-Boot crashes after relocation to RAM.
7938     Changing the CPO value of the DDR SDRAM TIMING_CFG_2
7939     register to READ_LAT + 1 (to the value it was before
7940     conversion of socrates to new DDR code) fixes the
7941     problem.
7942
7943     Signed-off-by: Anatolij Gustschin <agust@denx.de>
7944
7945 commit 562788b0a303f3528b920d81f547f5ca77ba528e
7946 Author: Anatolij Gustschin <agust@denx.de>
7947 Date:   Wed Sep 17 11:45:51 2008 +0200
7948
7949     socrates: fix SPD EEPROM address
7950
7951     Commit be0bd8234b9777ecd63c4c686f72af070d886517
7952     changed SPD EEPROM address to 0x51 and DDR SDRAM
7953     detection stopped working. Change this address
7954     back to 0x50.
7955
7956     Signed-off-by: Anatolij Gustschin <agust@denx.de>
7957
7958 commit 023824549a370bd185d7129d9a6c86f9be7b86a8
7959 Author: Stefan Roese <sr@denx.de>
7960 Date:   Mon Sep 22 11:06:50 2008 +0200
7961
7962     Revert "ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)"
7963
7964     This reverts commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8.
7965
7966     Signed-off-by: Stefan Roese <sr@denx.de>
7967
7968 commit e58c41e26cf3c8accd60311be579f452e368e97e
7969 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7970 Date:   Thu Sep 18 20:13:08 2008 +0900
7971
7972     usb: Fix compile warning of r8a66597-hcd
7973
7974     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7975     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
7976
7977 commit b5d10a13525c07ec6374adf840d7c87553b5f189
7978 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7979 Date:   Thu Sep 18 19:34:36 2008 +0900
7980
7981     sh: Fix compile warning
7982
7983     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7984
7985 commit 4a065abf926f128beb36d93449defa0d690e7fef
7986 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7987 Date:   Thu Sep 18 19:04:26 2008 +0900
7988
7989     sh: Add support watchdog for SH4A core
7990
7991     Add support watchdog for SH4A core (SH7763, SH7780 and SH7785).
7992     And fix some compile warning.
7993
7994     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7995
7996 commit a03c09c5fdb8430fe2ae6a03f88a0cf7bcc0aa57
7997 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7998 Date:   Wed Sep 17 11:45:26 2008 +0900
7999
8000     sh: Fix typo in SH serial driver
8001
8002     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8003     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8004
8005 commit 6b44a439215ba7c63f666f8099213ea4f05f2b07
8006 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8007 Date:   Wed Sep 17 11:08:36 2008 +0900
8008
8009     sh: Add support any page size and empty_zero_page to SH Linux uImage
8010
8011     Old U-Boot supported 4KB page size only. If this version, Linux
8012     kernel can not get command line from U-Boot.
8013     SH Linux kernel can change page size and empty_zero_page.
8014     This patch support this function and fix promlem.
8015
8016     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8017     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8018
8019 commit ce9f99ddb59628f41dc534e892368a7d66dfc774
8020 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8021 Date:   Thu Aug 28 13:40:52 2008 +0900
8022
8023     sh: rsk7203: Add support pkt_data_pull and pkt_data_push function
8024
8025     Add function of smc911x, pkt_data_pull and pkt_data_push.
8026
8027     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8028     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8029
8030 commit dd820b03a2f45e86e7960e26729a3b58e3dda44a
8031 Author: Wolfgang Denk <wd@denx.de>
8032 Date:   Thu Sep 18 13:57:32 2008 +0200
8033
8034     ADS5121: fix typo in "rootpath" default setting
8035
8036     Signed-off-by: Wolfgang Denk <wd@denx.de>
8037
8038 commit c9e8436b10cca53fca4904ecbadcd6231ad72c38
8039 Author: Remy Bohmer <linux@bohmer.net>
8040 Date:   Tue Sep 16 14:55:44 2008 +0200
8041
8042     USB layer of U-Boot causes USB protocol errors while using USB memory sticks
8043
8044     There are several differences between Linux, Windows and U-boot for initialising the
8045     USB devices. While analysing the behaviour of U-boot it turned out that U-boot does
8046     things really different, and some are wrong (compared to the USB standard).
8047
8048     This patch fixes some errors:
8049     * The NEW_init procedure that was already in the code is good, while the old procedure
8050       is wrong. See code comments for more info.
8051     * On a Control request the data returned by the device can be more than 8 bytes, while
8052       the host limits it to 8 bytes. This caused the host to generate a DataOverrun error.
8053       This results in a lot of USB sticks not being recognised, and the transmission ended
8054       frequently with a CTL:TIMEOUT Error.
8055     * Added a flag CONFIG_LEGACY_USB_INIT_SEQ to allow users to use the old init procedure.
8056
8057     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8058     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
8059
8060 commit 6f5794a6f78b313231256958fd73673c6aacc116
8061 Author: Remy Bohmer <linux@bohmer.net>
8062 Date:   Tue Sep 16 14:55:43 2008 +0200
8063
8064     Refactoring parts of the common USB OHCI code
8065
8066     This patch refactors some large routines of the USB OHCI code by
8067     making some routines smaller and more readable which helps
8068     debugging and understanding the code. (Makes the code looks
8069     somewhat more like the Linux implementation.)
8070
8071     Also made entire file compliant to Linux Coding Rules (checkpatch.pl compliant)
8072
8073     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8074     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
8075
8076 commit be19d324edc1a1d7f393d24e10d164cd94c91a00
8077 Author: Remy Bohmer <linux@bohmer.net>
8078 Date:   Tue Sep 16 14:55:42 2008 +0200
8079
8080     Fix for USB sticks not working on ARM while using GCC 4.x compilers
8081
8082     The GCC-compiler makes an optimisation error while optimising the routine
8083     usb_set_maxpacket(). This should be fixed in the compiler in the first place,
8084     but there lots of compilers out there that makes this error, that it is
8085     probably wiser to workaround it in U-boot itself.
8086
8087     What happens is that the register r3 is used as loop-counter 'i', but gets
8088     overwritten later on. From there it starts using register r3 for several other
8089     things and the assembler code is becoming a big mess. This is clearly a compiler bug.
8090
8091     This error occurs on at least several versions of Code Sourcery Lite compilers
8092     for ARM. Like the Edition 2008q1, and 2008q3, It has also been seen on other
8093     compilers, while compiling for armv4t, or armv5te with Os, O1 and O2.
8094
8095     We work around it by splitting up this routine in 2 parts, and making sure that
8096     the split out part is NOT inlined any longer. This will make GCC spit out assembler
8097     that do not show this problem. Another possibility is to adapt the Makefile to stop
8098     optimisation for the complete file. I think this solution is nicer.
8099
8100     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8101     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
8102
8103 commit 87b4ef560cf2da4ccc9e59711ad1ff7fafe96670
8104 Author: Wolfgang Denk <wd@denx.de>
8105 Date:   Wed Sep 17 10:17:55 2008 +0200
8106
8107     Coding style cleanup; update CHANEGLOG
8108
8109     Signed-off-by: Wolfgang Denk <wd@denx.de>
8110
8111 commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8
8112 Author: Victor Gallardo <vgallardo@amcc.com>
8113 Date:   Tue Sep 16 06:59:13 2008 -0700
8114
8115     ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)
8116
8117     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
8118     Signed-off-by: Adam Graham <agraham@amcc.com>
8119     Signed-off-by: Stefan Roese <sr@denx.de>
8120
8121 commit ce47eb402c5e29a025399dc282246414fc492940
8122 Author: Peter Tyser <ptyser@xes-inc.com>
8123 Date:   Tue Sep 16 10:04:47 2008 -0500
8124
8125     Support for multiple SGMII/TBI interfaces for TSEC ethernet
8126
8127     Fix TBI PHY accesses to use the proper offset in CPU register space. The
8128     previous code would incorrectly access the TBI PHY by reading/writing to CPU
8129     register space at the same location as would be used to access external PHYs.
8130
8131     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8132     Acked-by: Andy Fleming <afleming@freescale.com>
8133
8134 commit 7c803be2eb3cae245dedda438776e08fb122250f
8135 Author: Wolfgang Denk <wd@denx.de>
8136 Date:   Tue Sep 16 18:02:19 2008 +0200
8137
8138     TQM8xx: Fix CFI flash driver support for all TQM8xx based boards
8139
8140     After switching to using the CFI flash driver, the correct remapping
8141     of the flash banks was forgotten.
8142
8143     Also, some boards were not adapted, and the old legacy flash driver
8144     was not removed yet.
8145
8146     Signed-off-by: Wolfgang Denk <wd@denx.de>
8147
8148 commit c0d2f87d6c450128b88e73eea715fa3654f65b6c
8149 Author: Wolfgang Denk <wd@denx.de>
8150 Date:   Sun Sep 14 00:59:35 2008 +0200
8151
8152     Prepare v2008.10-rc2
8153
8154     Signed-off-by: Wolfgang Denk <wd@denx.de>
8155
8156 commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7
8157 Author: Wolfgang Denk <wd@denx.de>
8158 Date:   Sat Sep 13 02:23:05 2008 +0200
8159
8160     Coding style cleanup, update CHANGELOG
8161
8162     Signed-off-by: Wolfgang Denk <wd@denx.de>
8163
8164 commit 0c32565f536609d78feef35c88bbc39d3ac53a73
8165 Author: Peter Tyser <ptyser@xes-inc.com>
8166 Date:   Wed Sep 10 09:18:34 2008 -0500
8167
8168     Update mailing list email and archive addresses
8169
8170     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8171
8172 commit fb661ea444ae61de60520f66ae84cdb5dd5a3246
8173 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
8174 Date:   Thu Sep 11 15:40:01 2008 +0200
8175
8176     85xx: socrates: autoprobe Lime chip
8177
8178     This patch is an attempt to implement autoprobing for the Lime
8179     presence on the bus.
8180     Configure GPCM for Lime CS2 and try to access chip ID registers.
8181     Second read atempt delivers register values if the chip is present.
8182
8183     Signed-off-by: Anatolij Gustschin <agust@denx.de>
8184
8185 commit e99b607a5ec56ce66e0bcccb78480d5e16fb7bc5
8186 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
8187 Date:   Thu Sep 11 15:40:01 2008 +0200
8188
8189     85xx: socrates: Add support for new image format.
8190
8191     Signed-off-by: Detlev Zundel <dzu@denx.de>
8192
8193 commit 3c094b652d4107b34641f300a8e9fe16ca15e3d8
8194 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8195 Date:   Thu Sep 11 17:28:18 2008 +0900
8196
8197     sh: Fix compile error for r2dplus
8198
8199     netdev.h was not include by r2dplus.
8200
8201     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8202
8203 commit 56844a22b76c719e600047e23b80465a44d76abd
8204 Author: Heiko Schocher <hs@denx.de>
8205 Date:   Thu Sep 11 08:11:23 2008 +0200
8206
8207     powerpc: Fix bootm to boot up again with a Ramdisk
8208
8209     Commit 2a1a2cb6 didnt remove the dummy mem reservation in fdt_chosen,
8210     and this stopped Linux from booting with a Ramdisk. This patch fixes
8211     this, by deleting the useless dummy mem reservation.
8212
8213     When booting with a Ramdisk, a fix offset FDT_RAMDISK_OVERHEAD is now
8214     added to of_size, so we dont need anymore a dummy mem reservation.
8215
8216     I measured the value of FDT_RAMDISK_OVERHEAD on a MPC8270 based
8217     system (=0x44 bytes) and rounded it up to 0x80).
8218
8219     Signed-off-by: Heiko Schocher <hs@denx.de>
8220     Acked-by: Kumar Gala <galak@kernel.crashing.org>
8221
8222 commit fc9c1727b5b3483ce49c3cb668e8332fb001b8a7
8223 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
8224 Date:   Mon Sep 8 02:46:13 2008 +0200
8225
8226     Add support for LZMA uncompression algorithm.
8227
8228     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
8229     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8230
8231 commit 0008b6d968160abe2bfd936493f3a516a7c8da20
8232 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
8233 Date:   Fri Jun 27 23:04:20 2008 +0400
8234
8235     fsl_elbc_nand: ecclayout cleanups
8236
8237     This patch deletes oobavail assignments, they're calculated by the nand
8238     core code in nand_scan_tail, plus current oobavail values are wrong for
8239     the LP NANDs.
8240
8241     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
8242     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
8243     Signed-off-by: Scott Wood <scottwood@freescale.com>
8244
8245 commit 8f42bf1c393d53a70c2545e9f329d11c46d74794
8246 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
8247 Date:   Fri Jun 27 23:04:13 2008 +0400
8248
8249     fsl_elbc_nand: implement support for flash-based BBT
8250
8251     This patch implements support for flash-based BBT for chips working
8252     through ELBC NAND controller, so that NAND core will not have to re-scan
8253     for bad blocks on every boot.
8254
8255     Because ELBC controller may provide HW-generated ECCs we should adjust
8256     bbt pattern and bbt version positions in the OOB free area.
8257
8258     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
8259     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
8260     Signed-off-by: Scott Wood <scottwood@freescale.com>
8261
8262 commit 97ae023648e764f794ffb9c52da109d6caf09c47
8263 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
8264 Date:   Fri Jun 27 23:04:04 2008 +0400
8265
8266     fsl_elbc_nand: fix OOB workability for large page NAND chips
8267
8268     For large page chips, nand_bbt is looking into OOB area, and checking
8269     for "0xff 0xff" pattern at OOB offset 0. That is, two bytes should be
8270     reserved for bbt means.
8271
8272     But ELBC driver is specifying ecclayout so that oobfree area starts at
8273     offset 1, so only one byte left for the bbt purposes.
8274
8275     This causes problems with any OOB users, namely JFFS2: after first mount
8276     JFFS2 will fill all OOBs with "erased marker", so OOBs will contain:
8277
8278       OOB Data: ff 19 85 20 03 00 ff ff ff 00 00 08 ff ff ff ff
8279       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
8280       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
8281       OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
8282
8283     And on the next boot, NAND core will rescan for bad blocks, then will
8284     see "0xff 0x19" pattern, and will mark all blocks as bad ones.
8285
8286     To fix the issue we should implement our own bad block pattern: just one
8287     byte at OOB start. Though, this will work only for x8 chips. For x16
8288     chips two bytes must be checked. Since ELBC driver does not support x16
8289     NANDs (yet), we're safe for now.
8290
8291     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
8292     Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
8293     Signed-off-by: Scott Wood <scottwood@freescale.com>
8294
8295 commit 7238ada313057a85409485b8ee21515dc10c07a5
8296 Author: Wolfgang Denk <wd@denx.de>
8297 Date:   Fri Sep 12 13:52:21 2008 +0200
8298
8299     MPC512x: reduce timeout waiting for Ethernet autonegotiation to 2.5s
8300
8301     Signed-off-by: Wolfgang Denk <wd@denx.de>
8302
8303 commit b18410e508a12ba0a177dfc2a386857c806fa96d
8304 Author: Stefan Roese <sr@denx.de>
8305 Date:   Thu Sep 11 13:05:56 2008 +0200
8306
8307     ppc4xx: Enable device tree (FDT) support in zeus board port
8308
8309     Signed-off-by: Stefan Roese <sr@denx.de>
8310
8311 commit 7bf5ecfa50722a9feb45ea8f04da75f5d406f20b
8312 Author: Stefan Roese <sr@denx.de>
8313 Date:   Wed Sep 10 16:53:47 2008 +0200
8314
8315     ppc4xx: Fix SDRAM inititialization of multiple 405 based board ports
8316
8317     This patch fixes a problem introdiced with patch
8318     bbeff30c [ppc4xx: Remove superfluous dram_init() call or replace it by
8319     initdram()].
8320
8321     The boards affected are:
8322     - PCI405
8323     - PPChameleonEVB
8324     - quad100hd
8325     - taihu
8326     - zeus
8327
8328     Signed-off-by: Stefan Roese <sr@denx.de>
8329
8330 commit 61737c59a3285f6fadf96a5836879898c04ec28d
8331 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
8332 Date:   Thu Sep 11 19:41:26 2008 -0400
8333
8334     ppc4xx: Add .gitignore file to xilinx-ppc440 boards
8335
8336     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
8337     Signed-off-by: Stefan Roese <sr@denx.de>
8338
8339 commit 2bec498ed1164a58cd8437b561bdc4551d69f9bf
8340 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
8341 Date:   Thu Sep 11 19:41:25 2008 -0400
8342
8343     ppc4xx: Fix compilation of v5fx30teval_flash
8344
8345     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
8346     Signed-off-by: Stefan Roese <sr@denx.de>
8347
8348 commit 4bed9deebbd7ee6f0ba746b44d47a922156f7404
8349 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
8350 Date:   Wed Sep 10 17:44:30 2008 -0400
8351
8352     ppc4xx: Fix in-tree build for ppc440-generic boards
8353
8354     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
8355     Signed-off-by: Stefan Roese <sr@denx.de>
8356
8357 commit 06c4ab50f5ccfb55ea2dd324aa28b2b06102e416
8358 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8359 Date:   Fri Sep 12 02:20:47 2008 +0200
8360
8361     ARM: synchronize mach-types.h with linux 2.6.27-rc6
8362
8363     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8364
8365 commit 3ee9f03f588ad605e3fd10530237f9e3e2e7ab4c
8366 Author: Jens Scharsig <esw@bus-elektronik.de>
8367 Date:   Fri Sep 12 02:20:47 2008 +0200
8368
8369     at91rm9200: fix errors with CONFIG_CMD_I2C_TREE
8370
8371     This patch prevents linker error on AT91RM9200 boards, if
8372     CONFIG_CMD_I2_TREE is set.
8373     It implements i2c_set_bus_speed and i2c_get_bus_speed as a dummy function.
8374
8375     Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
8376
8377 commit b5b0344957d32e3d07a8dd72fce64fb48e680ba4
8378 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8379 Date:   Fri Sep 12 02:20:47 2008 +0200
8380
8381     ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
8382
8383     ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
8384
8385     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8386
8387 commit 03db53335c8eba656a7c44d1555b1a4514383e33
8388 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
8389 Date:   Fri Sep 12 02:20:46 2008 +0200
8390
8391     make: Remove redundant __ARM__ addition when cross-compiling on *BSD
8392
8393     __ARM__ is given by arm_config.mk automatically.
8394
8395     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
8396
8397 commit 8cc62a7d9c77f8ef5166fb57322c4a6ddac320b4
8398 Author: Claudio Scordino <claudio@evidence.eu.com>
8399 Date:   Fri Sep 12 02:20:46 2008 +0200
8400
8401     Fix MACH_TYPE for the AT91RM9200DK board.
8402
8403     Signed-off-by: Claudio Scordino <claudio@evidence.eu.com>
8404
8405 commit 274737e5eb25b2bcd3af3a96da923effd543284f
8406 Author: Andrew Dyer <adyer@righthandtech.com>
8407 Date:   Fri Sep 12 02:20:46 2008 +0200
8408
8409     i.mx change get_timer(base) to return time since base
8410
8411     This patch changes get_timer() for i.MX to return the time since
8412     'base' instead of the time since the counter was at zero.
8413
8414     Symptom seen is flash timeout errors when erasing or programming a
8415     sector using the common cfi flash code.
8416
8417     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
8418
8419 commit 48fed40575b3e8eae960eb0141509ddd9a73012a
8420 Author: Andrew Dyer <adyer@righthandtech.com>
8421 Date:   Fri Sep 12 02:20:46 2008 +0200
8422
8423     i.MX use u-boot baud rate and don't assume UART master clock
8424
8425     1) Change the i.MX serial driver to use the baud rate set in the
8426      u-boot environment
8427
8428     2) don't assume a 16MHz value for PERCLK1 in baud rate calculations
8429
8430     3) don't write a 1 to the RDR bit in the USR2 reg. (bit is not "write
8431      one to clear" like other status bits in the reg.)
8432
8433     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
8434
8435 commit 6e1551a870d360805b9d172dc56d935064abe71d
8436 Author: Andrew Dyer <adyer@righthandtech.com>
8437 Date:   Fri Sep 12 02:20:46 2008 +0200
8438
8439     arm920t fix constant error in start.S
8440
8441     Code in cpu/arm920t/start.S will die with a compilation error if
8442     CONFIG_STACKSIZE + CFG_MALLOC_LEN works out to an invalid constant for
8443     the ARM sub instruction.  Change the code so that each is subtracted
8444     independently to avoid the error.
8445
8446     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
8447
8448 commit b23253835f871cd9bd8e955b9a971d18a7d4ff56
8449 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
8450 Date:   Fri Sep 12 02:20:40 2008 +0200
8451
8452     ARM OMAP : Correct Invalid Timer Register Field Declaration in omap1510.h & omap730.h
8453
8454     - Correct Invalid #define of MPUTIM_PTV_MASK for
8455        omap1510 & omap730 register definition
8456
8457      MPUTIM_PTV_MASK is defined as
8458      #define MPUTIM_PTV_MASK            (0x7<<PTV_BIT)
8459
8460      while it should have been
8461      #define MPUTIM_PTV_MASK            (0x7<<MPUTIM_PTV_BIT)
8462
8463     - Below Patch corrects the same
8464
8465     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
8466
8467 commit c455d07396dddc9864fd8dbb965ee10fe95ce8cf
8468 Author: Adrian Filipi <adrian.filipi@eurotech.com>
8469 Date:   Fri Jul 18 11:52:02 2008 -0400
8470
8471     Set up SD/MMC OCR as comment describes. i.e. 3.2-3.4v.
8472
8473     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
8474
8475 commit eb16135df20535b0d19969f50fb5bd17f95e9c25
8476 Author: Guennadi Liakhovetski <lg@denx.de>
8477 Date:   Thu Aug 28 12:25:11 2008 +0200
8478
8479     i.MX31: document timer precision option
8480
8481     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
8482
8483 commit 1a6337b01351b82a45b0defa76f08744511c580b
8484 Author: Magnus Lilja <lilja.magnus@gmail.com>
8485 Date:   Fri Aug 29 10:36:18 2008 +0200
8486
8487     i.MX31: Make the SPI bus and chip select configurable for MC13783
8488
8489     The i.MX31 has three SPI buses and each bus has several chip selects
8490     and the MC13783 chip can be connected to any of these. The current
8491     RTC driver for MC13783 is hardcoded for CSPI2/SS2.
8492
8493     This patch makes make MC13783 SPI bus and chip select configurable
8494     via CONFIG_MC13783_SPI_BUS and CONFIG_MC13783_SPI_CS.
8495
8496     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
8497
8498 commit 8c4ebec25b21e355b8488698ec1594da9701fff4
8499 Author: Magnus Lilja <lilja.magnus@gmail.com>
8500 Date:   Fri Aug 29 10:36:17 2008 +0200
8501
8502     i.MX31: Add reset_timer() and modify get_timer_masked().
8503
8504     This patch adds the reset_timer() function (needed by nand_base.c) and
8505     modifies the get_timer_masked() to work in the same way as the omap24xx
8506     function.
8507
8508     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
8509
8510 commit deeec4991a55de243787002ede24d2331d234fc8
8511 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8512 Date:   Wed Sep 10 22:48:09 2008 +0200
8513
8514     ap325rxa: remove duplicate CONFIG_FLASH_CFI_DRIVER
8515
8516     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8517
8518 commit a3a08c0cedd329edf5256e1d6b2bad0fca002725
8519 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8520 Date:   Wed Sep 10 22:48:09 2008 +0200
8521
8522     bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label
8523
8524     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8525
8526 commit 0e8d158664a913392cb01fb11a948d83f72e105e
8527 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8528 Date:   Wed Sep 10 22:48:06 2008 +0200
8529
8530     rename CFG_ENV macros to CONFIG_ENV
8531
8532     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8533
8534 commit 1ede78710c3bf9ad6f4a53aaddc3bcc86fedd9df
8535 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8536 Date:   Wed Sep 10 22:48:05 2008 +0200
8537
8538     nvedit: rename error comment to CONFIG_ENV_IS_IN_
8539
8540     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8541
8542 commit b64b775e7546ed138df360ceb3a71ee358cb9a01
8543 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8544 Date:   Wed Sep 10 22:48:05 2008 +0200
8545
8546     cmd_mem: Move conditional compilation to Makefile
8547
8548     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8549
8550 commit 8a40fb148efa442d6526eac46a2001e4c64d28ff
8551 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8552 Date:   Wed Sep 10 22:48:05 2008 +0200
8553
8554     move cmd_get_data_size to command.c
8555
8556     add CMD_DATA_SIZE macro to enable it
8557
8558     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8559
8560 commit 507641d2491980531932b9f25dab37fe5e6c3a1a
8561 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8562 Date:   Wed Sep 10 22:48:04 2008 +0200
8563
8564     env_flash: Move conditional compilation to Makefile
8565
8566     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8567
8568 commit 5a1aceb0689e2f731491838970884a673ef7e7d3
8569 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8570 Date:   Wed Sep 10 22:48:04 2008 +0200
8571
8572     rename CFG_ENV_IS_IN_FLASH in CONFIG_ENV_IS_IN_FLASH
8573
8574     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8575
8576 commit 7d9b5bae5ba558c7464d89d033aca04acaf01172
8577 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8578 Date:   Wed Sep 10 22:48:03 2008 +0200
8579
8580     cleanup use of CFG_ENV_IS_IN_FLASH
8581
8582     - #if CFG_ENV_IS_IN_FLASH
8583     - #if (CFG_ENV_IS_IN_FLASH == 1)
8584     - #define CFG_ENV_IS_IN_FLASH 0
8585
8586     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8587
8588 commit 0cf4fd3cf8d0e00605bec5fc56f89c6415015a46
8589 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8590 Date:   Wed Sep 10 22:48:01 2008 +0200
8591
8592     rename environment.c in env_embedded.c to reflect is functionality
8593
8594     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8595
8596 commit c0878af6e32f0fd8e13a6ca315b9add64441115a
8597 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8598 Date:   Wed Sep 10 22:48:01 2008 +0200
8599
8600     env_nowhere: Move conditional compilation to Makefile
8601
8602     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8603
8604 commit 93f6d72544da4510a146bc4c93d609b0116cde37
8605 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8606 Date:   Wed Sep 10 22:48:00 2008 +0200
8607
8608     rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE
8609
8610     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8611
8612 commit 2556ef78113b5f089dfcac5da90bf31dd568397b
8613 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8614 Date:   Wed Sep 10 22:48:00 2008 +0200
8615
8616     env_sf: Move conditional compilation to Makefile
8617
8618     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8619
8620 commit 0b5099a8419bf9c828df5e3e2c6878dc300d98e3
8621 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8622 Date:   Wed Sep 10 22:48:00 2008 +0200
8623
8624     rename CFG_ENV_IS_IN_SPI_FLASH in CONFIG_ENV_IS_IN_SPI_FLASH
8625
8626     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8627
8628 commit 55c5f49910ec8225347aa1d211352a84de6649b4
8629 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8630 Date:   Wed Sep 10 22:48:00 2008 +0200
8631
8632     env_onenand: Move conditional compilation to Makefile
8633
8634     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8635
8636 commit 9656138ff1a34d4c4768db6b490deffc40ee674b
8637 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8638 Date:   Wed Sep 10 22:47:59 2008 +0200
8639
8640     rename CFG_ENV_IS_IN_ONENAND in CONFIG_ENV_IS_IN_ONENAND
8641
8642     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8643
8644 commit 957a0e69575683efd70ace147746bbb3d8e7c501
8645 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8646 Date:   Wed Sep 10 22:47:59 2008 +0200
8647
8648     env_nvram: Move conditional compilation to Makefile
8649
8650     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8651
8652 commit 9314cee6917444ab88bd4e758da7a30975120187
8653 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8654 Date:   Wed Sep 10 22:47:59 2008 +0200
8655
8656     rename CFG_ENV_IS_IN_NVRAM in CONFIG_ENV_IS_IN_NVRAM
8657
8658     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8659
8660 commit 06f61354397911a4c121dfa51b6ccbf7e300d48b
8661 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8662 Date:   Wed Sep 10 22:47:59 2008 +0200
8663
8664     env_nand: Move conditional compilation to Makefile
8665
8666     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8667
8668 commit 51bfee192099206a4397f15f3b93516e01f58ab0
8669 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8670 Date:   Wed Sep 10 22:47:58 2008 +0200
8671
8672     rename CFG_ENV_IS_IN_NAND in CONFIG_ENV_IS_IN_NAND
8673
8674     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8675
8676 commit d8cc04d0ac9c7c0d12454708aaf5489f8532bbf9
8677 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8678 Date:   Wed Sep 10 22:47:58 2008 +0200
8679
8680     env_dataflash: Move conditional compilation to Makefile
8681
8682     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8683
8684 commit 057c849c45b9ee19df8ff3acdeee66be52819962
8685 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8686 Date:   Wed Sep 10 22:47:58 2008 +0200
8687
8688     rename CFG_ENV_IS_IN_DATAFLASH in CONFIG_ENV_IS_IN_DATAFLASH
8689
8690     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8691
8692 commit d1034bc8db60fa6bd419328baf6a75cb0645cee8
8693 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8694 Date:   Wed Sep 10 22:47:52 2008 +0200
8695
8696     cmd_eeprom: Move conditional compilation to Makefile
8697
8698     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8699
8700 commit bf5a7710ec70e90e98f451b4ba0eb65f9ffc34eb
8701 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8702 Date:   Fri Sep 5 09:19:54 2008 +0200
8703
8704     env_eeprom: Move conditional compilation to Makefile
8705
8706     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8707
8708 commit bb1f8b4f8bb0bfce52e0faa4637b975b745824b3
8709 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8710 Date:   Fri Sep 5 09:19:30 2008 +0200
8711
8712     rename CFG_ENV_IS_IN_EEPROM in CONFIG_ENV_IS_IN_EEPROM
8713
8714     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8715
8716 commit 32628c5008105a732212003d83b75f05e5243bb2
8717 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8718 Date:   Sat Aug 30 23:54:58 2008 +0200
8719
8720     cmd_mac: Move conditional compilation to Makefile
8721
8722     finish remaning CFG_ID_EEPROM in CONFIG_ID_EEPROM
8723     start in commit ad8f8687b78c3e917b173f038926695383c55555
8724
8725     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8726
8727 commit e5648acab153f0f429bfc714902c5aaa7879f71b
8728 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8729 Date:   Sat Aug 30 23:47:41 2008 +0200
8730
8731     cmd_fdc: Move conditional compilation to Makefile
8732
8733     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8734
8735 commit 2d02d91d530e831f2dab228085963fc1d5b71cb0
8736 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8737 Date:   Sat Aug 30 23:47:38 2008 +0200
8738
8739     common/Makefile: add core command section
8740
8741     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8742
8743 commit 0d92d4a699fb1a39381d98571dc51fb97e5bcf9e
8744 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8745 Date:   Sat Aug 30 23:29:57 2008 +0200
8746
8747     cmd_vfd: Move conditional compilation to Makefile
8748
8749     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8750
8751 commit 6644641d072aee3087da129d8443187196a4d8a9
8752 Author: Scott Wood <scottwood@freescale.com>
8753 Date:   Wed Sep 10 11:48:49 2008 -0500
8754
8755     delta, zylonite: Update nand_oobinfo to nand_ecclayout.
8756
8757     This is part of the switch to newer upstream MTD code.
8758
8759     Signed-off-by: Scott Wood <scottwood@freescale.com>
8760
8761 commit 9b05aa788bfdd3264ff1bc9418cb19550a7234e4
8762 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8763 Date:   Sat Aug 30 17:06:55 2008 -0400
8764
8765     ARM DaVinci: Fix broken HW ECC for large page NAND.
8766
8767     Based on original patch by Bernard Blackham <bernard@largestprime.net>
8768
8769     U-boot's HW ECC support for large page NAND on Davinci is completely
8770     broken.  Some kernels, such as the 2.6.10 one supported by
8771     MontaVista for DaVinci, rely upon this broken behaviour as they
8772     share the same code for ECCs. In the existing scheme, error
8773     detection *might* work on large page, but error correction
8774     definitely does not.  Small page ECC correction works, but the
8775     format is not compatible with the mainline git kernel.
8776
8777     This patch adds ECC code that matches what is currently in the
8778     Davinci git repository (since NAND support was added in 2.6.24).
8779     This makes the ECC and OOB layout written by u-boot compatible with
8780     Linux for both small page and large page devices and fixes ECC
8781     correction for large page devices.
8782
8783     The old behaviour can be restored by defining the macro
8784     CFG_DAVINCI_BROKEN_ECC, which is undefined by default.
8785
8786     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8787     Acked-by: Sergey Kubushyn <ksi@koi8.net>
8788     Signed-off-by: Scott Wood <scottwood@freescale.com>
8789
8790 commit 0b7c5639891f4103a0e31ec7ae0beb3e97ed3836
8791 Author: Heiko Schocher <hs@denx.de>
8792 Date:   Wed Sep 10 11:15:28 2008 +0200
8793
8794     muas3001: update BR4 settings
8795
8796     Also set up the port pins for using I2C.
8797
8798     Signed-off-by: Heiko Schocher <hs@denx.de>
8799
8800 commit 3591293509e0c0bcf244b0f974775bff2e25697e
8801 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
8802 Date:   Wed Sep 10 09:43:49 2008 +0300
8803
8804     autoscr: Fix one-character lines and non-newline terminated scripts
8805
8806     When not using hush, the autoscr command now executes lines that are
8807     only one character long. It also runs the last line of scripts even if
8808     it does not end in a newline.
8809
8810     Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
8811
8812 commit 9ebbb54f7a25055010fa6668eba40c72a4c4f985
8813 Author: Victor Gallardo <vgallardo@amcc.com>
8814 Date:   Tue Sep 9 15:13:29 2008 -0700
8815
8816     ppc4xx: Allow DTT_I2C_DEV_CODE configured by CFG_I2C_DTT_ADDR
8817
8818     On AMCC Arches board DTT_I2C_DEV_CODE is different then canyonlands
8819     and glacier.
8820
8821     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
8822
8823 commit 245f6ef3e11828cb46188e396fb1e67f7b07cd03
8824 Author: Heiko Schocher <hs@denx.de>
8825 Date:   Mon Sep 8 10:21:11 2008 +0200
8826
8827     muas3001: added support for the LM75 sensor.
8828
8829     Signed-off-by: Heiko Schocher <hs@denx.de>
8830
8831 commit 4a02a2dca82aeab8f839db9dd35fda9d5412dacb
8832 Author: Heiko Schocher <hs@denx.de>
8833 Date:   Mon Sep 8 10:20:19 2008 +0200
8834
8835     muas3001: activate WDT for the muas3001 board.
8836
8837     Signed-off-by: Heiko Schocher <hs@denx.de>
8838
8839 commit a55d074dac24dc941f1afb5b4e94b1509bfdda4e
8840 Author: Heiko Schocher <hs@denx.de>
8841 Date:   Mon Sep 8 10:19:36 2008 +0200
8842
8843     muas3001: added 64MB SDRAM autodetection.
8844
8845     Signed-off-by: Heiko Schocher <hs@denx.de>
8846
8847 commit 5251469943895de4bb9a04d5053352cc22acb7d5
8848 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
8849 Date:   Thu Aug 21 07:12:26 2008 -0700
8850
8851     Fix printf errors under -DDEBUG
8852
8853     Fix printf format-string/arg mismatches under -DDEBUG.
8854
8855     These warnings occur with DEBUG defined for a platform using
8856     cpu/mpc85xx.  Users of other architectures can unearth similar
8857     problems by adding the line "CFLAGS += -DDEBUG=1" in config.mk right
8858     after "CFLAGS += $(call cc-option,-fno-stack-protector)".
8859
8860     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
8861     Signed-off-by: Andy Fleming <afleming@freescale.com>
8862
8863 commit 8b9e4787641719d709bfa2ebeb72e8bd4952bee7
8864 Author: Wolfgang Denk <wd@denx.de>
8865 Date:   Tue Sep 9 23:55:18 2008 +0200
8866
8867     Update CHANGELOG, prepare 2008-10-rc1 release
8868
8869     Signed-off-by: Wolfgang Denk <wd@denx.de>
8870
8871 commit e0ff3d350d6b7960deb5a881dfc5acf3a63ef676
8872 Author: Kumar Gala <galak@kernel.crashing.org>
8873 Date:   Mon Sep 8 08:51:29 2008 -0500
8874
8875     85xx: Ensure timebase is zero on secondary cores
8876
8877     The e500um says the timebase is volatile out of reset.  To ensure
8878     TB sync works we need to make sure its zero.
8879
8880     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8881
8882 commit 54b4ab3c961a2012a1c2a09c259a6343323ec551
8883 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8884 Date:   Tue Sep 9 22:18:24 2008 +0200
8885
8886     bootm_load_os: fix load_end debug message
8887
8888     print load_end value not pointer
8889
8890     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8891
8892 commit 1d9af0be764960e6cc1c093e97176c3542796820
8893 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8894 Date:   Tue Sep 9 22:18:23 2008 +0200
8895
8896     bootm: enable fdt support only on ppc, m68k and sparc
8897
8898     ...as done in image.c
8899
8900     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8901
8902 commit 748b5274e76f81df85cfcffaffedc323678d0623
8903 Author: Markus Heidelberg <markus.heidelberg@web.de>
8904 Date:   Tue Sep 9 18:51:05 2008 +0200
8905
8906     common/cmd_mem.c: remove nested #if defined(CONFIG_CMD_MEMORY)
8907
8908     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
8909
8910 commit 650632fe4ca09cfd0e5e6a593f2efc02ef87a58c
8911 Author: Markus Heidelberg <markus.heidelberg@web.de>
8912 Date:   Tue Sep 9 17:31:46 2008 +0200
8913
8914     gitignore: add tags files and Vim swap file
8915
8916     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
8917
8918 commit 1d9b67b23fca6a25154333733204339802510720
8919 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
8920 Date:   Tue Sep 9 17:52:47 2008 +0900
8921
8922     add board_eth_init() for sh7785lcr board
8923
8924     Fix the problem that cannot work RTL8169 on sh7785lcr board.
8925
8926     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
8927
8928 commit 7b7a869a8ba3bd6d9bffb748c91232141330f514
8929 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8930 Date:   Wed Aug 6 16:08:41 2008 -0500
8931
8932     mtd: SPI Flash: Support the STMicro Flash
8933
8934     Add MTD SPI Flash support for M25P16, M25P20, M25P32,
8935     M25P40, M25P64, M25P80, M25P128.
8936
8937     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
8938     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8939
8940 commit 4bc07c368076560ed7fa4c9f987c71a8521488a9
8941 Author: Wolfgang Denk <wd@denx.de>
8942 Date:   Tue Sep 9 17:55:31 2008 +0200
8943
8944     trab: fix build problem after change to use do_div()
8945
8946     We must link with libgeneric now.
8947
8948     Signed-off-by: Wolfgang Denk <wd@denx.de>
8949
8950 commit 3b20fd83c73c22acfcb0c6663be747bd5c8b7011
8951 Author: Ryan CHEN <ryan.chen@st.com>
8952 Date:   Wed Aug 20 13:00:17 2008 -0400
8953
8954     Correct drv_usb_kbd_init function
8955
8956     The patch is that check if usb_get_dev_index() function return valid
8957     pointer. If valid, continue. Otherwise return -1.
8958
8959     Signed-off-by: Ryan Chen <ryan.chen@st.com>
8960     Acked-by: Markus Klotzbuecher <mk@denx.de>
8961
8962 commit eba1f2fc75f128a9a6c1328d786996a93fd7a707
8963 Author: Remy Bohmer <linux@bohmer.net>
8964 Date:   Wed Aug 20 11:22:02 2008 +0200
8965
8966     Make usb-stop() safe to call multiple times in a row.
8967
8968     A recent commit (936897d4d1365452bbbdf8430db5e7769ef08d38)
8969     enabled the usb_stop() command in common/cmd_bootm.c which was
8970     not enabled for some time, because no board did actually set the
8971     CFG_CMD_USB flag. So, now the usb_stop() is executed before
8972     loading the linux kernel.
8973
8974     However, the usb_ohci driver hangs up (at least on AT91SAM) if the
8975     driver is stopped twice (e.g. the peripheral clock is stopped on AT91).
8976     If some other piece of code calls usb_stop() before the bootm command,
8977     this command will hangup the system during boot.
8978     (usb start and stop is typically used while booting from usb memory stick)
8979
8980     But, stopping the usb stack twice is useless anyway, and a flag already
8981     existed that kept track on the usb_init()/usb_stop() calls.
8982     So, we now check if the usb stack is really started before we stop it.
8983
8984     This problem is now fixed in both the upper as low-level layer.
8985
8986     Signed-off-by: Remy Bohmer <linux@bohmer.net>
8987     Acked-by: Markus Klotzbuecher <mk@denx.de>
8988
8989 commit 2c8ccf2728f5e67d991cecf76c4057db75a87b67
8990 Author: Wolfgang Denk <wd@denx.de>
8991 Date:   Tue Sep 9 16:55:47 2008 +0200
8992
8993     Makefile: fix bug introduced by commit 47ffd6c2
8994
8995 commit 880f6a5d7596f42db5ff8803b797b78ec5b146e0
8996 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
8997 Date:   Tue Sep 9 10:00:33 2008 -0400
8998
8999     ppc4xx: ppc440-generic-ALL: Fix out of tree build v2
9000
9001     This patch solves the problems compiling ml507, v5fx30teval and
9002     ppc440-generic out of tree.
9003
9004     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9005
9006 commit 47bebe34ca4e33bab0e822e4ceebbec2590ccbcb
9007 Author: Nícolas Carneiro Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
9008 Date:   Thu Sep 4 15:35:46 2008 -0300
9009
9010     Fix dev_print when called from usb_stor_info (usb storage command)
9011
9012     Fix output of the usb storage command. It was printing "Device 0: not
9013     available" because IF_TYPE_USB was not included into the switch
9014     statement.
9015
9016     Signed-off-by: Nicolas Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
9017
9018 commit a4f243452cc8ce0c2c9b51a2520db4bde5f472de
9019 Author: Bartlomiej Sieka <tur@semihalf.com>
9020 Date:   Tue Sep 9 12:58:16 2008 +0200
9021
9022     FIT: make iminfo check hashes of all images in FIT, return 1 on failed check
9023
9024     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
9025
9026 commit 919f550dc11a13abf01c6bc713c968de790b8d7c
9027 Author: Bartlomiej Sieka <tur@semihalf.com>
9028 Date:   Tue Sep 9 12:58:15 2008 +0200
9029
9030     FIT: add ability to check hashes of all images in FIT, improve output
9031
9032     - add function fit_all_image_check_hashes() that verifies if all
9033       hashes of all images in the FIT are valid
9034     - improve output of fit_image_check_hashes() when the hash check fails
9035
9036     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
9037
9038 commit 1de1fa408967cef6804bb046b904114519bb36f0
9039 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9040 Date:   Mon Sep 8 20:54:39 2008 +0200
9041
9042     qemu_mips: Update linux bootm to support dynamic cmdline
9043
9044     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9045
9046 commit f5ed9e39088ecfa5a5f3ef47b08e5bda7890d764
9047 Author: Peter Tyser <ptyser@xes-inc.com>
9048 Date:   Mon Sep 8 14:56:49 2008 -0500
9049
9050     Add support for booting of INTEGRITY operating system uImages
9051
9052     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9053
9054 commit 72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a
9055 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9056 Date:   Mon Sep 8 21:01:29 2008 +0200
9057
9058     mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start"
9059
9060     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9061
9062 commit 9ba2e2c8191353d75b2d535e672a125be7b84c03
9063 Author: Kumar Gala <galak@kernel.crashing.org>
9064 Date:   Mon Sep 8 13:57:12 2008 -0500
9065
9066     Remove support for booting ARTOS images
9067
9068     Pantelis Antoniou stated:
9069         AFAIK, it is still used but the products using PPC are long gone.
9070         Nuke it plz (from orbit).
9071
9072     So remove it since it cleans up a usage of env_get_char outside of
9073     the environment code.
9074
9075     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9076
9077 commit 47ffd6c2fc72b46daa9d5d59eedb894fab2b7ee1
9078 Author: Wolfgang Denk <wd@denx.de>
9079 Date:   Tue Sep 9 15:45:18 2008 +0200
9080
9081     Makefile: compile and link each module just once
9082
9083     Several source files need to be compiled and linked when one or more
9084     config options are selected. To allow for easy selection in the
9085     Makefiles yet to avoild multiple compilation (which costs build time)
9086     and especially multiple linking (which causes errors), we use
9087     "COBJS = $(sort COBJS-y)" which eliminates duplicates.
9088
9089     By courtesy of Detlev Zundel who suggested this approach.
9090
9091     Signed-off-by: Wolfgang Denk <wd@denx.de>
9092
9093 commit 48d0192fe869948fef14b460b5f0c85bca933693
9094 Author: Andreas Engel <andreas.engel@ericsson.com>
9095 Date:   Mon Sep 8 14:30:53 2008 +0200
9096
9097     Moved conditional compile into Makefile
9098
9099     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
9100
9101 commit 20c9226cb8cab08a111ee73db04e62d943ee0c97
9102 Author: Andreas Engel <andreas.engel@ericsson.com>
9103 Date:   Mon Sep 8 10:17:31 2008 +0200
9104
9105     Merged serial_pl010.c and serial_pl011.c.
9106
9107     They only differ in the init function.
9108     This also adds the missing watchdog support for the PL011.
9109
9110     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
9111
9112 commit 0817d688f307ee2c0598e79175c94a40ce90337b
9113 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9114 Date:   Sun Sep 7 17:10:27 2008 -0400
9115
9116     Remove gap fill in srec object v2
9117
9118     SREC files do not need gap fill: The load address is specified in the
9119     file. On the other hand, it can't be avoided in a .bin object. It has
9120     no information about memory location.
9121
9122     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9123
9124 commit 1dc306931ca5ce87f13916fa7165b052d3aa714f
9125 Author: Markus Heidelberg <markus.heidelberg@web.de>
9126 Date:   Sun Sep 7 20:18:27 2008 +0200
9127
9128     README: fix missing subdirectory in the documentation
9129
9130     Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
9131
9132 commit 3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd
9133 Author: Graeme Russ <graeme.russ@gmail.com>
9134 Date:   Sun Sep 7 07:08:42 2008 +1000
9135
9136     Update i386 code (sc520_cdp)
9137
9138     Attempt to bring i386 / sc520 inline with master
9139
9140     Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
9141
9142 commit 5608692104efa8d56df803dc79ea41ac3607eee5
9143 Author: Guennadi Liakhovetski <lg@denx.de>
9144 Date:   Thu Sep 4 13:01:49 2008 +0200
9145
9146     fw_env: add NAND support
9147
9148     Add support for environment in NAND with automatic NOR / NAND recognition,
9149     including unaligned environment, bad-block skipping, redundant environment
9150     copy.
9151
9152     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
9153
9154 commit dd794323a2a1ed6a8a5df51785c31bcde60ad7ca
9155 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9156 Date:   Tue Sep 9 09:50:24 2008 +0200
9157
9158     ppc4xx: Fix out-of-tree building of CPCI405 variants
9159
9160     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9161     Acked-by: Stefan Roese <sr@denx.de>
9162
9163 commit 59f630588e3fdbd698a0a2798e52a8924e899563
9164 Author: Sergei Poselenov <sposelenov@emcraft.com>
9165 Date:   Fri Aug 15 15:42:11 2008 +0200
9166
9167     Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
9168
9169     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
9170
9171 commit e64987a892353f3d49eb242d997820ef8f538912
9172 Author: Anatolij Gustschin <agust@denx.de>
9173 Date:   Fri Aug 15 15:42:13 2008 +0200
9174
9175     85xx: socrates: Enable Lime support.
9176
9177     This patch adds Lime GDC support together with support for the PWM
9178     backlight control through the w83782d chip.  The reset pin of the
9179     latter is attached to GPIO, so we need to reset it in
9180     early_board_init_r.
9181
9182     Signed-off-by: Anatolij Gustschin <agust@denx.de>
9183
9184 commit 3e79b588b5199f35016f178fc0d5d1266382097f
9185 Author: Detlev Zundel <dzu@denx.de>
9186 Date:   Fri Aug 15 15:42:12 2008 +0200
9187
9188     85xx: Socrates: Major code update.
9189
9190     - Update the local bus ranges in the FDT for Linux for the various
9191       devices connected to the local bus via chip-select.
9192
9193     - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
9194       lower than 66 MHz and uses I/O accessor functions consequently.
9195
9196     - UPM data update.
9197
9198     - Update of default environment and configuration.  Use I2C multibus
9199       as we do have two I2C buses.  Also enable sdram and ext2 commands.
9200
9201     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
9202     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
9203     Signed-off-by: Detlev Zundel <dzu@denx.de>
9204
9205 commit e8d18541c6ceab821f75faab031740b33fdbfa4b
9206 Author: Timur Tabi <timur@freescale.com>
9207 Date:   Fri Jul 18 16:52:23 2008 +0200
9208
9209     Update Freescale 85xx boards to sys_eeprom.c
9210
9211     The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
9212     format, and so it obsoletes board/freescale/common/cds_eeprom.c.  Freescale
9213     86xx boards already use sys_eeprom.c, so this patch migrates the remaining
9214     Freescale 85xx boards to use it as well.  cds_eeprom.c is deleted.
9215
9216     Signed-off-by: Timur Tabi <timur@freescale.com>
9217
9218 commit aab2bf0202c86227e3dcc8a5b58946087ebcc1af
9219 Author: Wolfgang Denk <wd@denx.de>
9220 Date:   Tue Sep 9 10:08:02 2008 +0200
9221
9222     lib_ppc/interrupts.c: make board_show_activity() a weak function
9223
9224     This allows to use show_activity() without having to
9225     define an empty board_show_activity() function.
9226
9227     Signed-off-by: Wolfgang Denk <wd@denx.de>
9228
9229 commit fe876787f8743883ce58fed61525eaa2f34da4c5
9230 Author: Wolfgang Denk <wd@denx.de>
9231 Date:   Tue Sep 9 10:06:44 2008 +0200
9232
9233     stxxtc: remove empty CONFIG_SHOW_ACTIVITY functions
9234
9235     Signed-off-by: Wolfgang Denk <wd@denx.de>
9236
9237 commit 965de106ba8900372c8b16dc60d5acab7f925e38
9238 Author: Wolfgang Denk <wd@denx.de>
9239 Date:   Tue Sep 9 10:03:47 2008 +0200
9240
9241     NETTA2: remove empty CONFIG_SHOW_ACTIVITY functions
9242
9243     Signed-off-by: Wolfgang Denk <wd@denx.de>
9244
9245 commit 6cc64f9b5f69239c8b1969572b5a3a4aab7de5b9
9246 Author: Sergei Poselenov <sposelenov@emcraft.com>
9247 Date:   Fri Aug 15 15:42:11 2008 +0200
9248
9249     Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
9250
9251     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
9252
9253 commit 36241ca29d4804a1006fb3f26069effda5202581
9254 Author: Anatolij Gustschin <agust@denx.de>
9255 Date:   Fri Aug 15 15:42:13 2008 +0200
9256
9257     85xx: socrates: Enable Lime support.
9258
9259     This patch adds Lime GDC support together with support for the PWM
9260     backlight control through the w83782d chip.  The reset pin of the
9261     latter is attached to GPIO, so we need to reset it in
9262     early_board_init_r.
9263
9264     Signed-off-by: Anatolij Gustschin <agust@denx.de>
9265
9266 commit 7a47753ddcaebbf2142809842f70c5f723bd9ddb
9267 Author: Detlev Zundel <dzu@denx.de>
9268 Date:   Fri Aug 15 15:42:12 2008 +0200
9269
9270     85xx: Socrates: Major code update.
9271
9272     - Update the local bus ranges in the FDT for Linux for the various
9273       devices connected to the local bus via chip-select.
9274
9275     - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
9276       lower than 66 MHz and uses I/O accessor functions consequently.
9277
9278     - UPM data update.
9279
9280     - Update of default environment and configuration.  Use I2C multibus
9281       as we do have two I2C buses.  Also enable sdram and ext2 commands.
9282
9283     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
9284     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
9285     Signed-off-by: Detlev Zundel <dzu@denx.de>
9286
9287 commit 4d2ae70e8c31c22e5710df5ff236b5565ea2cf2c
9288 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9289 Date:   Tue Sep 9 01:22:39 2008 +0200
9290
9291     disk-on-chip: remove duplicate doc_probe declaration
9292
9293     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9294
9295 commit 3221b074a0ab199f6ae47c19cc22f42ddf3ef819
9296 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9297 Date:   Tue Sep 9 00:59:40 2008 +0200
9298
9299     onenand_uboot: fix warning: 'struct mtd_oob_ops' declared inside parameter list
9300
9301     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9302
9303 commit 13b4db0e2107175a8622ebb48529fa3ad8e12c75
9304 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9305 Date:   Tue Sep 9 00:59:39 2008 +0200
9306
9307     rs5c372: fix rtc_set prototype
9308
9309     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9310
9311 commit 1bb8b2ef2722bbaea3cc5d46321ce1d99f9b56f7
9312 Author: Sergei Poselenov <sposelenov@emcraft.com>
9313 Date:   Thu Aug 14 14:08:28 2008 +0200
9314
9315     ARM: fix warning: target CPU does not support interworking
9316
9317     This patch fixes warnings like this:
9318
9319     start.S:0: warning: target CPU does not support interworking
9320
9321     which come from some ARM cross compilers and are caused by hard-coded
9322     (with "--with-cpu=arm9" configuration option) ARM targets (which
9323     support ARM Thumb instructions), while the ARM target selected from
9324     the command line (with "-march=armv4") doesn't support Thumb
9325     instructions.
9326
9327     This warning is issued by the compiler regardless of the real use of
9328     the Thumb instructions in code.
9329
9330     To fix this problem, we use options according to compiler version
9331     being used.
9332
9333     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
9334     Signed-off-by: Wolfgang Denk <wd@denx.de>
9335
9336 commit 4265c35fbcb248e58179007621d61d32d0b3b82a
9337 Author: Sergei Poselenov <sposelenov@emcraft.com>
9338 Date:   Thu Aug 14 14:08:28 2008 +0200
9339
9340     ARM: Use do_div() instead of division for "long long".
9341
9342     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
9343     Signed-off-by: Wolfgang Denk <wd@denx.de>
9344
9345 commit 8febd13c69cb68652577d1a9fcbde954bf784155
9346 Author: Timur Tabi <timur@freescale.com>
9347 Date:   Fri Jul 18 16:52:23 2008 +0200
9348
9349     Update Freescale 85xx boards to sys_eeprom.c
9350
9351     The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
9352     format, and so it obsoletes board/freescale/common/cds_eeprom.c.  Freescale
9353     86xx boards already use sys_eeprom.c, so this patch migrates the remaining
9354     Freescale 85xx boards to use it as well.  cds_eeprom.c is deleted.
9355
9356     Signed-off-by: Timur Tabi <timur@freescale.com>
9357
9358 commit 1055171ed05b7c4885737463d52b8d6c013bcb5d
9359 Author: Wolfgang Denk <wd@denx.de>
9360 Date:   Mon Sep 8 23:26:22 2008 +0200
9361
9362     lib_arm/bootm.c: fix compile warnings
9363
9364     bootm.c:128: warning: label 'error' defined but not used
9365     bootm.c:65: warning: unused variable 'ret'
9366
9367     Signed-off-by: Wolfgang Denk <wd@denx.de>
9368
9369 commit 2e3c867d0a63c563a51e65b776973b008f16cec5
9370 Author: Wolfgang Denk <wd@denx.de>
9371 Date:   Mon Sep 8 22:46:42 2008 +0200
9372
9373     ml507: fix out of tree build problem
9374
9375     Signed-off-by: Wolfgang Denk <wd@denx.de>
9376
9377 commit 9863a15a98f23b79f34a0e4f9e465bc6df5d504d
9378 Author: Wolfgang Denk <wd@denx.de>
9379 Date:   Mon Sep 8 22:10:28 2008 +0200
9380
9381     common/cmd_bootm.c: fix printf() format warnings
9382
9383     Signed-off-by: Wolfgang Denk <wd@denx.de>
9384
9385 commit 4394f9a8c42bb1b0abc4fc04bd582d4db5f8b726
9386 Author: Wolfgang Denk <wd@denx.de>
9387 Date:   Mon Sep 8 22:37:45 2008 +0200
9388
9389     BMW, PCIPPC2, PCIPPC6, RBC82: fix compile warnings
9390
9391     missing doc_probe() prototype.
9392
9393     Signed-off-by: Wolfgang Denk <wd@denx.de>
9394
9395 commit 2c5e3cc4994897d364b148942ff23e47783198f6
9396 Author: Wolfgang Denk <wd@denx.de>
9397 Date:   Mon Sep 8 21:28:14 2008 +0200
9398
9399     mk48t59: fix compile problem introduced by commit d1e23194
9400
9401     Signed-off-by: Wolfgang Denk <wd@denx.de>
9402
9403 commit 5ff889349d2ace13f10c9335e09365fcec8247cc
9404 Author: Stefan Roese <sr@denx.de>
9405 Date:   Mon Sep 8 14:11:12 2008 +0200
9406
9407     ppc4xx: Move ppc4xx specific prototypes to ppc4xx header
9408
9409     This patch moves some 4xx specific prototypes out of include common.h
9410     to a ppc4xx specific header.
9411
9412     Signed-off-by: Stefan Roese <sr@denx.de>
9413
9414 commit ac53ee8318678190bf3c68da477a84a657d86fb0
9415 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9416 Date:   Fri Sep 5 15:34:04 2008 +0200
9417
9418     ppc4xx: Update CPCI405(AB) configuration
9419
9420     This patch add FDT support and command line editing capabilities
9421     for CPCI405 and CPCI405AB boards.
9422
9423     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9424     Signed-off-by: Stefan Roese <sr@denx.de>
9425
9426 commit 7b1fbcadf73a83b3beb94abccda1c35e2c075a94
9427 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9428 Date:   Fri Sep 5 15:34:03 2008 +0200
9429
9430     ppc4xx: Cleanup CPCI405 linker script
9431
9432     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9433     Signed-off-by: Stefan Roese <sr@denx.de>
9434
9435 commit 767f9159c5c94cd0cb3135b5b82814ad12816ddf
9436 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9437 Date:   Fri Sep 5 15:34:02 2008 +0200
9438
9439     ppc4xx: Update CPCI405 variants handling
9440
9441     This patch replaces the BOARD_REVISION variable in include/config.mk
9442     by a using a temporary include file in the platform directory.
9443
9444     The former way does not work anymore and the latter is also used by
9445     some other boards.
9446
9447     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9448     Signed-off-by: Stefan Roese <sr@denx.de>
9449
9450 commit f071f01fd09e9bf1cf09de37a7416aacce71bae1
9451 Author: Stefan Roese <sr@denx.de>
9452 Date:   Mon Sep 8 10:01:48 2008 +0200
9453
9454     ppc4xx: Remove CONFIG_CS8952_PHY define
9455
9456     Since this define is only used on one board that was never really in
9457     production, removing this compile time option doesn't hurt and makes
9458     the code more readable.
9459
9460     Signed-off-by: Stefan Roese <sr@denx.de>
9461
9462 commit 6ca8646c1860bba74326bf916a5a3389a5c0d3b5
9463 Author: Stefan Roese <sr@denx.de>
9464 Date:   Fri Sep 5 14:11:40 2008 +0200
9465
9466     ppc4xx: Fix compilation warning for PIP405
9467
9468     This patch fixes a compilation warning for the PIP405 board. It moves the
9469     #ifndef CONFIG_CS8952_PHY define a little so that the warning doesn't
9470     occur anymore. I am a little unsure if this #ifdef is at the correct
9471     place now or if it could be removed completely. This needs to get
9472     tested on the PIP405 board.
9473
9474     Signed-off-by: Stefan Roese <sr@denx.de>
9475
9476 commit 725b53ac61f4df3026b8f6489ef0080fd27d3816
9477 Author: Stefan Roese <sr@denx.de>
9478 Date:   Fri Sep 5 14:09:09 2008 +0200
9479
9480     ppc4xx: Fix compilation warning for canyonlands & glacier
9481
9482     Signed-off-by: Stefan Roese <sr@denx.de>
9483
9484 commit 302e52e0b1d4c7f994991709d0cb6c3ea612cdb5
9485 Author: Kumar Gala <galak@kernel.crashing.org>
9486 Date:   Fri Sep 5 14:40:29 2008 -0500
9487
9488     Fix compiler warning in mpc8xxx ddr code
9489
9490     ctrl_regs.c: In function 'compute_fsl_memctl_config_regs':
9491     ctrl_regs.c:523: warning: 'caslat' may be used uninitialized in this function
9492     ctrl_regs.c:523: note: 'caslat' was declared here
9493
9494     Add a warning in DDR1 case if cas_latency isn't a value we know about.
9495
9496     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9497     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9498
9499 commit d1e2319414ea5218ba801163e4530ecf2dfcbf36
9500 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9501 Date:   Mon Sep 1 23:06:23 2008 +0200
9502
9503     rtc: allow rtc_set to return an error and use it in cmd_date
9504
9505     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9506
9507 commit ee9536a28cb149bcb6c5dee9d08c62c91f4c72d2
9508 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9509 Date:   Mon Sep 1 01:16:33 2008 +0200
9510
9511     ap325rxa/favr-32-ezkit: Use CONFIG_FLASH_CFI_DRIVER
9512
9513     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9514
9515 commit 6b971c73f182248ce103503d74fbc0100bb8c8b7
9516 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
9517 Date:   Sun Aug 31 05:37:04 2008 +0900
9518
9519     config.mk: Move arch-specific condition to $(ARCH)_config.mk
9520
9521     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
9522
9523 commit ea86b9e64b811753d9eabe0f560ee189fbe5d0c1
9524 Author: Kumar Gala <galak@kernel.crashing.org>
9525 Date:   Fri Aug 29 19:08:29 2008 -0500
9526
9527     Prevent crash if random/invalid ramdisks are passed to bootm
9528
9529     Adds returning an error from the ramdisk detection code if
9530     its not a real ramdisk (invalid).  There is no reason we can't
9531     just return back to the console if we detect an invalid
9532     ramdisk or CRC error.
9533
9534     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9535
9536 commit 8e02494e8f86c8f2d7324b5eb9e75271104a01ef
9537 Author: Anatolij Gustschin <agust@denx.de>
9538 Date:   Fri Aug 29 21:04:45 2008 +0200
9539
9540     Prevent crash if random DTB address is passed to bootm
9541
9542     This patch adds bootm_start() return value check. If
9543     error status is returned, we do not proceed further to
9544     prevent board reset or crash as we still can recover
9545     at this point.
9546
9547     Signed-off-by: Anatolij Gustschin <agust@denx.de>
9548
9549 commit cc347801add2689b1ee54d21f62bc14ecf6e1dd8
9550 Author: Andrew Dyer <adyer@righthandtech.com>
9551 Date:   Fri Aug 29 12:30:39 2008 -0500
9552
9553     clean up some #if !defined() in drivers/video/cfb_console.c
9554
9555     rearrange some #if !defined() / #else / #endif statements to remove
9556     the negative logic.
9557
9558     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
9559
9560 commit c83f4c2d77f07174dcd6bef7e87a0f7017be7c33
9561 Author: Kyungmin Park <kmpark@infradead.org>
9562 Date:   Fri Aug 29 09:02:20 2008 +0900
9563
9564     apollon: use the last memory area for u-boot
9565
9566     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
9567
9568 commit a6f2e455b774d0c5d56e44e5661df9adb69b6e07
9569 Author: Heiko Schocher <hs@denx.de>
9570 Date:   Thu Aug 28 13:50:42 2008 +0200
9571
9572     TQM8272: move NAND part in seperate File
9573
9574     I didn't try to use drivers/mtd/nand/fsl_upm.c for the NAND driver,
9575     because I have no longer access to the hardware.
9576
9577     Signed-off-by: Heiko Schocher <hs@denx.de>
9578
9579 commit 584f979f7ee914e32d408739cbdd2c4457ec18b8
9580 Author: Heiko Schocher <hs@denx.de>
9581 Date:   Thu Aug 28 13:48:36 2008 +0200
9582
9583     TQM8272: Fix compiling error for the TQM8272 board.
9584
9585     Fix compile problems caused by
9586     commit  cfa460adfdefcc30d104e1a9ee44994ee349bb7b
9587
9588     Signed-off-by: Heiko Schocher <hs@denx.de>
9589
9590 commit 1a7f8ccec981648ccd38fca2535490582eee08e6
9591 Author: Kyungmin Park <kmpark@infradead.org>
9592 Date:   Wed Aug 27 14:45:20 2008 +0900
9593
9594     Add JFFS2 command support on OneNAND
9595
9596     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
9597
9598 commit f5c3ba79788b0e39baab7026d374fe375dd1a43f
9599 Author: Mark Jackson <mpfj@mimc.co.uk>
9600 Date:   Mon Aug 25 19:21:30 2008 +0100
9601
9602     Allow console input to be disabled
9603
9604     Added new CONFIG_DISABLE_CONSOLE define and GD_FLG_DISABLE_CONSOLE.
9605
9606     When CONFIG_DISABLE_CONSOLE is defined, setting
9607     GD_FLG_DISABLE_CONSOLE disables all console input and output.
9608
9609     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
9610
9611 commit 2b22d608f370565c87f55928b524207031419c11
9612 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9613 Date:   Wed Jul 30 12:39:29 2008 +0200
9614
9615     loads: allow negative offsets
9616
9617     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9618
9619 commit e90fb6afab2c0c074dfb67bacb4de179eb188a24
9620 Author: Yuri Tikhonov <yur@emcraft.com>
9621 Date:   Thu Sep 4 11:19:05 2008 +0200
9622
9623     USB EHCI: reset root hub
9624
9625     Some of multi-function USB controllers (e.g. ISP1562) allow root hub
9626     resetting only via EHCI registers. So, this patch adds the
9627     corresponding kind of reset to OHCI's hc_reset() if the newly
9628     introduced CONFIG_PCI_EHCI_DEVNO option is set (e.g. for Socrates
9629     board).
9630
9631     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
9632     Acked-by: Markus Klotzbuecher <mk@denx.de>
9633
9634 commit 5875d358f025c1b042d8a0f08384b756de7256c9
9635 Author: Yuri Tikhonov <yur@emcraft.com>
9636 Date:   Fri Aug 15 15:42:09 2008 +0200
9637
9638     RX 8025 RTC: analyze 12/24-hour mode flag in rtc_get().
9639
9640     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
9641
9642 commit 3e3c026ed746a284c6f0ef139b26d859939de7e9
9643 Author: Stefan Roese <sr@denx.de>
9644 Date:   Fri Sep 5 10:47:46 2008 +0200
9645
9646     devices: Use list_add_tail() instead of list_add() to register a device
9647
9648     This patch fixes a problem spotted on Glacier/Canyonlands (and most
9649     likely lots of other board ports), that no serial output was seen
9650     after console initialization in console_init_r(). This is because the
9651     last added console device was used instead of the first added.
9652
9653     This patch fixes this problem by using list_add_tail() instead of
9654     list_add() to register a device. This way the first added console
9655     is used again.
9656
9657     Signed-off-by: Stefan Roese <sr@denx.de>
9658
9659 commit 78d78236896d62bb8ca7302af38d8f1493eb2651
9660 Author: Victor Gallardo <vgallardo@amcc.com>
9661 Date:   Thu Sep 4 23:49:36 2008 -0700
9662
9663     ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY
9664
9665     This patch adds GPCS, SGMII and M88E1112 PHY support
9666     for the AMCC PPC460GT/EX processors.
9667
9668     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
9669     Signed-off-by: Stefan Roese <sr@denx.de>
9670
9671 commit f6b6c45840f9b4671d2d97243a12a1f3ffb64765
9672 Author: Adam Graham <agraham@amcc.com>
9673 Date:   Wed Sep 3 12:26:59 2008 -0700
9674
9675     ppc4xx: Update Kilauea to use PPC4xx DDR autocalibration routines
9676
9677     Signed-off-by: Adam Graham <agraham@amcc.com>
9678     Signed-off-by: Stefan Roese <sr@denx.de>
9679
9680 commit 075d0b81e896e8735ae26372cd384f87cbd24e41
9681 Author: Adam Graham <agraham@amcc.com>
9682 Date:   Wed Sep 3 12:26:28 2008 -0700
9683
9684     ppc4xx: IBM Memory Controller DDR autocalibration routines
9685
9686     Alternate SDRAM DDR autocalibration routine that can be generically used
9687     for any PPC4xx chips that have the IBM SDRAM Controller core allowing for
9688     support of more DIMM/memory chip vendors and gets the DDR autocalibration
9689     values which give the best read latency performance (SDRAM0_RDCC.[RDSS]).
9690
9691     Two alternate SDRAM DDR autocalibration algoritm are provided in this patch,
9692     "Method_A" and "Method_B".  DDR autocalibration Method_A scans the full range
9693     of possible PPC4xx  SDRAM Controller DDR autocalibration values and takes a
9694     lot longer to run than Method_B.  Method_B executes in the same amount of time
9695     as the currently existing DDR autocalibration routine, i.e. 1 second or so.
9696     Normally Method_B is used and it is set as the default method.
9697
9698     The current U-Boot PPC4xx DDR autocalibration code calibrates the IBM SDRAM
9699     Controller registers.[bit-field]:
9700     1)  SDRAM0_RQDC.[RQFD]
9701     2)  SDRAM0_RFDC.[RFFD]
9702
9703     This alternate PPC4xx DDR autocalibration code calibrates the following
9704     IBM SDRAM Controller registers.[bit-field]:
9705
9706     1)  SDRAM0_WRDTR.[WDTR]
9707     2)  SDRAM0_CLKTR.[CKTR]
9708     3)  SDRAM0_RQDC.[RQFD]
9709     4)  SDRAM0_RFDC.[RFFD]
9710
9711     and will also use the calibrated settings of the above four registers that
9712     produce the best "Read Sample Cycle Select" value in the SDRAM0_RDCC.[RDSS]
9713     register.[bit-field].
9714
9715     Signed-off-by: Adam Graham <agraham@amcc.com>
9716     Signed-off-by: Stefan Roese <sr@denx.de>
9717
9718 commit e07f4a8033b6270b8103049adb6456f660ff4a89
9719 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9720 Date:   Mon Sep 1 13:09:39 2008 -0400
9721
9722     ppc44x: Unification of virtex5 pp440 boards
9723
9724     This patch provides an unificated way of handling xilinx v5 ppc440 boards.
9725
9726     It unificates 3 different things:
9727
9728     1) Source code
9729     A new board called ppc440-generic has been created. This board includes
9730     a generic tlb initialization (Maps the whole memory into virtual) and
9731     defines board_pre_init, checkboard, initdram and get_sys_info weakly,
9732     so, they can be replaced by specific functions.
9733
9734     If a new board needs to redefine any of the previous functions
9735     (specific initialization) it can create a new directory with the
9736     specific initializations needed. (see the example ml507 board).
9737
9738     2) Configuration file
9739     Common configurations are located under configs/xilinx-ppc440.h, this
9740     header file interpretes the xparameters file generated by EDK and
9741     configurates u-boot in correspondence. Example: if there is a Temac,
9742     allows CMD_CONFIG_NET
9743     Specific configuration are located under specific configuration file.
9744     (see the example ml507 board)
9745
9746     3) Makefile
9747     Some work has been done in order to not duplicate work in the Main
9748     Makefile. Please see the attached code.
9749
9750     In order to support new boards they can be implemented in the next way:
9751
9752     a) Simple Generic Board  (90% of the time)
9753     Using EDK generates a new xparameters.h file, replace
9754     ppc440-generic/xparameters.h  and run make xilinx-ppc440-generic_config
9755     && make
9756
9757     b) Simple Boards with special u-boot parameters (9 % of the time)
9758     Create a new file under configs for it (use ml507.h as example) and
9759     change your paramaters. Create a new Makefile paragraph and compile
9760
9761     c) Complex boards (1% of the time)
9762     Create a new folder for the board, like the ml507
9763
9764     Finally, it adds support for the Avnet FX30T Evaluation board, following
9765     the new generic structure:
9766
9767     Cheap board by Avnet for evaluating the Virtex5 FX technology.
9768
9769     This patch adds support for:
9770      - UartLite
9771      - 16MB Flash
9772      - 64MB RAM
9773
9774     Prior using U-boot in this board, read carefully the ERRATA by Avnet
9775     to solve some memory initialization issues.
9776
9777     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9778     Signed-off-by: Stefan Roese <sr@denx.de>
9779
9780 commit 64ac1eb5afafced49b327425ad1814b2dc422d6e
9781 Author: Nick Spence <nick.spence@freescale.com>
9782 Date:   Tue Sep 2 15:21:16 2008 -0500
9783
9784     mpc83xx: fix mpc8313 in-tree building with NAND
9785
9786     and add mpc8313 NAND build to MAKEALL
9787
9788     Signed-off-by: Nick Spence <nick.spence@freescale.com>
9789     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9790
9791 commit 6eb2a44e27919fdc601e0c05404b298a7602c0e3
9792 Author: Nick Spence <nick.spence@freescale.com>
9793 Date:   Thu Aug 28 14:09:25 2008 -0700
9794
9795     mpc83xx: clean up cache operations and unlock_ram_in_cache() functions
9796
9797     Cleans up some latent issues with the data cache control so that
9798     dcache_enable() and dcache_disable() will work reliably (after
9799     unlock_ram_in_cache() has been called)
9800
9801     Signed-off-by: Nick Spence <nick.spence@freescale.com>
9802     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9803
9804 commit 46497056ae3b1e81e736e9cf3a170472c5d9719f
9805 Author: Nick Spence <nick.spence@freescale.com>
9806 Date:   Thu Aug 28 14:09:19 2008 -0700
9807
9808     mpc83xx: Store and display Arbiter Event Register values
9809
9810     Record the Arbiter Event Register values and optionally display them.
9811
9812     The Arbiter Event Register can record the type and effective address of
9813     an arbiter error, even through an HRESET. This patch stores the values in
9814     the global data structure.
9815
9816     Display of the Arbiter Event registers immediately after the RSR value
9817     can be enabled with defines. The Arbiter values will only be displayed
9818     if an arbiter event has occured since the last Power On Reset, and either
9819     of the following defines exist:
9820      #define CONFIG_DISPLAY_AER_BRIEF - display only the arbiter address and
9821                                         and type register values
9822      #define CONFIG_DISPLAY_AER_FULL  - display and interpret the arbiter
9823                                         event register values
9824
9825     Address Only transactions are one of the trapped events that can register
9826     as an arbiter event. They occur with some cache manipulation instructions
9827     if the HID0_ABE (Address Broadcast Enable) is set and the memory region
9828     has the MEMORY_COHERENCE WIMG bit set. Setting:
9829      #define CONFIG_MASK_AER_AO - prevents the arbiter from recording address
9830                                   only events, so that it can still capture
9831                                   other real problems.
9832
9833     Signed-off-by: Nick Spence <nick.spence@freescale.com>
9834     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9835
9836 commit ade50c7fa1b16ef98be17e9c3ae286aecf4f5605
9837 Author: Nick Spence <nick.spence@freescale.com>
9838 Date:   Thu Aug 28 14:09:11 2008 -0700
9839
9840     mpc83xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
9841
9842     This is needed in unlock_ram_in_cache() because it is called from C and
9843     will corrupt the small data area anchor that is kept in R2.
9844
9845     lock_ram_in_cache() is modified similarly as good coding practice, but
9846     is not called from C.
9847
9848     Signed-off-by: Nick Spence <nick.spence@freescale.com>
9849     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9850
9851 commit d9fe88173cb4f7d293796ffe10c7a0d3d426d8f9
9852 Author: Nick Spence <nick.spence@freescale.com>
9853 Date:   Fri Aug 22 23:52:50 2008 -0700
9854
9855     MPC83XX: Fix GPIO configuration - set gpio level before direction
9856
9857     Set DAT value before DIR values to avoid creating glitches on the
9858     GPIO signals.
9859
9860     Set gpio level register before direction register to inhibit
9861     glitches on high level output pins.
9862
9863     Dir and data gets cleared at powerup, so high level output lines see
9864     a short low pulse between setting the direction and level registers.
9865
9866     Issue was seen on a new board with the nReset line of the NOR flash
9867     connected to a GPIO. Setting the direction register puts the NOR flash
9868     in reset so the next instruction to set the level cannot get executed.
9869
9870     Signed-off-by: Nick Spence <nick.spence@freescale.com>
9871     Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
9872     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9873
9874 commit 7007c5975ee900ad70983b0681d3251e221f8321
9875 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9876 Date:   Tue Sep 2 02:58:32 2008 +0200
9877
9878     doc/qemu_mips: add doc howto debug u-boot with gdb
9879
9880     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9881
9882 commit 7deb3b3ecd0e81ef09bb68aa0ec2346f4ae0a405
9883 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9884 Date:   Wed Sep 3 17:15:45 2008 +0200
9885
9886     ppx4xx: Fix broken DASA_SIM board
9887
9888     This patch adds initdram() to DASA_SIM boards that has been
9889     removed accidentally by a previous commit.
9890
9891     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9892     Signed-off-by: Stefan Roese <sr@denx.de>
9893
9894 commit 7e410aa30fbcb1d19a26bbf1e84a9ca6102d534b
9895 Author: Stefan Roese <sr@denx.de>
9896 Date:   Mon Sep 1 08:35:37 2008 +0200
9897
9898     ppc4xx: Remove reference to common/lists.o from some esd linker scripts
9899
9900     This patch removes some direct references to common/lists.o from some
9901     esd linker scripts. This is necessary because the lists source was moved
9902     and is not in the "common" directory anymore.
9903
9904     Signed-off-by: Stefan Roese <sr@denx.de>
9905
9906 commit 97b0734d65f8a0b03df0a335a2addc759da56107
9907 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9908 Date:   Tue Sep 2 16:33:05 2008 +0200
9909
9910     ppc4xx: Remove obsolete or unused functions from some esd boards
9911
9912     This patch removes initdram() and testdram() from most esd 405 platforms.
9913     Some boards also have an empty dummy implementation of
9914     misc_init_f(). This is also removed.
9915
9916     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9917     Signed-off-by: Stefan Roese <sr@denx.de>
9918
9919 commit 1092ce218c514e5ccb18450ac5af501d96d6e3e9
9920 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9921 Date:   Tue Sep 2 15:07:54 2008 +0200
9922
9923     ppc4xx: Update VOM405 board configuration
9924
9925     - remove PCI code
9926     - add command line editing
9927     - minor cleanup
9928
9929     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9930     Signed-off-by: Stefan Roese <sr@denx.de>
9931
9932 commit 830c800e28e96ec7c3c6936a0bd1b9461f3e77d4
9933 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9934 Date:   Tue Sep 2 15:07:53 2008 +0200
9935
9936     ppc4xx: Remove obsolete initdram() function from VOM405 board
9937
9938     This patch removed the obsolete initdram() function from
9939     VOM405 platform file.
9940
9941     Some minor cleanup.
9942
9943     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9944     Signed-off-by: Stefan Roese <sr@denx.de>
9945
9946 commit 3d4dd7a941b2327b8c2fc535b782ca307ff8b6c8
9947 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9948 Date:   Tue Sep 2 15:07:52 2008 +0200
9949
9950     ppc4xx: Cleanup VOM405 linker script
9951
9952     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9953     Signed-off-by: Stefan Roese <sr@denx.de>
9954
9955 commit fcaffd597f6f5191b12ca66c2a4789bbdeea85c2
9956 Author: Matthias Fuchs <mf@esd.eu>
9957 Date:   Tue Sep 2 15:07:51 2008 +0200
9958
9959     ppc4xx: Add fdt support for VOM405 boards
9960
9961     Signed-off-by: Matthias Fuchs <mf@esd.eu>
9962     Signed-off-by: Stefan Roese <sr@denx.de>
9963
9964 commit 9ec367aa2c5dcf79558aa2b209b45d7686654c14
9965 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9966 Date:   Tue Sep 2 11:36:14 2008 +0200
9967
9968     ppc4xx: Coding style cleanup
9969
9970     Wrap long lines etc.
9971
9972     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9973     Signed-off-by: Stefan Roese <sr@denx.de>
9974
9975 commit 17e65c21adfb63980e6aff80bfbd2df0eeb12060
9976 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9977 Date:   Tue Sep 2 11:35:56 2008 +0200
9978
9979     ppc4xx: Enable USB on PLU405 boards
9980
9981     This patch enables the PCI-OHCI controller on PLU405 board.
9982
9983     Also the default CPU frequency is updated to 266 MHz and
9984     command line editing is enabled.
9985
9986     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9987     Signed-off-by: Stefan Roese <sr@denx.de>
9988
9989 commit 40e43e3b87d57b2ac786e27f6e25a7df9940d93b
9990 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9991 Date:   Tue Sep 2 11:35:35 2008 +0200
9992
9993     ppc4xx: Cleanup PLU405 platform file
9994
9995     This patch
9996     - wraps some long lines
9997     - removes unused/obsolete functions: misc_init_f() and initdram()
9998
9999     Signed-off-by: Matthias Fuchs <mf@esd.eu>
10000     Signed-off-by: Stefan Roese <sr@denx.de>
10001
10002 commit d74cdb1d0614ab78128e0735a51e7988a7b7ea33
10003 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10004 Date:   Tue Sep 2 11:35:04 2008 +0200
10005
10006     ppc4xx: Cleanup PLU405 linker script
10007
10008     Signed-off-by: Matthias Fuchs <mf@esd.eu>
10009     Signed-off-by: Stefan Roese <sr@denx.de>
10010
10011 commit 3bc1054cec2f6b25822f301ea922a16233baa4c7
10012 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10013 Date:   Tue Sep 2 11:34:36 2008 +0200
10014
10015     ppc4xx: Add fdt support for PLU405 boards
10016
10017     Signed-off-by: Matthias Fuchs <mf@esd.eu>
10018     Signed-off-by: Stefan Roese <sr@denx.de>
10019
10020 commit 5a3e480b783bfbc139586293a54fb875d7c5c5d4
10021 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
10022 Date:   Tue Sep 2 11:34:08 2008 +0200
10023
10024     ppc4xx: Increase U-Boot size to 384kB for PLU405 boards
10025
10026     Signed-off-by: Matthias Fuchs <mf@esd.eu>
10027     Signed-off-by: Stefan Roese <sr@denx.de>
10028
10029 commit be1b0d2777e179191a57b138b660547a17e55aad
10030 Author: Jochen Friedrich <jochen@scram.de>
10031 Date:   Tue Sep 2 11:24:59 2008 +0200
10032
10033     Don't tftp to unknown flash
10034
10035     If a board has a variable number of flash banks, there are empty entries
10036     in flash_info[] and CFG_DIRECT_FLASH_TFTP is set, tftp boot fails with
10037     "Outside available Flash". This patch skips flash banks with unknown
10038     flash ids.
10039
10040     Signed-off-by: Jochen Friedrich <jochen@scram.de>
10041     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10042
10043 commit 33314470ab32a3f5412bb61b5f3d6c216c88bf9b
10044 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10045 Date:   Thu Aug 28 13:40:44 2008 +0900
10046
10047     net: smc911x: Add pkt_data_pull and pkt_data_push function
10048
10049     The RSK7203 board has the SMSC9118 wired up 'incorrectly'.
10050     Byte-swapping is necessary, and so poor performance is inevitable.
10051     This problem cannot evade by the swap function of CHIP, this can
10052     evade by software Byte-swapping.
10053     And this has problem by FIFO access only. pkt_data_pull/pkt_data_push
10054     functions necessary to solve this problem.
10055
10056     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10057     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10058
10059 commit 10efa024b8ffd9e6aaca63da8bddfdffdc672274
10060 Author: Ben Warren <biggerbadderben@gmail.com>
10061 Date:   Sun Aug 31 20:37:00 2008 -0700
10062
10063     Moved initialization of EEPRO100 Ethernet controller to board_eth_init()
10064
10065     Affected boards:
10066         db64360
10067         db64460
10068         katmai
10069         taihu
10070         taishan
10071         yucca
10072         cpc45
10073         cpu87
10074         eXalion
10075         elppc
10076         debris
10077         kvme080
10078         mpc8315erdb
10079         integratorap
10080         ixdp425
10081         oxc
10082         pm826
10083         pm828
10084         pm854
10085         pm856
10086         ppmc7xx
10087         sc3
10088         sc520_spunk
10089         sorcery
10090         tqm8272
10091         tqm85xx
10092         utx8245
10093
10094     Removed initialization of the driver from net/eth.c
10095     Also, wrapped contents of pci_eth_init() by CONFIG_PCI.
10096
10097     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10098
10099 commit 8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0
10100 Author: Ben Warren <biggerbadderben@gmail.com>
10101 Date:   Sun Aug 31 10:45:44 2008 -0700
10102
10103     Moved initialization of TULIP Ethernet controller to board_eth_init()
10104
10105     Affected boards:
10106         cu824
10107         bab7xx
10108         adciop
10109         dasa_sim
10110         mousse
10111         mpc8540eval
10112         musenki
10113         mvblue
10114         pcippc2/pcippc6
10115         sbc8240
10116         stxssa
10117
10118     Removed initialization of the driver from net/eth.c
10119
10120     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10121
10122 commit ad3381cf4167120db5c7b88e4970245e1d5c0a32
10123 Author: Ben Warren <biggerbadderben@gmail.com>
10124 Date:   Sun Aug 31 10:44:19 2008 -0700
10125
10126     Moved initialization of E1000 Ethernet controller to board_eth_init()
10127
10128     Affected boards:
10129         ap1000
10130         mvbc_p
10131         PM854
10132
10133     Removed initialization of the driver from net/eth.c
10134
10135     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10136
10137 commit 4fce2aceaf8afd31a252bc782c9dbc497bf40487
10138 Author: Ben Warren <biggerbadderben@gmail.com>
10139 Date:   Sun Aug 31 10:40:51 2008 -0700
10140
10141     Moved initialization of plb2800 Ethernet driver to board_eth_init
10142
10143     Affected boards:
10144         purple
10145
10146     Removed initialization of controller from net/eth.c
10147
10148     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10149
10150 commit e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d
10151 Author: Ben Warren <biggerbadderben@gmail.com>
10152 Date:   Sun Aug 31 10:39:12 2008 -0700
10153
10154     Moved initialization of MPC5xxx_FEC Ethernet driver to CPU directory
10155
10156     Modified board_eth_init() functions of boards that have this FEC in addition
10157     to other Ethernet controllers.
10158
10159     Affected boards:
10160         bc3450
10161         icecube
10162         mvbc_p
10163         o2dnt
10164         pm520
10165         total5200
10166         tq5200
10167
10168     Removed initialization of controller from net/eth.c
10169
10170     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10171
10172 commit a0aad08f9427ac00218bdb2cb649833ce6ec9b8d
10173 Author: Ben Warren <biggerbadderben@gmail.com>
10174 Date:   Sun Aug 31 10:36:38 2008 -0700
10175
10176     Moved initialization of MPC512x_FEC Ethernet driver to CPU directory
10177
10178     Added a cpu_eth_init() function to MPC512x CPU directory and
10179     removed code from net/eth.c
10180
10181     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10182
10183 commit 8218bd2aa68820b878a8413493ae17fd8d21f944
10184 Author: Ben Warren <biggerbadderben@gmail.com>
10185 Date:   Sun Aug 31 10:16:59 2008 -0700
10186
10187     Moved initialization of IncaIP Ethernet controller to board_eth_init
10188
10189     Affected boards:
10190         IncaIP
10191
10192     Removed initialization of the driver from net/eth.c
10193
10194     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10195
10196 commit 164846eeb25cb2a5ede7ab9371fdca7f4831a055
10197 Author: Ben Warren <biggerbadderben@gmail.com>
10198 Date:   Sun Aug 31 10:15:26 2008 -0700
10199
10200     Moved initialization of 3COM Ethernet controller (AmigaOne) to board_eth_init()
10201
10202         Affected boards:
10203             AmigaOneG3SE
10204
10205         Removed initialization of the driver from net/eth.c
10206
10207     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10208
10209 commit 6aca145e067efe75398e9fac97822bd3700de0b2
10210 Author: Ben Warren <biggerbadderben@gmail.com>
10211 Date:   Sun Aug 31 10:13:34 2008 -0700
10212
10213     Moved initialization of GT6426x Ethernet controller to board_eth_init()
10214
10215     Affected boards:
10216         EVB64260
10217         P3G4
10218         ZUMA
10219
10220     Removed initialization of the driver from net/eth.c
10221
10222     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10223
10224 commit e3090534d62045dcb73f5392bacc64a4e8e443dc
10225 Author: Ben Warren <biggerbadderben@gmail.com>
10226 Date:   Sun Aug 31 10:08:43 2008 -0700
10227
10228     Moved initialization of PCNET Ethernet controller to board_eth_init()
10229
10230     Affected boards:
10231         PN62
10232         sc520_cdp
10233
10234     Removed initialization of the driver from net/eth.c
10235
10236     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10237
10238 commit b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed
10239 Author: Ben Warren <biggerbadderben@gmail.com>
10240 Date:   Sun Aug 31 10:07:16 2008 -0700
10241
10242     Moved initialization of NATSEMI Ethernet controller to board_eth_init()
10243
10244     Affected boards:
10245         a3000
10246
10247     Removed initialization of the driver from net/eth.c
10248
10249     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10250
10251 commit 19403633dd70333893c2da7926a1d0dcd6dab7d8
10252 Author: Ben Warren <biggerbadderben@gmail.com>
10253 Date:   Sun Aug 31 10:03:22 2008 -0700
10254
10255     Moved initialization of NS8382X Ethernet controller to board_eth_init()
10256
10257     Affected boards:
10258         bc3450
10259         cpci5200
10260         mecp5200
10261         pf2000
10262         icecube
10263         o2dnt
10264         pm520
10265         sandpoint8245
10266         total5200
10267         tqm5200
10268
10269     Removed initialization of the driver from net/eth.c
10270
10271     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10272
10273 commit ccdd12f83ef93719fbe85f642aa4dc648b9498f0
10274 Author: Ben Warren <biggerbadderben@gmail.com>
10275 Date:   Sun Aug 31 09:59:33 2008 -0700
10276
10277     Moved initialization of TSI108 Ethernet controller to board_eth_init()
10278
10279     Affected boards:
10280         mpc7448hpc2
10281
10282     Removed initialization of the driver from net/eth.c
10283
10284     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10285
10286 commit 0b252f50ae218ae15bfb63af44227972686ebc56
10287 Author: Ben Warren <biggerbadderben@gmail.com>
10288 Date:   Sun Aug 31 21:41:08 2008 -0700
10289
10290     Moved initialization of RTL8139 Ethernet controller to board_eth_init()
10291
10292     Affected boards:
10293         hidden_dragon
10294         MPC8544DS
10295         MPC8610HPCN
10296         R2DPLUS
10297         TB0229
10298
10299     Removed initialization of the driver from net/eth.c
10300
10301     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10302
10303 commit 02d69891d95ee76b0e86e1715a4dc0b964a57cb7
10304 Author: Ben Warren <biggerbadderben@gmail.com>
10305 Date:   Sun Aug 31 09:49:42 2008 -0700
10306
10307     Moved initialization of RTL8169 Ethernet controller to board_eth_init()
10308
10309     Affected boards:
10310         linkstation
10311         r7780mp
10312
10313     Removed initialization of the driver from net/eth.c
10314
10315     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10316
10317 commit 3ae071e44256144d6c1e3febb65f6c56bd433769
10318 Author: Ben Warren <biggerbadderben@gmail.com>
10319 Date:   Tue Aug 12 22:11:53 2008 -0700
10320
10321     Moved initialization of Ethernet controllers on Atmel AT91 to board_eth_init()
10322
10323     Removed at91sam9_eth_initialize() from net/eth.c
10324
10325     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10326
10327 commit 89973f8a82c28ad893c4c3cc56839a8e10fe5f13
10328 Author: Ben Warren <biggerbadderben@gmail.com>
10329 Date:   Sun Aug 31 22:22:04 2008 -0700
10330
10331     Introduce netdev.h header file and remove externs
10332
10333     This addresses all drivers whose initializers have already
10334     been moved to board_eth_init()/cpu_eth_init().
10335
10336     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10337
10338 commit 5a8a163ac394d9f4f7ff57f415d82bd673b0068c
10339 Author: Andy Fleming <afleming@freescale.com>
10340 Date:   Sun Aug 31 16:33:30 2008 -0500
10341
10342     Add pixis_set_sgmii command
10343
10344     The 8544DS and 8572DS platforms support an optional SGMII riser card to
10345     expose ethernet over an SGMII interface.  Once the card is in, it is also
10346     necessary to configure the board such that it uses the card, rather than
10347     the on-board ethernet ports.  This can either be done by flipping dip switches
10348     on the motherboard, or by modifying registers in the pixis.  Either way
10349     requires a reboot.
10350
10351     This adds a command to allow users to choose which ports are routed through
10352     the SGMII card, and which through the onboard ports.  It also allows users
10353     to revert to the current switch settings.
10354
10355     This code does not work on the 8572, as the PIXIS is different.
10356
10357     Signed-off-by: Andy Fleming <afleming@freescale.com>
10358     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10359
10360 commit 216f2a7156a5fde7b47adc40ad553c888a9cbaa7
10361 Author: Andy Fleming <afleming@freescale.com>
10362 Date:   Sun Aug 31 16:33:29 2008 -0500
10363
10364     Add SGMII support for the 8544 DS
10365
10366     The 8544 DS has an optional SGMII Riser card, which uses different PHY
10367     addresses.  Check if we are in SGMII mode, and invoke the SGMII Riser
10368     setup code if so.
10369
10370     Signed-off-by: Andy Fleming <afleming@freescale.com>
10371     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10372
10373 commit 652f7c2eef76a1340928bd660845441e932d86a2
10374 Author: Andy Fleming <afleming@freescale.com>
10375 Date:   Sun Aug 31 16:33:28 2008 -0500
10376
10377     Add support for Freescale SGMII Riser Card
10378
10379     The 8544DS and 8572DS systems have an optional SGMII riser card which
10380     exposes new ethernet ports which are connected to the eTSECs via an
10381     SGMII interface.  The SGMII PHYs for this board are offset from the standard
10382     PHY addresses, so this code modifies the passed in tsec_info structure to
10383     use the SGMII PHYs on the card, instead.
10384
10385     Signed-off-by: Andy Fleming <afleming@freescale.com>
10386     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10387
10388 commit 2abe361c03b43e6dcf68f54e96b5c05156c49284
10389 Author: Andy Fleming <afleming@freescale.com>
10390 Date:   Sun Aug 31 16:33:27 2008 -0500
10391
10392     Add SGMII support to the tsec
10393
10394     Adds support for configuring the TBI to talk properly with the SerDes.
10395
10396     Signed-off-by: Andy Fleming <afleming@freescale.com>
10397     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10398
10399 commit 75b9d4ae0d69f214eab641caf12ce8af83a39a42
10400 Author: Andy Fleming <afleming@freescale.com>
10401 Date:   Sun Aug 31 16:33:26 2008 -0500
10402
10403     Pass in tsec_info struct through tsec_initialize
10404
10405     The tsec driver contains a hard-coded array of configuration information
10406     for the tsec ethernet controllers.  We create a default function that works
10407     for most tsecs, and allow that to be overridden by board code.  It creates
10408     an array of tsec_info structures, which are then parsed by the corresponding
10409     driver instance to determine configuration.  Also, add regs, miiregs, and
10410     devname fields to the tsec_info structure, so that we don't need the kludgy
10411     "index" parameter.
10412
10413     Signed-off-by: Andy Fleming <afleming@freescale.com>
10414     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10415
10416 commit dd3d1f56a01f460d560766126ee7dfed2ea9bc10
10417 Author: Andy Fleming <afleming@freescale.com>
10418 Date:   Sun Aug 31 16:33:25 2008 -0500
10419
10420     tsec: Move tsec.h to include/
10421
10422     This is to prepare the way for board code passing in the tsec_info structure
10423
10424     Signed-off-by: Andy Fleming <afleming@freescale.com>
10425     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10426
10427 commit d23dc394aa69093b6326ad917db04dc0d1aff3f8
10428 Author: Sergei Poselenov <sposelenov@emcraft.com>
10429 Date:   Fri Jun 6 15:52:44 2008 +0200
10430
10431     PHY: Add support for the M88E1121R Marvell chip.
10432
10433     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
10434     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
10435     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10436
10437 commit 1711f3bd16d1c5e9d17b4c0198b426d86999781b
10438 Author: Wolfgang Denk <wd@denx.de>
10439 Date:   Tue Sep 2 21:17:36 2008 +0200
10440
10441     fw_env.c: fix build problems with MTD_VERSION=old
10442
10443     (as needed to support old 2.4 Linux kernel based releases)
10444
10445     Signed-off-by: Wolfgang Denk <wd@denx.de>
10446
10447 commit 628ffd73bcff0c9f3bc5a8eeb2c7455fe9d28a51
10448 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10449 Date:   Mon Sep 1 17:11:26 2008 +0200
10450
10451     device: make device_register() clone the device
10452
10453     This is expected by the callers, but this fact was hidden well within
10454     the old list implementation.
10455
10456     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10457
10458 commit c75e772a2f061a508bba28ded1b5bea91f0442b0
10459 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10460 Date:   Sun Aug 31 23:28:15 2008 +0900
10461
10462     sh: Remove CC line from board's Makefile
10463
10464     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10465
10466 commit 468eae0660de6fdfd9999944c536ecc4797bd944
10467 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10468 Date:   Sun Aug 31 23:25:57 2008 +0900
10469
10470     sh: Replaced "@./mkconfig" for @$(MKCONFIG)
10471
10472     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10473
10474 commit 3aeb1ff7482a732503186c742d3a5ded4b7a0d34
10475 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10476 Date:   Thu Aug 28 14:50:52 2008 +0900
10477
10478     sh: Add support sh2 to MAKEALL
10479
10480     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10481     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10482
10483 commit 6f3d8bb5faa12dbf3031382286784c978df038ee
10484 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10485 Date:   Thu Aug 28 14:52:23 2008 +0900
10486
10487     sh: Fix compile error rsk7203 board
10488
10489     This boards used old type preprocessor.
10490     This patch fix compile error.
10491
10492     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10493     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10494
10495 commit 1c98172e025018552e9bb4c43b0aaee76f79b1aa
10496 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10497 Date:   Thu Aug 28 14:53:31 2008 +0900
10498
10499     sh: Fix compile error sh7785lcr board
10500
10501     This boards used old type preprocessor.
10502     This patch fix compile error.
10503
10504     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10505     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10506
10507 commit 6f0da4972e48f99d37bc522814940a6022cd3084
10508 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10509 Date:   Fri Aug 22 17:39:09 2008 +0900
10510
10511     sh: Renesas Solutions AP325RXA board support
10512
10513     AP325RXA is SH7723's reference board.
10514     This has SCIF, NOR Flash, Ethernet, USB host, LCDC, SD Host, Camera and other.
10515     In this patch, support SCIF, NOR Flash, and Ethernet.
10516
10517     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10518     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10519
10520 commit ab09f433b50bb83b5e440c335bc3839ee069e534
10521 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10522 Date:   Fri Aug 22 17:48:51 2008 +0900
10523
10524     sh: add support Renesas SH7723
10525
10526     Renesas SH7723 has 5 SCIF, SD, Camera, LCDC and other.
10527     This patch supports CPU register's header file and SCIF serial driver.
10528
10529     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10530     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10531
10532 commit c655fad06ba3fb042dbc667724a40e1a9a091248
10533 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10534 Date:   Sun Aug 31 23:02:04 2008 +0900
10535
10536     sh: Renesas RSK+ 7203 board support
10537
10538     This adds initial support for the RTE RSK+ SH7203 board.
10539
10540     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10541     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10542
10543 commit 6ede753ddf52a7b0f992d9bccbe5e4a0968ca475
10544 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10545 Date:   Thu Jul 3 23:11:02 2008 +0900
10546
10547     sh: Add support Renesas SH7203 processor
10548
10549     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10550     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10551
10552 commit 6ad43d0dd86b612895ddc7f480eb6cdfe793adf9
10553 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10554 Date:   Sun Aug 31 22:48:33 2008 +0900
10555
10556     sh: Add support SH2/SH2A which is CPU of Renesas Technology
10557
10558     Add support SH2/SH2A basic function.
10559
10560     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10561     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10562
10563 commit 0d53a47dc0737b6aa3a39caee21410c169441ae5
10564 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10565 Date:   Sun Aug 31 22:45:08 2008 +0900
10566
10567     sh: Renesas R0P7785LC0011RL board support
10568
10569     This board has SH7785, 512MB DDR2-SDRAM, NOR Flash,
10570     Graphic, Ethernet, USB, SD, RTC, and I2C controller.
10571
10572     This patch supports the following functions:
10573      - 128MB DDR2-SDRAM (29-bit address mode only)
10574      - NOR Flash
10575      - USB host
10576      - Ethernet
10577
10578     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
10579     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10580
10581 commit b0b6218929bc7de9a6bdb8e564fa8ec2efa71b4e
10582 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
10583 Date:   Thu Jul 10 19:32:53 2008 +0900
10584
10585     sh: add support for SH7785
10586
10587     Renesas SH7785 has DDR2-SDRAM controller, PCI, and other.
10588     This patch supports CPU register's header file.
10589
10590     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
10591     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10592
10593 commit d6e04258be8f2408845468d3cf722a4cf0433445
10594 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10595 Date:   Sun Aug 31 04:45:42 2008 +0200
10596
10597     davinci: fix remaining dm644x_eth
10598
10599     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10600
10601 commit 08ab4e1780fa63c88dd5a5ab52f4ff4ed1ee1878
10602 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10603 Date:   Sun Aug 31 04:24:56 2008 +0200
10604
10605     fs: Move conditional compilation to Makefile
10606
10607     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10608
10609 commit c1de7a6daf9c657484e1c6d433f01fccd49a7f48
10610 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10611 Date:   Sun Aug 31 04:24:55 2008 +0200
10612
10613     devices: merge to list_head
10614
10615     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10616
10617 commit ef0255fc75f28655f9681422079287d68a14dbaa
10618 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10619 Date:   Sun Aug 31 04:24:51 2008 +0200
10620
10621     update linux/list
10622
10623     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10624
10625 commit 71cb31227bee741b274f6c0279b2aac1ab8e28e3
10626 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10627 Date:   Sun Aug 31 00:39:48 2008 +0200
10628
10629     smdk6400: add gitignore
10630
10631     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10632
10633 commit f9f692e2b146d4e306b777e6d5f69f1d725b9eb9
10634 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10635 Date:   Sun Aug 31 00:39:48 2008 +0200
10636
10637     smdk6400: Use CONFIG_FLASH_CFI_DRIVER
10638
10639     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10640
10641 commit 7c0e5a8db3d1358b0ce3cc85ada0de6341ca4a15
10642 Author: Guennadi Liakhovetski <lg@denx.de>
10643 Date:   Sun Aug 31 00:39:47 2008 +0200
10644
10645     smdk6400: remove redundant bootargs definition
10646
10647     Double bootargs setting leads to a duplicated environmant entry.
10648
10649     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
10650
10651 commit 11edcfe260f20dcea79284a3e95270989d433854
10652 Author: Guennadi Liakhovetski <lg@denx.de>
10653 Date:   Sun Aug 31 00:39:47 2008 +0200
10654
10655     ARM: Add support for S3C6400 based SMDK6400 board
10656
10657     SMDK6400 can only boot U-Boot from NAND-flash. This patch adds a nand_spl
10658     driver for it too. The board can also boot from the NOR flash, but due to
10659     hardware limitations it can only address 64KiB on it, which is not enough
10660     for U-Boot. Based on the original sources by Samsung for U-Boot 1.1.6.
10661
10662     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
10663
10664 commit e0056b341069796eaea11eae0fc8eb93a3dceaac
10665 Author: Guennadi Liakhovetski <lg@denx.de>
10666 Date:   Sun Aug 31 00:39:47 2008 +0200
10667
10668     NAND: add NAND driver for S3C64XX
10669
10670     Based on the original S3C64XX NAND driver by Samsung for U-Boot 1.1.6.
10671
10672     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
10673
10674 commit 3fe7b589f9c7463df39056f8872006a67f56a91c
10675 Author: Guennadi Liakhovetski <lg@denx.de>
10676 Date:   Sun Aug 31 00:39:47 2008 +0200
10677
10678     S3C64XX: remove broken HWFLOW support from the serial driver
10679
10680     As noted by Harald Welte, HWFLOW support in the S3C64XX serial driver is
10681     broken and currently unused. Remove it.
10682
10683     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
10684
10685 commit 2fb28dcf82048045e1bf5014e938e486fa6c2383
10686 Author: Guennadi Liakhovetski <lg@denx.de>
10687 Date:   Sun Aug 31 00:39:47 2008 +0200
10688
10689     serial: add S3C64XX serial driver
10690
10691     Based on the original S3C64XX UART driver by Samsung for U-Boot 1.1.6.
10692
10693     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
10694
10695 commit 8262813ca04fc57f5d8856e1828085c136e0f1eb
10696 Author: Guennadi Liakhovetski <lg@denx.de>
10697 Date:   Sun Aug 31 00:39:46 2008 +0200
10698
10699     USB: Add support for OHCI controller on S3C6400
10700
10701     Notice: USB on S3C6400 currently works _only_ with switched off MMU. One could
10702     try to enable the MMU, but map addresses 1-to-1, and disable data cache, then
10703     it should work too and we could still profit from instruction cache.
10704
10705     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
10706
10707 commit 9b07773f8883665b002500c190507e9fd99b7181
10708 Author: Guennadi Liakhovetski <lg@denx.de>
10709 Date:   Sun Aug 31 00:39:46 2008 +0200
10710
10711     ARM: Add arm1176 core with S3C6400 SoC
10712
10713     Based on the original S3C64XX port by Samsung for U-Boot 1.1.6.
10714
10715     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
10716
10717 commit fcaac589a68115819ddadcf5c18ded9a5f9e2c75
10718 Author: Sandeep Paulraj <s-paulraj@ti.com>
10719 Date:   Sun Aug 31 00:39:46 2008 +0200
10720
10721     ARM DaVinci: Changing function names for EMAC driver
10722
10723     DM644x is just one of a series of DaVinci chips that use the EMAC driver.
10724     By replacing all the function names that start with dm644x_* to davinci_*
10725     we make these function more portable. I have tested this change on my EVM.
10726     DM6467 is another DaVinci SOC which uses the EMAC driver and i will
10727     be sending patches that add DaVinci DM6467 support to the list soon.
10728
10729     Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
10730
10731 commit fbbb1de369ca7d5ace6f7b0ce9d0aee24a6f457b
10732 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
10733 Date:   Sat Aug 30 23:21:30 2008 +0200
10734
10735     Integrator[AP/CP] - Remove unused file memsetup.S
10736
10737     - memsetup.s is changed/merged to lowlevel_init.S
10738       memsetup.S has a global label memsetup that just returns back to caller
10739     - memsetup global label is changed/merged to lowlevel_init
10740       This label is not called from anywhere.
10741
10742     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
10743
10744 commit 89d51d022a63be1a851eda983c8cbce1a044f65f
10745 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
10746 Date:   Wed Aug 27 21:35:52 2008 +0200
10747
10748     ARM DaVinci: Standardize names of directories/files
10749
10750     ARM DaVinci: Standardize names of directories/files.
10751
10752     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
10753     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10754
10755 commit 264bbdd11d01f14f5ea4629556ae63b00b13402d
10756 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
10757 Date:   Fri Jul 11 15:10:13 2008 -0400
10758
10759     ARM DaVinci: Move common functions to board/davinci/common
10760
10761     ARM DaVinci: Move common functions to board/davinci/common.
10762
10763     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
10764
10765 commit c2b4b2e4814f4ace9015fdb64132894327400bf0
10766 Author: Stefan Roese <sr@denx.de>
10767 Date:   Fri Aug 29 11:56:49 2008 +0200
10768
10769     ppc4xx/NAND: Add select_chip function to 4xx NDFC driver
10770
10771     This function is needed for the new NAND infrastructure. We only need
10772     a dummy implementation though for the NDFC.
10773
10774     Signed-off-by: Stefan Roese <sr@denx.de>
10775
10776 commit 3d4a746e2fb4545f07d871049805fb34ae97cc94
10777 Author: Stefan Roese <sr@denx.de>
10778 Date:   Fri Aug 29 12:06:27 2008 +0200
10779
10780     ppc4xx: Increase image size for NAND boot target
10781
10782     This is needed since now with HUSH enabled (amcc-common.h) the image
10783     read from NAND exceeds the previous limit.
10784
10785     Signed-off-by: Stefan Roese <sr@denx.de>
10786
10787 commit 6b5049d056cd8ef72d1f2f461ceb2d033d93f759
10788 Author: Ben Warren <biggerbadderben@gmail.com>
10789 Date:   Thu Aug 28 23:58:30 2008 -0700
10790
10791     Move MPC512x_FEC driver to drivers/net
10792
10793     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10794
10795 commit 80b00af01b3c9154774de2936f05a051e92f6a03
10796 Author: Ben Warren <biggerbadderben@gmail.com>
10797 Date:   Thu Aug 28 23:58:29 2008 -0700
10798
10799     Move MPC5xxx_FEC driver to drivers/net
10800
10801     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10802
10803 commit 3de7bf0e6b1ad2608014096c8192f13229b2e9d7
10804 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10805 Date:   Fri Aug 29 21:53:57 2008 +0200
10806
10807     cmd_terminal: remove no need ifdef
10808
10809     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10810
10811 commit 578118bdf122877ae769776be002255be447b4fa
10812 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10813 Date:   Fri Aug 29 21:53:57 2008 +0200
10814
10815     common/Makefile: order by functionality
10816
10817     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10818
10819 commit ba7b5b2348b684cf8ec424b2e38e267dc1cfd2fb
10820 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10821 Date:   Fri Aug 29 21:53:56 2008 +0200
10822
10823     miiphyutil: Move conditional compilation to Makefile
10824
10825     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10826
10827 commit 81789c39db3f0f6b621df8c0ec66014d701f368e
10828 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10829 Date:   Fri Aug 29 21:53:37 2008 +0200
10830
10831     autoscript: Move conditional compilation to Makefile
10832
10833     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10834
10835 commit bbf52df9aa94ffb115b8b1ebeb00d01374bb0a1d
10836 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10837 Date:   Fri Aug 29 01:18:11 2008 +0200
10838
10839     crc16: move to lib_generic
10840
10841     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10842
10843 commit 55195773eacefb22dd483a3c560ea30a14263ce1
10844 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10845 Date:   Fri Aug 29 01:18:01 2008 +0200
10846
10847     miiphybb: move to drivers/net/phy
10848
10849     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10850
10851 commit e8314035996a9118ac5948df2ff8a2f2161ed67a
10852 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10853 Date:   Thu Aug 28 12:31:51 2008 +0200
10854
10855     soft_spi: move to drivers/spi
10856
10857     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10858
10859 commit 4d75e0aa9caca64d4a1d55d95cd1ca5f30d9fc56
10860 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10861 Date:   Thu Aug 28 12:31:51 2008 +0200
10862
10863     soft_i2c: move to drivers/i2c
10864
10865     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10866
10867 commit 717a222229fdb77703e9174d0eb08a4b41febf49
10868 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10869 Date:   Thu Aug 28 12:31:48 2008 +0200
10870
10871     gunzip: move to lib_generic
10872
10873     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10874
10875 commit 52aef8f9ba28b747973bf76741c23db658d5773c
10876 Author: Wolfgang Ocker <weo@reccoware.de>
10877 Date:   Tue Aug 26 19:55:23 2008 +0200
10878
10879     ppc4xx: NAND configuration
10880
10881     Made NAND bank configuration setting a config variable.
10882
10883     Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
10884     Signed-off-by: Stefan Roese <sr@denx.de>
10885
10886 commit 5bc542a593abc9e974fbd34704af85c37c366c60
10887 Author: Victor Gallardo <vgallardo@amcc.com>
10888 Date:   Thu Aug 28 16:03:28 2008 -0700
10889
10890     ppc4xx: fix UIC external_interrupt hang on UIC0
10891
10892     This patch fixes a UIC external_interrupt hang if critical or non-critical
10893     interrupt is set at the same time as a normal interrupt is set on UIC0.
10894
10895     Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
10896     Signed-off-by: Stefan Roese <sr@denx.de>
10897
10898 commit 04737d5ffd16248cb80ab3dd4f3765057a803f18
10899 Author: Prodyut  Hazarika <phazarika@amcc.com>
10900 Date:   Wed Aug 27 16:39:00 2008 -0700
10901
10902     ppc4xx: Optimizations/Cleanups for IBM DDR2 Memory Controller
10903
10904     Removed Magic numbers from Initialization preload registers
10905     Tested with Kilauea, Glacier, Canyonlands and Katmai boards
10906     About 5-7% improvement seen for LMBench memtests
10907
10908     Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
10909     Signed-off-by: Stefan Roese <sr@denx.de>
10910
10911 commit 8a490422bed685c9491274ec997f62061d88620b
10912 Author: John Rigby <jrigby@freescale.com>
10913 Date:   Thu Aug 28 13:17:07 2008 -0600
10914
10915     ADS5121: Fix NOR and CPLD ALE timing for rev 2 silicon
10916
10917     MPC5121 rev 2 silicon has a new register for controlling how long
10918     CS is asserted after deassertion of ALE in multiplexed mode.
10919
10920     The default is to assert CS together with ALE.  The alternative
10921     is to assert CS (ALEN+1)*LPC_CLK clocks after deassertion of ALE.
10922
10923     The default is wrong for the NOR flash and CPLD on the ADS5121.
10924
10925     This patch turns on the alternative for CS0 (NOR) and CS2 (CPLD)
10926     it does so conditionally based on silicon rev 2.0 or greater.
10927
10928     Signed-off-by: Martha J Marx <mmarx@silicontkx.com>
10929     Signed-off-by: John Rigby <jrigby@freescale.com>
10930
10931 commit 5d9a5efa4b332f442b54a755d49969123c3a8742
10932 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10933 Date:   Tue Aug 19 00:56:46 2008 +0600
10934
10935     Add I2C frequency dividers for ColdFire
10936
10937     The existing I2C freqency dividers for FDR does not apply
10938     to ColdFire platforms; thus, a seperate table is added
10939     based on MCF5xxx Reference Manual
10940
10941     Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
10942     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10943     Acked-by: Tabi Timur <timur@freescale.com>
10944
10945 commit eec567a67e00d1ed8d941e9098b7d421f4091abf
10946 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10947 Date:   Tue Aug 19 03:01:19 2008 +0600
10948
10949     ColdFire: I2C fix for multiple platforms
10950
10951     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10952
10953 commit d53cf6a9c7423cba668b867978648645f71c3090
10954 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10955 Date:   Tue Aug 19 00:37:13 2008 +0600
10956
10957     ColdFire: Add CONFIG_MII_INIT for M5272C3
10958
10959     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10960
10961 commit f78ced3028d4130b24a318943a70cf5584ab16f4
10962 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10963 Date:   Tue Aug 19 00:26:25 2008 +0600
10964
10965     ColdFire: Multiple fixes for MCF5445x platforms
10966
10967     Add FEC pin set and mii reset in __mii_init(). Change
10968     legacy flash vendor from 2 to AMD LEGACY (0xFFF0),
10969     change cfi_offset to 0, and change CFG_FLASH_CFI to
10970     CONFIG_FLASH_CFI_LEGACY. Correct M54451EVB and
10971     M54455EVB env settings in configuration file.
10972
10973     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10974
10975 commit 454e725b3a9537b7f273bbd0cbca180f23a7a6e8
10976 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10977 Date:   Fri Aug 15 18:24:25 2008 +0000
10978
10979     ColdFire: Change the SDRAM BRD2WT timing from 3 to 7
10980
10981     The user manuals recommend 7.
10982
10983     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
10984     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10985
10986 commit 79e0799cf6e88d98d77b216a55234bf674b59a4e
10987 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10988 Date:   Fri Aug 15 16:50:07 2008 +0000
10989
10990     ColdFire: Raise uart baudrate to 115200 bps
10991
10992     M5249EVB, M5271EVB, M5272C3, M5275EVB and M5282EVB platforms
10993     uart baudrate increase from 19200 to 115200 bps
10994
10995     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10996
10997 commit ab6ba842682552ccf071d0034da0a20633d1d1ac
10998 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10999 Date:   Wed Aug 13 12:07:03 2008 +0000
11000
11001     ColdFire: Fix board.c warning message
11002
11003     Implicit declaration of nand_init() warning message
11004
11005     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11006
11007 commit 5798b1c4650e9a8713c95b25c1e669a2bc80a97b
11008 Author: Kumar Gala <galak@kernel.crashing.org>
11009 Date:   Wed Aug 27 01:10:34 2008 -0500
11010
11011     FSL DDR: Remove duplicate setting of cs0_bnds register on 86xx.
11012
11013     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11014
11015 commit 258c37b147353bc522ffc33dfbd7d0d9cd7c32d7
11016 Author: Heiko Schocher <hs@denx.de>
11017 Date:   Thu Aug 21 20:44:49 2008 +0200
11018
11019     mpc52xx: added support for the MPC5200 based MUC.MC52 board from MAN.
11020
11021     Signed-off-by: Heiko Schocher <hs@denx.de>
11022
11023 commit 9cff4448a9cb882defe6c8bde73b77fc0c636799
11024 Author: Kumar Gala <galak@kernel.crashing.org>
11025 Date:   Tue Aug 19 14:46:36 2008 -0500
11026
11027     mpc85xx: remove redudant code with lib_ppc/interrupts.c
11028
11029     For some reason we duplicated the majority of code in lib_ppc/interrupts.c
11030     not show how that happened, but there is no good reason for it.
11031
11032     Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
11033     they exist.
11034
11035     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11036
11037 commit 9490a7f1a9484617bad75c60807ce02c8a3a6d56
11038 Author: Kumar Gala <galak@kernel.crashing.org>
11039 Date:   Fri Jul 25 13:31:05 2008 -0500
11040
11041     mpc85xx: Add support for the MPC8536DS reference board
11042
11043     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11044     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
11045     Signed-off-by: Dejan Minic <minic@freescale.com>
11046     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
11047     Signed-off-by: Dave Liu <daveliu@freescale.com>
11048     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11049
11050 commit ef50d6c06ece74fb17e8d7510e62cad9df8b810d
11051 Author: Kumar Gala <galak@kernel.crashing.org>
11052 Date:   Tue Aug 12 11:14:19 2008 -0500
11053
11054     mpc85xx: Add support for the MPC8536
11055
11056     The MPC8536 Adds SDHC and SATA controllers to the PQ3 family.  We
11057     also have SERDES init code for the 8536.
11058
11059     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11060     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
11061     Signed-off-by: Dejan Minic <minic@freescale.com>
11062     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
11063     Signed-off-by: Dave Liu <daveliu@freescale.com>
11064
11065 commit 129ba616b3813dde861f25f3d8a3c47c5c36ad5f
11066 Author: Kumar Gala <galak@kernel.crashing.org>
11067 Date:   Tue Aug 12 11:13:08 2008 -0500
11068
11069     mpc85xx: Add support for the MPC8572DS reference board
11070
11071     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11072
11073 commit 457caecdbca3df21a93abff19eab12dbc61b7897
11074 Author: Kumar Gala <galak@kernel.crashing.org>
11075 Date:   Wed Aug 27 01:05:35 2008 -0500
11076
11077     FSL DDR: Remove old SPD support from cpu/mpc85xx
11078
11079     All 85xx boards have been converted to the new code so we can
11080     remove the old SPD DDR setup code.
11081
11082     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11083
11084 commit 0e7927db138976469e7257e29c1338050a50fcd9
11085 Author: Kumar Gala <galak@kernel.crashing.org>
11086 Date:   Wed Aug 27 01:04:07 2008 -0500
11087
11088     FSL DDR: Convert STXSSA to new DDR code.
11089
11090     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11091
11092 commit c360d9b970fbb9c13744c355879671165bbb9b9e
11093 Author: Kumar Gala <galak@kernel.crashing.org>
11094 Date:   Wed Aug 27 01:03:42 2008 -0500
11095
11096     FSL DDR: Convert STXGP3 to new DDR code.
11097
11098     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11099
11100 commit 8e55313b7ae12352a343f9b9962e662dbd897187
11101 Author: Kumar Gala <galak@kernel.crashing.org>
11102 Date:   Tue Aug 26 23:52:58 2008 -0500
11103
11104     FSL DDR: Convert SBC8560 to new DDR code.
11105
11106     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11107
11108 commit 9658bec2e8f55d56ca1be70090ce5a348be4980f
11109 Author: Kumar Gala <galak@kernel.crashing.org>
11110 Date:   Tue Aug 26 23:52:32 2008 -0500
11111
11112     FSL DDR: Convert MPC8540EVAL to new DDR code.
11113
11114     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11115
11116 commit 6bfa8f723cfd82c55e3ef5620ade396916470a70
11117 Author: Kumar Gala <galak@kernel.crashing.org>
11118 Date:   Tue Aug 26 23:52:07 2008 -0500
11119
11120     FSL DDR: Convert PM856 to new DDR code.
11121
11122     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11123
11124 commit d53bd3e17bd4f460257c19255569ea6dcfaae817
11125 Author: Kumar Gala <galak@kernel.crashing.org>
11126 Date:   Tue Aug 26 23:51:49 2008 -0500
11127
11128     FSL DDR: Convert PM854 to new DDR code.
11129
11130     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11131
11132 commit 33b9079ba20926f14238fff863b68a98e938948e
11133 Author: Kumar Gala <galak@kernel.crashing.org>
11134 Date:   Tue Aug 26 23:15:28 2008 -0500
11135
11136     FSL DDR: Convert sbc8548 to new DDR code.
11137
11138     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11139
11140 commit a947e4c7eb15cea1d9fb633955c516aab5ad35dd
11141 Author: Kumar Gala <galak@kernel.crashing.org>
11142 Date:   Tue Aug 26 23:14:14 2008 -0500
11143
11144     FSL DDR: Convert atum8548 to new DDR code.
11145
11146     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11147
11148 commit be0bd8234b9777ecd63c4c686f72af070d886517
11149 Author: Kumar Gala <galak@kernel.crashing.org>
11150 Date:   Tue Aug 26 22:56:56 2008 -0500
11151
11152     FSL DDR: Convert socrates to new DDR code.
11153
11154     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11155
11156 commit 1167a2fd56138b716e01370c4267f3b70bf9ffa0
11157 Author: Kumar Gala <galak@kernel.crashing.org>
11158 Date:   Tue Aug 26 08:02:30 2008 -0500
11159
11160     FSL DDR: Convert MPC8544DS to new DDR code.
11161
11162     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11163
11164 commit e6f5b35b41ddbd637bb9ca4ad985b1e0b07dae0e
11165 Author: Jon Loeliger <jdl@freescale.com>
11166 Date:   Tue Mar 18 13:51:05 2008 -0500
11167
11168     FSL DDR: Convert MPC8568MDS to new DDR code.
11169
11170     Signed-off-by: Jon Loeliger <jdl@freescale.com>
11171     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11172
11173 commit e31d2c1e2bc954dc32e33bb2076139f85b95f8e6
11174 Author: Jon Loeliger <jdl@freescale.com>
11175 Date:   Tue Mar 18 13:51:06 2008 -0500
11176
11177     FSL DDR: Convert MPC8548CDS to new DDR code.
11178
11179     Signed-off-by: Jon Loeliger <jdl@freescale.com>
11180     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11181
11182 commit aa11d85cf318b961e029fe50d68ca47d004bce93
11183 Author: Jon Loeliger <jdl@freescale.com>
11184 Date:   Mon Mar 17 15:48:18 2008 -0500
11185
11186     FSL DDR: Convert MPC8541CDS to new DDR code.
11187
11188     Signed-off-by: Jon Loeliger <jdl@freescale.com>
11189     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11190
11191 commit 2b40edb10d81da7bba724edbccd7f53777112579
11192 Author: Jon Loeliger <jdl@freescale.com>
11193 Date:   Tue Mar 18 11:12:42 2008 -0500
11194
11195     FSL DDR: Convert MPC8555ADS to new DDR code.
11196
11197     Signed-off-by: Jon Loeliger <jdl@freescale.com>
11198     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11199
11200 commit 8b625114e8bc5a6b436181167a6e7fcd3303dd2c
11201 Author: Jon Loeliger <jdl@freescale.com>
11202 Date:   Tue Mar 18 11:12:44 2008 -0500
11203
11204     FSL DDR: Convert MPC8560ADS to new DDR code.
11205
11206     Signed-off-by: Jon Loeliger <jdl@freescale.com>
11207     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11208
11209 commit 9617c8d49a21703eaf13a4033ab1a56eecc033cc
11210 Author: Kumar Gala <galak@kernel.crashing.org>
11211 Date:   Fri Jun 6 13:12:18 2008 -0500
11212
11213     FSL DDR: Convert MPC8540ADS to new DDR code.
11214
11215     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11216
11217 commit 2a6c2d7ab2a66660f40a6cd3de2eb29ee29d9693
11218 Author: Kumar Gala <galak@kernel.crashing.org>
11219 Date:   Tue Aug 26 21:34:55 2008 -0500
11220
11221     FSL DDR: Add 85xx specific register setting
11222
11223     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11224
11225 commit 6fb1b7346849ccd0c20306143e334f5b76143070
11226 Author: Kumar Gala <galak@kernel.crashing.org>
11227 Date:   Mon Jun 9 11:07:46 2008 -0500
11228
11229     FSL DDR: Add e500 TLB helper for DDR code
11230
11231     Provide a helper function that board code can call to map TLBs when
11232     setting up DDR.
11233
11234     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11235
11236 commit d26b739afe5a6760bd345743188759cd9d0f3b47
11237 Author: Andrew Dyer <adyer@righthandtech.com>
11238 Date:   Tue Aug 26 17:03:38 2008 -0500
11239
11240     dm9000 remove dead external phy support, gpio fix
11241
11242     dm9000 has code to detect and initialize external phy parts, but later
11243     on in the code the part is forced to use the internal phy
11244     unconditionally.  Remove the unused/untested code.
11245
11246     change the GPIO initialization so that only the GPIO used as an
11247     internal phy reset (hardwired in the chip) is set as an output.  The
11248     remaining GPIO need to be handled by board specific code to prevent
11249     possible drive conflicts.  Set as inputs for safety.
11250
11251     replace a few magic numbers with defines
11252
11253     Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
11254     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11255
11256 commit a1573db0c07c8ba99e9c373bb07ecd6f59da672c
11257 Author: Peter Tyser <ptyser@xes-inc.com>
11258 Date:   Tue Aug 26 11:17:48 2008 -0500
11259
11260     Standardize bootp, tftpboot, rarpboot, dhcp, and nfs command descriptions
11261
11262     cmd_net.c command descriptions were updated to describe the optional
11263     hostIPaddr argument.  The dhcp command help message was also updated
11264     to more closely reflect the other commands in cmd_net.c
11265
11266     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11267     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11268
11269 commit 51dfe1382ebaf691485badfa0ea5e75b0710531b
11270 Author: Remy Bohmer <linux@bohmer.net>
11271 Date:   Wed Aug 20 11:30:28 2008 +0200
11272
11273     Fix bogus error message in the DHCP handler
11274
11275     The DHCP handler has 1 state that is not listed in this case, causing a
11276     failure message when there is actually no failure.
11277
11278     Signed-off-by: Remy Bohmer <linux@bohmer.net>
11279     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11280
11281 commit 61365501a0e2cae9c1df2818b7b5b3f52c450d18
11282 Author: Remy Bohmer <linux@bohmer.net>
11283 Date:   Wed Aug 20 11:30:27 2008 +0200
11284
11285     Fix compile error when CONFIG_BOOTP_RANDOM_DELAY is set.
11286
11287     The option CONFIG_BOOTP_RANDOM_DELAY does not compile, because of a
11288     missing extern inside the net/bootp.h header
11289
11290     Signed-off-by: Remy Bohmer <linux@bohmer.net>
11291     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11292
11293 commit 1803f7f91ff35ca402259065df7557107dcf28a2
11294 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11295 Date:   Tue Aug 19 21:26:32 2008 +0000
11296
11297     ColdFire: Add FEC Buffer descriptors in SRAM
11298
11299     Add FEC Buffer descriptors and data buffer in SRAM for
11300     faster execution and access.
11301
11302     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11303     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11304
11305 commit 429be27ce195210d4b9decf9e867b9ca6155a87d
11306 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11307 Date:   Thu Aug 21 23:55:11 2008 +0000
11308
11309     Fix ColdFire FEC warning messages
11310
11311     Types mismatch and implicit declaration of icache_invalid()
11312     warning messages
11313
11314     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11315     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11316
11317 commit 6a002171098e968bd5b362347d2831224fab6048
11318 Author: Ben Warren <biggerbadderben@gmail.com>
11319 Date:   Sat Jul 12 00:17:50 2008 -0700
11320
11321     Moved initialization of SKGE Ethernet driver to board code.
11322
11323     The only board using this driver is the SL8245 board.
11324     Removed initialization for the driver from net/eth.c
11325
11326     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11327
11328 commit 8379f42bc745eb9e4ca551a30fd2d0a63f740d75
11329 Author: Ben Warren <biggerbadderben@gmail.com>
11330 Date:   Sat Jul 12 00:08:45 2008 -0700
11331
11332     Moved conditional compilation to Makefile for SK98 Ethernet driver
11333
11334     Brute-force removal of #ifdefs.  Didn't touch the code.
11335     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11336
11337 commit 65d3d99c28dc363d15eaee78225ff643df499b97
11338 Author: Ben Warren <biggerbadderben@gmail.com>
11339 Date:   Fri Jul 11 23:42:19 2008 -0700
11340
11341     Moved initialization of ULI526X Ethernet driver to board code.
11342
11343     The only board using this driver is the Freescale MPC8610HPCD board.
11344     Removed initialization for the driver from net/eth.c
11345
11346     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11347
11348 commit 914947313a710f5dcf06beaf7f2aa24f1ebcce4f
11349 Author: Ben Warren <biggerbadderben@gmail.com>
11350 Date:   Fri Jul 11 23:15:28 2008 -0700
11351
11352     Moved initialization of Blackfin EMAC Ethernet controller to board_eth_init()
11353
11354     Added board_eth_init() function to bf537-stamp board.
11355     Removed initialization for the Blackin EMAC driver from net/eth.c
11356
11357     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11358
11359 commit fc363ce35408f348cacced68505f3747a53e3d7c
11360 Author: Ben Warren <biggerbadderben@gmail.com>
11361 Date:   Wed Jul 9 01:04:19 2008 -0700
11362
11363     Moved initialization of GRETH Ethernet driver to CPU directory
11364
11365     Added a cpu_eth_init() function to leon2/leon3 CPU directories and
11366     removed code from net/eth.c
11367
11368     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11369
11370 commit 86882b80771309bceb11c6accfd7f6f90ade8bfc
11371 Author: Ben Warren <biggerbadderben@gmail.com>
11372 Date:   Tue Aug 26 22:16:25 2008 -0700
11373
11374     Moved initialization of MCFFEC Ethernet driver to CPU directory
11375
11376     Added a cpu_eth_init() function to coldfire CPU directories and
11377     removed code from net/eth.c
11378
11379     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11380
11381 commit b31da88b9c160d80d42a59cbbb31e24f27184d5c
11382 Author: Ben Warren <biggerbadderben@gmail.com>
11383 Date:   Tue Aug 26 22:12:36 2008 -0700
11384
11385     Moved initialization of FSL_MCDMAFEC Ethernet driver to CPU directory
11386
11387     Added a cpu_eth_init() function to cpu/mcf547x_8x directory and
11388     removed code from net/eth.c
11389
11390     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11391
11392 commit b5710d9974f6f0f3ddb4e67d6cccc262ab37049e
11393 Author: Kumar Gala <galak@kernel.crashing.org>
11394 Date:   Tue Aug 26 15:01:38 2008 -0500
11395
11396     FSL DDR: Remove old SPD support from cpu/mpc86xx
11397
11398     All 86xx boards have been converted to the new code so we can
11399     remove the old SPD DDR setup code.
11400
11401     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11402
11403 commit 9bd4e5911b750837515466bc7449087698b88e0e
11404 Author: Kumar Gala <galak@kernel.crashing.org>
11405 Date:   Tue Aug 26 15:01:37 2008 -0500
11406
11407     FSL DDR: Convert SBC8641D to new DDR code.
11408
11409     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11410
11411 commit 39aa1a73483e1ac2bd56d5523abfc3970ee82c77
11412 Author: Jon Loeliger <jdl@freescale.com>
11413 Date:   Tue Aug 26 15:01:36 2008 -0500
11414
11415     FSL DDR: Convert MPC8610HPCD to new DDR code.
11416
11417     Signed-off-by: Jon Loeliger <jdl@freescale.com>
11418     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11419
11420 commit 6a8e5692933e8e6d6e5ba7e594f49dd6d4c3a263
11421 Author: Kumar Gala <galak@kernel.crashing.org>
11422 Date:   Tue Aug 26 15:01:35 2008 -0500
11423
11424     FSL DDR: Convert MPC8641HPCN to new DDR code.
11425
11426     Signed-off-by: Jon Loeliger <jdl@freescale.com>
11427     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11428
11429 commit 46ff4f1100ea64a01d21cc008ce85ac15eb1821f
11430 Author: Kumar Gala <galak@kernel.crashing.org>
11431 Date:   Tue Aug 26 15:01:34 2008 -0500
11432
11433     FSL DDR: Add 86xx specific register setting
11434
11435     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11436
11437 commit 233fdd502a6c227f476212b3097653ad48d7e254
11438 Author: Kumar Gala <galak@kernel.crashing.org>
11439 Date:   Tue Aug 26 15:01:32 2008 -0500
11440
11441     FSL DDR: Add DDR2 DIMM paramter support
11442
11443     Compute DIMM parameters based upon the SPD information.
11444
11445     Signed-off-by: James Yang <James.Yang@freescale.com>
11446     Signed-off-by: Jon Loeliger <jdl@freescale.com>
11447     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11448
11449 commit 05c05a2363a6ac11e0e405926034546ffad71fad
11450 Author: Kumar Gala <galak@kernel.crashing.org>
11451 Date:   Tue Aug 26 15:01:30 2008 -0500
11452
11453     FSL DDR: Add DDR1 DIMM paramter support
11454
11455     Compute DIMM parameters based upon the SPD information in spd.
11456
11457     Signed-off-by: James Yang <James.Yang@freescale.com>
11458     Signed-off-by: Jon Loeliger <jdl@freescale.com>
11459     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11460
11461 commit 58e5e9aff147e8c7e2bc1406bf9384f65f020ffa
11462 Author: Kumar Gala <galak@kernel.crashing.org>
11463 Date:   Tue Aug 26 15:01:29 2008 -0500
11464
11465     FSL DDR: Rewrite the FSL mpc8xxx DDR controller setup code.
11466
11467     The main purpose of this rewrite it to be able to share the same
11468     initialization code on all FSL PowerPC products that have DDR
11469     controllers.  (83xx, 85xx, 86xx).
11470
11471     The code is broken up into the following steps:
11472         GET_SPD
11473         COMPUTE_DIMM_PARMS
11474         COMPUTE_COMMON_PARMS
11475         GATHER_OPTS
11476         ASSIGN_ADDRESSES
11477         COMPUTE_REGS
11478         PROGRAM_REGS
11479
11480     This allows us to share more code an easily allow for board specific code
11481     overrides.
11482
11483     Additionally this code base adds support for >4G of DDR and provides a
11484     foundation for supporting interleaving on processors with more than one
11485     controller.
11486
11487     Signed-off-by: James Yang <James.Yang@freescale.com>
11488     Signed-off-by: Jon Loeliger <jdl@freescale.com>
11489     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
11490     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
11491     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11492
11493 commit f784e32b4bce0013983506b11af4b85b8ca3d36e
11494 Author: Kumar Gala <galak@kernel.crashing.org>
11495 Date:   Tue Aug 26 15:01:28 2008 -0500
11496
11497     FSL DDR: Provide a generic set_ddr_laws()
11498
11499     Provide a helper function that will setup the last available
11500     LAWs (upto 2) for DDR.  Useful for SPD/dyanmic DDR setting code.
11501
11502     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11503
11504 commit 0f2cbe3f5eddbdf3848265f35e4f714434929cff
11505 Author: James Yang <James.Yang@freescale.com>
11506 Date:   Tue Aug 26 15:01:27 2008 -0500
11507
11508     Add proper SPD definitions for DDR1/2/3
11509
11510     Also adds helper functions for DDR1/2 to verify the checksum.
11511
11512     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11513
11514 commit 285db74716c724ae8a0ff177878fd09a74428c7b
11515 Author: Wolfgang Denk <wd@denx.de>
11516 Date:   Wed Aug 27 01:02:48 2008 +0200
11517
11518     Update CHANGELOG
11519
11520     Signed-off-by: Wolfgang Denk <wd@denx.de>
11521
11522 commit adf22b66d8bf05bd46e098cf71e6dca29b30aa7b
11523 Author: Heiko Schocher <hs@denx.de>
11524 Date:   Tue Aug 19 10:08:49 2008 +0200
11525
11526     Add support for muas3001 board (MPC8270)
11527
11528     Signed-off-by: Heiko Schocher <hs@denx.de>
11529
11530 commit 322098bff32410d2a00031649b47c4ec90a66d9a
11531 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
11532 Date:   Tue Aug 19 08:31:18 2008 +0530
11533
11534     common/cmd_load.c cleanup - remove unused variables
11535
11536     - Remove unused global variable os_data_count.
11537     - Remove unused variable z.
11538
11539     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
11540
11541 commit 306620b762a4f9fa6678568ad2e8772dec145208
11542 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
11543 Date:   Mon Aug 18 13:35:27 2008 +0200
11544
11545     remove MVS1 board
11546
11547     MVS1 board has reached end-of-life and can be removed completely.
11548
11549     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
11550
11551 commit 40d7e99d374ba0a0a29cd1a8ba40d3b7c2c175c7
11552 Author: Kumar Gala <galak@kernel.crashing.org>
11553 Date:   Fri Aug 15 08:24:45 2008 -0500
11554
11555     bootm: refactor do_reset and os boot function args
11556
11557     There is no need for each OS specific function to call do_reset() we
11558     can just do it once in bootm. This means its feasible on an error for
11559     the OS boot function to return.
11560
11561     Also, remove passing in cmd_tbl_t as its not needed by the OS boot
11562     functions.  flag isn't currently used but might be in the future so
11563     we left it alone.
11564
11565     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11566
11567 commit 40afac22a9c602e55c501c800f1c064324711b56
11568 Author: Kumar Gala <galak@kernel.crashing.org>
11569 Date:   Fri Aug 15 08:24:44 2008 -0500
11570
11571     fdt: Added resize command
11572
11573     Resize the fdt to size + padding to 4k boundary
11574
11575     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11576
11577 commit 2a1a2cb6e2b87ee550e6f27b647d23331dfd5e1b
11578 Author: Kumar Gala <galak@kernel.crashing.org>
11579 Date:   Fri Aug 15 08:24:43 2008 -0500
11580
11581     fdt: refactor initrd related code
11582
11583     Created a new fdt_initrd() to deal with setting the initrd properties
11584     in the device tree and fixing up the mem reserve.  We can use this
11585     both in the choosen node handling and lets us remove some duplicated
11586     code when we fixup the initrd info in bootm on PPC.
11587
11588     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11589
11590 commit 3082d2348c8e13342f5fdd10e9b3f7408062dbf9
11591 Author: Kumar Gala <galak@kernel.crashing.org>
11592 Date:   Fri Aug 15 08:24:42 2008 -0500
11593
11594     fdt: refactor fdt resize code
11595
11596     Move the fdt resizing code out of ppc specific boot code and into
11597     common fdt support code.
11598
11599     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11600
11601 commit 396f635b8ff3ccbc38d75d5eda98444c6466810a
11602 Author: Kumar Gala <galak@kernel.crashing.org>
11603 Date:   Fri Aug 15 08:24:41 2008 -0500
11604
11605     bootm: refactor image detection and os load steps
11606
11607     Created a bootm_start() that handles the parsing and detection of all
11608     the images that will be used by the bootm command (OS, ramdisk, fdt).
11609     As part of this we now tract all the relevant image offsets in the
11610     bootm_headers_t struct. This will allow us to have all the needed
11611     state for future sub-commands and lets us reduce a bit of arch
11612     specific code on SPARC.
11613
11614     Created a bootm_load_os() that deals with decompression and loading
11615     the OS image.
11616
11617     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11618
11619 commit e906cfae08e8cc2447f59b1bc4c22ab9c3c286d2
11620 Author: Kumar Gala <galak@kernel.crashing.org>
11621 Date:   Fri Aug 15 08:24:40 2008 -0500
11622
11623     bootm: move lmb into the bootm_headers_t structure
11624
11625     To allow for persistent state between future bootm subcommands we
11626     need the lmb to exist in a global state.
11627     Moving it into the bootm_headers_t allows us to do that.
11628
11629     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11630
11631 commit 54f9c86691309b2f919f567f9255b8bcad2c7651
11632 Author: Kumar Gala <galak@kernel.crashing.org>
11633 Date:   Fri Aug 15 08:24:39 2008 -0500
11634
11635     bootm: Set working fdt address as part of the bootm flow
11636
11637     Set the fdt working address so "fdt FOO" commands can be used as part
11638     of the bootm flow.  Also set an the environment variable "fdtaddr"
11639     with the value.
11640
11641     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11642
11643 commit 06a09918f3903450313e2047a9cc258bf5872f46
11644 Author: Kumar Gala <galak@kernel.crashing.org>
11645 Date:   Fri Aug 15 08:24:38 2008 -0500
11646
11647     bootm: refactor fdt locating and relocation code
11648
11649     Move the code that handles finding a device tree blob and relocating
11650     it (if needed) into common code so all arch's have access to it.
11651
11652     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11653
11654 commit c4f9419c6b54958e0eddbcbc9e5a4a7b7ec99865
11655 Author: Kumar Gala <galak@kernel.crashing.org>
11656 Date:   Fri Aug 15 08:24:37 2008 -0500
11657
11658     bootm: refactor ramdisk locating code
11659
11660     Move determing if we have a ramdisk and where its located into the
11661     common code. Keep track of the ramdisk start and end in the
11662     bootm_headers_t image struct.
11663
11664     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11665
11666 commit c160a9544743e80e8889edb2275538e7764ce334
11667 Author: Kumar Gala <galak@kernel.crashing.org>
11668 Date:   Fri Aug 15 08:24:36 2008 -0500
11669
11670     bootm: refactor entry point code
11671
11672     Move entry point code out of each arch and into common code.
11673     Keep the entry point in the bootm_headers_t images struct.
11674
11675     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11676
11677 commit 20220d22b9f41446288588cd2e457e0077a18bed
11678 Author: Randy Vinson <rvinson@mvista.com>
11679 Date:   Wed Aug 13 11:44:57 2008 -0700
11680
11681     mpc7448hpc2: Fix PCI I/O space mapping.
11682
11683     PCI I/O space is currently mapped 1:1 at 0xFA000000. Linux requires
11684     PCI I/O space to start at 0 on the PCI bus. This patch maps PCI I/O
11685     space such that 0xFA000000 in the processor's address space maps to 0
11686     on the PCI I/O bus.
11687
11688     Signed-off-by Randy Vinson <rvinson@mvista.com>
11689     Acked-by: Roy Zang <tie-fei.zang@freescale.com>
11690
11691 commit b4e07520bbb5467ad72eb92a5c9177d2797b9e30
11692 Author: Guennadi Liakhovetski <lg@denx.de>
11693 Date:   Wed Aug 13 18:10:26 2008 +0200
11694
11695     i.MX31: Specify maintainers for i.MX31-based boards
11696
11697     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
11698     Signed-off-by: Wolfgang Denk <wd@denx.de>
11699
11700 commit 51e46e28fda4bbdf5149ac7f67d62fcc8df4da63
11701 Author: Wolfgang Denk <wd@denx.de>
11702 Date:   Tue Aug 26 15:01:28 2008 +0200
11703
11704     ADS5121: adjust image addresses in RAM and flash
11705
11706     Use the same mapping in flash as used by Linux
11707
11708     Signed-off-by: Wolfgang Denk <wd@denx.de>
11709
11710 commit 19f101412c16edee9fd55db4039e1d68a833b28b
11711 Author: Wolfgang Denk <wd@denx.de>
11712 Date:   Tue Aug 26 13:14:34 2008 +0200
11713
11714     cmd_mem.c: Fix help message alignment
11715
11716     Bug was introced by "Big white-space cleanup" (53677ef1)
11717
11718     Signed-off-by: Wolfgang Denk <wd@denx.de>
11719
11720 commit 1a9eeb78b825bfade31d7606a2fe3b9eca9e35be
11721 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
11722 Date:   Wed Aug 20 11:11:52 2008 +0200
11723
11724     change mvBL-M7 default env and move to vendor subdir
11725
11726     fix mvBL-M7 config and move to matrix_vision subdir
11727
11728     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
11729     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11730
11731 commit 002d27caf26e7eb913d474d3a91f67d56c8c31d5
11732 Author: Nick Spence <nick.spence@freescale.com>
11733 Date:   Fri Aug 22 23:52:40 2008 -0700
11734
11735     MPC83XX: Add miscellaneous registers and #defines to support MPC83xx family devices
11736
11737     This patch adds elements to the 83xx sysconf structure and #define values that are used
11738     by mpc83xx family devices.
11739
11740     Signed-off-by: Nick Spence <nick.spence@freescale.com>
11741     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11742
11743 commit 447ad5768abda669ac0e7f46fcdb62fbe828d637
11744 Author: Ira W. Snyder <iws@ovro.caltech.edu>
11745 Date:   Fri Aug 22 11:00:15 2008 -0700
11746
11747     MPC8349EMDS: Add PCI Agent (PCISLAVE) support
11748
11749     Add the ability for the MPC8349EMDS to run in PCI Agent mode, acting as a
11750     PCI card rather than a host computer.
11751
11752     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
11753     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11754
11755 commit 4ff9aea9d6b5602683a920951ef896996438af62
11756 Author: Ira W. Snyder <iws@ovro.caltech.edu>
11757 Date:   Fri Aug 22 11:00:14 2008 -0700
11758
11759     mpc83xx: add PCISLAVE support to 83XX_GENERIC_PCI setup code
11760
11761     This adds a helper function to unlock the PCI configuration bit, so that
11762     any extra PCI setup (such as outbound windows, etc.) can be done after
11763     using the 83XX_GENERIC_PCI code to set up the PCI bus.
11764
11765     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
11766     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11767
11768 commit 162338e1fcde231ca4d562e5ebd7859456731691
11769 Author: Ira W. Snyder <iws@ovro.caltech.edu>
11770 Date:   Fri Aug 22 11:00:13 2008 -0700
11771
11772     MPC8349EMDS: use 83XX_GENERIC_PCI setup code
11773
11774     Change the MPC8349EMDS board to use the generic PCI initialization code
11775     for the mpc83xx cpu.
11776
11777     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
11778     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11779
11780 commit f4e55a4941e8ba46bc06020b2747928adf8fdee7
11781 Author: Kim Phillips <kim.phillips@freescale.com>
11782 Date:   Mon Aug 25 14:53:09 2008 -0500
11783
11784     fix out of tree building
11785
11786     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11787
11788 commit a49d10cf027d059ee15c262010a05cdaec0961e1
11789 Author: Wolfgang Denk <wd@denx.de>
11790 Date:   Mon Aug 25 23:45:41 2008 +0200
11791
11792     Minor coding style cleanup, updte CHANGELOG
11793
11794     Signed-off-by: Wolfgang Denk <wd@denx.de>
11795
11796 commit 4d56e8dea670757c801a6a65531f02a8f981ce1f
11797 Author: Stefan Roese <sr@denx.de>
11798 Date:   Wed Aug 20 20:29:38 2008 +0200
11799
11800     RTC: Fix Makefile problem with COBJS-$(CONFIG_RTC_DS1307 || CONFIG_RTC_DS1338)
11801
11802     This "||" doesn't seem to work. Now using the idea suggest by Scott Wood
11803     to combine both config options into one line. This even allows defining
11804     both options and not generating the target object twice.
11805
11806     Signed-off-by: Stefan Roese <sr@denx.de>
11807
11808 commit 079edb913dbae147b50a488cf02e03f473fc5f28
11809 Author: Jens Gehrlein <sew_s@tqs.de>
11810 Date:   Fri Jul 4 16:50:05 2008 +0200
11811
11812     MX31: fix bit masks in function mx31_decode_pll()
11813
11814     Bits MPCTL[MFN] and MPCTL[MFD] were not fully covered.
11815
11816     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
11817
11818 commit e8f1207bbf2df6fb693ee1aa3329b2014c92e5e6
11819 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
11820 Date:   Mon Aug 25 11:11:34 2008 +0200
11821
11822     Correct ARM Versatile Timer Initialization
11823
11824      - According to ARM Dual-Timer Module (SP804) TRM (ARM DDI0271),
11825        -- Timer Value Register @ TIMER Base + 4 is Read-only.
11826        -- Prescale Value (Bits 3-2 of TIMER Control register)
11827         can only be one of 00,01,10. 11 is undefined.
11828        -- CFG_HZ for Versatile board is set to
11829         #define CFG_HZ          (1000000 / 256)
11830         So Prescale bits is set to indicate
11831         - 8 Stages of Prescale, Clock divided by 256
11832      - The Timer Control Register has one Undefined/Shouldn't Use Bit
11833        So we should do read/modify/write Operation
11834
11835     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
11836
11837 commit 535cfa4f3de86cf48d6c0af1daf33aebdca089f9
11838 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
11839 Date:   Mon Aug 25 11:30:29 2008 +0200
11840
11841     Add ARM AMBA PL031 RTC Support
11842
11843     Signed-off-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
11844
11845 commit e39411674669cc880e1ec4a8ca4794fb15c33a45
11846 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
11847 Date:   Tue Aug 19 16:21:03 2008 -0400
11848
11849     ARM DaVinci: Removed redundant NAND initialization code.
11850
11851     ARM DaVinci: Removed redundant NAND initialization code.
11852
11853     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
11854
11855 commit b3fb663b20d995ca41327db877ddb168279b3f62
11856 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
11857 Date:   Tue Aug 19 16:21:00 2008 -0400
11858
11859     ARM DaVinci: Fix compilation error with new MTD code.
11860
11861     ARM DaVinci: Fix compilation error with new MTD code.
11862
11863     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
11864
11865 commit 109c30fb8edea1a15d37a6ce787cd5faf33d8e43
11866 Author: Gerald Van Baren <vanbaren@cideas.com>
11867 Date:   Fri Aug 22 14:37:05 2008 -0400
11868
11869     Add note on dereferencing /aliases pointers
11870
11871     Replace the "must quote special characters" note with a hint on
11872     how to dereference /aliases pointers by omitting the leading "/".
11873     This feature was introduced by Kumar Gala as a libfdt enhancement
11874     in commit ed035708235332c3c117ee3bb1a426063f03cfcb.
11875
11876     Example:
11877
11878     => fdt print /aliases
11879     aliases {
11880             ethernet0 = "/qe@e0100000/ucc@2000";
11881             ethernet1 = "/qe@e0100000/ucc@3000";
11882             serial0 = "/soc8360@e0000000/serial@4500";
11883             serial1 = "/soc8360@e0000000/serial@4600";
11884             pci0 = "/pci@e0008500";
11885     };
11886     => fdt print ethernet0
11887     ucc@2000 {
11888             device_type = "network";
11889             compatible = "ucc_geth";
11890             cell-index = <0x1>;
11891             reg = <0x2000 0x200>;
11892             interrupts = <0x20>;
11893             interrupt-parent = <0x2>;
11894             local-mac-address = [00 00 00 00 00 00];
11895             rx-clock-name = "none";
11896             tx-clock-name = "clk9";
11897             phy-handle = <0x3>;
11898             phy-connection-type = "rgmii-id";
11899             pio-handle = <0x4>;
11900     };
11901
11902     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
11903
11904 commit feeca3f578b7f53c032ba203698751c982f8bf5a
11905 Author: Kumar Gala <galak@kernel.crashing.org>
11906 Date:   Thu Aug 14 08:28:19 2008 -0500
11907
11908     libfdt: Add support for using aliases in fdt_path_offset()
11909
11910     If the path doesn't start with '/' check to see if it matches some alias
11911     under "/aliases" and substitute the matching alias value in the path
11912     and retry the lookup.
11913
11914     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11915     Acked-by: David Gibson <david@gibson.dropbear.id.au>
11916     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
11917
11918 commit 0219399a4e3a8edb428e1924e1a03d58cccf8d8e
11919 Author: David Gibson <david@gibson.dropbear.id.au>
11920 Date:   Wed Aug 6 14:50:49 2008 +1000
11921
11922     libfdt: Implement fdt_get_property_namelen() and fdt_getprop_namelen()
11923
11924     As well as fdt_subnode_offset(), libfdt includes an
11925     fdt_subnode_offset_namelen() function that takes the subnode name to
11926     look up not as a NUL-terminated string, but as a string with an
11927     explicit length.  This can be useful when the caller has the name as
11928     part of a longer string, such as a full path.
11929
11930     However, we don't have corresponding 'namelen' versions for
11931     fdt_get_property() and fdt_getprop().  There are less obvious use
11932     cases for these variants on property names, but there are
11933     circumstances where they can be useful e.g. looking up property names
11934     which need to be parsed from a longer string buffer such as user input
11935     or a configuration file, or looking up an alias in a path with
11936     IEEE1275 style aliases.
11937
11938     So, since it's very easy to implement such variants, this patch does
11939     so.  The original NUL-terminated variants are, of course, implemented
11940     in terms of the namelen versions.
11941
11942     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
11943
11944 commit f171746f701ea58bf6a53e835b53d2aaebee0d81
11945 Author: David Gibson <david@gibson.dropbear.id.au>
11946 Date:   Tue Jul 29 14:51:22 2008 +1000
11947
11948     libfdt: Forgot one function when cleaning the namespace
11949
11950     In commit b6d80a20fc293f3b995c3ce1a6744a5574192125, we renamed all
11951     libfdt functions to be prefixed with fdt_ or _fdt_ to minimise the
11952     chance of collisions with things from whatever package libfdt is
11953     embedded in, pulled into the libfdt build via that environment's
11954     libfdt_env.h.
11955
11956     Except... I missed one.  This patch applies the same treatment to
11957     _stringlist_contains().  While we're at it, also make it static since
11958     it's only used in the same file.
11959
11960     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
11961
11962 commit 46390da15411351fc3b498bd8c1615f78fe80df0
11963 Author: Wolfram Sang <w.sang@pengutronix.de>
11964 Date:   Wed Jul 9 11:22:44 2008 +0200
11965
11966     libfdt: Improve documentation in libfdt.h
11967
11968     Fix a few typos and mistakes.
11969
11970     Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
11971     Acked-by: David Gibson <david@gibson.dropbear.id.au>
11972
11973 commit fc7758ee4f5782878f2e96876b7bc56cfee0ac66
11974 Author: David Gibson <david@gibson.dropbear.id.au>
11975 Date:   Wed Jul 9 14:10:24 2008 +1000
11976
11977     libfdt: Increase namespace-pollution paranoia
11978
11979     libfdt is supposed to easy to embed in projects all and sundry.
11980     Often, it won't be practical to separate the embedded libfdt's
11981     namespace from that of the surrounding project.  Which means there can
11982     be namespace conflicts between even libfdt's internal/static functions
11983     and functions or macros coming from the surrounding project's headers
11984     via libfdt_env.h.
11985
11986     This patch, therefore, renames a bunch of libfdt internal functions
11987     and macros and makes a few other chances to reduce the chances of
11988     namespace collisions with embedding projects.  Specifically:
11989         - Internal functions (even static ones) are now named _fdt_*()
11990
11991         - The type and (static) global for the error table in
11992               fdt_strerror() gain an fdt_ prefix
11993
11994         - The unused macro PALIGN is removed
11995
11996         - The memeq and streq macros are removed and open-coded in the
11997               users (they were only used once each)
11998
11999         - Other macros gain an FDT_ prefix
12000
12001         - To save some of the bulk from the previous change, an
12002               FDT_TAGALIGN() macro is introduced, where FDT_TAGALIGN(x) ==
12003               FDT_ALIGN(x, FDT_TAGSIZE)
12004
12005     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
12006
12007 commit c66830263af19831f2b7db307f79d1943febf7f9
12008 Author: David Gibson <david@gibson.dropbear.id.au>
12009 Date:   Mon Jul 7 10:14:15 2008 +1000
12010
12011     dtc: Enable and fix -Wcast-qual warnings
12012
12013     Enabling -Wcast-qual warnings in dtc shows up a number of places where
12014     we are incorrectly discarding a const qualification.  There are also
12015     some places where we are intentionally discarding the 'const', and we
12016     need an ugly cast through uintptr_t to suppress the warning.  However,
12017     most of these are pretty well isolated with the *_w() functions.  So
12018     in the interests of maximum safety with const qualifications, this
12019     patch enables the warnings and fixes the existing complaints.
12020
12021     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
12022     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
12023
12024 commit ef4e8ce1beb5b93aedda5a4c1b90bfd989c6791e
12025 Author: David Gibson <david@gibson.dropbear.id.au>
12026 Date:   Mon Jul 7 10:10:48 2008 +1000
12027
12028     dtc: Enable and fix -Wpointer-arith warnings
12029
12030     This patch turns on the -Wpointer-arith option in the dtc Makefile,
12031     and fixes the resulting warnings due to using (void *) in pointer
12032     arithmetic.  While convenient, pointer arithmetic on void * is not
12033     portable, so it's better that we avoid it, particularly in libfdt.
12034
12035     Also add necessary definition of uintptr_t needed by David Gibson's
12036     changeset "dtc: Enable and fix -Wpointer-arith warnings" (the definition
12037     comes from stdint.h, which u-boot doesn't have). -- gvb
12038
12039     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
12040     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
12041
12042 commit 5d4b3d2b31e58fcb2d4bd10af762f5ff41b229fd
12043 Author: Tirumala R Marri <tmarri@amcc.com>
12044 Date:   Thu Aug 21 21:54:53 2008 -0700
12045
12046     ppc4xx: AMCC PPC460GT/EX PCI-E de-emphasis adjustment fix
12047
12048     During recent PCI-E tests it has been found that current
12049     driverl level and de-emphasis values are not set correctly.
12050     After sweeping throgh all de-ephasis values, it was found that
12051     0x130 is a right value. Where 0x13 is driver level and 0 is
12052     de-emphasis.
12053
12054     Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
12055     Signed-off-by: Stefan Roese <sr@denx.de>
12056
12057 commit 0bb86d823b6c150c7ee17de0cfca9ffccc16463b
12058 Author: Remy Bohmer <linux@bohmer.net>
12059 Date:   Wed Aug 20 20:46:56 2008 +0200
12060
12061     Make the YAFFS filesystem work
12062
12063     Recently the YAFFS filesystem support has been added to U-boot.
12064     However, just enabling CONFIG_YAFFS2 is not enough to get it working.
12065
12066     ymount will generate an exception (when dereferencing mtd->readoob()), because
12067     the genericDevice is a null pointer. Further, a lot of logging is produced
12068     while using YAFFS fs, so logging should also be disabled.
12069     Both issues are solved by this patch.
12070
12071     With this patch and CONFIG_YAFFS2 enabled, I get a readable filesystem
12072     in U-boot, as well as in Linux.
12073
12074     Tested on a Atmel AT91SAM9261EK board.
12075
12076     Signed-off-by: Remy Bohmer <linux@bohmer.net>
12077     Acked-by: William Juul <william.juul@tandberg.com>
12078     Signed-off-by: Scott Wood <scottwood@freescale.com>
12079
12080 commit bfd7f38614e21f745b6d6845fcc616ebc5e4d36f
12081 Author: Kyungmin Park <kmpark@infradead.org>
12082 Date:   Tue Aug 19 08:42:53 2008 +0900
12083
12084     Fix OneNAND read_oob/write_oob functions compatability
12085
12086     Also sync with kernel OneNAND codes
12087
12088     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
12089     Signed-off-by: Scott Wood <scottwood@freescale.com>
12090
12091 commit 8d765456c1d33f2010d2717ee58de7647fdc6346
12092 Author: Scott Wood <scottwood@freescale.com>
12093 Date:   Mon Aug 18 17:11:20 2008 -0500
12094
12095     NAND: Remove delay from nand_boot_fsl_elbc.c.
12096
12097     It was for debugging purposes, and shouldn't have been left in.
12098
12099     Signed-off-by: Scott Wood <scottwood@freescale.com>
12100
12101 commit f556483734126793522fb7a8cf36af90da78f084
12102 Author: Stefan Roese <sr@denx.de>
12103 Date:   Thu Aug 21 11:05:03 2008 +0200
12104
12105     ppc4xx: Cleanup of "ppc4xx: Optimize PLB4 Arbiter..." patch
12106
12107     This patch fixes some minor issues introduced with the patch:
12108     ppc4xx: Optimize PLB4 Arbiter... from Prodyut Hazarika:
12109
12110     - Rework memory-queue and PLB arbiter optimization code, that the
12111       local variable is not needed anymore. This removes one #ifdef.
12112     - Use consistant spacing in ppc4xx.h header (XXX + 0x01 instead
12113       of XXX+ 0x01). This was not introduced by Prodyut, just a
12114       copy-paste problem.
12115
12116     Signed-off-by: Stefan Roese <sr@denx.de>
12117
12118 commit 079589bcfb24ba11068460276a3cc9549ab5346f
12119 Author: Prodyut  Hazarika <phazarika@amcc.com>
12120 Date:   Wed Aug 20 09:38:51 2008 -0700
12121
12122     ppc4xx: Optimize PLB4 Arbiter and Memory Queue settings for PPC440SP/SPe,
12123         PPC405EX and PPC460EX/GT/SX
12124
12125     - Read pipeline depth set to 4 for PPC440SP/SPE, PPC405EX, PPC460EX/GT/SX
12126       processors
12127     - Moved PLB4 Arbiter register definitions to ppc4xx.h since it is shared
12128       across processors (405 and 440/460)
12129     - Optimize Memory Queue settings for PPC440SP/SPE and PPC460EX/GT/SX
12130       processors
12131     - Add register bit definitions for Memory Queue Configuration registers
12132
12133     Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
12134     Signed-off-by: Stefan Roese <sr@denx.de>
12135
12136 commit ba37aa03287c5483c61c0a3e320c8888bee0143a
12137 Author: Kumar Gala <galak@kernel.crashing.org>
12138 Date:   Tue Aug 19 15:41:18 2008 -0500
12139
12140     fdt: rework fdt_fixup_ethernet() to use env instead of bd_t
12141
12142     Move to using the environment variables 'ethaddr', 'eth1addr', etc..
12143     instead of bd->bi_enetaddr, bi_enet1addr, etc.
12144
12145     This makes the code a bit more flexible to the number of ethernet
12146     interfaces.
12147
12148     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12149
12150 commit 4cacf7c64609839f809e2f9c45873f1d65861703
12151 Author: Stefan Roese <sr@denx.de>
12152 Date:   Tue Aug 19 14:57:55 2008 +0200
12153
12154     hush: Fix printf debug macro in hush.c so that it usable in U-Boot
12155
12156     This patch changes the debug_printf() marco for U-Boot in hush.c and
12157     moves the definition of DEBUG_SHELL to a place that is actually compiled
12158     under U-Boot.
12159
12160     Signed-off-by: Stefan Roese <sr@denx.de>
12161
12162 commit 8f2b457ef26a44d9e5fd7d6b16c394e5c3a71ca2
12163 Author: Heiko Schocher <hs@denx.de>
12164 Date:   Tue Aug 19 09:57:41 2008 +0200
12165
12166     cfi: rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
12167
12168     Commit      00b1883a4cac59d97cd297b1a3a398db85982865
12169     missed a few boards:
12170         include/configs/M5253DEMO.h
12171         include/configs/ml507.h
12172         include/configs/redwood.h
12173
12174     This patch fixes this.
12175
12176     Signed-off-by: Heiko Schocher <hs@denx.de>
12177
12178 commit 0768b7a872964085eece8d5e9fec9175e9deb161
12179 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12180 Date:   Mon Aug 18 13:41:27 2008 +0200
12181
12182     Consolidate strmhz() implementation
12183
12184     ARM, i386, m68k and ppc all have identical implementations of strmhz().
12185     Other architectures don't provide this function at all.
12186
12187     This patch moves strmhz() into lib_generic, reducing code duplication
12188     and providing a more unified API across architectures.
12189
12190     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12191
12192 commit a928d0df211f1d829308d335d19be3ca42558dfc
12193 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
12194 Date:   Mon Aug 18 12:02:51 2008 +0200
12195
12196     fix mvbc_p board build warnings
12197
12198     fix build warnings @ mvBC-P board by using correct types, i.e. change
12199     out_be32 to out_be16 and out_8 accordingly.
12200
12201     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
12202
12203 commit a958b663d27f616bd1dfb720d1b476d1ecaaa569
12204 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12205 Date:   Sat Aug 16 18:54:27 2008 +0200
12206
12207     Makefile: fix posix support on find
12208
12209     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12210
12211 commit bef92e215d945cc574399c1a1b00a3a76d35aa03
12212 Author: Axel Beierlein <belatronix@web.de>
12213 Date:   Sat Aug 16 00:30:48 2008 +0200
12214
12215     Adding bootlimit/bootcount feature for MPC5XXX on TQM5200 Boards
12216
12217     Tested with TQM5200S on STK52XX.200 Board
12218
12219     Signed-off-by: Axel Beierlein <belatronix@web.de>
12220
12221 commit 0800707b6d5041a840a65d556032c15c584b55f8
12222 Author: Peter Tyser <ptyser@xes-inc.com>
12223 Date:   Fri Aug 15 14:36:32 2008 -0500
12224
12225     mod_i2c_mem() bugfix
12226
12227     The last used chip, address, and address length were not being
12228     stored for the imm and imn commands.
12229
12230     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12231
12232 commit 4afbef967275b2f636abae86f91b81becee7ad03
12233 Author: Steven A. Falco <sfalco@harris.com>
12234 Date:   Fri Aug 15 15:37:31 2008 -0400
12235
12236     Fix typo in spelling of ATAPI.
12237
12238     Correct a small spelling mistake.
12239
12240     Signed-off-by: Steven A. Falco <sfalco@harris.com>
12241
12242 commit 36c2d3062ecc6ab85f8e237180eb134464c48418
12243 Author: Steven A. Falco <sfalco@harris.com>
12244 Date:   Fri Aug 15 15:34:10 2008 -0400
12245
12246     Add a hook to allow board-specific PIO mode setting.
12247
12248     This patch adds a hook whereby a board-specific routine can be called to
12249     configure hardware for a PIO mode.  The prototype for the board-specific
12250     routine is:
12251
12252         int inline ide_set_piomode(int pio_mode)
12253
12254     ide_set_piomode should be prepared to configure hardware for a pio_mode
12255     between 0 and 6, inclusive.  It should return 0 on success or 1 on failure.
12256
12257     Signed-off-by: Steven A. Falco <sfalco@harris.com>
12258
12259 commit 9571b84cb1423876f1153081b9e6a51d90fbcdc4
12260 Author: Steven A. Falco <sfalco@harris.com>
12261 Date:   Fri Aug 15 15:29:12 2008 -0400
12262
12263     Replace enums in ata.h with an include of libata.h
12264
12265     This patch removes some enums from ata.h and replaces them with an
12266     include of libata.h.  This way, we eliminate duplicated code, and
12267     prevent errors whereby the different versions could be out of sync.
12268
12269     Signed-off-by: Steven A. Falco <sfalco@harris.com>
12270
12271 commit 0de0afbca865ecf482b4d2b635236746def8518f
12272 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12273 Date:   Fri Aug 15 18:32:41 2008 +0200
12274
12275     coldfire: fix CFI drivers activation with new macro
12276
12277     rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
12278
12279     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12280
12281 commit 7dbc38ad915f4ae67f4cd1818b7ac8fed368aaa9
12282 Author: Kumar Gala <galak@kernel.crashing.org>
12283 Date:   Fri Aug 15 08:24:35 2008 -0500
12284
12285     fdt: fdt addr w/o any args reports back the current working address
12286
12287     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12288
12289 commit f953d99fd528a496b400a706b511eaf8e3ea66af
12290 Author: Kumar Gala <galak@kernel.crashing.org>
12291 Date:   Fri Aug 15 08:24:34 2008 -0500
12292
12293     fdt: added the ability to set initrd start/end via chosen command
12294
12295     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12296
12297 commit ffa4bafacaef67058463b3d7d0099ced57569dd2
12298 Author: Kumar Gala <galak@kernel.crashing.org>
12299 Date:   Fri Aug 15 08:24:33 2008 -0500
12300
12301     Add command to enable/disable interrupts
12302
12303     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12304
12305 commit 9e8e63cce69556aef10b58bcbc56d324f570ec3a
12306 Author: Nick Spence <nick.spence@freescale.com>
12307 Date:   Tue Aug 19 22:21:16 2008 -0700
12308
12309     CFI: Add CFI_CMDSET_INTEL_EXTENDED to fix flash_real_protect()
12310
12311     This patch fixes a missing vendor code in the flash_real_protect() function.
12312
12313     Signed-off-by: Nick Spence <nick.spence@freescale.com>
12314     Signed-off-by: Stefan Roese <sr@denx.de>
12315
12316 commit 4e00acded2e6a8d663e12690a0f0f08f5bec5a58
12317 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12318 Date:   Tue Aug 19 16:53:39 2008 +0000
12319
12320     CFI: Fix AMD Legacy sector protect
12321
12322     New implement sector lock and unlock or softlock commands
12323     do not exist in AMD legacy flash. Thus, causing issue
12324     when erasing AMD legacy flash (such as lv040)
12325
12326     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12327     Signed-off-by: Stefan Roese <sr@denx.de>
12328
12329 commit 492671404140f09d5b21b3d2ce4e362c0692c069
12330 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12331 Date:   Wed Aug 20 09:40:16 2008 +0200
12332
12333     hammerhead/mimc200: Use CONFIG_FLASH_CFI_DRIVER
12334
12335     CFG_FLASH_CFI_DRIVER was recently renamed CONFIG_FLASH_CFI_DRIVER.
12336
12337     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12338
12339 commit 33eac2b3d946fc998a09245dfe54d017079b9056
12340 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12341 Date:   Wed Aug 20 09:28:36 2008 +0200
12342
12343     hammerhead: Add missing printf parameter to CONFIG_AUTOBOOT_PROMPT
12344
12345     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12346
12347 commit 25da0b84195fdda89a943b2d25757db5afeef5b8
12348 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12349 Date:   Wed Aug 20 09:27:37 2008 +0200
12350
12351     favr-32-ezkit: Fix printf format warnings
12352
12353     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12354
12355 commit 462da25e89b0b58bf4c66346c1fcb3087c61b4b8
12356 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12357 Date:   Fri Aug 15 12:04:25 2008 +0200
12358
12359     MAINTAINERS: Sort avr32 section alphabetically
12360
12361     The rest of the MAINTAINERS file appears to be sorted
12362     almost-alphabetically, but entries for the newly added AVR32 boards were
12363     added somewhat randomly. This patch sorts the list alphabetically again.
12364
12365     Also update my e-mail address. The old one still works, but it may not
12366     work forever.
12367
12368     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12369
12370 commit 13b50fe3bc065c48911fa373231421280855a9d6
12371 Author: Mark Jackson <mpfj@mimc.co.uk>
12372 Date:   Wed Jul 30 13:07:27 2008 +0100
12373
12374     avr32: Add MIMC200 board
12375
12376     The MIMC200 board is based on Atmel's NGW100 dev kit, but with an extra
12377     8MByte FLASH and 128KByte FRAM.
12378
12379     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
12380     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12381
12382 commit db70b84329315c52f6ec77f5ae5ca1afe970a9bb
12383 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
12384 Date:   Wed Jul 9 21:07:34 2008 +0900
12385
12386     rtl8169: add support for RTL8110SCL
12387
12388     This patch fixes a problem that RTL8110SCL started transfer
12389     with an incorrect memory address.
12390
12391     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
12392     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
12393
12394 commit 943b825bf15e6a28ac8328e0f6489478bceef1ea
12395 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12396 Date:   Wed Jun 25 15:48:52 2008 -0500
12397
12398     Fix dm9000 receive status and len little endian issue
12399
12400     The received status and len was in little endian
12401     format and caused the ethernet unable to proceed
12402     further. Add __le16_to_cpu() in dm9000_rx_status_8/16/32bit().
12403
12404     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12405     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
12406
12407 commit fcd69a1a57fb2af4d26201422095a4be9f36963e
12408 Author: Kumar Gala <galak@kernel.crashing.org>
12409 Date:   Fri Aug 15 08:24:32 2008 -0500
12410
12411     Clean up usage of icache_disable/dcache_disable
12412
12413     There is no point in disabling the icache on 7xx/74xx/86xx parts and not
12414     also flushing the icache.  All callers of invalidate_l1_instruction_cache()
12415     call icache_disable() right after.  Make it so icache_disable() calls
12416     invalidate_l1_instruction_cache() for us.
12417
12418     Also, dcache_disable() already calls dcache_flush() so there is no point
12419     in the explicit calls of dcache_flush().
12420
12421     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12422
12423 commit a15b07104ca7bbb7093c9009c9ae1b58b4202d13
12424 Author: Kumar Gala <galak@kernel.crashing.org>
12425 Date:   Fri Aug 15 08:24:31 2008 -0500
12426
12427     Update linux bootm to support ePAPR client interface
12428
12429     The ePAPR spec has some subtle differences from the current device
12430     tree based boot interface to the powerpc linux kernel. The powerpc
12431     linux kernel currently ignores the differences that ePAPR specifies.
12432
12433     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12434
12435 commit b734e5556a239b3be5f9693b2f4b4b739683ec16
12436 Author: Wolfgang Denk <wd@denx.de>
12437 Date:   Mon Aug 18 23:50:20 2008 +0200
12438
12439     Minor code cleanup: keep lists sorted.
12440
12441     Signed-off-by: Wolfgang Denk <wd@denx.de>
12442
12443 commit d0039d4ed275e6ca09fb417895024ad02be118c4
12444 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12445 Date:   Wed Jul 23 19:10:14 2008 +0200
12446
12447     Add support for ADT7460 I2C monitor chip
12448
12449     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12450
12451 commit eb59ea45ab77c14b090ea857d9ea9f902f40db0b
12452 Author: Michal Simek <monstr@monstr.eu>
12453 Date:   Mon Jul 14 19:45:45 2008 +0200
12454
12455     video: Clean drivers/video/Makefile
12456
12457     Signed-off-by: Michal Simek <monstr@monstr.eu>
12458
12459 commit 871c18dd301752270e1f74328c846c3104be1e2e
12460 Author: Michal Simek <monstr@monstr.eu>
12461 Date:   Mon Jul 14 19:45:37 2008 +0200
12462
12463     rtc: Clean drivers/rtc/Makefile
12464
12465     Signed-off-by: Michal Simek <monstr@monstr.eu>
12466
12467 commit a4a549b4b53adf40a0d3882cc30ac812a8f847c5
12468 Author: Michal Simek <monstr@monstr.eu>
12469 Date:   Mon Jul 14 19:45:35 2008 +0200
12470
12471     i2c: Clean drivers/i2c/ Makefile
12472
12473     Signed-off-by: Michal Simek <monstr@monstr.eu>
12474
12475 commit 0a823aa2a8a8c0685e73900f387d602d7edafc0e
12476 Author: Harald Welte <laforge@openmoko.org>
12477 Date:   Wed Jul 9 22:30:30 2008 +0800
12478
12479     Add 'license' command to U-Boot command line
12480
12481     The 'license' command includes the U-Boot license (GPLv2) into the
12482     actual bootloader binary. The license text can be shown interactively
12483     at the U-Boot commandline.
12484
12485     For products where the commandline can actually be accessed by the
12486     end user, this helps to prevent inadvertent GPL violations, since the
12487     GPLv2 license text can no longer be 'forgotten' to be included into
12488     the product.
12489
12490     The 'license' command can be enabled by CONFIG_CMD_LICENSE.
12491
12492     Signed-off-by: Harald Welte <laforge@openmoko.org>
12493
12494 commit fe2ce5500ebf43d79d227190bd2370232d5b113d
12495 Author: Harald Welte <laforge@gnumonks.org>
12496 Date:   Sun Jul 6 15:56:38 2008 +0800
12497
12498     add 'unzip' command to u-boot commandline
12499
12500     [PATCH] add new 'unzip' command to u-boot commandline
12501
12502     common/cmd_mem.c: new command "unzip srcaddr dstaddr [dstsize]" to unzip from
12503     memory to memory, and option CONFIG_CMD_UNZIP to enable it
12504
12505     Signed-off-by: Werner Almesberger <werner@openmoko.org>
12506     Signed-off-by: Harald Welte <laforge@openmoko.org>
12507
12508 commit 07efc9e321619c3dec213310c32e011aa6f02783
12509 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12510 Date:   Wed Aug 6 19:37:17 2008 -0500
12511
12512     Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase
12513
12514     The CFG_ENV_SIZE is not suitable used for SPI flash erase
12515     sector size if CFG_ENV_SIZE is less than CFG_ENV_SECT_SIZE.
12516     Add condition check if CFG_ENV_SIZE is larger than
12517     CFG_ENV_SECT_SIZE, calculate the right number of sectors for
12518     erasing.
12519
12520     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12521
12522 commit 4cb4e654cafabaa1ac180d37b00c8f6095dae9c9
12523 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12524 Date:   Mon Aug 11 15:54:25 2008 +0000
12525
12526     ColdFire: Multiple fixes for M5282EVB
12527
12528     Incorrect CFG_HZ value, change 1000000 to 1000.
12529     Rename #waring to #warning. RAMBAR1 uses twice
12530     in start.S, rename the later to FLASHBAR. Insert
12531     nop for DRAM setup. And, env_offset in linker file.
12532
12533     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12534
12535 commit 10db3a17a278dd3a27668b31cb32cdd1476e9513
12536 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12537 Date:   Mon Aug 11 15:26:43 2008 +0000
12538
12539     ColdFire: Move m5282evb from board to board/freescale
12540
12541     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12542
12543 commit 56df091d391f74bbf2dc2f7931f9f3c8f23529e4
12544 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12545 Date:   Mon Aug 11 15:25:07 2008 +0000
12546
12547     ColdFire: Move m5272c3 from board to board/freescale
12548
12549     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12550
12551 commit 659e9bad629a480f606b286d5703aef7159edf98
12552 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12553 Date:   Mon Aug 11 15:23:16 2008 +0000
12554
12555     ColdFire: Move m5271evb from board to board/freescale
12556
12557     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12558
12559 commit 05316f8ece8206339a208ec052f039cd0f7ca922
12560 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12561 Date:   Mon Aug 11 13:41:49 2008 +0000
12562
12563     ColdFire: Add M54451EVB platform support for MCF5445x
12564
12565     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12566
12567 commit 922cd7515597e9a2c07d68e2a6240b0b7b0f0136
12568 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12569 Date:   Wed Aug 6 19:14:08 2008 -0500
12570
12571     ColdFire: Add Serial Flash support for M54455EVB
12572
12573     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12574
12575 commit 9f751551456828b2d0ff417f10959fb0c7110bd0
12576 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12577 Date:   Wed Jul 23 20:38:53 2008 -0500
12578
12579     ColdFire: Implement SBF feature for M5445EVB
12580
12581     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12582
12583 commit a7323bba229203aae2604afde131ab47bad4eadc
12584 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12585 Date:   Wed Jul 23 17:53:36 2008 -0500
12586
12587     ColdFire: Add SSPI feature for MCF5445x
12588
12589     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12590
12591 commit b2d022d1ac3f59bffa9cec249341e77aea168abc
12592 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12593 Date:   Wed Jul 23 17:37:10 2008 -0500
12594
12595     ColdFire: Use CFI Flash driver for M54455EVB
12596
12597     Remove non-common flash driver in
12598     board/freescale/m54455evb/flash.c. The non-cfi flash will
12599     use CONFIG_FLASH_CFI_LEGACY to configure the flash
12600     attribute.
12601
12602     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12603
12604 commit 6d33c6acfa35b1144d46ffbff7e29ee7969290d0
12605 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12606 Date:   Wed Jul 23 17:11:47 2008 -0500
12607
12608     ColdFire: Add M5253DEMO platform support for MCF5253
12609
12610     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12611
12612 commit 80ba61fd82569af40e04d4a089257b81881884f2
12613 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12614 Date:   Wed Aug 6 14:17:09 2008 -0500
12615
12616     ColdFire: Raise M5253EVBE uart baudrate to 115200 bps
12617
12618     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12619
12620 commit d361307e73ce1f6fc68760123f37d4876f851f3e
12621 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12622 Date:   Wed Aug 6 14:11:36 2008 -0500
12623
12624     ColdFire: Fix M5253EVB dram bring up issue
12625
12626     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12627
12628 commit 4b0708093e15b412296328bf81325cf9b69fe512
12629 Author: Wolfgang Denk <wd@denx.de>
12630 Date:   Thu Aug 14 14:41:06 2008 +0200
12631
12632     Coding Style cleanup, update CHANGELOG
12633
12634     Signed-off-by: Wolfgang Denk <wd@denx.de>
12635
12636 commit 68cf19aae48f2969ec70669604d0d776f02c8bc4
12637 Author: Scott Wood <scottwood@freescale.com>
12638 Date:   Wed Aug 13 18:24:05 2008 -0500
12639
12640     socrates: Update NAND driver to new API.
12641
12642     Also, fix some minor formatting issues, and simplify the handling of
12643     "state" for writes.
12644
12645     Signed-off-by: Scott Wood <scottwood@freescale.com>
12646
12647 commit ba22d10f39eaeedd035e8265616e31ff88e314d5
12648 Author: Scott Wood <scottwood@freescale.com>
12649 Date:   Wed Aug 13 18:03:40 2008 -0500
12650
12651     quad100hd: Update NAND driver to new API.
12652
12653     Signed-off-by: Scott Wood <scottwood@freescale.com>
12654
12655 commit f64cb652a8a84c5c34d0afcbd7ffef886aa1d838
12656 Author: Scott Wood <scottwood@freescale.com>
12657 Date:   Wed Aug 13 17:53:48 2008 -0500
12658
12659     m5373evb: Update NAND driver to new API.
12660
12661     Signed-off-by: Scott Wood <scottwood@freescale.com>
12662
12663 commit 1a23a197c8722b805f40895544bbdb1a648c1c82
12664 Author: Scott Wood <scottwood@freescale.com>
12665 Date:   Wed Aug 13 17:04:30 2008 -0500
12666
12667     s3c24x0: Update NAND driver to new API.
12668
12669     Signed-off-by: Scott Wood <scottwood@freescale.com>
12670
12671 commit aa5f75f20db8a7103fad9c34d6f1193e10d1890f
12672 Author: Scott Wood <scottwood@freescale.com>
12673 Date:   Wed Aug 13 15:56:00 2008 -0500
12674
12675     at91: Update board NAND drivers to current API.
12676
12677     Signed-off-by: Scott Wood <scottwood@freescale.com>
12678
12679 commit d438d50848e9425286e5fb0493e0affb5a0b1e1b
12680 Author: Kyungmin Park <kmpark@infradead.org>
12681 Date:   Wed Aug 13 09:11:02 2008 +0900
12682
12683     Fix OneNAND build break
12684
12685     Since page size field is changed from oobblock to writesize. But OneNAND is not updated.
12686     - fix bufferram management at erase operation
12687     This patch includes the NAND/OneNAND state filed too.
12688
12689     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
12690     Signed-off-by: Scott Wood <scottwood@freescale.com>
12691
12692 commit 9483df6408c25f16060432de3868901e352e23bc
12693 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12694 Date:   Wed Aug 13 01:40:43 2008 +0200
12695
12696     drivers/mtd/nand_legacy: Move conditional compilation to Makefile
12697
12698     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12699
12700 commit cc4a0ceeac5462106172d0cc9d9d542233aa3ab2
12701 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12702 Date:   Wed Aug 13 01:40:43 2008 +0200
12703
12704     drivers/mtd/nand: Move conditional compilation to Makefile
12705
12706     rename CFG_NAND_LEGACY to CONFIG_NAND_LEGACY
12707
12708     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12709
12710 commit 4fb09b81920e5dfdfc4576883186733f0bd6059c
12711 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12712 Date:   Wed Aug 13 01:40:42 2008 +0200
12713
12714     drivers/mtd/onenand: Move conditional compilation to Makefile
12715
12716     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12717
12718 commit 00b1883a4cac59d97cd297b1a3a398db85982865
12719 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12720 Date:   Wed Aug 13 01:40:42 2008 +0200
12721
12722     drivers/mtd: Move conditional compilation to Makefile
12723
12724     rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
12725
12726     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12727
12728 commit 7ba44a5521cdb7fa1c72864025cde1e21a6f6921
12729 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12730 Date:   Wed Aug 13 01:40:41 2008 +0200
12731
12732     drivers/qe: Move conditional compilation to Makefile
12733
12734     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12735
12736 commit ab6878c7bc68a7b5e5b731655bdc13221bbfc493
12737 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12738 Date:   Wed Aug 13 01:40:40 2008 +0200
12739
12740     drivers/pci: Move conditional compilation to Makefile
12741
12742     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12743
12744 commit 55d6d2d39fe3fe87802e399aa17539368b495d2e
12745 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12746 Date:   Wed Aug 13 01:40:40 2008 +0200
12747
12748     drivers/misc: Move conditional compilation to Makefile
12749
12750     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12751
12752 commit 65e41ea0548b86e3d7892defac8e4dc1ea70aed1
12753 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12754 Date:   Wed Aug 13 01:40:40 2008 +0200
12755
12756     drivers/input: Move conditional compilation to Makefile
12757
12758     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12759
12760 commit 88f57e093114a44aa9a858d52b099bcc52034a8c
12761 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12762 Date:   Wed Aug 13 01:40:39 2008 +0200
12763
12764     drivers/dma: Move conditional compilation to Makefile
12765
12766     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12767
12768 commit 1a02806c4b1b4a09ad4e95d3aac3783889e5f8d7
12769 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12770 Date:   Wed Aug 13 01:40:39 2008 +0200
12771
12772     drivers/block: Move conditional compilation to Makefile
12773
12774     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12775
12776 commit 1a6ffbfaf4353bec379ed1fcfc54b6f1a30af09a
12777 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12778 Date:   Wed Aug 13 01:40:39 2008 +0200
12779
12780     serial: move CFG_NS9750_UART to CONFIG_NS9750_UART
12781
12782     move also conditional compilation to Makefile
12783
12784     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12785
12786 commit 6c58a030f86829fa4f0d4337cf4b794c41a1823e
12787 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12788 Date:   Wed Aug 13 01:40:38 2008 +0200
12789
12790     serial: move CFG_SCIF_CONSOLE to CONFIG_SCIF_CONSOLE
12791
12792     move also conditional compilation to Makefile
12793
12794     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12795
12796 commit d6e9ee92e890f67594ab150689510df361133ead
12797 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12798 Date:   Wed Aug 13 01:40:38 2008 +0200
12799
12800     common: Move conditional compilation to Makefile
12801
12802     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12803
12804 commit f5acb9fd9bba1160de3ef349c7d33fe510eda286
12805 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12806 Date:   Wed Aug 13 01:40:09 2008 +0200
12807
12808     mx31: move freescale's mx31 boards to vendor board dir
12809
12810     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12811
12812 commit 8ed2f5f950e2581214d20b011a8f27a6396d65d2
12813 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12814 Date:   Sat Jul 5 23:11:11 2008 +0200
12815
12816     at91: move arch-at91sam9 to arch-at91
12817
12818     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12819
12820 commit 195ccfc5991d48764b2519941e3507f693851d5d
12821 Author: Fathi BOUDRA <fabo@debian.org>
12822 Date:   Wed Aug 6 10:06:20 2008 +0200
12823
12824     OneNAND: Fill in MTD function pointers for OneNAND.
12825
12826     onenand_print_device_info():
12827      - Now returns a string to be placed in mtd->name,
12828        rather than calling printf.
12829      - Remove verbose parameter as it becomes useless.
12830
12831     Signed-off-by: Fathi Boudra <fabo@debian.org>
12832     Signed-off-by: Scott Wood <scottwood@freescale.com>
12833
12834 commit aa646643b6bc250cb3a4966bf728876e0c10d329
12835 Author: Guennadi Liakhovetski <lg@denx.de>
12836 Date:   Wed Aug 6 21:42:07 2008 +0200
12837
12838     nand_spl: Support page-aligned read in nand_load, use chipselect
12839
12840     Supporting page-aligned reads doesn't incure any sinificant overhead, just
12841     a small change in the algorithm. Also replace in_8 with readb, since there
12842     is no in_8 on ARM.
12843
12844     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
12845     Signed-off-by: Scott Wood <scottwood@freescale.com>
12846
12847 commit 4f32d7760a58fe73981b6edc0b0751565d2daa4c
12848 Author: Scott Wood <scottwood@freescale.com>
12849 Date:   Tue Aug 5 11:15:59 2008 -0500
12850
12851     NAND boot: Update large page support for current API.
12852
12853     Also, remove the ctrl variable in favor of passing the constants
12854     directly, and remove redundant (u8) casts.
12855
12856     Signed-off-by: Scott Wood <scottwood@freescale.com>
12857
12858 commit e4c09508545d1c45617ba45391c03c03cbc360b9
12859 Author: Scott Wood <scottwood@freescale.com>
12860 Date:   Mon Jun 30 14:13:28 2008 -0500
12861
12862     NAND boot: MPC8313ERDB support
12863
12864     Note that with older board revisions, NAND boot may only work after a
12865     power-on reset, and not after a warm reset.  I don't have a newer board
12866     to test on; if you have a board with a 33MHz crystal, please let me know
12867     if it works after a warm reset.
12868
12869     Signed-off-by: Scott Wood <scottwood@freescale.com>
12870
12871 commit acdab5c33f1ea6f5e08f06f08bc64af23ff40d71
12872 Author: Scott Wood <scottwood@freescale.com>
12873 Date:   Thu Jun 26 14:06:52 2008 -0500
12874
12875     mpc8313erdb: Enable NAND in config.
12876
12877     Signed-off-by: Scott Wood <scottwood@freescale.com>
12878
12879 commit c3db8c649c6ab3da2f1411c4c6d61aecea054aa4
12880 Author: Guennadi Liakhovetski <lg@denx.de>
12881 Date:   Thu Jul 31 12:38:26 2008 +0200
12882
12883     NAND: Do not write or read a whole block if it is larger than the environment
12884
12885     Environment can be smaller than NAND block size, do not need to read a whole
12886     block and minimum for writing is one page. Also remove an unused variable.
12887
12888     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
12889     Signed-off-by: Scott Wood <scottwood@freescale.com>
12890
12891 commit eafcabd15f00c142156235c519fcc55b10993241
12892 Author: Marcel Ziswiler <marcel@ziswiler.com>
12893 Date:   Sun Jun 22 16:30:06 2008 +0200
12894
12895     NAND: chip->state does not always get set.
12896
12897     Fixes an issue with chip->state not always being set causing troubles.
12898
12899     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
12900     Signed-off-by: Scott Wood <scottwood@freescale.com>
12901
12902 commit 13f0fd94e3cae6f8a0d9fba5d367e311edc8ebde
12903 Author: Ilya Yanok <yanok@emcraft.com>
12904 Date:   Mon Jun 30 15:34:40 2008 +0200
12905
12906     NAND: Scan bad blocks lazily.
12907
12908     Rather than scanning on boot, scan upon the first attempt to check the
12909     badness of a block.  This speeds up boot when not using NAND, and reduces
12910     the likelihood of needing to reflash via JTAG if NAND becomes
12911     nonfunctional.
12912
12913     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12914     Signed-off-by: Scott Wood <scottwood@freescale.com>
12915
12916 commit dfbf617ff055e4216f78d358b0867c548916d14b
12917 Author: Scott Wood <scottwood@freescale.com>
12918 Date:   Thu Jun 12 13:20:16 2008 -0500
12919
12920     NAND read/write fix
12921
12922     Implement block-skipping read/write, based on a patch from
12923     Morten Ebbell Hestens <morten.hestnes@tandberg.com>.
12924
12925     Signed-off-by: Morten Ebbell Hestnes <morten.hestnes@tandberg.com>
12926     Signed-off-by: Scott Wood <scottwood@freescale.com>
12927
12928 commit 984e03cdf1431bb593aeaa1b74c445d616f955d3
12929 Author: Scott Wood <scottwood@freescale.com>
12930 Date:   Thu Jun 12 13:13:23 2008 -0500
12931
12932     NAND: Always skip blocks on read/write/boot.
12933
12934     Use of the non-skipping versions was almost always (if not always)
12935     an error, and no valid use case has been identified.
12936
12937     Signed-off-by: Scott Wood <scottwood@freescale.com>
12938
12939 commit e1c3dbada349992875934575c97b328ab2cb33ca
12940 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12941 Date:   Thu Jun 12 11:10:21 2008 -0500
12942
12943     nand: fsl_upm: convert to updated MTD NAND infrastructure
12944
12945     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12946     Signed-off-by: Scott Wood <scottwood@freescale.com>
12947
12948 commit 300253306acc72b1b2e9faf0987f86551151d7cf
12949 Author: Scott Wood <scottwood@freescale.com>
12950 Date:   Thu May 22 15:02:46 2008 -0500
12951
12952     fsl_elbc_nand: Hard-code the FBAR/FPAR split.
12953
12954     The hardware has separate registers for block and page-within-block,
12955     but the division between the two has no apparent relation to the
12956     actual erase block size of the NAND chip.
12957
12958     Signed-off-by: Scott Wood <scottwood@freescale.com>
12959
12960 commit 9c814b0a716aae884bec977b9a032dfa59cfb79a
12961 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12962 Date:   Fri Mar 28 22:10:54 2008 +0300
12963
12964     fsl_elbc_nand: workaround for hangs during nand write
12965
12966     Using current driver elbc sometimes hangs during nand write. Reading back
12967     last byte helps though (thanks to Scott Wood for the idea).
12968
12969     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12970     Signed-off-by: Scott Wood <scottwood@freescale.com>
12971
12972 commit 9fd020d6b4b36b9fb67cd834bc1ae7fdba15ee9e
12973 Author: Scott Wood <scottwood@freescale.com>
12974 Date:   Fri Mar 21 16:12:51 2008 -0500
12975
12976     Freescale eLBC FCM NAND driver
12977
12978     This is a driver for the Flash Control Machine of the enhanched Local Bus
12979     Controller found on some Freescale chips (such as the mpc8313 and the
12980     mpc8379).
12981
12982     Signed-off-by: Scott Wood <scottwood@freescale.com>
12983
12984 commit 41ef8c716e93fdf50efe9c1ba733ca6675daaca6
12985 Author: Scott Wood <scottwood@freescale.com>
12986 Date:   Tue Mar 18 15:29:14 2008 -0500
12987
12988     Don't panic if a controller driver does ecc its own way.
12989
12990     Some hardware, such as the enhanced local bus controller used on some
12991     mpc83xx chips, does ecc transparently when reading and writing data, rather
12992     than providing a generic calculate/correct mechanism that can be exported to
12993     the nand subsystem.
12994
12995     The subsystem should not BUG() when calculate, correct, or hwctl are
12996     missing, if the methods that call them have been overridden.
12997
12998     Signed-off-by: Scott Wood <scottwood@freescale.com>
12999
13000 commit e52b34d40a8a646e3d11638ea8797e96398dba13
13001 Author: Stefan Roese <sr@denx.de>
13002 Date:   Thu Jan 10 18:47:33 2008 +0100
13003
13004     NAND: Make NAND driver less verbose per default
13005
13006     This patch turns off printing of bad blocks per default upon bootup.
13007     This can always be shown via the "nand bad" command later.
13008
13009     Signed-off-by: Stefan Roese <sr@denx.de>
13010
13011 commit fe56a2772e5c59577df906163d0d4b29b056140e
13012 Author: Sergey Kubushyn <ksi@koi8.net>
13013 Date:   Wed Jan 9 15:36:20 2008 +0100
13014
13015     NAND: Davinci driver updates
13016
13017     Here comes a trivial patch to cpu/arm926ejs/davinci/nand.c. Unfortunately I
13018     don't have hardware handy so I can not test it at the moment but changes are
13019     rather trivial so it should work. It would be nice if somebody with a
13020     hardware checked it anyways.
13021
13022     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
13023
13024 commit deac913effd8d80535c9ff4687b6fcdff540c554
13025 Author: Stefan Roese <sr@denx.de>
13026 Date:   Sat Jan 5 16:50:32 2008 +0100
13027
13028     NAND: Fix compilation warning and small coding style issue
13029
13030     Signed-off-by: Stefan Roese <sr@denx.de>
13031
13032 commit c568f77acdf896fc3dd6413ce53205b17ba809a3
13033 Author: Stefan Roese <sr@denx.de>
13034 Date:   Sat Jan 5 16:49:37 2008 +0100
13035
13036     NAND: Update nand_spl driver to match updated nand subsystem
13037
13038     This patch changes the NAND booting driver nand_spl/nand_boot.c to match
13039     the new infrastructure from the updated NAND subsystem. This NAND
13040     subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
13041     subsystem.
13042
13043     Signed-off-by: Stefan Roese <sr@denx.de>
13044
13045 commit 3df2ece0f0fbba47d27f02fff96c533732b98c14
13046 Author: Stefan Roese <sr@denx.de>
13047 Date:   Sat Jan 5 16:47:58 2008 +0100
13048
13049     NAND: Update 4xx NDFC driver to match updated nand subsystem
13050
13051     This patch changes the 4xx NAND driver ndfc.c to match the new
13052     infrastructure from the updated NAND subsystem. This NAND
13053     subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
13054     subsystem.
13055
13056     Tested successfully on AMCC Sequoia and Bamboo.
13057
13058     Signed-off-by: Stefan Roese <sr@denx.de>
13059
13060 commit 12072264528eba33737bc9674e19f0e925ffda23
13061 Author: Stefan Roese <sr@denx.de>
13062 Date:   Sat Jan 5 16:43:25 2008 +0100
13063
13064     NAND: Change nand_wait_ready() to not call nand_wait()
13065
13066     This patch changes nand_wait_ready() to not just call nand_wait(),
13067     since this will send a new command to the NAND chip. We just want to
13068     wait for the chip to become ready here.
13069
13070     Signed-off-by: Stefan Roese <sr@denx.de>
13071
13072 commit 9ad754fef5053144daed3b007adaf1c9bec654c9
13073 Author: William Juul <william.juul@datarespons.no>
13074 Date:   Fri Dec 14 16:33:45 2007 +0100
13075
13076     make nand dump and nand dump.oob work
13077
13078     Signed-off-by: William Juul <william.juul@tandberg.com>
13079     Signed-off-by: Scott Wood <scottwood@freescale.com>
13080
13081 commit 43ea36fb8fdcbc6e26f0caffe808c63633b18838
13082 Author: William Juul <william.juul@datarespons.no>
13083 Date:   Mon Nov 19 14:46:00 2007 +0100
13084
13085     moving files from yaffs2/direct/ to yaffs2/ and deleting all symlinks
13086
13087     Signed-off-by: William Juul <william.juul@tandberg.com>
13088
13089 commit 98824ce3f95e6c4d08d439b779c0acb0048045a6
13090 Author: William Juul <william.juul@tandberg.com>
13091 Date:   Tue Jun 10 16:18:13 2008 -0500
13092
13093     Clean out unneeded files
13094
13095     Signed-off-by: William Juul <william.juul@tandberg.com>
13096
13097 commit ec29a32b5a71b203f7d9087f1f4d786e7f13dd23
13098 Author: William Juul <william.juul@datarespons.no>
13099 Date:   Fri Nov 16 08:44:27 2007 +0100
13100
13101     Create symlinks from yaffs2/direct to yaffs2
13102
13103     Signed-off-by: William Juul <william.juul@tandberg.com>
13104
13105 commit 90ef117b68387d66763291af0117677644166611
13106 Author: William Juul <william.juul@datarespons.no>
13107 Date:   Thu Nov 15 12:23:57 2007 +0100
13108
13109     Incorporate yaffs2 into U-boot
13110
13111     To use YAFFS2 define CONFIG_YAFFS2
13112
13113     Signed-off-by: William Juul <william.juul@tandberg.com>
13114     Signed-off-by: Scott Wood <scottwood@freescale.com>
13115
13116 commit 0e8cc8bd92257da2e1df88cbc985e166e472ce61
13117 Author: William Juul <william.juul@datarespons.no>
13118 Date:   Thu Nov 15 11:13:05 2007 +0100
13119
13120     YAFFS2 import
13121
13122     Direct import of yaffs as a tarball as of 20071113 from their public
13123     CVS-web at http://www.aleph1.co.uk/cgi-bin/viewcvs.cgi/yaffs2/
13124
13125     The code can also be imported on the command line with:
13126     export CVSROOT=:pserver:anonymous@cvs.aleph1.co.uk:/home/aleph1/cvs cvs logon
13127     (Hit return when asked for a password)
13128     cvs checkout yaffs2
13129
13130     Signed-off-by: William Juul <william.juul@tandberg.com>
13131     Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
13132
13133 commit 3043c045d5a9897faba7d5c7218c2f4d06cd0038
13134 Author: William Juul <william.juul@datarespons.no>
13135 Date:   Wed Nov 14 14:28:11 2007 +0100
13136
13137     Whitespace cleanup and marking broken code.
13138
13139     Changes requested by maintainer Stefan Roese after
13140     posting patch to U-boot mailing list.
13141
13142     Signed-off-by: William Juul <william.juul@tandberg.com>
13143     Signed-off-by: Scott Wood <scottwood@freescale.com>
13144
13145 commit 5e1dae5c3db7f4026f31b6a2a81ecd9e9dee475f
13146 Author: William Juul <william.juul@datarespons.no>
13147 Date:   Fri Nov 9 13:32:30 2007 +0100
13148
13149     Fixing coding style issues
13150
13151      - Fixing leading white spaces
13152      - Fixing indentation where 4 spaces are used instead of tab
13153      - Removing C++ comments (//), wherever I introduced them
13154
13155     Signed-off-by: William Juul <william.juul@tandberg.com>
13156     Signed-off-by: Scott Wood <scottwood@freescale.com>
13157
13158 commit 4cbb651b29cb64d378a06729970e1e153bb605b1
13159 Author: William Juul <william.juul@datarespons.no>
13160 Date:   Thu Nov 8 10:39:53 2007 +0100
13161
13162     Remove white space at end.
13163
13164     Signed-off-by: William Juul <william.juul@tandberg.com>
13165     Signed-off-by: Scott Wood <scottwood@freescale.com>
13166
13167 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
13168 Author: William Juul <william.juul@datarespons.no>
13169 Date:   Wed Oct 31 13:53:06 2007 +0100
13170
13171     Update MTD to that of Linux 2.6.22.1
13172
13173     A lot changed in the Linux MTD code, since it was last ported from
13174     Linux to U-Boot. This patch takes U-Boot NAND support to the level
13175     of Linux 2.6.22.1 and will enable support for very large NAND devices
13176     (4KB pages) and ease the compatibility between U-Boot and Linux
13177     filesystems.
13178
13179     This patch is tested on two custom boards with PPC and ARM
13180     processors running YAFFS in U-Boot and Linux using gcc-4.1.2
13181     cross compilers.
13182
13183     MAKEALL ppc/arm has some issues:
13184      * DOC/OneNand/nand_spl is not building (I have not tried porting
13185        these parts, and since I do not have any HW and I am not familiar
13186        with this code/HW I think its best left to someone else.)
13187
13188     Except for the issues mentioned above, I have ported all drivers
13189     necessary to run MAKEALL ppc/arm without errors and warnings. Many
13190     drivers were trivial to port, but some were not so trivial. The
13191     following drivers must be examined carefully and maybe rewritten to
13192     some degree:
13193      cpu/ppc4xx/ndfc.c
13194      cpu/arm926ejs/davinci/nand.c
13195      board/delta/nand.c
13196      board/zylonite/nand.c
13197
13198     Signed-off-by: William Juul <william.juul@tandberg.com>
13199     Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
13200     Signed-off-by: Scott Wood <scottwood@freescale.com>
13201
13202 commit cd82919e6c8a73b363a26f34b734923844e52d1c
13203 Author: Wolfgang Denk <wd@denx.de>
13204 Date:   Tue Aug 12 16:08:38 2008 +0200
13205
13206     Coding style cleanup, update CHANGELOG, prepare release
13207
13208     Signed-off-by: Wolfgang Denk <wd@denx.de>
13209
13210 commit 17e900b8c0f38d922da47073246219dce2a847f2
13211 Author: Wolfgang Denk <wd@denx.de>
13212 Date:   Tue Aug 12 14:54:04 2008 +0200
13213
13214     MVBC_P: fix compile problem
13215
13216     Signed-off-by: Wolfgang Denk <wd@denx.de>
13217
13218 commit 52b047ae48219b59bebe37ba743ab103fd4f8316
13219 Author: Wolfgang Denk <wd@denx.de>
13220 Date:   Tue Aug 12 12:10:11 2008 +0200
13221
13222     MPC8272ADS: fix build error: 'bd_t' has no member named 'pci_clk'
13223
13224     Signed-off-by: Wolfgang Denk <wd@denx.de>
13225
13226 commit c9c101c660b3d1995045c61c7c6041f52b6cf335
13227 Author: Wolfgang Denk <wd@denx.de>
13228 Date:   Tue Aug 12 00:36:53 2008 +0200
13229
13230     ads5121: fix compiler warnings (unused variables)
13231
13232     Signed-off-by: Wolfgang Denk <wd@denx.de>
13233
13234 commit 902ca09246039964d59bbcb519b1e1b5aed01308
13235 Author: Kumar Gala <galak@kernel.crashing.org>
13236 Date:   Mon Aug 11 11:29:28 2008 -0500
13237
13238     85xx: Rename CONFIG_NR_CPUS to CONFIG_NUM_CPUS
13239
13240     Use CONFIG_NUM_CPUS to match existing define used by 86xx.
13241
13242     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13243     Acked-by: Jon Loeliger <jdl@freescale.com>
13244
13245 commit 3216ca9692ff80d7c638723ef448f3d36301d9e7
13246 Author: Kumar Gala <galak@kernel.crashing.org>
13247 Date:   Mon Aug 11 09:20:53 2008 -0500
13248
13249     Fix fallout from autostart revert
13250
13251     The autostart revert caused a bit of duplicated code as well as
13252     code that was using images->autostart that needs to get removed so
13253     we can build again.
13254
13255     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13256
13257 commit 3cf8a234b8e8c02e4da1f23566043bc288b05220
13258 Author: Kumar Gala <galak@kernel.crashing.org>
13259 Date:   Mon Aug 11 09:16:25 2008 -0500
13260
13261     Fix compile error related to r8a66597-hcd & usb
13262
13263     When building the 8544DS board we get this error:
13264
13265     In file included from r8a66597-hcd.c:22:
13266     u-boot/include/usb.h:190:2: error: #error USB Lowlevel not defined
13267     make[1]: *** [r8a66597-hcd.o] Error 1
13268
13269     The cleanest fix is to only build r8a66597-hcd.c if CONFIG_USB_R8A66597_HCD
13270     is set.
13271
13272     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13273
13274 commit 2d0daa03612338a813e3c9d22680e54eabfea378
13275 Author: Becky Bruce <becky.bruce@freescale.com>
13276 Date:   Mon Aug 4 14:02:26 2008 -0500
13277
13278     POWERPC 86xx: Move BAT setup code to C
13279
13280     This is needed because we will be possibly be locating
13281     devices at physical addresses above 32bits, and the asm
13282     preprocessing does not appear to deal with ULL constants
13283     properly. We now call write_bat in lib_ppc/bat_rw.c.
13284
13285     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13286     Acked-by: Jon Loeliger <jdl@freescale.com>
13287
13288 commit 9de67149db576c91b9c2a0a182652331e7e44211
13289 Author: Becky Bruce <becky.bruce@freescale.com>
13290 Date:   Mon Aug 4 14:01:53 2008 -0500
13291
13292     POWERPC: Add synchronization to write_bat in lib_ppc/bat_rw.c
13293
13294     Perform sync/isync as required by the architecture.
13295
13296     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13297     Acked-by: Jon Loeliger <jdl@freescale.com>
13298
13299 commit 23f935c073e7578c6066804fd2f9ee116cae6ffe
13300 Author: Becky Bruce <becky.bruce@freescale.com>
13301 Date:   Mon Aug 4 14:01:16 2008 -0500
13302
13303     POWERPC: 86xx - add missing CONFIG_HIGH_BATS to sbc8641d config
13304
13305     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13306     Acked-by: Jon Loeliger <jdl@freescale.com>
13307
13308 commit 5276a3584d26a9533404f0ec00c3b61cf9a97939
13309 Author: Magnus Lilja <lilja.magnus@gmail.com>
13310 Date:   Sun Aug 3 21:44:10 2008 +0200
13311
13312     i.MX31: Fix mx31_gpio_mux() function and MUX_-macros.
13313
13314     Correct the mx31_gpio_mux() function to allow changing all i.MX31 IOMUX
13315     contacts instead of only the first 256 ones as is the case prior to
13316     this patch.
13317
13318     Add missing MUX_* macros and update board files to use the new macros.
13319
13320     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
13321
13322 commit b6b183c5b2fffd4c456b7e3fcb064cceb47fe7ac
13323 Author: Magnus Lilja <lilja.magnus@gmail.com>
13324 Date:   Sun Aug 3 21:43:37 2008 +0200
13325
13326     i.MX31: Fix IOMUX related typos
13327
13328     Correct the names of some IOMUX macros.
13329
13330     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
13331
13332 commit 4d57b0fb2927d4f50d834884b4ec4a7ca01708b0
13333 Author: Steve Sakoman <steve@sakoman.com>
13334 Date:   Mon Aug 11 20:26:16 2008 +0200
13335
13336     OneNAND: Remove unused parameters to onenand_verify_page
13337
13338     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.
13339
13340     Signed-off-by: Steve Sakoman <steve@sakoman.com>
13341     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
13342
13343 commit e84d568fa2a9f4ce7888141e71676368ef6b3f25
13344 Author: Anatolij Gustschin <agust@denx.de>
13345 Date:   Fri Aug 8 18:00:40 2008 +0200
13346
13347     video: fix bug in cfb_console code
13348
13349     FILL_15BIT_555RGB macro extension for pixel swapping
13350     by commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
13351     introduced a bug in cfb_console:
13352
13353     Bitmaps with odd-numbered width won't be rendered
13354     correctly and even U-Boot crashes are observed on
13355     some platforms while repeated rendering of such
13356     bitmaps with "bmp display". Also if a bitmap is
13357     rendered to an odd-numbered x starting position,
13358     the same problem occurs. This patch is an attempt
13359     to fix it.
13360
13361     Signed-off-by: Anatolij Gustschin <agust@denx.de>
13362
13363 commit d9015f6a50d7258125349ef5c2af836458a0029a
13364 Author: Anatolij Gustschin <agust@denx.de>
13365 Date:   Fri Aug 8 18:00:39 2008 +0200
13366
13367     video: fix bug in logo_plot
13368
13369     If logo_plot() should ever be called with x starting
13370     position other than zero and for pixel depths greater
13371     than 8bpp, logo colors distortion will be observed.
13372     This patch fixes the issue.
13373
13374     Signed-off-by: Anatolij Gustschin <agust@denx.de>
13375
13376 commit 406819ae94f79f5b59e01d163380ca7d83709251
13377 Author: Wolfgang Denk <wd@denx.de>
13378 Date:   Mon Aug 11 00:17:52 2008 +0200
13379
13380     MAINTAINERS: sort entries
13381
13382     Signed-off-by: Wolfgang Denk <wd@denx.de>
13383
13384 commit cfc442d7913d4d1c3a9bf494f90c012c2f8c3bdc
13385 Author: Roy Zang <tie-fei.zang@freescale.com>
13386 Date:   Thu Aug 7 18:19:28 2008 +0800
13387
13388     Add mpc7448hpc2 maintainer information
13389
13390     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
13391
13392 commit a9fe0c3e7ca48afa50d6a0db99fa91e7282d73d8
13393 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
13394 Date:   Thu Aug 7 13:13:27 2008 +0530
13395
13396     common/cmd_load.c - Minor code & Coding Style cleanup
13397
13398     - os_data_header Variable is a carry over feature
13399        & unused. So removed all instance of this variable
13400      - Minor Code Style Update
13401
13402     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
13403     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13404
13405 commit 0d28f34bbe56d0971bd603789dcc6fe7adf11f14
13406 Author: Magnus Lilja <lilja.magnus@gmail.com>
13407 Date:   Wed Aug 6 19:32:33 2008 +0200
13408
13409     Update the U-Boot wiki URL.
13410
13411     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
13412
13413 commit aa5ffa16d7e4c461b7b77bf8e79d2ef5638cf754
13414 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
13415 Date:   Sun Aug 10 17:56:36 2008 +0200
13416
13417     OneNAND: Remove base address offset usage
13418
13419     While locally preparing some U-Boot patches for ARM based OMAP3 boards, some
13420     using OneNAND and some using NAND, we found some differences in OneNAND and
13421     NAND command address handling.
13422
13423     As this might confuse users (it already confused us), we like to align OneNAND
13424     and NAND address handling.
13425
13426     The issue is that cmd_onenand.c subtracts the onenand base address from the
13427     addresses you type into the u-boot command line so, unlike nand, you can't
13428     use addresses relative to the start of the onenand part e.g. this won't work:
13429
13430     onenand read 82000000 280000 400000
13431
13432     you have to use:
13433
13434     onenand read 82000000 20280000 400000
13435
13436     Looking at recent git, the only board currently using OneNAND is Apollon, and
13437     for this the OneNAND base address is 0 (apollon.h)
13438
13439     #define     CFG_ONENAND_BASE        0x00000000
13440
13441     so patch below won't break any existing boards and will align OneNAND and NAND
13442     handling on boards where OneNAND base address is != 0.
13443
13444     Signed-off-by: Steve Sakoman <sakoman@gmail.com>
13445     Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
13446     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
13447
13448 commit c11528083ef6e55e76df742228c26e39d151813d
13449 Author: Kumar Gala <galak@kernel.crashing.org>
13450 Date:   Thu Aug 7 09:28:20 2008 -0500
13451
13452     mpc85xx: workaround old binutils bug
13453
13454     The recent change to move the .bss outside of the image gives older
13455     binutils (ld from eldk4.1/binutils-2.16) some headache:
13456
13457     ppc_85xx-ld: u-boot: Not enough room for program headers (allocated 3, need 4)
13458     ppc_85xx-ld: final link failed: Bad value
13459
13460     We workaround it by being explicit about the program headers and not
13461     assigning the .bss to a program header.
13462
13463     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13464
13465 commit 0bf202ec586d4466c900e987720fa635c594d689
13466 Author: Wolfgang Denk <wd@denx.de>
13467 Date:   Sun Aug 10 01:26:26 2008 +0200
13468
13469     Revert "[new uImage] Add autostart flag to bootm_headers structure"
13470
13471     This reverts commit f5614e7926863bf0225ec860d9b319741a9c4004.
13472
13473     The commit was based on a misunderstanding of the (documented)
13474     meaning of the 'autostart' environment variable. It might cause
13475     boards to hang if 'autostart' was used, with the potential to brick
13476     them. Go back to the documented behaviour.
13477
13478     Conflicts:
13479
13480         common/cmd_bootm.c
13481         common/image.c
13482         include/image.h
13483
13484     Signed-off-by: Wolfgang Denk <wd@denx.de>
13485
13486 commit 29f8f58ff40c67f7f2e11afd1715173094e52ac2
13487 Author: Wolfgang Denk <wd@denx.de>
13488 Date:   Sat Aug 9 23:17:32 2008 +0200
13489
13490     TQM8xx{L,M}: try to normalize config files for TQM8xx? based board
13491
13492     - enable CFI driver where this was forgotten
13493     - enable mtdparts support
13494     - adjust default environment
13495     etc.
13496
13497     Signed-off-by: Wolfgang Denk <wd@denx.de>
13498
13499 commit 41266c9b5a5f873df3ec891bb0907616958b5602
13500 Author: Peter Tyser <ptyser@xes-inc.com>
13501 Date:   Tue Aug 5 10:51:57 2008 -0500
13502
13503     FIT: Fix handling of images without ramdisks
13504
13505     boot_get_ramdisk() should not treat the case when a FIT image does
13506     not contain a ramdisk as an error.
13507
13508     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13509     Acked-by: Michal Simek <monstr@monstr.eu>
13510
13511 commit f77d92a3f56d88e63cc02226a1204b3bdbac6961
13512 Author: Sergey Lapin <slapin@ossfans.org>
13513 Date:   Sat Aug 9 01:39:09 2008 +0400
13514
13515     DataFlash: AT45DB021 fix and AT45DB081 support
13516
13517     Fix for page size of AT45DB021. Also adding bigger AT45DB081
13518     which comes with some newer boards.
13519
13520     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
13521
13522 commit ba9324451b662dd393afa53e5cc36fc5d3d10966
13523 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
13524 Date:   Fri Aug 8 16:30:23 2008 +0900
13525
13526     sh: Update sh7763rdp config
13527
13528     Add sh_eth support to sh7763rdp.
13529
13530     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
13531
13532 commit 21f971ec265f6042ec21636d55d06a6bc0751077
13533 Author: Wolfgang Denk <wd@denx.de>
13534 Date:   Mon Jul 7 01:22:29 2008 +0200
13535
13536     TQM823L: re-enable logo support; update LCD_INFO text
13537
13538     Signed-off-by: Wolfgang Denk <wd@denx.de>
13539
13540 commit 3b8d17f0f082073346c0df017c9dfd6acdb40d6d
13541 Author: Wolfgang Denk <wd@denx.de>
13542 Date:   Fri Aug 8 16:41:56 2008 +0200
13543
13544     TQM8xxL: fix support for second flash bank
13545
13546     When switching the TQM8xxL modules to use the CFI flash driver,
13547     support for the second flash bank was broken because the CFI driver
13548     did not support dynamically sized banks. This gets fixed now.
13549
13550     Signed-off-by: Wolfgang Denk <wd@denx.de>
13551
13552 commit 2a112b234d879f6390503a5f4e38246acce9d0b0
13553 Author: Wolfgang Denk <wd@denx.de>
13554 Date:   Fri Aug 8 16:39:54 2008 +0200
13555
13556     CFI: allow for dynamically determined flash sizes and addresses
13557
13558     The CFI driver allowed only for static initializers in the
13559     CFG_FLASH_BANKS_LIST definition, i. e. it did not allow to map
13560     several flash banks contiguously if the bank sizes were not known in
13561     advance, which kind of violates U-Boot's design philosophy.
13562
13563     (will be used for example by the TQM8xxL boards)
13564
13565     Signed-off-by: Wolfgang Denk <wd@denx.de>
13566
13567 commit d9d78ee46d9a396d0a81d00c2b003a9bd32c2e61
13568 Author: Ben Warren <biggerbadderben@gmail.com>
13569 Date:   Thu Aug 7 23:26:35 2008 -0700
13570
13571     QE UEC: Fix compiler warnings
13572
13573     Moved static functions earlier in file so forward declarations are not needed.
13574
13575     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13576
13577 commit d5d28fe4aad5f4535400647a5617c11039506467
13578 Author: David Saada <David.Saada@ecitele.com>
13579 Date:   Mon Mar 31 02:37:38 2008 -0700
13580
13581     QE UEC: Add MII Commands
13582
13583     Add MII commands to the UEC driver. Note that once a UEC device is selected,
13584     any device on its MDIO bus can be addressed.
13585
13586     Signed-off-by: David Saada <david.saada@ecitele.com>
13587     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13588
13589 commit fd0f2f3796ff2a7a32d35deb1b7996e485849df7
13590 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
13591 Date:   Wed Jul 9 21:07:38 2008 +0900
13592
13593     usb: add support for R8A66597 usb controller
13594
13595     add support for Renesas R8A66597 usb controller.
13596     This patch supports USB Host mode.
13597
13598     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
13599     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
13600
13601 commit 1d10dcd041aaeae9fd7c821005692898a0303382
13602 Author: Hunter, Jon <jon-hunter@ti.com>
13603 Date:   Sat Jul 26 18:59:16 2008 -0500
13604
13605     Add support for OMAP5912 and OMAP16xx to usbdcore_omap1510.c
13606
13607     Add support to drivers/usb/usbdcore_omap1510.c for OMAP5912 and OMAP16xx devices.
13608
13609     Signed-off-by: Jon Hunter <jon-hunter@ti.com>
13610     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
13611
13612 commit eab1007334b93a6209f1ec33615e26ef5311ede7
13613 Author: Steven A. Falco <sfalco@harris.com>
13614 Date:   Wed Aug 6 15:42:52 2008 -0400
13615
13616     ppc4xx: Sequoia has two UARTs in "4-pin" mode. Configure the GPIOs as per schematic.
13617
13618     The Sequoia board has two UARTs in "4-pin" mode. This patch modifies the GPIO
13619     configuration to match the schematic, and also sets the SDR0_PFC1 register to
13620     select the corresponding mode for the UARTs.
13621
13622     Signed-off-by: Steven A. Falco <sfalco@harris.com>
13623     Signed-off-by: Stefan Roese <sr@denx.de>
13624
13625 commit 0eb5717a85b6cba3f67c11fa89bdde38dcd081b5
13626 Author: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
13627 Date:   Wed Aug 6 14:42:13 2008 +0200
13628
13629     avr32: add support for EarthLCD Favr-32 board
13630
13631     This patch adds support for the Favr-32 board made by EarthLCD.
13632
13633     This kit, which is also called ezLCD-101 when running with EarthLCD firmware,
13634     has a 10.4" touch screen LCD panel, 16 MB 32-bit SDRAM, 8 MB parallel flash,
13635     Ethernet, audio out, USB device, SD-card slot, USART and various other
13636     connectors for cennecting stuff to SPI, I2C, GPIO, etc.
13637
13638     Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
13639     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13640
13641 commit bc9019e19758a19a388fb20ef18dc771cd39fdda
13642 Author: Rafael Campos <rafael.campos@hanscan.com>
13643 Date:   Thu Jul 31 10:22:20 2008 +0200
13644
13645     cfi-flash: Added support to flash_real_protect for Atmel flash devices
13646
13647     Some of the flash memories produced by ATMEL start in read-only mode.
13648     We need to unprotect it. This patch allows the AT49BV6416 to work with
13649     cfi_flash memories. Tested in the at91rm9200ek board.
13650
13651     Signed-off-by: Rafael Campos Las Heras <rafael.campos@hanscan.com>
13652     Signed-off-by: Stefan Roese <sr@denx.de>
13653
13654 commit 7949839e5836bf8b1074bb6142c46d30ac3aa350
13655 Author: Guennadi Liakhovetski <lg@denx.de>
13656 Date:   Tue Aug 5 15:36:39 2008 +0200
13657
13658     cfi-flash: Add definition for the AM29LV800BB AMD NOR-flash
13659
13660     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
13661     Signed-off-by: Stefan Roese <sr@denx.de>
13662
13663 commit 1318673045fe188c6e24c582b1e6efc00ae1c62c
13664 Author: Stefan Roese <sr@denx.de>
13665 Date:   Wed Aug 6 14:06:03 2008 +0200
13666
13667     Fix merge problems
13668
13669     Signed-off-by: Stefan Roese <sr@denx.de>
13670
13671 commit f2302d4430e7f3f48308d6a585320fe96af8afbd
13672 Author: Stefan Roese <sr@denx.de>
13673 Date:   Wed Aug 6 14:05:38 2008 +0200
13674
13675     Fix merge problems
13676
13677     Signed-off-by: Stefan Roese <sr@denx.de>
13678
13679 commit 6689484ccd43189322aaa5a1c6cd02cdd511ad7d
13680 Author: Kenneth Johansson <kenneth@southpole.se>
13681 Date:   Tue Jul 15 12:13:38 2008 +0200
13682
13683     mpc5121: Move iopin features from board specific to common files.
13684
13685     And in the process eliminate some duplicate register defines.
13686
13687     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
13688
13689 commit ef11df6b66ecf5797e94ba322254b8fb7a4e2e12
13690 Author: John Rigby <jrigby@freescale.com>
13691 Date:   Tue Aug 5 17:38:57 2008 -0600
13692
13693     mpc5121: squash some fdt fixup errors
13694
13695     On ADS5121 when booting linux the following errors are seen:
13696         Unable to update property /soc5121@80000000:bus-frequency, err=FDT_ERR_NOTFOUND
13697         Unable to update property /soc5121@80000000/ethernet@2800:local-mac-address, err=FDT_ERR_NOTFOUND
13698         Unable to update property /soc5121@80000000/ethernet@2800:address, err=FDT_ERR_NOTFOUND
13699
13700     This is caused by ft_cpu_setup trying to deal with
13701     both old and new soc node naming.  This patch
13702     fixes this by being smarter about what to
13703     fixup.
13704
13705     Also do soc node fixups by compatible instead of by path.
13706     A new board config called OF_SOC_COMPAT defined
13707     to be "fsl,mpc5121-immr" replaces the old
13708     OF_SOC node path that was defined to be "soc@80000000".
13709
13710     Old device trees still work, but the compatiblity
13711     is conditional on CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
13712     which is on by default in include/configs/ads5121.h.
13713
13714     Signed-off-by: John Rigby <jrigby@freescale.com>
13715
13716 commit 81091f58f0c58ecd26c5b05de2ae20ca6cdb521c
13717 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13718 Date:   Sat Aug 2 23:48:30 2008 +0200
13719
13720     drivers/serial: Move conditional compilation to Makefile for CONFIG_* macros
13721
13722     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13723
13724 commit 4cd7e6528f61ec669755c3754bb4f9779874fab3
13725 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13726 Date:   Sat Aug 2 23:48:32 2008 +0200
13727
13728     nios2/sysid: fix printf warning
13729
13730     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13731
13732 commit 66da6fa0e35e7ee56628c85981709afe7180fc8e
13733 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13734 Date:   Sat Aug 2 23:48:33 2008 +0200
13735
13736     Fix remaining build issues with MPC8xx FADS boards.
13737
13738     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13739
13740 commit 81d3f1fdddafd1eb53bbca8739f488d417eb3dd2
13741 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13742 Date:   Sat Aug 2 23:48:31 2008 +0200
13743
13744     nios2: fix phys_addr_t and phys_size_t support
13745
13746     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13747
13748 commit 5fa62000db6d0b46ecdeadbeb50faf5197db49ef
13749 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13750 Date:   Sat Aug 2 23:48:34 2008 +0200
13751
13752     mvbc_p: Fix problem with '#if (CONFIG_CMD_KGDB)'
13753
13754     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13755
13756 commit 1464eff77e7fdaed609ecf263a2423c9dcf96b1f
13757 Author: Mark Jackson <mpfj@mimc.co.uk>
13758 Date:   Fri Aug 1 09:48:29 2008 +0100
13759
13760     Fix bitmap display for atmel lcd controller
13761
13762     The current lcd_display_bitmap() function does not work properly
13763     for the Atmel LCD controller.
13764
13765     2 fixes need to be done:-
13766
13767     (a) when setting the colour map, use the lcd_setcolreg() function
13768         as provided by the Atmel driver
13769     (b) the data is never actually written to the lcd framebuffer !!
13770
13771     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
13772
13773 commit 2a433c66b1e2770349fe4911be23c375f053ebd8
13774 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13775 Date:   Fri Aug 1 08:40:34 2008 +0200
13776
13777     qemu_mips: update README to follow qemu update about default machine
13778
13779     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13780
13781 commit ac169d645f5f0e0b9a232563099209e92a355d8e
13782 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13783 Date:   Thu Jul 31 19:53:21 2008 -0500
13784
13785     ColdFire: Fix compilation issue caused by a missing function
13786
13787     Implement usec2ticks() which is used by fsl_i2c.c in
13788     lib_m68k/time.c
13789
13790     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13791
13792 commit 01ae85b58b51d2fb1fac5b93095f6042cf48ae7b
13793 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13794 Date:   Thu Jul 31 19:53:06 2008 -0500
13795
13796     Fix compilation error for TASREG
13797
13798     TASREG is ColdFire platform, the include ppc4xx.h in
13799     board/esd/common/flash.c causes conflict.
13800
13801     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13802
13803 commit 35d3bd3cc35c508a6823dac77e0fd126808e4fc7
13804 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13805 Date:   Thu Jul 31 19:52:36 2008 -0500
13806
13807     Fix compilation error for MCF5275
13808
13809     Rename OBJ to COBJ in board/platform/Makefile
13810
13811     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13812
13813 commit 5c40548f01218360a1f1395198c50ff45f3035b5
13814 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13815 Date:   Thu Jul 31 19:52:28 2008 -0500
13816
13817     Fix compile error caused by incorrect function return type
13818
13819     Rename int mii_init(void) to void mii_init(void) for idmr
13820     ColdFire platform
13821
13822     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13823
13824 commit a58c78067c928976c082c758d3987e89ead5b191
13825 Author: Wolfgang Denk <wd@denx.de>
13826 Date:   Fri Aug 1 12:06:22 2008 +0200
13827
13828     Fix build issues with MPC8xx FADS boards.
13829
13830     Signed-off-by: Wolfgang Denk <wd@denx.de>
13831
13832 commit 4b50cd12a3b3c644153c4cf393f4a4c12289e5aa
13833 Author: Wolfgang Denk <wd@denx.de>
13834 Date:   Thu Jul 31 17:54:03 2008 +0200
13835
13836     Prepare v1.3.4-rc2: update CHANGELOG
13837
13838     Signed-off-by: Wolfgang Denk <wd@denx.de>
13839
13840 commit a48311557db6e7e9473a6163b44bb1e6c6ed64c4
13841 Author: Mark Jackson <mpfj@mimc.co.uk>
13842 Date:   Thu Jul 31 16:09:00 2008 +0100
13843
13844     Add gzipped logo support
13845
13846     The README file states that CONFIG_VIDEO_BMP_GZIP behaves as follows:
13847
13848       If this option is set, additionally to standard BMP
13849       images, gzipped BMP images can be displayed via the
13850       splashscreen support or the bmp command.
13851
13852     However, the splashscreen function *only* supports standard BMP images.
13853
13854     This patch adds the documented gzip support.
13855
13856     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
13857
13858 commit a5bcb01fbde6b1f1c9863cd86e5c4c369f0121ac
13859 Author: Mark Jackson <mpfj@mimc.co.uk>
13860 Date:   Thu Jul 31 15:56:48 2008 +0100
13861
13862     Fix Atmel LCD controller endianess for AVR32 processors
13863
13864     The Atmel lcd controller is used on Atmel's AT91 (little endian) and
13865     AVR32 (big endian) platforms.
13866
13867     As such, the controller can handle both big and little endian memory.
13868
13869     This patch fixes the driver for the AVR32 platform.
13870
13871     Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
13872
13873 commit cdb8bd2fd3bcbe65d8e4334a55f5a667845426a1
13874 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13875 Date:   Thu Jul 31 15:56:01 2008 +0200
13876
13877     apollon: fix build out of tree
13878
13879     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13880
13881 commit 2e752be39d3e398d4ab89ffa6634c397df298297
13882 Author: Guennadi Liakhovetski <lg@denx.de>
13883 Date:   Thu Jul 31 12:35:04 2008 +0200
13884
13885     Uncompressed images loaded to their start address shall set load_end too
13886
13887     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
13888     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
13889
13890 commit c37207d7f51e19c17f859966f314e27cc1231801
13891 Author: Wolfgang Denk <wd@denx.de>
13892 Date:   Wed Jul 16 16:38:59 2008 +0200
13893
13894     Fix printf() format problems with configurable prompts
13895
13896     U-Boot allows for configurable prompt strings using the
13897     CONFIG_AUTOBOOT_PROMPT resp. CONFIG_MENUPROMPT definitions. So far,
13898     the assumption was that any such user defined problts would contain
13899     exactly one "%d" format specifier. But some boards did not.
13900
13901     To allow for flexible boot prompts without adding too complex code we
13902     now allow to specify the whole list of printf() arguments in the user
13903     definition. This is powerful, but requires a responsible user who
13904     really understands what he is doing, as he needs to know for exanple
13905     which variables are available in the respective context.
13906
13907     Signed-off-by: Wolfgang Denk <wd@denx.de>
13908
13909 commit 54754120637b6a7f4ff774fb199fc550bcfea1da
13910 Author: Wolfgang Denk <wd@denx.de>
13911 Date:   Thu Jul 31 17:02:14 2008 +0200
13912
13913     TQM85xx: fix typo introduce by commit ffbb5cb9
13914
13915     Signed-off-by: Wolfgang Denk <wd@denx.de>
13916
13917 commit 0b4951d4cddca9cc800745891c95b291e47cbbd7
13918 Author: Wolfgang Denk <wd@denx.de>
13919 Date:   Thu Jul 31 15:27:01 2008 +0200
13920
13921     mvbc_p board: fix most build warnings.
13922
13923     Signed-off-by: Wolfgang Denk <wd@denx.de>
13924
13925 commit c4ec6db074051d2f6fc76a66411c60621b22bc02
13926 Author: Wolfgang Denk <wd@denx.de>
13927 Date:   Thu Jul 31 13:57:20 2008 +0200
13928
13929     E1000: clean up CONFIG_E1000_FALLBACK_MAC handling
13930
13931     Avoid "integer constant is too large for 'long' type" warnings.
13932     And simplify the code.
13933
13934     Signed-off-by: Wolfgang Denk <wd@denx.de>
13935
13936 commit 9196b44334c330cc13de2464c59181e4db71f549
13937 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
13938 Date:   Wed Jul 30 23:21:19 2008 +0400
13939
13940     8260: Making the use of gd->pci_clk dependant on the CONFIG_PCI
13941
13942     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
13943
13944 commit 6361ad4b596f5a940a01c91ae0297d98f790cbe0
13945 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
13946 Date:   Wed Jul 30 23:20:32 2008 +0400
13947
13948     PPC: Add pci_clk in the global_data for CPM2 processors
13949
13950     This patch adds pci_clk field to the global_data structure for the
13951     processors which have CPM2 module in case the CONFIG_PCI is defined.
13952
13953     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
13954
13955 commit f0ff885ca64655bee6540eb8a25eed90b1152686
13956 Author: Kumar Gala <galak@kernel.crashing.org>
13957 Date:   Wed Jul 30 14:13:30 2008 -0500
13958
13959     mpc85xx: Update linker scripts for Freescale boards
13960
13961     * Move to using absolute addressing always.  Makes the scripts a bit more
13962       portable and common
13963     * Moved .bss after the end of the image.  These allows us to have more
13964       room in the resulting binary image for code and data.
13965     * Removed .text object files that aren't really needed
13966     * Make sure _end is 4-byte aligned as the .bss init code expects this.
13967       (Its possible that the end of .bss isn't 4-byte aligned)
13968
13969     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13970
13971 commit 57c219ad5d34dd9d49991777a62e3899595f2ec7
13972 Author: Kumar Gala <galak@kernel.crashing.org>
13973 Date:   Wed Jul 30 08:01:15 2008 -0500
13974
13975     Fix compile warnings in dlmalloc
13976
13977     The origional code was using on odd reference to get to the first
13978     real element in av_[].  The first two elements of the array are
13979     not used for actual bins, but for house keeping.  If we are more
13980     explicit about how use the first few elements we can get rid of the
13981     warnings:
13982
13983     dlmalloc.c: In function 'malloc_extend_top':
13984     dlmalloc.c:1971: warning: dereferencing type-punned pointer will break strict-aliasing rules
13985     dlmalloc.c:1999: warning: dereferencing type-punned pointer will break strict-aliasing rules
13986     dlmalloc.c:2029: warning: dereferencing type-punned pointer will break strict-aliasing rules
13987     ...
13988
13989     The logic of how this code came to be is:
13990         bin_at(0) = (char*)&(av_[2]) - 2*SIZE_SZ
13991
13992     SIZE_SZ is the size of pointer, and av_ is arry of pointers so:
13993         bin_at(0) = &(av_[0])
13994
13995     Going from there to bin_at(0)->fd or bin_at(0)->size should be straight forward.
13996
13997     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13998
13999 commit 3f9ae1a5d43c49a8ecf497470c3d1d80255e44b9
14000 Author: Stefan Roese <sr@denx.de>
14001 Date:   Wed Jul 30 10:21:01 2008 +0200
14002
14003     ppc4xx: Fix W7OLMG compile problems by adding missing LM75 defines
14004
14005     Signed-off-by: Stefan Roese <sr@denx.de>
14006
14007 commit ebb86c4ecd37a7701358284e497ca4c6483c7cc5
14008 Author: Stefan Roese <sr@denx.de>
14009 Date:   Wed Jul 30 09:59:51 2008 +0200
14010
14011     cmd_bootm.c: Fix problem with '#if (CONFIG_CMD_USB)'
14012
14013     A recent patch used '#if (CONFIG_CMD_USB)' instead of
14014     '#if defined(CONFIG_CMD_USB)'. This patch fixes this problem and makes
14015     common/bootm.c compile again.
14016
14017     Signed-off-by: Stefan Roese <sr@denx.de>
14018     Acked-by: Markus Klotzbuecher <mk@denx.de>
14019
14020 commit 2cb9080427fe641dcb71da46cd0634dd406f37ed
14021 Author: Kyungmin Park <kmpark@infradead.org>
14022 Date:   Tue Jul 22 08:01:43 2008 +0900
14023
14024     Remove unused I2C at apollon board
14025
14026     There are no I2C devices on this board.
14027
14028     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
14029
14030 commit 3c95960e526b3b026da20201db64526f46faf14b
14031 Author: Wolfgang Denk <wd@denx.de>
14032 Date:   Thu Jul 31 10:12:09 2008 +0200
14033
14034     at91rm9200dk, csb637: fix NAND related build problems
14035
14036     Tried fixing NAND support for the at91rm9200dk board; untested.
14037     Disabled NAND support in the csb637 board config file.
14038
14039     Signed-off-by: Wolfgang Denk <wd@denx.de>
14040
14041 commit 9246f5ecfd353ae297a02ffd5328402acf16c9dd
14042 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
14043 Date:   Wed Jul 30 12:39:28 2008 +0200
14044
14045     ppc4xx: ML507: Environment in flash and MTD Support
14046
14047     - Relocate the location of U-Boot in the flash
14048     - Save the environment in one sector of the flash memory
14049     - MTD Support
14050
14051     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
14052     Signed-off-by: Stefan Roese <sr@denx.de>
14053
14054 commit a8a16af4d59d14cc1c1187c10aaad80d6b8394b5
14055 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
14056 Date:   Tue Jul 29 17:16:10 2008 +0200
14057
14058     ppc4xx: ML507: Use of get_ram_size in board ml507
14059
14060     - Change suggested by WD
14061
14062     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
14063     Signed-off-by: Stefan Roese <sr@denx.de>
14064
14065 commit 01a004313c5ec2d128b611df4c208b1b0d3c3fb4
14066 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
14067 Date:   Mon Jul 21 20:30:07 2008 +0200
14068
14069     ppc4xx: ML507: U-Boot in flash and System ACE
14070
14071     This patch allows booting from FLASH the ML507 board by Xilinx.
14072     Previously, U-Boot needed to be loaded from JTAG or a Sytem ACE CF
14073
14074     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
14075     Signed-off-by: Stefan Roese <sr@denx.de>
14076
14077 commit 5c374c9ee16fee2bf68533cc4010b3c0df21f783
14078 Author: Julien May <mailinglist@miromico.ch>
14079 Date:   Mon Jun 23 13:57:52 2008 +0200
14080
14081     Add support for the hammerhead (AVR32) board
14082
14083     The Hammerhead platform is built around a AVR32 32-bit microcontroller
14084     from Atmel.  It offers versatile peripherals, such as ethernet, usb
14085     device, usb host etc.
14086
14087     The board also incooperates a power supply and is a Power over Ethernet
14088     (PoE) Powered Device (PD).
14089
14090     Additonally, a Cyclone III FPGA from Altera is integrated on the board.
14091     The FPGA is mapped into the 32-bit AVR memory bus. The FPGA offers two
14092     DDR2 SDRAM interfaces, which will cover even the most exceptional need
14093     of memory bandwidth. Together with the onboard video decoder the board
14094     is ready for video processing.
14095
14096     For more information see: http:///www.miromico.com/hammerhead
14097
14098     Signed-off-by: Julien May <mailinglist@miromico.ch>
14099     [haavard.skinnemoen@atmel.com: various small fixes and adaptions]
14100     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14101
14102 commit 09d318a8bb1444ec92e31cafcdba877eb9409e58
14103 Author: Kumar Gala <galak@kernel.crashing.org>
14104 Date:   Tue Jul 29 12:23:49 2008 -0500
14105
14106     fsl_i2c: Use timebase timer functions instead of get_timer()
14107
14108     The current implementation of get_timer() is only really useful after we
14109     have relocated u-boot to memory.  The i2c code is used before that as part
14110     of the SPD DDR setup.
14111
14112     We actually have a bug when using the get_timer() code before relocation
14113     because the .bss hasn't been setup and thus we could be reading/writing
14114     a random location (probably in flash).
14115
14116     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14117
14118 commit 4fc72a0d6ca85070a5e90d76cc5a853526ac09c4
14119 Author: Frank Svendsbøe <frank.svendsboe@gmail.com>
14120 Date:   Tue Jul 29 14:49:31 2008 +0200
14121
14122     Adder8xx: Fix CFG_MONITOR_LEN
14123
14124     Due to increased space usage, U-Boot can no longer be stored in three sectors.
14125     The current U-Boot use just over three flash sectors (197k), and U-Boot will
14126     become corrupt after saving environment variables. This patch adds another 64k
14127     to CFG_MONITOR_LEN.
14128
14129     Signed-off-by: Frank E. Svendsbøe <frank.svendsboe@gmail.com>
14130
14131 commit a4c59ad4a21140550ada6f97690d2527c4146ce5
14132 Author: Kyungmin Park <kmpark@infradead.org>
14133 Date:   Tue Jul 29 08:47:57 2008 +0900
14134
14135     Add OneNAND IPL related files to gitignore
14136
14137     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
14138
14139 commit 8d87589e8e874df7120a3d9667f051bc33bac250
14140 Author: Rafal Jaworowski <raj@semihalf.com>
14141 Date:   Mon Jul 28 20:38:25 2008 +0200
14142
14143     API: Teach the storage layer about SATA and MMC options.
14144
14145     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
14146     Acked-by: Rafal Jaworowski <raj@semihalf.com>
14147
14148 commit 6b73b754f782e1ecce5048bf20b22ce56a07a5b8
14149 Author: Rafal Jaworowski <raj@semihalf.com>
14150 Date:   Mon Jul 28 20:37:48 2008 +0200
14151
14152     API: Dump contents of sector 0 in the demo application.
14153
14154     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
14155     Acked-by: Rafal Jaworowski <raj@semihalf.com>
14156
14157 commit 13ca6305f2eba49c175f6370c35286141059c789
14158 Author: Rafal Jaworowski <raj@semihalf.com>
14159 Date:   Mon Jul 28 20:37:10 2008 +0200
14160
14161     API: Correct storage enumeration routine, other minor fixes in API storage area.
14162
14163     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
14164     Acked-by: Rafal Jaworowski <raj@semihalf.com>
14165
14166 commit 05c7fe0f049b1c9eb9a1992f27e5e350d865f4a8
14167 Author: Rafal Jaworowski <raj@semihalf.com>
14168 Date:   Mon Jul 28 20:36:19 2008 +0200
14169
14170     API: Fix compilation warnings in api_examples/demo.c.
14171
14172     Signed-off-by: Rafal Czubak <rcz@semihalf.com>
14173
14174 commit c14eefcc48212af2f3314809605698dd8393a90a
14175 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14176 Date:   Sun Jul 27 17:09:43 2008 +0200
14177
14178     Fix more printf() format warnings
14179
14180     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14181
14182 commit 936897d4d1365452bbbdf8430db5e7769ef08d38
14183 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14184 Date:   Fri Jul 25 15:18:16 2008 +0200
14185
14186     Fix remaining CFG_CMD_ define, ifdef and comments
14187
14188     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14189
14190 commit 5d1d00fb36005482e1803a00ddc46efa11d719af
14191 Author: Stefano Babic <sbabic@denx.de>
14192 Date:   Fri Jul 25 08:57:40 2008 +0200
14193
14194     Add include for config.h in command.h.
14195
14196     Because the cmd_tbl_s structure depends on the configuration file, it
14197     must be assured that config.h is included before the structure is
14198     evaluated by the compiler. If this is not certain, it could happen
14199     that the compiler generates structures of different size, depending
14200     on the fact if the source file includes <config.h> before or after
14201     <command.h>.
14202
14203     The effect is that u-boot crashes when tries to relocate the command
14204     table (for ppc) or try to access to the command table for other
14205     architectures.
14206
14207     The problem can happen on board-depending commands. All general
14208     commands under /common are unaffected, because they include already
14209     config.h before command.h.
14210
14211     Signed-off-by: Stefano Babic <sbabic@denx.de>
14212
14213 commit 2dacb734bac9dba1db9e704d3e0b200ef521c79a
14214 Author: Scott Wood <scottwood@freescale.com>
14215 Date:   Wed Jul 23 13:16:06 2008 -0500
14216
14217     NAND: $(obj)-qualify ecc.h in kilauea NAND boot Makefile.
14218
14219     This fixes building out-of-tree.
14220
14221     Signed-off-by: Scott Wood <scottwood@freescale.com>
14222
14223 commit 36d59bd9da9e15d19b867b48449408830f4e2ad5
14224 Author: Heiko Schocher <hs@denx.de>
14225 Date:   Wed Jul 23 07:30:46 2008 +0200
14226
14227     Fix warnings if compiling with IDE support.
14228
14229     cmd_ide.c:827: Warnung: weak declaration of `ide_outb' after first use results in unspecified behavior
14230     cmd_ide.c:839: Warnung: weak declaration of `ide_inb' after first use results in unspecified behavior
14231
14232     Signed-off-by: Heiko Schocher <hs@denx.de>
14233
14234 commit 7610db17fd4d59c51d825488526d85ede2f06767
14235 Author: Adrian Filipi <adrian.filipi@eurotech.com>
14236 Date:   Tue Jul 22 14:28:11 2008 -0400
14237
14238     Removed support for the adsvix board.
14239
14240     Support for the adsvix was originally provided by Applied Data
14241     Systems (ADS), inc., now EuroTech, Inc.
14242     The board never shipped aside from some sample boards.
14243
14244     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
14245
14246 commit f96b44cef897bd372beb86dde1b33637c119d84d
14247 Author: Remy Bohmer <linux@bohmer.net>
14248 Date:   Tue Jul 22 16:22:11 2008 +0200
14249
14250     ARM: set GD_FLG_RELOC for boards skipping relocation to RAM
14251
14252     If CONFIG_SKIP_RELOCATE_UBOOT is set the flag GD_FLG_RELOC is usually
14253     never set, because relocation to RAM is actually never done by U-boot
14254     itself. However, several pieces of code check if this flag is set at
14255     some time.
14256
14257     So, to make sure this flag is set on boards skipping relocation, this
14258     is added to the initialisation of U-boot at a moment where it is safe
14259     to do so.
14260
14261     Signed-off-by: Remy Bohmer <linux@bohmer.net>
14262
14263 commit e4dafff86f289b5677143a3e41da7b45c6d27fc7
14264 Author: Timur Tabi <timur@freescale.com>
14265 Date:   Mon Jul 21 14:26:23 2008 -0500
14266
14267     fsl-i2c: fix writes to data segment before relocation
14268
14269     Prevent i2c_init() in fsl_i2c.c from writing to the data segment before
14270     relocation.  Commit d8c82db4 added the ability for i2c_init() to program the
14271     I2C bus speed and save the value in i2c_bus_speed[], which is a global
14272     variable.  It is an error to write to the data segment before relocation,
14273     which is what i2c_init() does when it stores the bus speed in i2c_bus_speed[].
14274
14275     Signed-off-by: Timur Tabi <timur@freescale.com>
14276
14277 commit dbd32387920e5ad6f9dd58a7b5012bbabe2a6a21
14278 Author: Wolfgang Ocker <weo@reccoware.de>
14279 Date:   Mon Jul 28 16:56:51 2008 +0200
14280
14281     mips: Fix baudrate divisor computation on alchemy cpus
14282
14283     Use CFG_MIPS_TIMER_FREQ when computing the baudrate divisor
14284     on alchemy cpus.
14285
14286     Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
14287     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
14288
14289 commit c8c845cfdc6d0217135c1d5927eebd2b133a3314
14290 Author: Ben Warren <biggerbadderben@gmail.com>
14291 Date:   Sat Jul 5 00:08:48 2008 -0700
14292
14293     Moved initialization of AVR32 Ethernet controllers to board_eth_init()
14294
14295     Renamed initialization functions for atngw100 and atstk1000.
14296     Removed initializations for these boards from net/eth.c
14297
14298     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14299     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14300
14301 commit a229d291f33308ab7761d39f25fa1a53c0fc00a2
14302 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14303 Date:   Wed Jul 23 10:55:46 2008 +0200
14304
14305     spi flash: Fix printf() format warnings
14306
14307     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14308
14309 commit 252a5e0738bcafaf25f7fbb40f19a59abc2cb13e
14310 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14311 Date:   Wed Jul 23 10:55:31 2008 +0200
14312
14313     atmel_mci: Fix printf() format warnings
14314
14315     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14316
14317 commit 7f4b009f4232d57084ce0ec5aeb3b57bccb08e4c
14318 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14319 Date:   Wed Jul 23 10:55:15 2008 +0200
14320
14321     avr32: Fix printf() format warnings
14322
14323     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14324
14325 commit a79c3e8d9c31db25d5ca3ec8e08a97f323410dd4
14326 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14327 Date:   Wed Jul 23 10:52:19 2008 +0200
14328
14329     avr32: asm/io.h needs asm/types.h
14330
14331     map_physmem() takes a phys_addr_t as parameter. This type is defined in
14332     asm/types.h, so we need to include that file.
14333
14334     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14335
14336 commit 1953d128fd07f07d1c3810a28c0863ea64dae1b6
14337 Author: Michal Simek <monstr@monstr.eu>
14338 Date:   Thu Jul 17 12:25:46 2008 +0200
14339
14340     microblaze: Fix printf() format issues
14341
14342     Signed-off-by: Michal Simek <monstr@monstr.eu>
14343
14344 commit de2a07e534f18b1ca5f9869a4ef0604ca829cff0
14345 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
14346 Date:   Thu Jul 17 07:27:51 2008 +0530
14347
14348     Remove unused code from lib_arm/bootm.c
14349
14350     Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
14351
14352 commit ffbb5cb942e9856fa24e946977e0a60c64df04ab
14353 Author: Detlev Zundel <dzu@denx.de>
14354 Date:   Wed Jul 16 18:56:45 2008 +0200
14355
14356     tqm85xx: Demystify 'DK: !!!' comment
14357
14358     Signed-off-by: Detlev Zundel <dzu@denx.de>
14359
14360 commit b2f44ba570f3a01113bbb745daf46f3858d22f53
14361 Author: Detlev Zundel <dzu@denx.de>
14362 Date:   Wed Jul 16 18:56:44 2008 +0200
14363
14364     83xx/85xx/86xx: Add LTEDR local bus definitions
14365
14366     Signed-off-by: Detlev Zundel <dzu@denx.de>
14367
14368 commit f13f64cf42d5abec3e0f920233f6a7a61e7ae494
14369 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
14370 Date:   Wed Jul 16 16:22:32 2008 +0200
14371
14372     serial_xuartlite.c: fix compiler warnings
14373
14374     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
14375     Acked-by: Grant Likely <grant.likely@secretlab.ca>
14376
14377 commit 86446d3a5d9d3ca81e85d1ccd3accaaae6f8e3c9
14378 Author: Stefan Roese <sr@denx.de>
14379 Date:   Fri Jul 18 11:03:35 2008 +0200
14380
14381     POST: Add disable interrupts in some of the missing CPU POST tests
14382
14383     Some CPU POST tests did not disable the interrupts while running. This
14384     seems to be necessary to protect this self modifying code.
14385
14386     Signed-off-by: Stefan Roese <sr@denx.de>
14387
14388 commit 97a3bf268d096e0e97e54048448c35114edcf557
14389 Author: Stefan Roese <sr@denx.de>
14390 Date:   Fri Jul 18 10:43:24 2008 +0200
14391
14392     ide: Use CFG_64BIT_LBA instead of CFG_64BIT_STRTOUL
14393
14394     This is needed for boards that define CFG_64BIT_STRTOUL but don't define
14395     CFG_64BIT_LBA.
14396
14397     Signed-off-by: Stefan Roese <sr@denx.de>
14398
14399 commit 0043ac55024963295fc79b39af85b6dc3b261e17
14400 Author: Niklaus Giger <niklaus.giger@netstal.com>
14401 Date:   Fri Jul 18 11:22:23 2008 +0200
14402
14403     POST PPC4xx/spr IVPR only if PPC440
14404
14405     The SPR IVPR register is only present (as far as I know) for
14406     processors with a PPC440 core.
14407
14408     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
14409     Acked-by: Stefan Roese <sr@denx.de>
14410
14411 commit 1092fbd64748dfa2e979b102611ece9bc5ec1855
14412 Author: Stefan Roese <sr@denx.de>
14413 Date:   Fri Jul 18 10:42:29 2008 +0200
14414
14415     ppc4xx: Enable 64bit printf format on 440/460 platforms
14416
14417     This patch defines CFG_64BIT_VSPRINTF and CFG_64BIT_STRTOUL for all
14418     440/460 platforms. This may be needed since those platforms support
14419     36bit physical address space.
14420
14421     Signed-off-by: Stefan Roese <sr@denx.de>
14422
14423 commit 66fe183b1dd9c7534605147a8ecfed1c02345ee5
14424 Author: Stefan Roese <sr@denx.de>
14425 Date:   Fri Jul 18 15:57:23 2008 +0200
14426
14427     ppc4xx: Fix incorrect MODTx setup for some DIMM configurations
14428
14429     This patch fixes a problem with incorrect MODTx (On Die Termination)
14430     setup for a configuration with multiple DIMM's and multiple ranks.
14431     Without this change Katmai was unable to boot Linux with DDR2 frequency
14432     >= 533MHz and mem>=3GB. With this patch Katmai successfully boots Linux
14433     with DDR2 frequency = 640MHz and mem=4GB.
14434
14435     Signed-off-by: Stefan Roese <sr@denx.de>
14436
14437 commit 60204d06ed9f8c2a67cc79eb67fd2b1d22bcbc8c
14438 Author: Stefan Roese <sr@denx.de>
14439 Date:   Fri Jul 18 12:24:41 2008 +0200
14440
14441     ppc4xx: Minor coding style cleanup of Xilinx Virtex5 ml507 support
14442
14443     Signed-off-by: Stefan Roese <sr@denx.de>
14444
14445 commit 086511fc96a8a9bb56e5e19a3d84c40f4dba80cc
14446 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
14447 Date:   Thu Jul 17 12:47:09 2008 +0200
14448
14449     ppc4xx: ML507 Board Support
14450
14451     The Xilinx ML507 Board is a Virtex 5 prototyping board that includes,
14452         among others:
14453         -Virtex 5 FX FPGA (With a ppc440x5 in it)
14454         -256MB of SDRAM2
14455         -32MB of Flash
14456         -I2C Eeprom
14457         -System ACE chip
14458         -Serial ATA connectors
14459         -RS232 Level Conversors
14460         -Ethernet Transceiver
14461
14462     This patch gives support to a standard design produced by EDK for this
14463     board: ppc440, uartlite, xilinx_int and flash
14464
14465     - Includes Changes propossed by Stefan Roese and Michal Simek
14466
14467     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
14468     Acked-by: Stefan Roese <sr@denx.de>
14469
14470 commit d865fd09809a3a18669f35f970781820af40e4de
14471 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
14472 Date:   Thu Jul 17 11:44:12 2008 +0200
14473
14474     ppc4xx: CPU PPC440x5 on Virtex5 FX
14475
14476     -This patchs gives support for the embbedded ppc440
14477      on the Virtex5 FPGAs
14478     -interrupts.c divided in uic.c and interrupts.c
14479     -xilinx_irq.c for xilinx interrupt controller
14480     -Include modifications propossed by  Stefan Roese
14481
14482     Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
14483     Acked-by: Stefan Roese <sr@denx.de>
14484
14485 commit 340ccb260f21516be360745d5c5e3bd0657698df
14486 Author: Sebastian Siewior <bigeasy@linutronix.de>
14487 Date:   Wed Jul 16 20:04:49 2008 +0200
14488
14489     cfi_flash: fix flash on BE machines with CFG_WRITE_SWAPPED_DATA
14490
14491     This got broken by commits 93c56f212c
14492      [cfi_flash: support of long cmd in U-boot.]
14493
14494     That command needs to be in little endian format on BE machines
14495     with CFG_WRITE_SWAPPED_DATA. Without this patch, the command 0xf0
14496     gets saved on stack as 0x00 00 00 f0 and 0x00 gets written into
14497     the cmdbuf in case portwidth = chipwidth = 8bit.
14498
14499     Cc: Alexey Korolev <akorolev@infradead.org>
14500     Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
14501     Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
14502
14503 commit 11188d55bc16dd907451c00282e00a038f73dd62
14504 Author: Stefan Roese <sr@denx.de>
14505 Date:   Thu Jul 17 10:40:51 2008 +0200
14506
14507     ppc4xx: Fix alphabetical order in 4xx Makefile part (redwood)
14508
14509     Signed-off-by: Stefan Roese <sr@denx.de>
14510
14511 commit 021f6df6e96af5b387810cf96d24848da1faa55c
14512 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
14513 Date:   Thu Jul 10 17:20:51 2008 +0400
14514
14515     83xx: mpc8315erdb: fix silly thinko in fdt_tsec1_fixup
14516
14517     The thinko was quite silly indeed, I messed with !ptr. Normally this
14518     would trigger some fault, but in U-Boot NULL pointer is equal to phys
14519     0, so the code was working still, just didn't actually test mpc8315erdb
14520     environment variable value. Heh.
14521
14522     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
14523     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14524
14525 commit 25f5f0d49a3ae89bf4396f2557ce98debfef21da
14526 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
14527 Date:   Tue Jul 8 21:00:04 2008 +0400
14528
14529     83xx: mpc8315erdb: add support for switching between ULPI/UTMI USB PHYs
14530
14531     Freescale ships MPC8315E-RDB boards either with TSEC1 and USB UTMI
14532     support, or without TSEC1 but with USB ULPI PHY support in addition.
14533     With this patch user can specify desired USB PHY.
14534
14535     Also, it seems that we can't distinguish the two boards in software, so
14536     user have to set `mpc8315erdb' environment variable to either 'tsec1'
14537     (TSEC1 enabled) or `ulpi' (board with ULPI PHY, TSEC1 disabled), so that
14538     Linux will not probe for TSEC1.
14539
14540     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
14541     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14542
14543 commit 015b27b9e165fcf220e42f2c4afbaeaa2758fcf6
14544 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
14545 Date:   Tue Jul 8 20:59:43 2008 +0400
14546
14547     fdt_support: fdt_fixup_dr_usb: add support for phy_type fixups
14548
14549     Currently U-Boot can only fixup the usb dr_mode, but some boards (namely
14550     MPC8315E-RDB) can use two PHY types: ULPI (stand-alone OTG port) or UTMI
14551     (connected to the four-ports hub, usb host only).
14552
14553     This patch implements support for passing Dual-Role USB controller's
14554     device tree property phy_type through the usb_phy_type environment
14555     variable.
14556
14557     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
14558     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
14559     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14560
14561 commit 699f05125509249072a0b865c8d35520d97cd501
14562 Author: Wolfgang Denk <wd@denx.de>
14563 Date:   Tue Jul 15 22:22:44 2008 +0200
14564
14565     Prepare v1.3.4-rc1: Code cleanup, update CHANGELOG, sort Makefile
14566
14567     Signed-off-by: Wolfgang Denk <wd@denx.de>
14568
14569 commit bcab74baa6b1b1c969038ab6f64a186239180405
14570 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
14571 Date:   Tue Jul 15 11:23:02 2008 -0400
14572
14573     Round the serial port clock divisor value returned by calc_divisor()
14574
14575     Round the serial port clock divisor value returned by
14576     calc_divisor()
14577
14578     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
14579     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
14580
14581 commit 0328ef0edfe950f0b7b8b368dae482531506b74a
14582 Author: Robin Getz <rgetz@blackfin.uclinux.org>
14583 Date:   Tue Jul 15 21:44:46 2008 +0200
14584
14585     Fix DHCP protocol so U-Boot does not respond too early
14586     on the network with it's offered IP number; it should not reply until
14587     after it has received a DHCP ACK message. Also ensures that U-Boot
14588     does it's DHCPREQUEST as broadcast (per RFC 2131).
14589
14590     Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
14591     Acked-by: Ben Warren <biggerbadderben@gmail.com>
14592     Signed-off-by: Wolfgang Denk <wd@denx.de>
14593
14594 commit 7288f972fcaee14a9741cb08c8688a23874b4a2e
14595 Author: Sebastian Siewior <bigeasy@linutronix.de>
14596 Date:   Tue Jul 15 13:35:23 2008 +0200
14597
14598     cfi_flash: make the command u32 only
14599
14600     This got changed by commit 93c56f212c
14601     [cfi_flash: support of long cmd in U-boot.]
14602
14603     Long is the wrong type because it will behave differently on 64bit
14604     machines in a way that is probably not expected. u32 should be
14605     enough.
14606
14607     Cc: Alexey Korolev <akorolev@infradead.org>
14608     Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
14609     Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
14610
14611 commit 31cfe57491b183acae575d486729e158f016c27b
14612 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14613 Date:   Mon Jul 14 23:48:41 2008 +0200
14614
14615     tools/gitignore: update to all generated files
14616
14617     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14618
14619 commit 5e0de0e216b8fb27634afb11c60a2fa24c23349e
14620 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
14621 Date:   Wed Jul 9 18:30:44 2008 +0200
14622
14623     mpc5xxx: Add MVBC_P board support
14624
14625     The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet
14626     controller (using e1000) and custom Altera Cyclone-II FPGA on PCI.
14627
14628     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
14629     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
14630
14631 commit e2d31fb3450653115452144363d5bde4e5e3e693
14632 Author: Timur Tabi <timur@freescale.com>
14633 Date:   Thu Jun 19 17:56:11 2008 -0500
14634
14635     Update Freescale sys_eeprom.c to handle CCID formats
14636
14637     Update the sys_eeprom.c file to handle both NXID and CCID EEPROM formats.  The
14638     NXID format replaces the older CCID format, but it's important to support both
14639     since most boards out there still use the CCID format.  This change is in
14640     preparation for using one file to handle both formats.  This will also unify
14641     EEPROM support for all Freescale 85xx and 86xx boards.
14642
14643     Also update the 86xx board header files to use the standard CFG_I2C_EEPROM_ADDR
14644     instead of ID_EEPROM_ADDR.
14645
14646     Signed-off-by: Timur Tabi <timur@freescale.com>
14647
14648 commit d85f46a25ccb33ed9b295de3c2cfe1ce270ece9a
14649 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14650 Date:   Fri Jul 11 17:22:43 2008 +0900
14651
14652     pci: sh: Add pci_skip_dev and pci_print_dev function
14653
14654     Add function of new PCI, pci_skip_dev and pci_print_dev.
14655
14656     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14657     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14658
14659 commit 1107014e835ec9d46c0333f4211d104f77442db0
14660 Author: Andy Fleming <afleming@freescale.com>
14661 Date:   Mon Jul 14 20:29:07 2008 -0500
14662
14663     Clean up INIT_RAM options
14664
14665     The L2_INIT_RAM option was unused, and recent changes to the TLB code
14666     meant that the INIT_RAM TLBs weren't being cleared out.  In order to reduce
14667     the amount of mapped space attached to nothing, we change things so the TLBs
14668     get cleared.
14669
14670     Signed-off-by: Andy Fleming <afleming@freescale.com>
14671
14672 commit 4524561820a9327e89107854b3a7187800ccf719
14673 Author: Andy Fleming <afleming@freescale.com>
14674 Date:   Mon Jul 14 20:26:57 2008 -0500
14675
14676     Remove fake flash bank from 8544 DS
14677
14678     The fake flash bank was generating errors for anyone who didn't have a
14679     PromJET hooked up to the board.  As that constitutes the vast majority of
14680     users, we remove it.
14681
14682     Signed-off-by: Andy Fleming <afleming@freescale.com>
14683
14684 commit 630d9bfcb5f6d3a43f251901a6b480994dcb6ea3
14685 Author: Kumar Gala <galak@kernel.crashing.org>
14686 Date:   Mon Jul 14 14:07:03 2008 -0500
14687
14688     MPC8544DS: Add ATI Video card support
14689
14690     Add support for using a PCIe ATI Video card on PCIe2.
14691
14692     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14693
14694 commit 7f9f4347cf325c63a39fe30910f3fb211ae2cc15
14695 Author: Kumar Gala <galak@kernel.crashing.org>
14696 Date:   Mon Jul 14 14:07:02 2008 -0500
14697
14698     85xx: Add some L1/L2 SPR register definitions
14699
14700     Add new L1/L2 SPRs related to e500mc cache config and control.
14701
14702     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14703
14704 commit e5852787f0c3c442a276262f13d91ca450605ac0
14705 Author: Kumar Gala <galak@kernel.crashing.org>
14706 Date:   Mon Jul 14 14:07:01 2008 -0500
14707
14708     MPC8544DS: Report board id, board version and fpga version.
14709
14710     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14711
14712 commit 73f15a060f67a2462551c334215bd20fac6b81d1
14713 Author: Kumar Gala <galak@kernel.crashing.org>
14714 Date:   Mon Jul 14 14:07:00 2008 -0500
14715
14716     85xx: Cleanup L2 cache size detection
14717
14718     The L2 size detection code was a bit confusing and we kept having to add
14719     code to it to handle new processors.  Change the sense of detection so we
14720     look for the older processors that aren't changing.
14721
14722     Also added support for 1M cache size on 8572.
14723
14724     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14725
14726 commit c3ca7e5e00a24451f20df3bded9a61ba541921df
14727 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
14728 Date:   Fri Jul 11 15:33:08 2008 -0400
14729
14730     sbc8560: enable CONFIG_OF_LIBFDT by default
14731
14732     Make the default build for the sbc8560 board be powerpc
14733     capable with libfdt support.
14734
14735     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
14736
14737 commit 6b44a44ec2aab180d7095c1c92e669cee1d3e3bd
14738 Author: Andy Fleming <afleming@freescale.com>
14739 Date:   Mon Jul 14 20:04:40 2008 -0500
14740
14741     Fix indentation for default boot environment variables
14742
14743     This was proposed by Paul Gortmaker in response to Wolfgang's comments on
14744     similar #defines in sbc8560.h.
14745
14746     Signed-off-by: Andy Fleming <afleming@freescale.com>
14747
14748 commit 37fef499104e28e0a83b02b85ca0d1fbe80d294a
14749 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
14750 Date:   Fri Jul 11 15:33:07 2008 -0400
14751
14752     sbc8560: add default fdt values
14753
14754     Add in the default fdt settings and the typical EXTRA_ENV
14755     settings as borrowed from the mpc8560ads.  Fix a couple
14756     of stale references to the mpc8560ads dating back to the
14757     original clone/fork.
14758
14759     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
14760     Signed-off-by: Andy Fleming <afleming@freescale.com>
14761
14762 commit d04e76edf92f7f89696989e8702b97e020455af3
14763 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
14764 Date:   Fri Jul 11 15:33:06 2008 -0400
14765
14766     sbc8560: add in ft_board_setup()
14767
14768     Add in for the sbc8560, the ft_board_setup() routine, based on what is
14769     in use for the Freescale MPC8560ADS board.
14770
14771     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
14772
14773 commit c158bcaca3b31cbe38c4143812e6170e38a57393
14774 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
14775 Date:   Fri Jul 11 15:33:05 2008 -0400
14776
14777     sbc8560: define eth0 and eth1 instead of eth1 and eth2
14778
14779     The existing config doesn't define CONFIG_HAS_ETH0, and so the
14780     fdt support doesn't update the zeros in the dtb local-mac with
14781     real data from the u-boot env.  Since the existing config is
14782     tailored to just two interfaces, get rid of the ETH2 definitions
14783     at the same time.
14784
14785     Also don't include any end user specific data into the environment
14786     by default -- things like MAC address, network parameters etc. need
14787     to come from the end user.
14788
14789     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
14790     Signed-off-by: Andy Fleming <afleming@freescale.com>
14791
14792 commit 0ec436d2f95076d9e46ae594db6e9b1d8732840d
14793 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
14794 Date:   Fri Jul 11 15:33:04 2008 -0400
14795
14796     sbc8560: properly set cs0_bnds for 512MB
14797
14798     The sbc8560 board ships with 512MB of memory installed,
14799     but the current cs0_bnds is hard coded for 256MB.  Set the
14800     value based on CFG_SDRAM_SIZE.
14801
14802     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
14803
14804 commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27
14805 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
14806 Date:   Fri Jul 11 15:33:03 2008 -0400
14807
14808     sbc8560: proper definitions for TSEC.
14809
14810     The definitions for the TSEC have become out of date.  There is no
14811     longer any such options like "CONFIG_MPC85xx_TSEC1" or similar.
14812     Update to match those of other boards, like the MPC8560ADS.
14813
14814     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
14815     Acked-by: Ben Warren <biggerbadderben@gmail.com>
14816
14817 commit 71074abbe0c76429577aff58aeff0a24ad210b23
14818 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
14819 Date:   Wed Jul 9 13:23:05 2008 -0400
14820
14821     8xxx-fdt: set ns16550 clock from CFG_NS16550_CLK, not bi_busfreq
14822
14823     Some boards that have external 16550 UARTs don't have a direct
14824     tie between bi_busfreq and the clock used for the UARTs.  Boards
14825     that do have such a tie should set CFG_NS16550_CLK to be
14826     get_bus_freq(0) -- which most of them do already.
14827
14828     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
14829     Acked-by: Kim Phillips <kim.phillips@freescale.com>
14830
14831 commit 24ef76f320fbadf074105229826514db140f939f
14832 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
14833 Date:   Wed Jul 2 07:03:53 2008 -0700
14834
14835     Change the temp map to ROM to align addresses to page size.
14836
14837     With a page size of BOOKE_PAGESZ_16M, both the real and effective
14838     addresses must be multiples of 16MB.  The hardware silently truncates
14839     them so the code happens to work.  This patch clarifies the situation
14840     by establishing addresses that the hardware doesn't need to truncate.
14841
14842     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
14843     Signed-off-by: Andy Fleming <afleming@freescale.com>
14844
14845 commit 06b4186c10204b6683edb047ac5f506fb0ce0937
14846 Author: Kim Phillips <kim.phillips@freescale.com>
14847 Date:   Tue Jun 17 17:45:22 2008 -0500
14848
14849     mpc85xx: use IS_E_PROCESSOR macro
14850
14851     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14852
14853 commit 6b70ffb9d1b2e791161f3cf92937aa45b4a07b78
14854 Author: Kim Phillips <kim.phillips@freescale.com>
14855 Date:   Mon Jun 16 15:55:53 2008 -0500
14856
14857     fdt: add crypto node handling for MPC8{3, 5}xxE processors
14858
14859     Delete the crypto node if not on an E-processor.  If on 8360 or 834x family,
14860     check rev and up-rev crypto node (to SEC rev. 2.4 property values)
14861     if on an 'EA' processor, e.g. MPC8349EA.
14862
14863     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14864
14865 commit 85e5808e8ea9f77da5219f23394112f0b424fa5e
14866 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
14867 Date:   Fri Jul 11 15:10:11 2008 -0400
14868
14869     ARM DaVinci: Remove extern phy_t declaration by moving code to proper place
14870
14871     ARM DaVinci: Remove extern phy_t declaration by moving
14872     code to proper place.
14873
14874     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
14875
14876 commit 3a9e7ba2ac14018c5dd1e78a7dd735571569c971
14877 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
14878 Date:   Fri Jul 11 15:10:10 2008 -0400
14879
14880     ARM DaVinci: Remove duplicate definitions of MACH_TYPE and prototype of i2c_init()
14881
14882     ARM DaVinci: Remove duplicate definitions of MACH_TYPE
14883     and prototype of i2c_init().
14884
14885     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
14886
14887 commit 348753d416cd2c9e7ec6520a544c8f33cf02a560
14888 Author: Kumar Gala <galak@kernel.crashing.org>
14889 Date:   Mon Jul 14 14:03:02 2008 -0500
14890
14891     Fix some more printf() format problems.
14892
14893     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14894
14895 commit 45b16d22c64674ccd8c4637456a987463609141c
14896 Author: Wolfgang Denk <wd@denx.de>
14897 Date:   Mon Jul 14 22:38:42 2008 +0200
14898
14899     Fix coding style; make code better parsable by external tools
14900
14901     Signed-off-by: Wolfgang Denk <wd@denx.de>
14902
14903 commit b880cbf207b1c109d3a661417a8feddcbd729a9d
14904 Author: Wolfgang Denk <wd@denx.de>
14905 Date:   Mon Jul 14 21:19:08 2008 +0200
14906
14907     cpu/i386/serial.c: Fix syntax errors
14908
14909     Signed-off-by: Wolfgang Denk <wd@denx.de>
14910
14911 commit e2d45e6f4d9919e1afeac5e09557b2252832fccf
14912 Author: Wolfgang Denk <wd@denx.de>
14913 Date:   Mon Jul 14 20:41:35 2008 +0200
14914
14915     elppc board: Coding style cleanup.
14916
14917     Signed-off-by: Wolfgang Denk <wd@denx.de>
14918
14919 commit 82b24a8a505fc81466484b3c55b574ee0b4205bc
14920 Author: Wolfgang Denk <wd@denx.de>
14921 Date:   Mon Jul 14 20:40:22 2008 +0200
14922
14923     elppc board: fix syntax error.
14924
14925     Signed-off-by: Wolfgang Denk <wd@denx.de>
14926
14927 commit 0fe340585a6a48bd392d315b0dd84d068b1c3790
14928 Author: Wolfgang Denk <wd@denx.de>
14929 Date:   Mon Jul 14 20:38:26 2008 +0200
14930
14931     EB+MCF-EV123 board: fix coding style (alingment)
14932
14933     Signed-off-by: Wolfgang Denk <wd@denx.de>
14934
14935 commit 6841785a0bb0f38175456a923edd634fb7dd6947
14936 Author: Wolfgang Denk <wd@denx.de>
14937 Date:   Mon Jul 14 20:36:44 2008 +0200
14938
14939     EB+MCF-EV123 board: fix syntx error
14940
14941     Signed-off-by: Wolfgang Denk <wd@denx.de>
14942
14943 commit ab5cda9f88c3eaf9cf599adc3a3375906c4ed904
14944 Author: Andy Fleming <afleming@freescale.com>
14945 Date:   Mon Jul 7 18:02:08 2008 -0500
14946
14947     Remove LBC_CACHE_BASE from 8544 DS
14948
14949     The 8544 DS doesn't have any cacheable Local Bus memories set up.  By mapping
14950     space for some anyway, we were allowing speculative loads into unmapped space,
14951     which would cause an exception (annoying, even if ultimately harmless).
14952     Removing LBC_CACHE_BASE, and using LBC_NONCACHE_BASE for the LBC LAW solves the
14953     problem.
14954
14955     Signed-off-by: Andy Fleming <afleming@freescale.com>
14956
14957 commit d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90
14958 Author: Wolfgang Denk <wd@denx.de>
14959 Date:   Mon Jul 14 15:19:07 2008 +0200
14960
14961     Code cleanup: fix old style assignment ambiguities like "=-" etc.
14962
14963     Signed-off-by: Wolfgang Denk <wd@denx.de>
14964
14965 commit d7854223c5c85b5849fbf422cc8ac0efef461c37
14966 Author: Wolfgang Denk <wd@denx.de>
14967 Date:   Mon Jul 14 15:10:53 2008 +0200
14968
14969     AmigaOneG3SE: remove dead and incomplete files
14970
14971     Signed-off-by: Wolfgang Denk <wd@denx.de>
14972
14973 commit b64f190b7a34224df09b559ca111eb1b733f00ad
14974 Author: Wolfgang Denk <wd@denx.de>
14975 Date:   Mon Jul 14 15:06:35 2008 +0200
14976
14977     Fix printf() format issues with sizeof_t types by using %zu
14978
14979     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14980     Signed-off-by: Wolfgang Denk <wd@denx.de>
14981
14982 commit f354b73e16a86f9e9085471a830605f74f84ea5d
14983 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14984 Date:   Mon Jul 14 14:11:45 2008 +0200
14985
14986     vsprintf: add z and t options
14987
14988     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14989
14990 commit 25dbe98abb686d8210e1731fba85ced7d3ce874c
14991 Author: Wolfgang Denk <wd@denx.de>
14992 Date:   Sun Jul 13 23:07:35 2008 +0200
14993
14994     Fix some more printf() format issues.
14995
14996     Signed-off-by: Wolfgang Denk <wd@denx.de>
14997
14998 commit d5996dd555edf52721b7691a4c59de016251ed39
14999 Author: Wolfgang Denk <wd@denx.de>
15000 Date:   Sun Jul 13 19:51:00 2008 +0200
15001
15002     Fix some more printf() format problems.
15003
15004     Signed-off-by: Wolfgang Denk <wd@denx.de>
15005
15006 commit 0f9d5f6d6e814907794995c6a22af752040c35d9
15007 Author: Wolfgang Denk <wd@denx.de>
15008 Date:   Sun Jul 13 19:48:26 2008 +0200
15009
15010     ADS5121: Fix (delete) incorrect ads5121_diu_init() prototype
15011
15012     Signed-off-by: Wolfgang Denk <wd@denx.de>
15013
15014 commit 322716a1d1eb33a71067ba0eb1c5346fb2dd6b34
15015 Author: Anatolij Gustschin <agust@denx.de>
15016 Date:   Sat Jul 12 17:31:36 2008 +0200
15017
15018     Fix bug in Lime video driver
15019
15020     We need to wait while drawing engine clears frame
15021     buffer before any further software accesses to frame
15022     buffer will be initiated. Otherwise software drawn
15023     parts could be partially destroyed by the drawing
15024     engine or even GDC chip freeze could occur (as
15025     observed on socrates board).
15026
15027     Signed-off-by: Anatolij Gustschin <agust@denx.de>
15028
15029 commit 0a5676befb0c590212a53f7627fa5d0d8a84bf34
15030 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15031 Date:   Sat Jul 12 14:36:34 2008 +0200
15032
15033     Fix some more printf() format issues.
15034
15035     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15036
15037 commit 18c8a28aad49803780bd8d52432ded528e37e701
15038 Author: Michal Simek <monstr@monstr.eu>
15039 Date:   Fri Jul 11 15:11:57 2008 +0200
15040
15041     hwmon: rename CONFIG_DS1722 to CONFIG_DTT_DS1722
15042
15043     Signed-off-by: Michal Simek <monstr@monstr.eu>
15044     Acked-by: Stefan Roese <sr@denx.de>
15045
15046 commit 6ecbb45bb027e90c19d63b48e7b0c05acc1a87c0
15047 Author: Michal Simek <monstr@monstr.eu>
15048 Date:   Fri Jul 11 11:50:53 2008 +0200
15049
15050     hwmon: Cleaning hwmon devices
15051
15052     Clean Makefile
15053     Move device specific values to driver for better reading
15054
15055     Signed-off-by: Michal Simek <monstr@monstr.eu>
15056     Acked-by: Stefan Roese <sr@denx.de>
15057
15058 commit c78fce699c7ff467ecd841da6a79f065180bf578
15059 Author: Michal Simek <monstr@monstr.eu>
15060 Date:   Fri Jul 11 10:43:13 2008 +0200
15061
15062     FIS: repare incorrect return value with ramdisk handling
15063
15064     Microblaze and PowerPC use boot_get_ramdisk for loading
15065     ramdisk to memory with checking return value.
15066     Return 0 means success. Return 1 means failed.
15067     Here is correspond part of code from bootm.c which check
15068     return code.
15069
15070     ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC,
15071                 &rd_data_start, &rd_data_end);
15072     if (ret)
15073         goto error;
15074
15075     Signed-off-by: Michal Simek <monstr@monstr.eu>
15076
15077 commit 84a2c64a26dc5e275e1cf4e76a6e194a18fb5477
15078 Author: Michal Simek <monstr@monstr.eu>
15079 Date:   Fri Jul 11 10:10:32 2008 +0200
15080
15081     microblaze: Remove useless ancient headers
15082
15083     Signed-off-by: Michal Simek <monstr@monstr.eu>
15084
15085 commit 53ea981c3124b13c137c2d10e975b7c6672266e0
15086 Author: Michal Simek <monstr@monstr.eu>
15087 Date:   Fri Jul 11 10:10:31 2008 +0200
15088
15089     microblaze: Clean uartlite driver
15090
15091     Redesign uartlite driver to in_be32 and out_be32 macros
15092     Fix missing header in io.h
15093
15094     Signed-off-by: Michal Simek <monstr@monstr.eu>
15095     Acked-by: Grant Likely <grant.likely@secretlab.ca>
15096
15097 commit dbf3dfb386a2d5d2381814e39985ab2e21894550
15098 Author: Marcel Ziswiler <marcel@ziswiler.com>
15099 Date:   Fri Jul 11 02:39:14 2008 +0200
15100
15101     Enable passing of ATAGs required by latest Linux kernel.
15102
15103 commit ef130d3093bdf88f01cf3e000fe5df249ebf2b1a
15104 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
15105 Date:   Fri Jul 11 10:24:15 2008 -0400
15106
15107     Fix integer overflow warning in calc_divisor()
15108
15109     which happened when rounding the serial port clock divisor
15110
15111     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
15112
15113 commit 6b760189d77f001684e3160b355c185ca3804961
15114 Author: Marcel Ziswiler <marcel@ziswiler.com>
15115 Date:   Fri Jul 11 01:09:59 2008 +0200
15116
15117     Fix build time warnings in function mmc_decode_csd()
15118
15119     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
15120
15121 commit c15947d6ce0d59925c97fdfac692476af6e262d0
15122 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
15123 Date:   Thu Jul 10 10:46:33 2008 -0400
15124
15125     ARM: Fix for broken compilation when defining CONFIG_CMD_ELF
15126
15127     caused by missing dcache status/enable/disable functions.
15128
15129     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
15130
15131 commit 068c1b77c8f42a1a31084d2f4b1d5cc807c1a9ce
15132 Author: Stefan Roese <sr@denx.de>
15133 Date:   Thu Jul 10 13:53:31 2008 +0200
15134
15135     ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
15136
15137     This patch removes some ft_board_setup() functions from some 4xx boards.
15138     This can be done since we now have a default weak implementation for this
15139     in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
15140     implementation like canyonlands need their own version.
15141
15142     Signed-off-by: Stefan Roese <sr@denx.de>
15143
15144 commit d39a089f8bc960ba9ae6a08fda5582b578620cc1
15145 Author: Wolfgang Denk <wd@denx.de>
15146 Date:   Sun Jul 13 14:58:16 2008 +0200
15147
15148     Add last known maintainer for orphaned boards; reformat.
15149
15150     Signed-off-by: Wolfgang Denk <wd@denx.de>
15151
15152 commit 5c761d57bb9940e016d561fda8b2ed84c55de5b6
15153 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
15154 Date:   Thu Jul 10 13:16:04 2008 +0200
15155
15156     Remove kharris@nexus-tech.net from MAINTAINERS
15157
15158     Mail to kharris@nexus-tech.net bounces because the user doesn't exist
15159     anymore. You can't be a maintainer without a valid e-mail address, so
15160     move all boards that used to be maintained by Kyle Harris to the
15161     "orphaned" list.
15162
15163     Currently, only PowerPC has a list of orphaned boards, so this patch
15164     creates one for ARM as well.
15165
15166     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
15167
15168 commit 17bd17071463b0cde391ac4a0863d600474b4ea1
15169 Author: Anatolij Gustschin <agust@denx.de>
15170 Date:   Thu Jul 10 01:15:10 2008 +0200
15171
15172     at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
15173
15174     On the at91sam9260ep development board there is an EEPROM
15175     connected to the TWI interface (PA23, PA24 Peripheral A
15176     multiplexing), so we cannot use these pins as ETX2, ETX3.
15177     This patch configures PA10, PA11 pins for ETX2, ETX3
15178     instead of PA23, PA24 pins.
15179
15180     Signed-off-by: Anatolij Gustschin <agust@denx.de>
15181     Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de>
15182
15183 commit f889265753ddf4465d9d580827bb9289bfac55d6
15184 Author: Kenneth Johansson <kenneth@southpole.se>
15185 Date:   Sat Jul 12 13:18:34 2008 -0600
15186
15187     fix DIU for small screens
15188
15189     The DIU_DIV register is 8 bit not 5 bit. This prevented large DIV values
15190     so it was not possible to set a slow pixel clock and thus prevented
15191     display on small screens.
15192
15193     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
15194     Acked-by: John Rigby <jrigby@freescale.com>
15195
15196 commit b60b8573875e650e4c69be667bfc88d3ed474a7c
15197 Author: John Rigby <jrigby@freescale.com>
15198 Date:   Fri Jul 11 14:44:09 2008 -0600
15199
15200     ADS5121 cleanup compile warnings
15201
15202     board/ads5121/iopin.c
15203         Replace bit fields in struct iopin_t with a single
15204         field and intialize it via plain old macros.
15205         This fixes the type pun warnings and makes the code
15206         more readable.
15207
15208     board/ads5121/ads5121.c
15209         Add include iopin.h to ads5121.c for the iopin_initialize
15210         prototype.
15211
15212         Add an extern void ads5121_diu_init(void)
15213
15214     Signed-off-by: John Rigby <jrigby@freescale.com>
15215
15216 commit bde63587622c4b830a27d1ddf7265843de9e994f
15217 Author: Wolfgang Denk <wd@denx.de>
15218 Date:   Fri Jul 11 22:56:11 2008 +0200
15219
15220     Fix some more printf() format issues.
15221
15222     Signed-off-by: Wolfgang Denk <wd@denx.de>
15223
15224 commit 184f1b404a90eef8b425c0e7b3018d59ef9982c8
15225 Author: Wolfgang Denk <wd@denx.de>
15226 Date:   Fri Jul 11 22:55:31 2008 +0200
15227
15228     Fixed some out-of-tree build issues
15229
15230     Signed-off-by: Wolfgang Denk <wd@denx.de>
15231
15232 commit 47bf9c71ae838305a3ea3161af8d14e6f3fc2c82
15233 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15234 Date:   Wed Jul 9 16:20:23 2008 -0500
15235
15236     ColdFire: Fix FB CS not setup properly for Mcf5282
15237
15238     Remove all CFG_CSn_RO in cpu/mcf52x2/cpu_init.c. If
15239     CFG_CSn_RO is defined as 0, the chipselect will not
15240     be assigned.
15241
15242     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15243
15244 commit bc3ccb139f0836f0a834cfd370a120a00ad7e63a
15245 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15246 Date:   Wed Jul 9 15:47:27 2008 -0500
15247
15248     ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC
15249
15250     Rename CONFIG_MCFTMR to CONFIG_MCFRTC to include real time
15251     clock module in cpu/<cf arch>/cpu_init.c
15252
15253     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15254
15255 commit f94945b517f10e01927101679c62361e03d4e837
15256 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15257 Date:   Wed Jul 9 15:25:01 2008 -0500
15258
15259     ColdFire: Fix incorrect board name in MAKEALL for M5253EVBE
15260
15261     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15262
15263 commit 0e0c4357d14a3563c6a2a1e6d5ad6a2cc4f35cab
15264 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15265 Date:   Wed Jul 9 15:21:44 2008 -0500
15266
15267     Fix compile error caused by missing timer function
15268
15269     Add #define CONFIG_MCFTMR in EB+MCF-EV123.h configuration file
15270
15271     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15272
15273 commit c37ea031175b807c54e6bad9b270e9bede6c0078
15274 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15275 Date:   Wed Jul 9 15:14:25 2008 -0500
15276
15277     Fix compile error caused by incorrect function return type
15278
15279     Rename int mii_init(void) to void mii_init(void)
15280
15281     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15282
15283 commit ab4860b255239dbaecccdd002c8d11f4ef54dd75
15284 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15285 Date:   Wed Jun 18 19:27:23 2008 -0500
15286
15287     ColdFire: Fix power up issue for MCF5235
15288
15289     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15290
15291 commit dd08e97361fbc9e79fa5ef1a8acf29273b934b11
15292 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15293 Date:   Wed Jun 18 19:19:07 2008 -0500
15294
15295     ColdFire: Fix compiling error for MCF5275
15296
15297     The compiling error was caused by missing a closed parentheses
15298     in speed.c
15299
15300     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15301
15302 commit 94603c2fd4dbe0655878416aa0da9f302d4c30d3
15303 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15304 Date:   Wed Jun 18 19:14:01 2008 -0500
15305
15306     ColdFire: Fix timer issue for MCF5272
15307
15308     The timer was assigned to wrong timer memory mapped which
15309     caused udelay() and timer() not working properly.
15310
15311     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15312
15313 commit 3b1e8ac9b43f89cc9291a6a86e6b33ef55801515
15314 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15315 Date:   Wed Jun 18 19:12:13 2008 -0500
15316
15317     ColdFire: Change invalid JMP to BRA caught by new v4e toolchain
15318
15319     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
15320
15321 commit 8371dc2066136be21e10b7b9293e469297d77298
15322 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15323 Date:   Wed Jun 18 19:05:23 2008 -0500
15324
15325     ColdFire: Add -got=single param for new linux v4e toolchains
15326
15327     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
15328
15329 commit 56d52615cd47bc522ee13bb7ec7e59d6ce9426c7
15330 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15331 Date:   Wed Jun 18 13:21:19 2008 -0500
15332
15333     ColdFire: Fix code flash configuration for M547x/M548x boards
15334
15335     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
15336
15337 commit 6e37091afc07fdcc15590093fd066b0cb7399f85
15338 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15339 Date:   Tue Jun 24 12:12:16 2008 -0500
15340
15341     ColdFire: Fix warning messages by passing correct data type in board.c
15342
15343     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15344
15345 commit 81cc32322acb1b3225ee45606ced48e2a14824dc
15346 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15347 Date:   Thu May 29 12:21:54 2008 -0500
15348
15349     ColdFire: Fix UART baudrate formula
15350
15351     The formula "counter = (u32) (gd->bus_clk / gd->baudrate) / 32"
15352     can generate the wrong divisor due to integer division truncation.
15353     Round the calculated divisor value by adding 1/2 the baudrate
15354     before dividing by the baudrate.
15355
15356     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15357     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
15358
15359 commit b578fb471444cbd7db1285701ba51343baaf73fb
15360 Author: Stefan Roese <sr@denx.de>
15361 Date:   Thu Jul 10 11:38:26 2008 +0200
15362
15363     ppc4xx: Fix include sequence in 4xx_pcie.c
15364
15365     This patch now moves common.h to the top of the inlcude list. This
15366     is needed for boards with CONFIG_PHYS_64BIT set (e.g. katmai), so that
15367     the phys_size_t/phys_addr_t are defined to the correct size in this
15368     driver.
15369
15370     Signed-off-by: Stefan Roese <sr@denx.de>
15371
15372 commit 69e2c6d0d13d7c8cf1612ac090bdc4c59ba6858e
15373 Author: Stefan Roese <sr@denx.de>
15374 Date:   Fri Jul 11 13:10:56 2008 +0200
15375
15376     ppc4xx: Fix compile warning in 44x_spd_ddr2.c
15377
15378     Signed-off-by: Stefan Roese <sr@denx.de>
15379
15380 commit 6bd9138498c2e4f4f09190108b99157d1b2140b5
15381 Author: Stefan Roese <sr@denx.de>
15382 Date:   Fri Jul 11 11:40:13 2008 +0200
15383
15384     ppc4xx: Fix small korat merge problem
15385
15386     Signed-off-by: Stefan Roese <sr@denx.de>
15387
15388 commit 1d0554736a0a1dd59718acda660871ce56b69e18
15389 Author: Stefan Roese <sr@denx.de>
15390 Date:   Fri Jul 11 11:34:52 2008 +0200
15391
15392     ppc4xx: Some Rewood cleanups (coding style, leading white spaces)
15393
15394     Signed-off-by: Stefan Roese <sr@denx.de>
15395
15396 commit 3a82113ed5934d498f25080441a8261fc9454b15
15397 Author: Stefan Roese <sr@denx.de>
15398 Date:   Thu Jul 10 16:37:09 2008 +0200
15399
15400     ppc4xx: Add 460SX UIC defines
15401
15402     Only the really needed ones are added (cascading and EMAC/MAL).
15403
15404     Signed-off-by: Stefan Roese <sr@denx.de>
15405
15406 commit 26173fc6f60521c2a8072f652f863617fc11ba9a
15407 Author: Stefan Roese <sr@denx.de>
15408 Date:   Mon Jun 30 14:11:07 2008 +0200
15409
15410     ppc4xx: Continue cleanup of ppc440.h
15411
15412     This patch continues the ppc440.h cleanup by removing some of the unused
15413     defines.
15414
15415     Signed-off-by: Stefan Roese <sr@denx.de>
15416
15417 commit d9056b7913ed6a228d2f33671d916efedee541dd
15418 Author: Stefan Roese <sr@denx.de>
15419 Date:   Mon Jun 30 14:05:05 2008 +0200
15420
15421     ppc4xx: Cleanup Katmai & Yucca PCIe register usage
15422
15423     This patch cleans up the 440SPe PCIe register usage. Now only defines
15424     from the include/asm-ppc/4xx_pcie.h are used.
15425
15426     Signed-off-by: Stefan Roese <sr@denx.de>
15427
15428 commit 5de851403b01489b493fa83137ad990b8ce60d1c
15429 Author: Stefan Roese <sr@denx.de>
15430 Date:   Thu Jun 26 17:36:39 2008 +0200
15431
15432     ppc4xx: Rework 440GX UIC handling
15433
15434     This patch reworks the 440GX interrupt handling so that the common 4xx
15435     code can be used. The 440GX is an exception to all other 4xx variants
15436     by having the cascading interrupt vectors not on UIC0 but on a special
15437     UIC named UICB0 (UIC Base 0). With this patch now, U-Boot references
15438     the 440GX UICB0 when UIC0 is selected. And the common 4xx interrupt
15439     handling is simpler without any 440GX special cases.
15440
15441     Also some additional cleanup to cpu/ppc4xx/interrupt.c is done.
15442
15443     Signed-off-by: Stefan Roese <sr@denx.de>
15444
15445 commit d1631fe1a05b063ccaf62ea892a8887b829847d1
15446 Author: Stefan Roese <sr@denx.de>
15447 Date:   Thu Jun 26 13:40:57 2008 +0200
15448
15449     ppc4xx: Consolidate PPC4xx UIC defines
15450
15451     This 2nd patch now removes all UIC mask bit definition. They should be
15452     generated from the vectors by using the UIC_MASK() macro from now on.
15453     This way only the vectors need to get defined for new PPC's.
15454
15455     Also only the really used interrupt vectors are now defined. This makes
15456     definitions for new PPC versions easier and less error prone.
15457
15458     Another part of this patch is that the 4xx emac driver got a little
15459     cleanup, since now the usage of the interrupts is clearer.
15460
15461     Signed-off-by: Stefan Roese <sr@denx.de>
15462
15463 commit 4fb25a3db3b3839094aa9ab748efd7a95924690b
15464 Author: Stefan Roese <sr@denx.de>
15465 Date:   Wed Jun 25 10:59:22 2008 +0200
15466
15467     ppc4xx: Consolidate PPC4xx UIC defines
15468
15469     This patch is the first step to consolidate the UIC related defines in the
15470     4xx headers. Move header from asm-ppc/ppc4xx-intvec.h to
15471     asm-ppc/ppc4xx-uic.h as it will hold all UIC related defines in the next
15472     steps.
15473
15474     Signed-off-by: Stefan Roese <sr@denx.de>
15475
15476 commit 7ee2619c20ccecd57966d74d844e6329e141261c
15477 Author: Stefan Roese <sr@denx.de>
15478 Date:   Tue Jun 24 17:18:50 2008 +0200
15479
15480     ppc4xx: Consolidate PPC4xx EBC defines
15481
15482     This patch removes all EBC related defines from the PPC4xx headers
15483     ppc405.h and ppc440.h and introduces a new header
15484
15485     include/asm-ppc/ppc4xx-ebc.h
15486
15487     with all those defines.
15488
15489     Signed-off-by: Stefan Roese <sr@denx.de>
15490
15491 commit e321801bed5a6d896d298c00fd20046f039d5d66
15492 Author: Stefan Roese <sr@denx.de>
15493 Date:   Thu Jul 10 13:52:44 2008 +0200
15494
15495     ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
15496
15497     This patch removes some ft_board_setup() functions from some 4xx boards.
15498     This can be done since we now have a default weak implementation for this
15499     in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
15500     implementation like canyonlands need their own version.
15501
15502     Signed-off-by: Stefan Roese <sr@denx.de>
15503
15504 commit 08250eb2edbd96514d049602d9e134110ac3185f
15505 Author: Stefan Roese <sr@denx.de>
15506 Date:   Thu Jul 10 15:32:32 2008 +0200
15507
15508     ppc4xx: Fix merge problems in 44x_spd_ddr2.c
15509
15510     Signed-off-by: Stefan Roese <sr@denx.de>
15511
15512 commit 1740c1bf40e3c6d03ac16c29943fdd9fc1e87038
15513 Author: Grant Erickson <gerickson@nuovations.com>
15514 Date:   Tue Jul 8 08:35:00 2008 -0700
15515
15516     ppc4xx: Add MII mode support to the EMAC RGMII Bridge
15517
15518     This patch adds support for placing the RGMII bridge on the
15519     PPC405EX(r) into MII/GMII mode and allows a board-specific
15520     configuration to specify the bridge mode at compile-time.
15521
15522     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
15523     Signed-off-by: Stefan Roese <sr@denx.de>
15524
15525 commit 2e2050842e731c823ce8d41fb0c15579eb70ced9
15526 Author: Grant Erickson <gerickson@nuovations.com>
15527 Date:   Wed Jul 9 16:46:35 2008 -0700
15528
15529     ppc4xx: Add Mnemonics for AMCC/IBM DDR2 SDRAM Controller
15530
15531     This patch completes the preprocessor mneomics for the IBM DDR2 SDRAM
15532     controller registers (MODT and INITPLR) used by the
15533     PowerPC405EX(r). The MMODE and MEMODE registers are unified with their
15534     peer values used for the INITPLR MR and EMR registers,
15535     respectively. Finally, a spelling typo is correct (MANUEL to MANUAL).
15536
15537     With these mnemonics in place, the CFG_SDRAM0_* magic numbers for
15538     Kilauea are replaced by equivalent mnemonics to make it easier to
15539     compare and contrast other 405EX(r)-based boards (e.g. during board
15540     bring-up).
15541
15542     Finally, unified the SDRAM controller register dump routine such that
15543     it can be used across all processor variants that utilize the IBM DDR2
15544     SDRAM controller core. It produces output of the form:
15545
15546         PPC4xx IBM DDR2 Register Dump:
15547                 ...
15548                 SDRAM_MB0CF[40] = 0x00006701
15549                 ...
15550
15551     which is '<mnemonic>[<DCR #>] = <value>'. The DCR number is included
15552     since it is not uncommon that the DCR values in header files get mixed
15553     up and it helps to validate, at a glance, they match what is printed
15554     in the user manual.
15555
15556     Tested on:
15557       AMCC Kilauea/Haleakala:
15558       - NFS Linux Boot: PASSED
15559       - NAND Linux Boot: PASSED
15560
15561     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
15562     Signed-off-by: Stefan Roese <sr@denx.de>
15563
15564 commit ad7382d828982e9c1bafc4313ef1b666f6145f58
15565 Author: Grant Erickson <gerickson@nuovations.com>
15566 Date:   Wed Jul 9 16:31:59 2008 -0700
15567
15568     ppc4xx: Add AMCC/IBM DDR2 SDRAM ECC Field Mnemonics
15569
15570     Add additional DDR2 SDRAM memory controller DCR mneomnics, condition
15571     revision ID DCR based on 405EX, and add field mnemonics for bus error
15572     status and ECC error status registers.
15573
15574     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
15575     Signed-off-by: Stefan Roese <sr@denx.de>
15576
15577 commit 103201731bd8e85404d0f51a5b4e8abd14c0b6c6
15578 Author: Grant Erickson <gerickson@nuovations.com>
15579 Date:   Wed Jul 9 16:31:36 2008 -0700
15580
15581     ppc4xx: Add SDR0_SRST Mnemonics for the 405EX(r)
15582
15583     This patch adds bit field mnemonics for the 405EX(r) SDR0_SRST soft reset register.
15584
15585     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
15586     Signed-off-by: Stefan Roese <sr@denx.de>
15587
15588 commit 5b457d00730d4aa0c6450d21a9104723e606fb98
15589 Author: Grant Erickson <gerickson@nuovations.com>
15590 Date:   Wed Jul 9 11:55:46 2008 -0700
15591
15592     PPC4xx: Correct SDRAM_MCSTAT for PPC405EX(r)
15593
15594     While the PowerPC 405EX(r) shares in common the AMCC/IBM DDR2 SDRAM
15595     controller core also used in the 440SP, 440SPe, 460EX, and 460GT, in
15596     the 405EX(r), SDRAM_MCSTAT has a different DCR value.
15597
15598     Its present value on the 405EX(r) causes a read back of 0xFFFFFFFF
15599     which causes SDRAM initialization to periodically fail since it can
15600     prematurely indicate SDRAM ready status.
15601
15602     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
15603     Signed-off-by: Stefan Roese <sr@denx.de>
15604
15605 commit 0ce5c8675bb2c61f1d71fb97f0bbe822663fb93d
15606 Author: Feng Kan <fkan@amcc.com>
15607 Date:   Tue Jul 8 22:48:42 2008 -0700
15608
15609     ppc4xx: Initial framework of the AMCC PPC460SX redwood reference board.
15610
15611     Add AMCC Redwood reference board that uses the latest
15612     PPC 464 CPU processor combined with a rich mix of peripheral
15613     controllers. The board will support PCIe, mutiple Gig ethernet
15614     ports, advanced hardware RAID assistance and IEEE 1588.
15615
15616     Signed-off-by: Feng Kan <fkan@amcc.com>
15617     Signed-off-by: Stefan Roese <sr@denx.de>
15618
15619 commit 96e5fc0e6a1861d0fea4efa3cd376df95a5b1b89
15620 Author: Feng Kan <fkan@amcc.com>
15621 Date:   Tue Jul 8 22:48:07 2008 -0700
15622
15623     ppc4xx: Add initial 460SX reference board (redwood) config file and defines.
15624
15625     Signed-off-by: Feng Kan <fkan@amcc.com>
15626     Signed-off-by: Stefan Roese <sr@denx.de>
15627
15628 commit 7d30793685efcada183891c78fc892e6c9ba50c7
15629 Author: Feng Kan <fkan@amcc.com>
15630 Date:   Tue Jul 8 22:47:31 2008 -0700
15631
15632     ppc4xx: Add initial 460SX defines for the cpu/ppc4xx directory.
15633
15634     Signed-off-by: Feng Kan <fkan@amcc.com>
15635     Signed-off-by: Stefan Roese <sr@denx.de>
15636
15637 commit 9b55a2536919f4de1bb1044e6eb8262c2f53bc96
15638 Author: Wolfgang Denk <wd@denx.de>
15639 Date:   Fri Jul 11 01:16:00 2008 +0200
15640
15641     Fix some more print() format errors.
15642
15643     Signed-off-by: Wolfgang Denk <wd@denx.de>
15644
15645 commit fdd70d1921b87287d9a99d1be99bc35226c2b412
15646 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15647 Date:   Thu Jul 10 20:57:54 2008 +0200
15648
15649     MAKEALL: remove duplicated at91 from ARM9 list and add LIST_at91 to arm
15650
15651     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15652
15653 commit c6457e3b8bc79a97381cf7deffa08f7c5a24f86c
15654 Author: Sergey Lapin <slapin@ossfans.org>
15655 Date:   Thu Jun 5 11:06:29 2008 +0400
15656
15657     DataFlash AT45DB021 support
15658
15659     Some boards based on AT91SAM926X-EK use smaller DF chips to keep
15660     bootstrap, u-boot and its environment, using NAND or other external
15661     storage for kernel and rootfs. This patch adds support for
15662     small 1024x263 chip.
15663
15664     Signed-off-by: Sergey Lapin <slapin@ossfans.org>
15665
15666 commit 4109df6f75fc00ab7da56d286ba50149a0d16a69
15667 Author: Kim Phillips <kim.phillips@freescale.com>
15668 Date:   Thu Jul 10 14:00:15 2008 -0500
15669
15670     silence misc printf formatting compiler warnings
15671
15672     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15673
15674 commit 3d71c81a9bb03f866a1e98da96363ef3f46c76b3
15675 Author: Markus Klotzbücher <mk@denx.de>
15676 Date:   Thu Jul 10 14:47:09 2008 +0200
15677
15678     USB: shutdown USB before booting
15679
15680     This patch fixes a potentially serious issue related to USB which was
15681     discouvered by Martin Krause <martin.krause@tqs.de> and fixed for
15682     ARM920T. Martin wrote:
15683
15684       Turn off USB to prevent the host controller from writing to the
15685       SDRAM while Linux is booting. This could happen, because the HCCA
15686       (Host Controller Communication Area) lies within the SDRAM and the
15687       host controller writes continously to this area (as busmaster!), for
15688       example to increase the HccaFrameNumber variable, which happens
15689       every 1 ms.
15690
15691     This is a slightly modified version of the patch in order to shutdown
15692     USB when booting on all architectures.
15693
15694     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
15695
15696 commit f31c49db2a5e076f415c0785eb37f67f2faa5fc8
15697 Author: Martha Marx <mmarx@silicontkx.com>
15698 Date:   Thu May 29 14:23:25 2008 -0400
15699
15700     Configuration changes for ADS5121 Rev 3
15701
15702     ADS5121 Rev 3 board is now the default config
15703
15704     config targets are now
15705
15706     ads5121_config
15707         Rev 3 board with
15708         PCI
15709         M41T62 on board RTC
15710         512MB DRAM
15711
15712     ads5121_rev2_config
15713         Rev 2 board with
15714         No PCI
15715         256MB DRAM
15716
15717     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
15718     Acked-by: Grant Likely <grant.likely@secretlab.ca>
15719     Acked-by: John Rigby <jrigby@freescale.com>
15720
15721 commit 16bee7b0dc294ee01ca2434aa1dd3bd717a69615
15722 Author: Martha Marx <mmarx@silicontkx.com>
15723 Date:   Thu May 29 15:37:21 2008 -0400
15724
15725     Consolidate ADS5121 IO Pin configuration
15726
15727     Consolidate ADS5121 IO Pin configuration to one file
15728     board/ads5121/iopin.c.
15729
15730     Remove pin config from cpu/mpc512x/fec.c
15731
15732     Signed-off-by: Martha Marx <mmarx@silicontkx.com>
15733     Acked-by: Grant Likely <grant.likely@secretlab.ca>
15734     Acked-by: John Rigby <jrigby@freescale.com>
15735
15736 commit d4692b0ba83b7b454bbd92bad1f4befe6e1657b7
15737 Author: Christian Eggers <christian@p2400.wgnetz.xx>
15738 Date:   Fri Jun 27 19:46:51 2008 +0200
15739
15740     Fix "usb part" command
15741
15742     Only print partition for selected device if user supplied the <dev>
15743     arg with the "usb part [dev]" command.
15744
15745     Signed-off-by: Christian Eggers <ceggers@gmx.de>
15746     Acked-by: Markus Klotzbuecher <mk@denx.de>
15747
15748 commit cc83b27217f7380041fea386ddb6d6d9b261617d
15749 Author: Harald Welte <laforge@gnumonks.org>
15750 Date:   Mon Jul 7 00:58:05 2008 +0800
15751
15752     fix USB devices with multiple configurations
15753
15754     This patch fixes bugs in usbdcore*.c related to the use of devices
15755     with multiple configurations.
15756
15757     The original code made mistakes about the meaning of configuration value and
15758     configuration index, and the resulting off-by-one errors resulted in:
15759
15760     * SET_CONFIGURATION always selected the first configuration, no matter what
15761       wValue is being passed.
15762     * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
15763       configuration (index 0).
15764
15765     Signed-off-by: Harald Welte <laforge@openmoko.org>
15766     Acked-by: Markus Klotzbuecher <mk@denx.de>
15767
15768 commit 06c53beae1a726e707971c555613f09b270a2461
15769 Author: Wolfgang Denk <wd@denx.de>
15770 Date:   Thu Jul 10 13:16:09 2008 +0200
15771
15772     Fix some more print() format errors.
15773
15774     Signed-off-by: Wolfgang Denk <wd@denx.de>
15775
15776 commit d4b5f3fa001228d76e2c3380cedadf804b802c2a
15777 Author: Christian Eggers <christian@p2400.wgnetz.xx>
15778 Date:   Fri Jun 27 19:46:51 2008 +0200
15779
15780     Fix "usb part" command
15781
15782     Only print partition for selected device if user supplied the <dev>
15783     arg with the "usb part [dev]" command.
15784
15785     Signed-off-by: Christian Eggers <ceggers@gmx.de>
15786     Acked-by: Markus Klotzbuecher <mk@denx.de>
15787
15788 commit e73b5212e0463a3db0af0a5c95c75bfb762ca973
15789 Author: Harald Welte <laforge@gnumonks.org>
15790 Date:   Mon Jul 7 00:58:05 2008 +0800
15791
15792     fix USB devices with multiple configurations
15793
15794     This patch fixes bugs in usbdcore*.c related to the use of devices
15795     with multiple configurations.
15796
15797     The original code made mistakes about the meaning of configuration value and
15798     configuration index, and the resulting off-by-one errors resulted in:
15799
15800     * SET_CONFIGURATION always selected the first configuration, no matter what
15801       wValue is being passed.
15802     * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
15803       configuration (index 0).
15804
15805     Signed-off-by: Harald Welte <laforge@openmoko.org>
15806     Acked-by: Markus Klotzbuecher <mk@denx.de>
15807
15808 commit e870690bdca154943ecadd5212d2d59c1b9d391b
15809 Author: Stefan Roese <sr@denx.de>
15810 Date:   Thu Jul 10 10:10:54 2008 +0200
15811
15812     MTD/NAND: Fix printf format warning in nand code
15813
15814     This patch fixes NAND related printf format warning. Those warnings are
15815     now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
15816     [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
15817     really helpful.
15818
15819     Signed-off-by: Stefan Roese <sr@denx.de>
15820
15821 commit 10943c9afa25694bd9999461f4e9e50ce22fff2b
15822 Author: Stefan Roese <sr@denx.de>
15823 Date:   Thu Jul 10 10:00:45 2008 +0200
15824
15825     rtc: Fix printf format warning in m41t60.c
15826
15827     Signed-off-by: Stefan Roese <sr@denx.de>
15828
15829 commit dc1da42f814cd71e6756c2cf62af1ada1d0581fb
15830 Author: Stefan Roese <sr@denx.de>
15831 Date:   Tue Jul 8 12:01:47 2008 +0200
15832
15833     pci: Move PCI device configuration check into a separate weak function
15834
15835     This patch moves the check, if a device should be skipped in PCI PNP
15836     configuration into the function pci_skip_dev(). This function is defined
15837     as weak so that it can be overwritten by a platform specific one if
15838     needed. The check if the device should get printed in the PCI summary upon
15839     bootup (when CONFIG_PCI_SCAN_SHOW is defined) is moved to the function
15840     pci_print_dev() which is also defined as weak too.
15841
15842     Signed-off-by: Stefan Roese <sr@denx.de>
15843
15844 commit b002144e1dc21374b1ef5281fe6b5d014af96650
15845 Author: Stefan Roese <sr@denx.de>
15846 Date:   Thu Jul 10 09:58:06 2008 +0200
15847
15848     ppc4xx: Fix printf format warnings now visible with the updated format check
15849
15850     This patch fixes ppc4xx related printf format warning. Those warnings are
15851     now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
15852     [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
15853     really helpful.
15854
15855     Signed-off-by: Stefan Roese <sr@denx.de>
15856
15857 commit 5d812b8b4ad9667c77a5bf92b4ba81699abc9fc3
15858 Author: Stefan Roese <sr@denx.de>
15859 Date:   Wed Jul 9 17:33:57 2008 +0200
15860
15861     ppc4xx: Enable support for > 2GB SDRAM on AMCC Katmai
15862
15863     Newer PPC's like 440SPe, 460EX/GT can be equipped with more than 2GB of SDRAM.
15864     To support such configurations, we "only" map the first 2GB via the TLB's. We
15865     need some free virtual address space for the remaining peripherals like, SoC
15866     devices, FLASH etc.
15867
15868     Note that ECC is currently not supported on configurations with more than 2GB
15869     SDRAM. This is because we only map the first 2GB on such systems, and therefore
15870     the ECC parity byte of the remaining area can't be written.
15871
15872     Signed-off-by: Stefan Roese <sr@denx.de>
15873
15874 commit cf1c2ed91df26903b956948f37f82de9e1158a89
15875 Author: Larry Johnson <lrj@acm.org>
15876 Date:   Sat Jun 14 17:02:49 2008 -0400
15877
15878     ppc4xx: Remove implementation of testdram() from Korat board support
15879
15880     Signed-off-by: Larry Johnson <lrj@acm.org>
15881     Signed-off-by: Stefan Roese <sr@denx.de>
15882
15883 commit 47ce4a28ccfcfb803aa68d3d4505a8de056a8a5e
15884 Author: Larry Johnson <lrj@acm.org>
15885 Date:   Sat Jun 14 16:53:02 2008 -0400
15886
15887     ppc4xx: Update and add FDT to Korat board support
15888
15889     Signed-off-by: Larry Johnson <lrj@acm.org>
15890     Signed-off-by: Stefan Roese <sr@denx.de>
15891
15892 commit 4188f0491886b3b486164e819c0a83fdb97efd7d
15893 Author: Wolfgang Denk <wd@denx.de>
15894 Date:   Thu Jul 10 01:13:30 2008 +0200
15895
15896     Minor coding style cleanup; update CHANGELOG
15897
15898     Signed-off-by: Wolfgang Denk <wd@denx.de>
15899
15900 commit 8915f1189c1d29d8be7f4de325702d90a8988219
15901 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
15902 Date:   Wed Jul 9 17:50:45 2008 -0400
15903
15904     e1000: add support for 82545GM 64bit PCI-X copper variant
15905
15906     This PCI-X e1000 variant works by just adding in the correct
15907     PCI IDs in the appropriate places.
15908
15909     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
15910
15911 commit 21ae6ca0315afdbc65dc3e95ffd5763e6773d030
15912 Author: Daniel Hellstrom <daniel@gaisler.com>
15913 Date:   Wed Jul 9 12:34:11 2008 +0000
15914
15915     SPARC: Build error fix
15916
15917     (introduced by commit 391fd93ab23e15ab3dd58a54f5b609024009c378)
15918
15919     This patch makes SPARC targets build again. It is caused by
15920     phys_addr_t and phys_size_t being defined in the wrong header
15921     file. include/lmb.h need those typedefs to build.
15922
15923     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
15924
15925 commit 11ccc33fa21acce108f6b4a6936e3271af904c64
15926 Author: Marcel Ziswiler <marcel@ziswiler.com>
15927 Date:   Wed Jul 9 08:17:15 2008 +0200
15928
15929     Many spelling fixes in README.
15930
15931     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
15932
15933 commit dbab0691d2533560f7e91b92ae844046a9ad1df3
15934 Author: Marcel Ziswiler <marcel@ziswiler.com>
15935 Date:   Wed Jul 9 08:17:06 2008 +0200
15936
15937     Minor spelling fix in comment.
15938
15939     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
15940
15941 commit 89134ea1f67208fd3160bdbb0b9eaab4eab98484
15942 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
15943 Date:   Tue Jul 8 14:54:58 2008 -0400
15944
15945     Round the serial port clock divisor value returned by calc_divisor()
15946
15947     Round the serial port clock divisor value returned by
15948     calc_divisor().
15949
15950     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
15951     Signed-off-by: John Roberts <john.roberts@pwav.com>
15952
15953 commit 9d2e3947b2944e5bb85b4335533f8c93c58445fe
15954 Author: Scott Wood <scottwood@freescale.com>
15955 Date:   Wed Jul 9 17:47:52 2008 -0500
15956
15957     NAND: ifdef-protect most of nand.h when using legacy NAND.
15958
15959     Some macros such as NAND_CTL_SETALE conflict between current and legacy
15960     NAND, being defined by the subsystem in the former case and the board
15961     config file in the latter.
15962
15963     Signed-off-by: Scott Wood <scottwood@freescale.com>
15964
15965 commit 2b1fa9d383cbbb7d347c1583bd6ca4e181ba8e9e
15966 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
15967 Date:   Tue Jul 8 11:02:05 2008 -0400
15968
15969     ARM: Fix for wrong patch version applied for Lyrtech SFF-SDR board (ARM926EJS)
15970
15971     ARM: Fix for incorrect version of patch applied when
15972     adding support for the Lyrtech SFF-SDR board.
15973
15974     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
15975     Signed-off-by: Philip Balister, OpenSDR <philip@opensdr.com>
15976
15977 commit 47042b363ee5022b8180c65d3f4558e7972c79cd
15978 Author: Kyungmin Park <kmpark@infradead.org>
15979 Date:   Tue Jul 8 09:08:40 2008 +0900
15980
15981     Remove useless print message at apollon
15982
15983     Remove useless print message at apollon
15984
15985     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
15986
15987 commit 98874ff329d4a5b32c467b43f6e966e1aa68479f
15988 Author: Andy Fleming <afleming@freescale.com>
15989 Date:   Mon Jul 7 14:24:39 2008 -0500
15990
15991     Fix LMB type issues
15992
15993     The LMB code now uses phys_addr_t and phys_size_t.  Also, there were a couple
15994     of casting problems in the bootm code that called the LMB functions.
15995
15996     Signed-off-by: Andy Fleming <afleming@freescale.com>
15997
15998 commit da8693a91b8eef75ade8de50a1b2ce035bc5fb54
15999 Author: Kumar Gala <galak@kernel.crashing.org>
16000 Date:   Mon Jul 7 09:39:06 2008 -0500
16001
16002     Fix compiler warnings
16003
16004     gcc-4.3.x generates the following:
16005
16006     bootm.c: In function 'do_bootm_linux':
16007     bootm.c:208: warning: cast from pointer to integer of different size
16008     bootm.c:215: warning: cast from pointer to integer of different size
16009
16010     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16011
16012 commit 5bb12dbd7ae03189b6c13d8737b5a1b37c3df698
16013 Author: Harald Welte <laforge@gnumonks.org>
16014 Date:   Mon Jul 7 15:40:39 2008 +0800
16015
16016     Remove code duplication for setting the default environment
16017
16018     common/env_common.c (default_env): new function that resets the environment to
16019                     the default value
16020     common/env_common.c (env_relocate): use default_env instead of own copy
16021     common/env_nand.c (env_relocate_spec): use default_env instead of own copy
16022     include/environment.h: added default_env prototype
16023
16024     Signed-off-by: Werner Almesberger <werner@openmoko.org>
16025     Signed-off-by: Harald Welte <laforge@openmoko.org>
16026
16027 commit 99c2b434d37863df5dda5207a53760c6506fc2be
16028 Author: Marcel Ziswiler <marcel@ziswiler.com>
16029 Date:   Sun Jun 22 16:13:46 2008 +0200
16030
16031     NAND: Fix warning due to missing env_ptr casts to u_char * in env_nand.c.
16032
16033     The writeenv() and readenv() calls introduced by the recently added bad block
16034     management for environment variables were missing casts therefore producing
16035     compile time warnings.
16036     While at it fixing some typo in a comment and indentation.
16037
16038     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
16039     Signed-off-by: Scott Wood <scottwood@freescale.com>
16040
16041 commit 3167c5386ea1c98b638be5d8763ef6d5938ef1bd
16042 Author: Scott Wood <scottwood@freescale.com>
16043 Date:   Fri Jun 20 12:38:57 2008 -0500
16044
16045     NAND: Rename DEBUG to MTDDEBUG to avoid namespace pollution.
16046
16047     This is particularly problematic now that non-NAND-specific code is
16048     including <nand.h>, and thus all debugging code is being compiled
16049     regardless of whether it was requested, as reported by Scott McNutt
16050     <smcnutt@psyent.com>.
16051
16052     Signed-off-by: Scott Wood <scottwood@freescale.com>
16053
16054 commit c3bf1ad7baa1b0dd989dedc260b7098b6089ae05
16055 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16056 Date:   Thu Jun 12 19:27:58 2008 +0200
16057
16058     mmc: Move atmel_mci driver into drivers/mmc
16059
16060     This makes it easier to use the driver on other platforms.
16061
16062     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16063     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16064
16065 commit d2d54ea449639f3d1a6007e333ab9fcc609a18f0
16066 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16067 Date:   Thu Jun 12 19:27:57 2008 +0200
16068
16069     avr32: Use CONFIG_ATMEL_MCI to select the atmel_mci driver
16070
16071     After we move the atmel_mci driver into drivers/mmc, we can't select
16072     it with CONFIG_MMC anymore. Introduce a new symbol specifically for
16073     this driver so that there's no ambiguity.
16074
16075     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16076     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16077
16078 commit 5ce13051a48c62bda9723df3b4778c492fb47f36
16079 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16080 Date:   Thu Jun 12 19:27:56 2008 +0200
16081
16082     Create drivers/mmc subdirectory
16083
16084     In order to consolidate more of the various MMC drivers around the
16085     tree, we must first have a common place to put them.
16086
16087     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16088     Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16089
16090 commit b502611b51f02718c2d1117d4981dabceb5af6de
16091 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
16092 Date:   Sun Jul 6 12:30:09 2008 +0200
16093
16094     Change env_get_char from a global function ptr to a function
16095
16096     This avoids an early global data reference.
16097
16098     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
16099
16100 commit 27269417ade432189b234d9fbac98b54e37b978c
16101 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
16102 Date:   Sun Jul 6 13:57:58 2008 +0400
16103
16104     Some copy-n-paste fixes in printf usage
16105
16106     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
16107
16108 commit 0e6989b9faf1588e8723535539e88a0df3c71356
16109 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
16110 Date:   Sun Jul 6 13:57:00 2008 +0400
16111
16112     FDT memory and pci node fixes for MPC8260ADS
16113
16114     Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
16115
16116 commit dc4b0b38d4aadf08826f6c31270f1eecd27964fd
16117 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
16118 Date:   Mon Jul 7 06:41:14 2008 -0700
16119
16120     Fix printf errors.
16121
16122     The compiler will help find mismatches between printf formats and
16123     arguments if you let it.  This patch adds the necessary attributes to
16124     declarations in include/common.h, then begins to correct the resulting
16125     compiler warnings.  Some of these were bugs, e.g., "$d" instead of
16126     "%d" and incorrect arguments.  Others were just annoying, like
16127     int-long mismatches on a system where both are 32 bits.  It's worth
16128     fixing the annoying errors to catch the real ones.
16129
16130     Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
16131
16132 commit 417faf285b2527acb2de24c5cd3e2621d385408c
16133 Author: Becky Bruce <becky.bruce@freescale.com>
16134 Date:   Wed Jul 9 11:09:41 2008 -0500
16135
16136     Allow print_size to print in GB
16137
16138     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
16139
16140 commit e7c374529c87525c9aa463e0557c287887ae4e9e
16141 Author: Jason McMullan <mcmullan@netapp.com>
16142 Date:   Sun Jun 8 23:56:00 2008 -0400
16143
16144     mips: When booting Linux images, add 'ethaddr' and 'eth1addr' to the environment
16145
16146     Add 'ethaddr' and 'eth1addr' to the Linux kernel environment if
16147     they are set in the U-Boot environment.
16148
16149     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
16150     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16151
16152 commit 0192d7d56e9320819dea262f49789ae18fdd2c72
16153 Author: Stefan Roese <sr@denx.de>
16154 Date:   Tue Jul 8 12:57:14 2008 +0200
16155
16156     jedec_flash: Fix AM29DL800BB device ID
16157
16158     As pointed out by Jerry Hicks, this patch corrects the device ID of
16159     the Spansion AM29DL800BB NOR device. Verified against latest Spansion
16160     datasheet (rev C4 from Dezember 2006).
16161
16162     Signed-off-by: Stefan Roese <sr@denx.de>
16163
16164 commit 689c1b30caacba3fbca0b1813facb3ab70b6cd63
16165 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16166 Date:   Mon Jul 7 11:22:37 2008 +0900
16167
16168     sh: Fix compile error sh7763rdp board
16169
16170     Disable SH ether driver.
16171
16172     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16173
16174 commit 9e23fe0560b84e324dc5f0ff8813dab2aa34f074
16175 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16176 Date:   Tue Jul 8 12:03:24 2008 +0900
16177
16178     sh: Fix SH-boards compile error
16179
16180     By Cleanup out-or-tree building for some boards (.depend)
16181     (commit:c8a3b109f07f02342d097b30908965f7261d9f15)
16182     because filse ware changed, some SH-boards have compile error.
16183     I revised this problem.
16184
16185     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16186
16187 commit 3473ab737282b08ad61841fcbb14c4d264a93a8e
16188 Author: Jason Jin <Jason.jin@freescale.com>
16189 Date:   Tue May 13 11:50:36 2008 +0800
16190
16191     Feed the watchdog in u-boot for 8610 board.
16192
16193     The watchdog on 8610 board is enabled by setting sw[6]
16194     to on. Once enabled, the watchdog can not be disabled
16195     by software. So feed the dog in u-boot is necessary for
16196     normal operation.
16197
16198     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
16199
16200 commit 63676841ca2d603b13765f3f7b72ff1a61c23f90
16201 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
16202 Date:   Wed Jun 18 12:10:33 2008 -0400
16203
16204     Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
16205
16206     Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
16207
16208     Remove duplicate code in a if/else block in
16209     cpu/arm926ejs/davinci/lxt972.c.
16210     Fixed style issues.
16211
16212     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
16213     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16214
16215 commit fec61431a003f5778bafa2624073a571af8bec9f
16216 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
16217 Date:   Wed Jun 18 12:10:31 2008 -0400
16218
16219     Remove duplicate definitions in include/lxt971a.h.
16220
16221     Remove duplicate definitions in include/lxt971a.h.
16222
16223     Remove duplicate registers and bits definitions in
16224     include/lxt971a.h for standard MII registers, and
16225     use values in include/miiphy.h instead.
16226
16227     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
16228     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16229
16230 commit 9751ee0990f467941da0b095a4e995f863672d7a
16231 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16232 Date:   Wed Jun 11 21:05:00 2008 +0900
16233
16234     net: sh: Renesas SH7763 Ethernet device support
16235
16236     Renesas SH7763 has 2 channel Ethernet device.
16237     This is 10/100/1000 Base support.
16238     But this patch check 10/100 Base only.
16239
16240     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16241     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16242
16243 commit 873d97aabc0b1c8822ed1d87e8c5c8ae0a7e4ae9
16244 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16245 Date:   Tue Jun 17 16:28:05 2008 +0900
16246
16247     sh: Update Renesas R2DPlus board
16248
16249     New NOR Flash board support and remove old type flash board config.
16250     And Remove network setting from config file.
16251
16252     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16253     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16254
16255 commit ec39d479d2003f15e86e23ebc4e02a1c9a3a181c
16256 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16257 Date:   Tue Jun 17 16:28:01 2008 +0900
16258
16259     sh: Update Renesas R7780MP board
16260
16261     New NOR Flash board support and remove network setting from config file.
16262
16263     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16264     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16265
16266 commit c001cd604e9f133743effbddb1c215b48e761c5a
16267 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16268 Date:   Tue Jun 17 16:27:56 2008 +0900
16269
16270     sh: Update Renesas Migo-R board
16271
16272     Remove network setting from config file.
16273
16274     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16275     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16276
16277 commit f9599eca7cb5ebe40e5305c8006dced6ecc5cd9e
16278 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16279 Date:   Tue Jun 17 16:27:52 2008 +0900
16280
16281     sh: Update Hitachi MS7722SE board
16282
16283     Remove network setting from config file.
16284
16285     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16286     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16287
16288 commit 26209e48e8791670c93108029a5c31a30016c6df
16289 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16290 Date:   Tue Jun 17 16:27:48 2008 +0900
16291
16292     sh: Cleanup source code of SH7763RDP
16293
16294     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16295     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16296
16297 commit 5cd5b2c96ef0025762931349d350287aec03ab47
16298 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16299 Date:   Tue Jun 17 16:27:44 2008 +0900
16300
16301     sh: Cleanup source code of R2DPlus
16302
16303     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16304     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16305
16306 commit 4ec7e915cfaa31b392755dd2c8231e64736d2ea8
16307 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16308 Date:   Tue Jun 17 16:27:41 2008 +0900
16309
16310     sh: Cleanup source code of R7780MP
16311
16312     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16313     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16314
16315 commit 0955ef34c0454ae2ee59a78657a0f01fb3ef16d6
16316 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16317 Date:   Tue Jun 17 16:27:38 2008 +0900
16318
16319     sh: Cleanup source code of MS7722SE
16320
16321     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16322     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16323
16324 commit 1d7b31d97b34ccb6f9b20a2465864998b0bf2691
16325 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16326 Date:   Tue Jun 17 16:27:34 2008 +0900
16327
16328     sh: Cleanup source code of MS7720SE
16329
16330     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16331     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16332
16333 commit 3ab4827cbe409488ebea1a2ee5094783f2672214
16334 Author: Wolfgang Denk <wd@denx.de>
16335 Date:   Mon Jul 7 00:45:03 2008 +0200
16336
16337     SH: fix out of tree building
16338
16339     Signed-off-by: Wolfgang Denk <wd@denx.de>
16340
16341 commit 9047bfa1e737d787be460387dd6f45737eeceb10
16342 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16343 Date:   Thu Jul 3 23:16:06 2008 +0900
16344
16345     net: smc911x: Fix typo
16346
16347     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
16348
16349 commit 5ed546fdd0ca46a165661c2009fa743d9c9fceca
16350 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
16351 Date:   Wed Jul 2 18:54:08 2008 +0200
16352
16353     update mvBL-M7 board config
16354
16355     update mvBL-M7 config file to use UBOOT_VERSION and define
16356     CONFIG_HIGH_BATS.
16357
16358     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
16359
16360 commit 5cacc5d0ec52678a5eb83ecda5c3bcb22eb47f30
16361 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16362 Date:   Mon Jun 30 17:45:01 2008 +0900
16363
16364     net: fix compile problem in smc911x driver.
16365
16366     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16367     Acked-by: Ben Warren <biggerbadderben@gmail.com>
16368
16369 commit 9fea65a6c469b1b474b27446feb58738baba2d31
16370 Author: Michal Simek <monstr@monstr.eu>
16371 Date:   Tue Jun 24 09:54:09 2008 +0200
16372
16373     ppc4xx: Rename CONFIG_XILINX_ML300 to CONFIG_XILINX_405
16374
16375     This change helps with better handling with others
16376     Xilinx based platform.
16377
16378     Signed-off-by: Michal Simek <monstr@monstr.eu>
16379     Acked-by: Stefan Roese <sr@denx.de>
16380
16381 commit cbb6289569ae4fc6e2d676528e46ffcc72d743d0
16382 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16383 Date:   Tue Jun 17 13:07:11 2008 +0900
16384
16385     net: ne2000: Move dev_addr variable from grobal to local.
16386
16387     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16388     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16389
16390 commit dd7e5fa5f847188f78f62f2c52de6cb3def3ecdb
16391 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16392 Date:   Tue Jun 17 13:07:15 2008 +0900
16393
16394     net: ne2000: Fix compile error of NE2000
16395
16396     If enable DEBUG, can not compile ne2000 driver.
16397
16398     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16399     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16400
16401 commit dd35479a50f6c7c31ea491c07c5200c6dfd06a24
16402 Author: Ben Warren <biggerbadderben@gmail.com>
16403 Date:   Mon Jun 23 22:57:27 2008 -0700
16404
16405     Add mechanisms for CPU and board-specific Ethernet initialization
16406
16407     This patch is the first step in cleaning up net/eth.c, by moving Ethernet
16408     initialization to CPU or board-specific code.  Initial implementation is
16409     only on the Freescale TSEC controller, but others will be added soon.
16410
16411     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16412
16413 commit 7754f2be5d1835d263aad21b5a629526f3e680b0
16414 Author: Wolfgang Denk <wd@denx.de>
16415 Date:   Sun Jul 6 01:21:46 2008 +0200
16416
16417     include/sha256.h: fix file permissions.
16418
16419     Signed-off-by: Wolfgang Denk <wd@denx.de>
16420
16421 commit d3bcdf838e2991d58571308fa6e04ca335bc06e8
16422 Author: Patrice Vilchez <patrice.vilchez@atmel.com>
16423 Date:   Tue May 27 11:15:29 2008 +0200
16424
16425     [AT91SAM9] Fix NAND FLASH timings
16426
16427     Fix NAND FLASH timings for at91sam9x evaluation kits.
16428
16429     New timings are based on application note
16430     "NAND Flash Support on AT91SAM9 Microcontrollers" available at
16431     http://atmel.com/dyn/resources/prod_documents/doc6255.pdf
16432
16433     Signed-off-by: Patrice Vilchez <patice.vilchez@atmel.com>
16434     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16435     Acked-by: Stelian Pop <stelian@popies.net>
16436
16437 commit 19bd688484322fe62d1a66c8299da6ff9e967ff9
16438 Author: Stelian Pop <stelian@popies.net>
16439 Date:   Thu May 22 00:15:40 2008 +0200
16440
16441     Fix boot from NOR due to incorrect reset delay.
16442
16443     AT91 RSTC registers are battery-backuped, so their values
16444     are not reset across power cycles. One of those registers,
16445     the AT91_RSTC_MR register, is being modified by U-Boot, in
16446     the ethernet initialisation routine, to generate a 500ms
16447     user reset.
16448
16449     Unfortunately, this value is not being restored afterwards,
16450     causing subsequent resets to also last for 500ms.
16451
16452     This long reset sequence causes problems (at least) in the
16453     boot sequence from NOR: by the time the CPU tries to load
16454     a program from the NOR flash, the latter is still in reset
16455     and not yet available.
16456
16457     Additionaly, this patch fixes a bug in the original code which
16458     caused the reset delay to last for 2s instead of 500ms.
16459
16460     Signed-off-by: Stelian Pop <stelian@popies.net>
16461     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16462
16463 commit f492dd636fbbae529e17533995bc6e5813c007f6
16464 Author: Wolfgang Denk <wd@denx.de>
16465 Date:   Fri Jul 4 20:11:49 2008 +0200
16466
16467     Update CHANGELOG
16468
16469     Signed-off-by: Wolfgang Denk <wd@denx.de>
16470
16471 commit 5e6e350fc489aa19402f1e79037dd8c0a4bbd73d
16472 Author: Wolfgang Denk <wd@denx.de>
16473 Date:   Fri Jul 4 20:07:35 2008 +0200
16474
16475     CCM/SCM boards: fix out of tree building
16476
16477     Signed-off-by: Wolfgang Denk <wd@denx.de>
16478
16479 commit ab4c3a490df9a964711556d2a05b0c787db45fde
16480 Author: Wolfgang Denk <wd@denx.de>
16481 Date:   Thu Jul 3 23:22:27 2008 +0200
16482
16483     SCM board: fix build errors.
16484
16485     Signed-off-by: Wolfgang Denk <wd@denx.de>
16486
16487 commit a566466f17ba0e2d2b6c250e77da678fb932470d
16488 Author: Wolfgang Denk <wd@denx.de>
16489 Date:   Thu Jul 3 23:06:36 2008 +0200
16490
16491     IAD210 board: fix ``"ALIGN" redefined'' warning.
16492
16493     Signed-off-by: Wolfgang Denk <wd@denx.de>
16494
16495 commit ad756314797c16fa5dca23e115aab881011f164f
16496 Author: Wolfgang Denk <wd@denx.de>
16497 Date:   Thu Jul 3 23:00:24 2008 +0200
16498
16499     CCM board: fix build errors.
16500
16501     Signed-off-by: Wolfgang Denk <wd@denx.de>
16502
16503 commit f16ed51702cb9fb6fa2e019bbc0fcd1466b57c3b
16504 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
16505 Date:   Wed Jul 2 18:54:08 2008 +0200
16506
16507     update mvBL-M7 board config
16508
16509     update mvBL-M7 config file to use UBOOT_VERSION.
16510
16511     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
16512     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16513
16514 commit ced209c50e80c25f13c083099b05044048d21f4f
16515 Author: Wolfgang Denk <wd@denx.de>
16516 Date:   Thu Jul 3 22:39:21 2008 +0200
16517
16518     sacsng board: fix warnings "suggest explicit braces to avoid ambiguous 'else'"
16519
16520     Signed-off-by: Wolfgang Denk <wd@denx.de>
16521
16522 commit 4ff170a8180a79da4cdaab1b30d58cd7b6be565e
16523 Author: Wolfgang Denk <wd@denx.de>
16524 Date:   Thu Jul 3 22:34:08 2008 +0200
16525
16526     Cleanup: fix "expected specifier-qualifier-list before 'phys_size_t'" errors
16527
16528     Signed-off-by: Wolfgang Denk <wd@denx.de>
16529
16530 commit 730f298485984b011b6ee8f4acb511cb45a843dd
16531 Author: Wolfgang Denk <wd@denx.de>
16532 Date:   Thu Jul 3 22:04:17 2008 +0200
16533
16534     lmb: fix "implicit declaration of function 'lmb_free'" warning
16535
16536     Signed-off-by: Wolfgang Denk <wd@denx.de>
16537
16538 commit 322ef5e28d2dc62571afc699b00add22a8e006e4
16539 Author: Wolfgang Denk <wd@denx.de>
16540 Date:   Wed Jul 2 23:53:23 2008 +0200
16541
16542     Cleanup: remove redundant deleting on *~ files
16543
16544     Signed-off-by: Wolfgang Denk <wd@denx.de>
16545
16546 commit c8a3b109f07f02342d097b30908965f7261d9f15
16547 Author: Wolfgang Denk <wd@denx.de>
16548 Date:   Wed Jul 2 23:49:18 2008 +0200
16549
16550     Cleanup out-or-tree building for some boards (.depend)
16551
16552     Signed-off-by: Wolfgang Denk <wd@denx.de>
16553
16554 commit a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4
16555 Author: Wolfgang Denk <wd@denx.de>
16556 Date:   Wed Jul 2 23:38:50 2008 +0200
16557
16558     Cleanup: fix out-of-tree building for some boards
16559
16560     Signed-off-by: Wolfgang Denk <wd@denx.de>
16561
16562 commit 461fa68d20861811487944d22291db5a13410e20
16563 Author: Wolfgang Denk <wd@denx.de>
16564 Date:   Wed Jul 2 23:00:14 2008 +0200
16565
16566     Cleanup: replace hard-wired $(AR) 'crv' settings by $(ARFLAGS)
16567
16568     Signed-off-by: Wolfgang Denk <wd@denx.de>
16569
16570 commit 5981ebd32017e062b08aa6747cf591276f2db779
16571 Author: Detlev Zundel <dzu@denx.de>
16572 Date:   Fri Jun 20 22:26:24 2008 +0200
16573
16574     fdt: Fix typo in variable name.
16575
16576     Signed-off-by: Detlev Zundel <dzu@denx.de>
16577
16578 commit a7a5982cd0f3482f88225af4da7795bc4f6cb9bc
16579 Author: Gary Jennejohn <garyj@denx.de>
16580 Date:   Thu Jun 19 11:11:19 2008 +0200
16581
16582     Add logos for RRvision board
16583
16584     Signed-off-by: Gary Jennejohn <garyj@denx.de>
16585
16586 commit ee4ae38342142237ca85913f88ee570c1eb5ca7c
16587 Author: Esben Haabendal <EsbenHaabendal@gmail.com>
16588 Date:   Wed Jun 18 11:03:57 2008 +0200
16589
16590     mpc8260: add fdt_fixup_ethernet support
16591
16592     Add support for updating mac-address and local-mac-address in fdt for
16593     all MPC8260 targets.
16594
16595     Signed-off-by: Esben Haabendal <eha@doredevelopment.dk>
16596
16597 commit f6a69559d64498a04e1e0b087a9b920e5775f866
16598 Author: Steven A. Falco <sfalco@harris.com>
16599 Date:   Thu Jun 12 13:24:42 2008 -0400
16600
16601     cmd_nvedit.c: clean up syntax highlighting
16602
16603     My text-editor (vim) has a bit of trouble syntax-highlighting the
16604     cmd_nvedit.c file, because it apparently does not parse C
16605     ifdef/else/endif. The following patch does not change the behavior of
16606     the code at all, but does allow the editor to properly
16607     syntax-highlight the file.
16608
16609     Signed-off-by: Steve Falco <sfalco@harris.com>
16610
16611 commit 75678c807a6272ecc5541eb32898c93887f08400
16612 Author: Steven A. Falco <sfalco@harris.com>
16613 Date:   Thu Jun 12 13:22:12 2008 -0400
16614
16615     Make setenv() return status
16616
16617     Currently, the setenv function does not return an error code.
16618     This patch allows to test for errors.
16619
16620     Signed-off-by: Steve Falco <sfalco@harris.com>
16621
16622 commit 4928e97c8531283ca9b368b7c29a8a12e726562a
16623 Author: Kumar Gala <galak@kernel.crashing.org>
16624 Date:   Wed Jun 11 10:14:06 2008 -0500
16625
16626     PPC: Added fls, fls64, __ilog2_u64, and ffs64 to bitops
16627
16628     fls64, __ilog2_u64, ffs64 are variants that work on an u64,
16629     and fls is used to implement them.
16630
16631     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16632
16633 commit 83002a77cbdf383015ca384eff5fa31722d8e571
16634 Author: Magnus Lilja <lilja.magnus@gmail.com>
16635 Date:   Mon Jun 9 22:58:48 2008 +0200
16636
16637     i.MX31: Cleanup comments in lowlevel_init.S.
16638
16639     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
16640
16641 commit f8cc312bbee69257d741dc9f4062f4a0f5adf609
16642 Author: Ben Warren <biggerbadderben@gmail.com>
16643 Date:   Sun Jun 8 23:28:33 2008 -0700
16644
16645     Move conditional compilation of MPC8XXX SPI driver to Makefile
16646
16647     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16648
16649 commit d92ea21bafb674ee2bf27447970b047845e7b0a2
16650 Author: Juergen Kilb <J.Kilb@gmx.de>
16651 Date:   Sun Jun 8 17:59:53 2008 +0200
16652
16653     i.MX31: fixed CTRL-C detection
16654
16655     The Register URXD contains status information in bits [15..8].
16656     With status bit 15 set, CTRL-C was reported as 0x8003 instead
16657     of 0x03. Therefore CTRL-C was not detected.
16658     To solve this, bits [15..8] were masked out now.
16659
16660     Signed-off-by: Juergen Kilb <J.Kilb@gmx.de>
16661     Acked-by: Felix Radensky <felix@embedded-sol.com>
16662
16663 commit dd1c5523d6f44e842e69f2fcb50788c6060eab86
16664 Author: Stefan Roese <sr@denx.de>
16665 Date:   Tue Jul 1 17:03:19 2008 +0200
16666
16667     ppc4xx: Fix 460EX/GT PCIe port initialization
16668
16669     This patch fixes a bug where the 460EX/GT PCIe UTLSET1 register was
16670     configured incorrectly. Thanks to Olga Buchonina from AMCC for pointing
16671     this out.
16672
16673     Signed-off-by: Stefan Roese <sr@denx.de>
16674
16675 commit b571afde0295b007a45055ee49f8822c753a5651
16676 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16677 Date:   Sat Jun 7 12:29:52 2008 +0200
16678
16679     add SHA256 support
16680
16681     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16682     Signed-off-by: Francesco Albanese <Francesco.Albanese@swisscom.com>
16683
16684 commit 3bab76a26e03df4ff81342fcc16393ce37d9766b
16685 Author: Marian Balakowicz <m8@semihalf.com>
16686 Date:   Fri Jun 6 23:07:40 2008 +0200
16687
16688     Delay FIT format check on sector based devices
16689
16690     Global FIT image operations like format check cannot be performed on
16691     a first sector data, defer them to the point when whole FIT image was
16692     uploaded to a system RAM.
16693
16694     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
16695     Partial ('cmd_nand' case) Acked-by: Grant Erickson <gerickson@nuovations.com>
16696     NAND and DOC bits Acked-by: Scott Wood <scottwood@freescale.com>
16697
16698 commit 9810263afec5ac5f38f92963bb3b6d799e4331d0
16699 Author: Dave Liu <r63238@freescale.com>
16700 Date:   Tue Jun 3 17:38:19 2008 +0800
16701
16702     sata: wait for device updating signature to host
16703
16704     The driver need wait for the device updating signature to host.
16705     If we don't wait for it, the driver can not detect the device(disk)
16706     when the system powers up.
16707
16708     Signed-off-by: Dave Liu <daveliu@freescale.com>
16709
16710 commit 745d8a0d3cea82e6d1753e14afb4588c34761b15
16711 Author: Stefan Roese <sr@denx.de>
16712 Date:   Sat Jun 28 14:56:17 2008 +0200
16713
16714     ppc4xx: Fix 460EX errata with CPU lockup upon high AHB traffic
16715
16716     This patch implements a fix provided by AMCC so that the lockup upon
16717     simultanious traffic on AHB USB OTG, USB 2.0 and SATA doesn't occur
16718     anymore:
16719
16720     Set SDR0_AHB_CFG[A2P_INCR4] (bit 24) and clear SDR0_AHB_CFG[A2P_PROT2]
16721     (bit 25) for a new 460EX errata regarding concurrent use of AHB USB OTG,
16722     USB 2.0 host and SATA.
16723
16724     This errata is not officially available yet. I'll update the comment
16725     to add the errata number later.
16726
16727     Signed-off-by: Stefan Roese <sr@denx.de>
16728
16729 commit 8b616edb118e37d05f6401389eaee1c636b22828
16730 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
16731 Date:   Mon Jun 2 16:42:19 2008 -0400
16732
16733     serial_pl010.c: add watchdog support
16734
16735     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
16736
16737 commit 86d3273e2b7be3fffb45e20c08535d6ad3aded6b
16738 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
16739 Date:   Mon Jun 2 16:40:08 2008 -0400
16740
16741     jffs2_1pass.c: add watchdog support
16742
16743     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
16744
16745 commit 5744ddc6637fea4f7b911a54a5fa860cb81a5d89
16746 Author: Sascha Laue <sascha.laue@liebherr.com>
16747 Date:   Fri May 30 09:48:14 2008 +0200
16748
16749     Configure DSP POST; add watchdog reset to diag command
16750
16751     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
16752
16753 commit f13526517859bf6b573e23ff47199e107d1009b5
16754 Author: Tor Krill <tor@excito.com>
16755 Date:   Thu May 29 10:40:17 2008 +0200
16756
16757     Add sata sil3114 support
16758
16759     Signed-off-by: Tor Krill <tor@excito.com>
16760
16761 commit e093a247628228100f405b6d7f6b1bfc16141938
16762 Author: Wolfgang Denk <wd@denx.de>
16763 Date:   Sat Jun 28 23:34:37 2008 +0200
16764
16765     Coding Style Cleanup
16766
16767     Signed-off-by: Wolfgang Denk <wd@denx.de>
16768
16769 commit 01db232dd7a0ceb81208a9f2545720c80e5bfd83
16770 Author: Wolfgang Denk <wd@denx.de>
16771 Date:   Sat Jun 28 23:16:01 2008 +0200
16772
16773     Update CHANGELOG
16774
16775     Signed-off-by: Wolfgang Denk <wd@denx.de>
16776
16777 commit c7f879ec2b389c4f2bf726b293bd516f4c692e03
16778 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
16779 Date:   Wed May 21 13:58:41 2008 -0400
16780
16781     ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS)
16782
16783     This patch adds support for the Lyrtech SFF-SDR board,
16784     based on the TI DaVinci architecture (ARM926EJS).
16785
16786     Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
16787     Signed-off-by: Philip Balister <philip@balister.org>
16788     Signed-off-by: Wolfgang Denk <wd@denx.de>
16789
16790 commit 341188b9ccaa8d4462d772cc067aca8d7618633a
16791 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16792 Date:   Thu May 22 11:09:59 2008 +0200
16793
16794     MMC: Consolidate MMC/SD command definitions
16795
16796     This moves the MMC and SD Card command definitions from
16797     include/asm/arch/mmc.h into include/mmc.h. These definitions are
16798     given by the MMC and SD Card standards, not by any particular
16799     architecture.
16800
16801     There's a lot more room for consolidation in the MMC drivers which
16802     I'm hoping to get done eventually, but this patch is a start.
16803
16804     Compile-tested for all avr32 boards as well as lpc2292sodimm and
16805     lubbock. This should cover all three mmc drivers in the tree.
16806
16807     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16808
16809 commit fa60edfc4c952626e048c0e065f654b3c1822fa5
16810 Author: Kyungmin Park <kmpark@infradead.org>
16811 Date:   Wed May 21 14:38:08 2008 +0900
16812
16813     Use better Ethernet timings for apollon board
16814
16815     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
16816
16817 commit 41c5eaa7253ed82bbae1eda5667755872c615164
16818 Author: Andy Fleming <afleming@freescale.com>
16819 Date:   Mon Jun 16 13:58:56 2008 -0500
16820
16821     Resize device tree to allow space for board changes and the chosen node
16822
16823     Current code requires that a compiled device tree have space added to the end to
16824     leave room for extra nodes added by board code (and the chosen node).  This
16825     requires that device tree creators anticipate how much space U-Boot will add to
16826     the tree, which is absurd.  Ideally, the code would resize and/or relocate the
16827     tree when it needed more space, but this would require a systemic change to the
16828     fdt code, which is non-trivial.  Instead, we resize the tree inside
16829     boot_relocate_fdt, reserving either the remainder of the bootmap (in the case
16830     where the fdt is inside the bootmap), or adding CFG_FDT_PAD bytes to the size.
16831
16832     Signed-off-by: Andy Fleming <afleming@freescale.com>
16833
16834 commit 7570a9941fc565922078679a72d246fe208d696d
16835 Author: Andy Fleming <afleming@freescale.com>
16836 Date:   Mon Jun 16 13:58:55 2008 -0500
16837
16838     Fix an underflow bug in __lmb_alloc_base
16839
16840     __lmb_alloc_base can underflow if it fails to find free space.  This was fixed
16841     in linux with commit d9024df02ffe74d723d97d552f86de3b34beb8cc.  This patch
16842     merely updates __lmb_alloc_base to resemble the current version in Linux.
16843
16844     Signed-off-by: Andy Fleming <afleming@freescale.com>
16845
16846 commit 63796c4e61b207d2e635729d41b7a7f7d188b03c
16847 Author: Andy Fleming <afleming@freescale.com>
16848 Date:   Mon Jun 16 13:58:54 2008 -0500
16849
16850     Add lmb_free
16851
16852     lmb_free allows us to unreserve some memory so we can use lmb_alloc_base or
16853     lmb_reserve to temporarily reserve some memory.
16854
16855     Signed-off-by: Andy Fleming <afleming@freescale.com>
16856
16857 commit 4b03ac8b5102ad95f9fede7d13fa236977593e7d
16858 Author: Andy Fleming <afleming@freescale.com>
16859 Date:   Mon Jun 16 13:58:53 2008 -0500
16860
16861     Add ALIGN() macro
16862
16863     ALIGN() returns the smallest aligned value greater than the passed
16864     in address or size.  Taken from Linux.
16865
16866     Signed-off-by: Andy Fleming <afleming@freescale.com>
16867
16868 commit 93262af85e3e9d9974c6c08fbd37a9a72e090ca2
16869 Author: Stefan Roese <sr@denx.de>
16870 Date:   Tue Jun 24 17:15:22 2008 +0200
16871
16872     ppc4xx: Fix compilation problems with phys_size_t
16873
16874     This patch includes <asm/types.h> before <asm/u-boot.h> in some 4xx
16875     board specific files where it has been missing.
16876
16877     Signed-off-by: Stefan Roese <sr@denx.de>
16878
16879 commit 28eab0d77352b84885f938759bf2612b7bf0bc44
16880 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
16881 Date:   Mon May 19 12:26:38 2008 +0200
16882
16883     Conditionally add -fno-stack-protector to CFLAGS
16884
16885     When compile-testing on powerpc, I get errors like this:
16886
16887     net/nfs.c:422: undefined reference to `__stack_chk_fail_local'
16888
16889     This seems to be because -fstack-protector is on by default, so
16890     let's explicitly disable it on all architectures that support the
16891     option.
16892
16893     The Ubuntu toolchain is affected by this problem, and according to
16894     Mike Frysinger, Gentoo has been running with SSP enabled for years.
16895     More and more distros are turning SSP on by default, so this problem
16896     is likely to get worse in the future.
16897
16898     Also, powerpc just happens to be one of the arches I do
16899     compile-testing on. There may be other arches affected by this too.
16900
16901     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
16902
16903 commit dfd3be881c03a26e31f0dea4a42e76061fa610ac
16904 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16905 Date:   Sun May 18 19:09:52 2008 +0200
16906
16907     pcmcia/ti_pci1410a: Move compile condition to the Makefile
16908
16909     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16910
16911 commit 72d5d5f7b5c74a188df238ec6dd824d80c74857a
16912 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16913 Date:   Sun May 18 19:09:51 2008 +0200
16914
16915     pxa_pcmcia: Move compile condition to the Makefile
16916
16917     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16918
16919 commit c9eff32881fb429101c937cf8c268f1d42e5c2a9
16920 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16921 Date:   Sun May 18 19:09:50 2008 +0200
16922
16923     marabun_pcmcia: Move compile condition to the Makefile
16924
16925     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16926
16927 commit 6a19c46cae43c16c528eddefae3db97134f1915d
16928 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
16929 Date:   Mon Jun 23 13:25:34 2008 +0200
16930
16931     fix non-working mvBL-M7
16932
16933     Add missing #define CONFIG_HIGH_BATS in mvBL-M7 board config file.
16934
16935     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
16936     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16937
16938 commit 846f1574ddddeda2bc227655e687308695f41cdc
16939 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
16940 Date:   Mon Jun 23 11:40:56 2008 +0200
16941
16942     fix system config overwrite @ MPC834x and MPC8313
16943
16944     During 83xx setup the "System I/O configuration register high" gets
16945     overwritten with user defined value if CFG_SICRH is defined.
16946
16947     Regarding to the MPC834x manual (Table 5-28 reve.1) bits 28+29 of SICRH
16948     must keep their reset value regardless of configuration.
16949
16950     On my board (using RGMII) those bits are set after reset - yet it's
16951     unclear where they come from.
16952
16953     The patch keeps both bits on MPC834x and MPC8313.
16954
16955     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
16956     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16957
16958 commit 4890246a2c5df90a74e2941e3673a49bbd36aee9
16959 Author: Kim Phillips <kim.phillips@freescale.com>
16960 Date:   Tue Jun 17 17:45:27 2008 -0500
16961
16962     mpc83xx: move CPU_TYPE_ENTRY over to processor.h
16963
16964     to avoid this:
16965
16966     cpu.c:47:1: warning: "CPU_TYPE_ENTRY" redefined
16967     In file included from cpu.c:33:
16968     /home/kim/git/u-boot/include/asm/processor.h:982:1: warning: this is the location of the previous definition
16969
16970     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16971
16972 commit aac7a5095b968d6c9a3e6422f31b4ad203cac9c8
16973 Author: Stefan Roese <sr@denx.de>
16974 Date:   Mon Jun 23 11:15:09 2008 +0200
16975
16976     ppc4xx: Fix problem in gpio_config()
16977
16978     As pointed out by Guennadi Liakhovetski (thanks), pin2 is already shifted
16979     left by one. So the additional shift is bogus.
16980
16981     Signed-off-by: Stefan Roese <sr@denx.de>
16982
16983 commit 40777812316fc252c941665c0f60c148fd79d50f
16984 Author: Detlev Zundel <dzu@denx.de>
16985 Date:   Fri Jun 20 22:24:05 2008 +0200
16986
16987     fdt: Fix typo in variable name.
16988
16989     Signed-off-by: Detlev Zundel <dzu@denx.de>
16990
16991 commit 5f723a3b98c630bde33de74351f2121691fdef14
16992 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16993 Date:   Fri Jun 20 10:41:05 2008 +0200
16994
16995     avr32: Enable SPI flash support on ATNGW100
16996
16997     The ATNGW100 has 8MB DataFlash on board. Give users access to it through
16998     the new SPI flash framework.
16999
17000     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17001
17002 commit 5605ef6b5802921cbefe6a933a9dea3497396b5c
17003 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17004 Date:   Fri Jun 20 12:44:28 2008 +0200
17005
17006     avr32: Fix SPI portmux initialization
17007
17008     Use the new GPIO manipulation functions to set up the chip select lines,
17009     and make sure both busses use GPIO for chip select control.
17010
17011     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17012
17013 commit 4688f9e34a87e825aed34d07c9ca7a273e6fc8ab
17014 Author: Peter Ma <pma@mediamatech.com>
17015 Date:   Sun Jun 1 22:59:24 2008 -0700
17016
17017     avr32: Add GPIO manipulation functions
17018
17019     Adds GPIO manipulation functions for AVR32 AP7 platform.
17020
17021     Signed-off-by: Peter Ma <pma@mediamatech.com>
17022     [haavard.skinnemoen@atmel.com: coding style fixup, slight simplification]
17023     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17024
17025 commit b4fe1a71090c73efc6e4188eed188b2ff67fc02a
17026 Author: Wolfgang Grandegger <wg@grandegger.com>
17027 Date:   Thu Jun 5 13:02:30 2008 +0200
17028
17029     MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
17030
17031     This patch is based on the following patch sent a few minutes ago:
17032     "NAND FSL UPM: driver re-write using the hwcontrol callback"
17033     It is untested, of course. Anton, could you please give it a try.
17034
17035     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
17036     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17037
17038 commit 96026d42fa4e646d28318c0a1438aac4b2017909
17039 Author: Anatolij Gustschin <agust@denx.de>
17040 Date:   Thu Jun 12 12:40:11 2008 +0200
17041
17042     Fix 4xx build issue
17043
17044     Building for 4xx doesn't work since commit 4dbdb768:
17045
17046     In file included from 4xx_pcie.c:28:
17047     include/asm/processor.h:971: error: expected ')' before 'ver'
17048     make[1]: *** [4xx_pcie.o] Error 1
17049
17050     This patch fixes the problem.
17051
17052     Signed-off-by: Anatolij Gustschin <agust@denx.de>
17053     Acked-by: Stefan Roese <sr@denx.de>
17054     Acked-by: Kumar Gala <galak@kernel.crashing.org>
17055
17056 commit a036b0443657fe0f4773786de9092251869f08ac
17057 Author: Kumar Gala <galak@kernel.crashing.org>
17058 Date:   Thu Jun 19 01:45:50 2008 -0500
17059
17060     MPC8610HPCD: Report board id, board version and fpga version.
17061
17062     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17063
17064 commit 7de8c21f14df9c20fdcf6027aec8e8545f75f835
17065 Author: Kumar Gala <galak@kernel.crashing.org>
17066 Date:   Thu Jun 19 01:45:27 2008 -0500
17067
17068     MPC8641HPCN: Report board id, board version and fpga version.
17069
17070     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17071
17072 commit fb8c061ea05fc68d37e2a8b9f8c949d76c8d71a8
17073 Author: Stefan Roese <sr@denx.de>
17074 Date:   Mon Jun 16 10:40:02 2008 +0200
17075
17076     cfi-flash: Fix problem in flash_toggle(), busy was not detected reliably
17077
17078     This patch simplifies flash_toggle() (AMD commandset), which is used to
17079     detect if a FLASH device is still busy with erase/program operations. On
17080     800MHz Canyonlands/Glacier boards (460EX/GT) the current implementation
17081     did not detect the busy state reliably, resulting in non erased sectors
17082     etc. This patch now simplifies this function by "just" comparing the
17083     complete data-word instead of ANDing it with the command-word (0x40)
17084     before the compatison. It is done the same way in the Linux implementation
17085     chip_ready() in cfi_cmdset_0002.c.
17086
17087     Signed-off-by: Stefan Roese <sr@denx.de>
17088
17089 commit 9e4006bca3d9fb4a2d061996771036cb01e539d3
17090 Author: Philip Balister <philip@balister.org>
17091 Date:   Mon Jun 16 08:58:07 2008 -0400
17092
17093     NAND: Add missing declaration to non-redundant saveenv().
17094
17095     Signed-off-by: Scott Wood <scottwood@freescale.com>
17096
17097 commit 2cdb7f50ac59594540fffdf8dbd7b12beac79c52
17098 Author: Wolfgang Grandegger <wg@grandegger.com>
17099 Date:   Mon Jun 2 15:09:55 2008 +0200
17100
17101     MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
17102
17103     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
17104     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17105     Signed-off-by: Scott Wood <scottwood@freescale.com>
17106
17107 commit 212ed90615c3d20fa6bd73d70d5153bd0d124e5f
17108 Author: Stefan Roese <sr@denx.de>
17109 Date:   Tue Jun 10 15:34:11 2008 +0200
17110
17111     ppc4xx: Canyonlands: Disable the RTC M41T62 square wave output
17112
17113     This patch disables the square wave output of the M41T62 RTC used on
17114     Canyonlands & Glacier. Here the explanation:
17115
17116     The serial real-time clock part used in the design is an
17117     STMicro M41T62. This part has a full-time 32KHz square wave
17118     output that is connected to the TmrClk input to the
17119     processor. The default state for this square wave output is
17120     enabled so the output runs continuously when the board is
17121     powered normally and also from the battery. The TmrClk input
17122     to the processor goes to ground when the power is removed
17123     from the board/processor, and therefore the running square
17124     wave output is driving ground which drains the battery quickly.
17125
17126     Signed-off-by: Stefan Roese <sr@denx.de>
17127
17128 commit a94f22f08f280905926219e568568964cb9eeb9d
17129 Author: Andy Fleming <afleming@freescale.com>
17130 Date:   Wed Jun 11 18:10:20 2008 -0500
17131
17132     Fix build issue with string.h and linux/string.h
17133
17134     This commit:
17135     commit 338cc038461a6c7709c5b86fd9a240209338a1ae
17136     Author: Wolfgang Denk <wd@denx.de>
17137     Date:   Fri Jun 6 14:28:14 2008 +0200
17138
17139         tools/mkimage: fix compiler warnings on some systems.
17140
17141     Broke building on some systems, because the host's string.h was interfering
17142     with u-boot's linux/string.h.  It doesn't look like we need the u-boot one if
17143     we're building for the host, so now we only include when building inside
17144     u-boot.
17145
17146     Signed-off-by: Andy Fleming <afleming@freescale.com>
17147
17148 commit 9973e3c614721bbf169882ffc3be266a6611cd60
17149 Author: Becky Bruce <becky.bruce@freescale.com>
17150 Date:   Mon Jun 9 16:03:40 2008 -0500
17151
17152     Change initdram() return type to phys_size_t
17153
17154     This patch changes the return type of initdram() from long int to phys_size_t.
17155     This is required for a couple of reasons: long int limits the amount of dram
17156     to 2GB, and u-boot in general is moving over to phys_size_t to represent the
17157     size of physical memory.  phys_size_t is defined as an unsigned long on almost
17158     all current platforms.
17159
17160     This patch *only* changes the return type of the initdram function (in
17161     include/common.h, as well as in each board's implementation of initdram).  It
17162     does not actually modify the code inside the function on any of the platforms;
17163     platforms which wish to support more than 2GB of DRAM will need to modify
17164     their initdram() function code.
17165
17166     Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc
17167     MPC8641HPCN.
17168
17169     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
17170
17171 commit 391fd93ab23e15ab3dd58a54f5b609024009c378
17172 Author: Becky Bruce <becky.bruce@freescale.com>
17173 Date:   Mon Jun 9 20:37:18 2008 -0500
17174
17175     Change lmb to use phys_size_t/phys_addr_t
17176
17177     This updates the lmb code to use phys_size_t
17178     and phys_addr_t instead of unsigned long.  Other code
17179     which interacts with this code, like getenv_bootm_size()
17180     is also updated.
17181
17182     Booted on MPC8641HPCN, build-tested ppc, arm, mips.
17183
17184     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
17185
17186 commit 61b09fc2952dc636017df4e7970e3de132276ba1
17187 Author: Becky Bruce <becky.bruce@freescale.com>
17188 Date:   Mon Jun 9 20:37:17 2008 -0500
17189
17190     Change print_size to take phys_size_t
17191
17192     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
17193
17194 commit b57ca3e128cc10a133ba79bc7ec3e7b50e7c8fbe
17195 Author: Becky Bruce <becky.bruce@freescale.com>
17196 Date:   Mon Jun 9 20:37:16 2008 -0500
17197
17198     Change bd/gd memsize/ram_size to be phys_size_t.
17199
17200     Currently, both are defined as an unsigned long, but
17201     should be phys_size_t. This should result in no real change,
17202     since phys_size_t is currently an unsigned long for all the
17203     default configs.  Also add print_lnum to cmd_bdinfo to deal
17204     with the potentially wider memsize.
17205
17206     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
17207
17208 commit ba04f7010958e88a8910f2a123fee53fdc72e013
17209 Author: Kumar Gala <galak@kernel.crashing.org>
17210 Date:   Tue Jun 10 16:16:02 2008 -0500
17211
17212     FSL LAW: Add new interface to use the last free LAW
17213
17214     LAWs have the concept of priority so its useful to be able to allocate
17215     the lowest (highest number) priority.  We will end up using this with the
17216     new DDR code.
17217
17218     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17219
17220 commit 859a86a25c569d3665ff413d1d923394b8a961f3
17221 Author: Kumar Gala <galak@kernel.crashing.org>
17222 Date:   Wed Jun 11 00:51:45 2008 -0500
17223
17224     85xx/86xx: Move to dynamic mgmt of LAWs
17225
17226     With the new LAW interface (set_next_law) we can move to letting the
17227     system allocate which LAWs are used for what purpose.  This makes life
17228     a bit easier going forward with the new DDR code.
17229
17230     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17231     Signed-off-by: Andy Fleming <afleming@freescale.com>
17232     Acked-by: Jon Loeliger <jdl@freescale.com>
17233     Acked-by: Becky Bruce <becky.bruce@freescale.com>
17234
17235 commit f060054dadbbe7027ca088eed806a3ef1f82fdb7
17236 Author: Kumar Gala <galak@kernel.crashing.org>
17237 Date:   Wed Jun 11 00:44:10 2008 -0500
17238
17239     FSL LAW: Keep track of LAW allocations
17240
17241     Make it so we keep track of which LAWs have allocated and provide
17242     a function (set_next_law) which can allocate a LAW for us if one is
17243     free.
17244
17245     In the future we will move to doing more "dynamic" LAW allocation
17246     since the majority of users dont really care about what LAW number
17247     they are at.
17248
17249     Also, add CONFIG_MPC8540 or CONFIG_MPC8560 to those boards which needed them
17250
17251     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17252     Signed-off-by: Andy Fleming <afleming@freescale.com>
17253
17254 commit ddde74a159caa6e18b481fec01d40b885aebb566
17255 Author: Kumar Gala <galak@kernel.crashing.org>
17256 Date:   Mon Jun 9 22:31:57 2008 -0500
17257
17258     85xx: remove dummy board_early_init_f
17259
17260     A number of board ports have empty version of board_early_init_f
17261     for no reason since we control its via CONFIG_BOARD_EARLY_INIT_F.
17262
17263     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17264
17265 commit 81e56e9af0d43712db8efb843606a8d62eab454f
17266 Author: Kumar Gala <galak@kernel.crashing.org>
17267 Date:   Mon Jun 9 18:55:38 2008 -0500
17268
17269     MPC8544DS: Update config.h
17270
17271     * Enable flash progress
17272     * remove CLEAR_LAW0 since we dont really use it
17273
17274     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17275
17276 commit 978e81604c1b28526ed580df0fbe64eb8384e94f
17277 Author: Kumar Gala <galak@kernel.crashing.org>
17278 Date:   Mon Jun 9 13:37:24 2008 -0500
17279
17280     85xx: Remove unused and unconfigured memory test code.
17281
17282     Remove unused and unconfigured DDR test code from FSL 85xx boards.
17283     Besides, other common code exists.
17284
17285     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17286
17287 commit a23cddde1a95f987e3fe2a720a7ec9375b7264d7
17288 Author: Sergei Poselenov <sposelenov@emcraft.com>
17289 Date:   Fri Jun 6 15:42:45 2008 +0200
17290
17291     Socrates: Added FPGA base address update in FDT.
17292
17293     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17294
17295 commit fd51b0e0e620b8bc9fd4f6daa3a4fa6f5e1316f4
17296 Author: Sergei Poselenov <sposelenov@emcraft.com>
17297 Date:   Fri Jun 6 15:42:44 2008 +0200
17298
17299     Socrates: NAND support added. Changed the U-Boot base address and
17300
17301     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17302
17303 commit 248ae5cfc8bf69074d1da099dc495d8e06070547
17304 Author: Sergei Poselenov <sposelenov@emcraft.com>
17305 Date:   Fri Jun 6 15:42:43 2008 +0200
17306
17307     NAND: Added support for 128-bit OOB, adapted
17308
17309     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17310
17311 commit 31ca0208612f2eb57690110d7c2815953650e47b
17312 Author: Sergei Poselenov <sposelenov@emcraft.com>
17313 Date:   Fri Jun 6 15:42:42 2008 +0200
17314
17315     Socrates: added missed file with UPMA configuration data.
17316
17317     Signed-of-by: Sergei Poselenov <sposelenov@emcraft.com>
17318
17319 commit 59abd15b43cab7a4d19de4ba0943837d9555f7ba
17320 Author: Sergei Poselenov <sposelenov@emcraft.com>
17321 Date:   Fri Jun 6 15:42:41 2008 +0200
17322
17323     Socrates: Added FPGA mapping. LAWs and TLBs cleanup.
17324
17325     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17326
17327 commit 740280e68ccc0b971e613face7eaaa8bd1382b8c
17328 Author: Sergei Poselenov <sposelenov@emcraft.com>
17329 Date:   Fri Jun 6 15:42:40 2008 +0200
17330
17331     Added the upmconfig() function for 85xx.
17332
17333     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17334     Signed-off-by: Andy Fleming <afleming@freescale.com>
17335
17336 commit d39e68514ff943930ee692cff3fde03532eb7fec
17337 Author: Sergei Poselenov <sposelenov@emcraft.com>
17338 Date:   Fri Jun 6 15:42:39 2008 +0200
17339
17340     Socrates: config file cleanup.
17341
17342     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17343
17344 commit e8cc3f04b124f757af4528206e60d8eb715ae083
17345 Author: Wolfgang Grandegger <wg@grandegger.com>
17346 Date:   Thu Jun 5 13:12:10 2008 +0200
17347
17348     TQM85xx: Change memory map to support Flash memory > 128 MiB
17349
17350     Some TQM85xx boards could be equipped with up to 1 GiB (NOR) Flash
17351     memory. The current memory map only supports up to 128 MiB Flash.
17352     This patch adds the configuration option CONFIG_TQM_BIGFLASH. If
17353     set, up to 1 GiB flash is supported. To achieve this, the memory
17354     map has to be adjusted in great parts (for example the CCSRBAR is
17355     moved from 0xE0000000 to 0xA0000000).
17356
17357     If you want to boot Linux with CONFIG_TQM_BIGFLASH set, the new
17358     memory map also has to be considered in the kernel (changed
17359     CCSRBAR address, changed PCI IO base address, ...). Please use
17360     an appropriate Flat Device Tree blob (tqm8548.dtb).
17361
17362     Signed-off-by: Martin Krause <martin.krause@tqs.de>
17363     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
17364
17365 commit 1c2deff22cd6e2bf0e618fd6e09ca3eec5a8d051
17366 Author: Wolfgang Grandegger <wg@grandegger.com>
17367 Date:   Thu Jun 5 13:12:09 2008 +0200
17368
17369     TQM85xx: NAND support via local bus UPMB
17370
17371     This patch adds support for NAND FLASH on the TQM8548. It is disabled by
17372     default and can be enabled for the TQM8548 modules. It is now based on
17373     the re-written FSL NAND UPM driver. A patch has been posted earlier today
17374     with the subject:
17375
17376     "NAND FSL UPM: driver re-write using the hwcontrol callback"
17377
17378     Note that the R/B pin is not supported by that module requiring to use
17379     the specified maximum delay time.
17380
17381     Note: With NAND support enabled the size of the U-Boot image exceeds
17382     256 KB and TEXT_BASE must therefore be set to 0xfff80000 in config.mk,
17383     doubling the image size :-(.
17384
17385     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
17386     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
17387
17388 commit b9e8078bb3f3c48111a7081e27279938c3a445e1
17389 Author: Wolfgang Grandegger <wg@grandegger.com>
17390 Date:   Thu Jun 5 13:12:08 2008 +0200
17391
17392     TQM8548: PCI express support
17393
17394     This patch adds support for PCI express cards. The board support
17395     now uses common FSL PCI init code, for both, PCI and PCIe on all
17396     TQM85xx modules.
17397
17398     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
17399     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
17400
17401 commit 1287e0c55a2ee2c575ac9ce8e4302cd4085be876
17402 Author: Wolfgang Grandegger <wg@grandegger.com>
17403 Date:   Thu Jun 5 13:12:07 2008 +0200
17404
17405     TQM8548: Basic support for the TQM8548 modules
17406
17407     This patch adds basic support for the TQM8548 module from TQ-Components
17408     (http://www.tqc.de/) including DDR2 SDRAM initialisation and support for
17409     eTSEC 3 and 4
17410
17411     Furthermore Flash buffer write has been enabled to speed up output to
17412     the Flash by approx. a factor of 10.
17413
17414     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
17415     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
17416
17417 commit 25991353204c78b094c3c1fec90182dcd607ab8f
17418 Author: Wolfgang Grandegger <wg@grandegger.com>
17419 Date:   Thu Jun 5 13:12:06 2008 +0200
17420
17421     TQM85xx: Support for Flat Device Tree
17422
17423     This patch adds support for Linux kernels using the Flat Device Tree.
17424     It also re-defines the default environment settings for booting Linux
17425     with the FDT blob.
17426
17427     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
17428
17429 commit d9ee843d54c54776e1fdb86336ce554906a87331
17430 Author: Wolfgang Grandegger <wg@grandegger.com>
17431 Date:   Thu Jun 5 13:12:05 2008 +0200
17432
17433     TQM85xx: Support for Intel 82527 compatible CAN controller
17434
17435     This patch adds initialization of the UPMC RAM to support up to two
17436     Intel 82527 compatible CAN controller on the TQM85xx modules.
17437
17438     Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
17439     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
17440
17441 commit 518d5cfe72916323c746af1647764459914f555f
17442 Author: Wolfgang Grandegger <wg@grandegger.com>
17443 Date:   Thu Jun 5 13:12:04 2008 +0200
17444
17445     TQM85xx: Bugfix in the SDRAM initialisation
17446
17447     The CS0_BNDS register is now set according to the detected
17448     memory size.
17449
17450     Signed-off-by Martin Krause <martin.krause@tqs.de>
17451
17452 commit 45dee2e620ccec6ac7b3548fe8979a34fd030e5d
17453 Author: Wolfgang Grandegger <wg@grandegger.com>
17454 Date:   Thu Jun 5 13:12:03 2008 +0200
17455
17456     TQM85xx: Fix chip select configuration for second FLASH bank
17457
17458     This patch fixes the re-calculation of the automatic chip select
17459     configuration for boards with two populated FLASH banks.
17460
17461     Signed-off-by: Martin Krause <martin.krause@tqs.de>
17462
17463 commit 46346f27cda6fd025a496bde8f2d4aeee04aca5f
17464 Author: Wolfgang Grandegger <wg@grandegger.com>
17465 Date:   Thu Jun 5 13:12:02 2008 +0200
17466
17467     TQM85xx: Support for Spansion 'N' type flashes added
17468
17469     The 'N' type Spansion flashes (S29GLxxxN series) have bigger sectors,
17470     than the formerly used 'M' types (S29GLxxxM series), so the flash layout
17471     needs to be changed -> new start address of the environment. The macro
17472     definition CONFIG_TQM_FLASH_N_TYPE is undefined by default and must be
17473     defined for boards with 'N' type flashes.
17474
17475     Signed-off-by: Martin Krause <martin.krause@tqs.de>
17476     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
17477
17478 commit 5d5bd838f76eade22c0ea40a500389f924d0da36
17479 Author: Wolfgang Grandegger <wg@grandegger.com>
17480 Date:   Thu Jun 5 13:12:01 2008 +0200
17481
17482     TQM85xx: Fix CPM port pin configuration
17483
17484     Do not configure port pins PD30/PD31 as SCC1 TxD/RxD except for the TQM8560
17485     board. On the other TQM85xx boards (TQM8541 and TQM8555) SCC1 is not used
17486     as serial interface anyway. Worse, on some board variants configuring the
17487     pins for SCC1 leads to short circuits (for example on the TQM8541-BG).
17488
17489     Signed-off-by: Martin Krause <martin.krause@tqs.de>
17490
17491 commit b99ba1679e8cd51b023e67098c89e606e47137d2
17492 Author: Wolfgang Grandegger <wg@grandegger.com>
17493 Date:   Thu Jun 5 13:12:00 2008 +0200
17494
17495     TQM85xx: Various coding style fixes
17496
17497     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
17498
17499 commit ae9e97fa96f643c8ba2b666b06a026cc8717eb00
17500 Author: Gerald Van Baren <vanbaren@cideas.com>
17501 Date:   Tue Jun 10 22:15:58 2008 -0400
17502
17503     libfdt: Move the working_fdt pointer to cmd_fdt.c
17504
17505     The working_fdt pointer was declared in common/fdt_support.c but was
17506     not used there.  Move it to common/cmd_fdt.c where it is used (it is
17507     also used in lib_ppc/bootm.c).
17508
17509     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
17510
17511 commit e489b9c078e22b0d9e75f002cd2a1bd967e88f5e
17512 Author: Kim Phillips <kim.phillips@freescale.com>
17513 Date:   Tue Jun 10 11:06:17 2008 -0500
17514
17515     fdt: unshadow global working fdt variable
17516
17517     differentiate with local variables of the same name by renaming the
17518     global 'fdt' variable 'working_fdt'.
17519
17520     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17521
17522 commit e1eb0e25d9d8fd8efdfb93f670a417663f386022
17523 Author: Andy Fleming <afleming@freescale.com>
17524 Date:   Tue Jun 10 18:49:34 2008 -0500
17525
17526     socrates: Fix PCI clk fix patch
17527
17528     The submitted patch seems to have been more up-to-date, but an older patch was
17529     already in the repository.  This patch encompasses the differences
17530
17531     Taken entirely from Sergei Poselenov <sposelenov@emcraft.com>
17532
17533     Signed-off-by: Andy Fleming <afleming@freescale.com>
17534
17535 commit a75a57ef6e4b613c81434971e96ed70cf9ec9ba0
17536 Author: Wolfgang Grandegger <wg@grandegger.com>
17537 Date:   Thu Jun 5 13:02:29 2008 +0200
17538
17539     NAND FSL UPM: driver re-write using the hwcontrol callback
17540
17541     This is a re-write of the NAND FSL UPM driver using the more universal
17542     hwcontrol callback (instead of the cmdfunc callback). Here is a brief
17543     list of furher modifications:
17544
17545     - For the time being, the UPM setup writing the UPM array has been
17546       removed from the driver and must now be done by the board specific
17547       code.
17548
17549     - The bus width definition in "struct fsl_upm_nand" is now in bits to
17550       comply with the corresponding Linux driver and 8, 16 and 32 bit
17551       accesses are supported.
17552
17553     - chip->dev_read is only set if fun->dev_ready != NULL, which is
17554       required for boards not connecting the R/B pin.
17555
17556     - A few issue have been fixed with MxMR bit manipulation like in the
17557       corresponding Linux driver.
17558
17559     Note: I think the "io_addr" field of "struct fsl_upm" could be removed
17560           as well, because the address is already determined by
17561           "nand->IO_ADDR_[RW]", but I'm not 100% sure.
17562
17563     This patch has been tested on a TQM8548 modules with the NAND chip
17564     Micron MT29F8G08FABWP.
17565
17566     This patch is based on the following patches posted to this list a few
17567     minutes ago:
17568
17569       PPC: add accessor macros to clear and set bits in one shot
17570       83xx/85xx/86xx: add more MxMR local bus definitions
17571
17572     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
17573     Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17574
17575 commit 6beecfbb542992eede5831240cd58678274683a9
17576 Author: Wolfgang Grandegger <wg@grandegger.com>
17577 Date:   Thu Jun 5 13:11:59 2008 +0200
17578
17579     MPC85xx: Beautify boot output of L2 cache configuration
17580
17581     The boot output is now aligned poperly with other boot output
17582     lines, e.g.:
17583
17584       FLASH: 128 MB
17585       L2:    512 KB enabled
17586
17587     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
17588
17589 commit 398415114f0a705163a14543e9fef03f734b1ffa
17590 Author: Wolfgang Grandegger <wg@grandegger.com>
17591 Date:   Wed Jun 4 12:45:22 2008 +0200
17592
17593     PPC: add accessor macros to clear and set bits in one shot
17594
17595     PPC: add accessor macros to clear and set bits in one shot
17596
17597     This patch adds macros from linux/include/asm-powerpc/io.h to clear and
17598     set bits in one shot using the in_be32, out_be32, etc. accessor functions.
17599     They are very handy to manipulate bits it I/O registers.
17600
17601     This patch is required for my forthcoming FSL NAND UPM driver re-write and
17602     the support for the TQM8548 module.
17603
17604     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
17605
17606 commit 4677988c7edc070c3786d3db7994abeca3ab82a0
17607 Author: Wolfgang Grandegger <wg@grandegger.com>
17608 Date:   Wed Jun 4 13:52:17 2008 +0200
17609
17610     TQM: move TQM boards to board/tqc
17611
17612     Move all TQM board directories to the vendor specific directory "tqc"
17613     for modules from TQ-Components GmbH (http://www.tqc.de).
17614
17615     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
17616
17617 commit 6fab2fe72ca5bf95280cd52cdf378af3e506eb50
17618 Author: Wolfgang Grandegger <wg@grandegger.com>
17619 Date:   Mon Jun 2 12:09:30 2008 +0200
17620
17621     83xx/85xx/86xx: add more MxMR local bus definitions
17622
17623     83xx/85xx/86xx: add more MxMR local bus definitions
17624
17625     This patch adds more macro definitions for the UPM Machine Mode Registers
17626     They are copied from "include/mpc82xx.h" to simplify the merge of all 8xxx
17627     common local bus definitions into include/asm-ppc/fsl_lbc.h. They are
17628     required for my forthcoming FSL NAND UPM driver re-write and the support
17629     for the TQM8548 module.
17630
17631     This patch is based on the following two patches from Anton Vorontsov:
17632
17633     http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06511.html
17634     http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06587.html
17635
17636     I leave coding style violation fixes, code beautification and name
17637     corrections to somebody else ;-(.
17638
17639     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
17640
17641 commit c8c5fc266e4499e283c293ccb972863156aa4134
17642 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17643 Date:   Thu May 29 18:14:56 2008 +0400
17644
17645     83xx/85xx: further localbus cleanups
17646
17647     Merge mpc85xx.h's LBC defines to fsl_lbc.h. Also, adopt ACS names
17648     from mpc85xx.h, so ACS_0b10 renamed to ACS_DIV4, ACS_0b11 to ACS_DIV2.
17649
17650     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17651
17652 commit 42dbd667c88d496882d53e22656e89b654205492
17653 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17654 Date:   Wed May 28 18:20:15 2008 +0400
17655
17656     83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
17657
17658     This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
17659     use it on MPC85xx and MPC86xx processors.
17660
17661     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17662
17663 commit 730b2fcf6fcd9eec3ea86fbb087c3f98aa23a769
17664 Author: Kumar Gala <galak@kernel.crashing.org>
17665 Date:   Thu May 29 11:22:06 2008 -0500
17666
17667     85xx: Add setting of cache props in the device tree.
17668
17669     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17670
17671 commit 4dbdb7681e243431530df0725627192a0c4aefda
17672 Author: Kumar Gala <galak@kernel.crashing.org>
17673 Date:   Tue Jun 10 16:53:46 2008 -0500
17674
17675     85xx: expose cpu identification
17676
17677     The current cpu identification code is used just to return the name
17678     of the processor at boot.  There are some other locations that the name
17679     is useful (device tree setup).  Expose the functionality to other bits
17680     of code.
17681
17682     Also, drop the 'E' suffix and add it on by looking at the SVR version
17683     when we print this out.  This is mainly to allow the most flexible use
17684     of the name.  The device tree code tends to not care about the 'E' suffix.
17685
17686     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17687
17688 commit 2329fe113d847e43cca8e4a0e4edd613b50b8492
17689 Author: Kim Phillips <kim.phillips@freescale.com>
17690 Date:   Tue Jun 10 13:25:24 2008 -0500
17691
17692     mpc83xx: MVBLM7: minor build fixups
17693
17694     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17695
17696 commit a1293e549b56da135ef32ffca5b9d35a16aa6802
17697 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
17698 Date:   Tue Jun 10 09:14:05 2008 +0200
17699
17700     add MPC8343 based board mvBlueLYNX-M7 (board+make files)
17701
17702     Add MPC8343 based board mvBlueLYNX-M7.
17703     It's a single board stereo camera system.
17704     Please read doc/README.mvblm7 for details.
17705
17706     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
17707     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17708
17709 commit c005b93925ba49f07da2aa748527996d927e172f
17710 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
17711 Date:   Tue Jun 10 09:13:16 2008 +0200
17712
17713     add MPC8343 based board mvBlueLYNX-M7 (doc+config)
17714
17715     Add MPC8343 based board mvBlueLYNX-M7.
17716     It's a single board stereo camera system.
17717     Please read doc/README.mvblm7 for details.
17718
17719     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
17720     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17721
17722 commit f9023afbdfd9f27e7c38f3cce965746e56d62dd3
17723 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17724 Date:   Thu May 29 18:14:56 2008 +0400
17725
17726     83xx/85xx: further localbus cleanups
17727
17728     move the BRx_* and ORx_* left behind in mpc85xx.h
17729
17730     The same is needed for mpc8xx.h and mpc8260.h (defines are almost
17731     the same, just few differences which needs some attention though).
17732
17733     But the bad news for mpc8xx and mpc8260 is that there are a lot of users
17734     of these defines. So this cleanup I'll leave for the "better times".
17735
17736     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17737     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17738
17739 commit bf30bb1f7c954d7855d9b23624b33b00c50b4697
17740 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17741 Date:   Wed May 28 18:20:15 2008 +0400
17742
17743     83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
17744
17745     This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
17746     use it on MPC85xx and MPC86xx processors.
17747
17748     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17749     Acked-by: Andy Fleming <afleming@freescale.com>
17750     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17751
17752 commit d82b4fc0ce8cca95e857fc51022e841cb2dbee6a
17753 Author: Tor Krill <tor@excito.com>
17754 Date:   Mon Jun 2 15:09:30 2008 +0200
17755
17756     Add missing CSCONFIG_BANK_BIT_3 define to mpc83xx.h
17757
17758     Signed-off-by: Tor Krill <tor@excito.com>
17759     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17760
17761 commit 3b904ccb93c3196727e2e9870cb1df903cab19ad
17762 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17763 Date:   Mon Jun 9 23:37:44 2008 +0900
17764
17765     net: Conditional COBJS inclusion of network drivers
17766
17767     Replace COBJS-y with appropriate driver config names.
17768
17769     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17770     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17771
17772 commit 2fb698bf50f4aff2485581a12fa634a07c040e4a
17773 Author: Gerald Van Baren <vanbaren@cideas.com>
17774 Date:   Mon Jun 9 21:02:17 2008 -0400
17775
17776     Use strncmp() for the fdt command
17777
17778     Cleaner than doing multiple conditionals on characters.
17779
17780     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
17781
17782 commit 47abe8ab290d2721a8eeadff65b939e6af8c01b0
17783 Author: Gerald Van Baren <vanbaren@cideas.com>
17784 Date:   Sat Jun 7 12:25:05 2008 -0400
17785
17786     The fdt boardsetup command criteria was not unique
17787
17788     It was checking just for "b", which is not unique with respect to the
17789     "boot" command.  Change to check for "boa"[rdsetup].
17790
17791     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
17792
17793 commit 2f08bfa9526bae4f461e043530cfb903fec0d273
17794 Author: David Gibson <david@gibson.dropbear.id.au>
17795 Date:   Tue May 20 17:19:11 2008 +1000
17796
17797     libfdt: Several cleanups to parameter checking
17798
17799     This patch makes a couple of small cleanups to parameter checking of
17800     libfdt functions.
17801
17802         - In several functions which take a node offset, we use an
17803     idiom involving fdt_next_tag() first to check that we have indeed been
17804     given a node offset.  This patch adds a helper function
17805     _fdt_check_node_offset() to encapsulate this usage of fdt_next_tag().
17806
17807         - In fdt_rw.c in several places we have the expanded version
17808     of the RW_CHECK_HEADER() macro for no particular reason.  This patch
17809     replaces those instances with an invocation of the macro; that's what
17810     it's for.
17811
17812         - In fdt_sw.c we rename the check_header_sw() function to
17813     sw_check_header() to match the analgous function in fdt_rw.c, and we
17814     provide an SW_CHECK_HEADER() wrapper macro as RW_CHECK_HEADER()
17815     functions in fdt_rw.c
17816
17817     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
17818
17819 commit fec6d9ee7c10443f65ce1788ef818919167bbf2e
17820 Author: Gerald Van Baren <vanbaren@cideas.com>
17821 Date:   Tue Jun 3 20:34:45 2008 -0400
17822
17823     Remove the deprecated CONFIG_OF_FLAT_TREE
17824
17825     Use CONFIG_OF_LIBFDT instead to support flattened device trees.  It is
17826     cleaner, has better functionality, and is better supported.
17827
17828     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
17829
17830 commit 62bcdda293efa752f8281fbd9da03822b27ce82f
17831 Author: Gerald Van Baren <vanbaren@cideas.com>
17832 Date:   Tue Jun 3 20:26:29 2008 -0400
17833
17834     Change the stxxst to CONFIG_OF_LIBFDT
17835
17836     This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
17837     to CONFIG_OF_LIBFDT.
17838
17839     WARNING: It appears that this board lost its ability to boot via a
17840     flattened device tree prior to this changeset.
17841
17842     WARNING: This conversion was untested because I do not have a board to
17843     test it on.
17844
17845     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
17846
17847 commit 589c04271d129729a8b01391453851ab9cc4069c
17848 Author: Gerald Van Baren <vanbaren@cideas.com>
17849 Date:   Tue Jun 3 20:24:58 2008 -0400
17850
17851     Convert mpc7448hpc2 to CONFIG_OF_LIBFDT
17852
17853     This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
17854     to CONFIG_OF_LIBFDT.
17855
17856     WARNING: This conversion is untested because I do not have a board to
17857     test it on.
17858
17859     NOTE: The FDT blob (DTS) must have an /aliases/ethernet0 and (optionally)
17860     /aliases/ethernet1 property for the ethernet to work.
17861
17862     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
17863
17864 commit ee1e35bede91debc8bff9b02f75574486033b652
17865 Author: Kumar Gala <galak@kernel.crashing.org>
17866 Date:   Thu May 29 01:21:24 2008 -0500
17867
17868     85xx: Only use PORPLLSR[DDR_Ratio] on platforms that define it
17869
17870     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17871
17872 commit 3b9519fc50802436e417c839e69df7b2016cade5
17873 Author: Becky Bruce <becky.bruce@freescale.com>
17874 Date:   Wed May 14 13:10:04 2008 -0500
17875
17876     MPC85xx: Change traps.c to not reference non-addressable memory
17877
17878     Currently, END_OF_RAM is used by the trap code to determine if
17879     we should attempt to access the stack pointer or not. However,
17880     on systems with a lot of RAM, only a subset of the RAM is
17881     guaranteed to be mapped in and accessible.  Change END_OF_RAM
17882     to use get_effective_memsize() instead of using the raw ram
17883     size out of the bd.
17884
17885     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
17886
17887 commit 7faddaecea52f585f538fdf9c2e61f85a789b19c
17888 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17889 Date:   Mon Jun 9 13:39:57 2008 +0900
17890
17891     sh: Renesas Solutions SH7763RDP board support
17892
17893     SH7763RDP has SCIF, NOR Flash, Ethernet, USB host, LCDC and MMC.
17894     In this patch, support SCIF, NOR Flash, and Ethernet.
17895
17896     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17897     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17898
17899 commit 60179098a95eaa972007d7ec58e4c1588029720f
17900 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17901 Date:   Fri Jun 6 16:24:13 2008 +0900
17902
17903     sh: Add support Renesas SH7763
17904
17905     Renesas SH7763 has 3 SCIF, MMC, LCDC, Ethernet and other.
17906     This patch supprts CPU register's header file.
17907
17908     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17909     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17910
17911 commit 08c5fabe181d663eec0feba5ecd02c0b78934a52
17912 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17913 Date:   Fri Jun 6 16:16:08 2008 +0900
17914
17915     sh: SH7763 SCIF support
17916
17917     SH7763 has 3 SCIF channels. SCIF0 and 1 are same register constitution,
17918     but only SCIF2 is different. This patch work all SCIF channel.
17919
17920     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17921     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17922
17923 commit 79b51ff8205f0354d5300570614c1d2db499679c
17924 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17925 Date:   Sat Jun 7 20:51:59 2008 +0900
17926
17927     [MIPS] cpu/mips/Makefile: Split [CS]OBJS onto separate lines
17928
17929     Also get rid of some #ifdefs in *.c files.
17930
17931     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17932
17933 commit 8bde63eb3f79d68f693201528dafc8ae7aa087de
17934 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17935 Date:   Sat Jun 7 20:51:56 2008 +0900
17936
17937     [MIPS] Rename Alchemy processor configs into CONFIG_SOC_*
17938
17939     CONFIG_SOC_AU1X00
17940
17941       Common Alchemy Au1x00 stuff. All Alchemy processor based machines
17942       need to have this config as a system type specifier.
17943
17944     CONFIG_SOC_AU1000, CONFIG_SOC_AU1100, CONFIG_SOC_AU1200,
17945     CONFIG_SOC_AU1500, CONFIG_SOC_AU1550
17946
17947       Machine type specifiers. Each port should have one of aboves.
17948
17949     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17950
17951 commit cc49cadeeb8bb2f0ae3fdc13af7051ae59f083bc
17952 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
17953 Date:   Fri May 30 16:05:28 2008 -0400
17954
17955     env_nand.c: Added bad block management for environment variables
17956
17957     Modified to check for bad blocks and to skipping over them when
17958     CFG_ENV_RANGE has been defined.
17959     CFG_ENV_RANGE must be larger than CFG_ENV_SIZE and aligned to the NAND
17960     flash block size.
17961
17962     Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
17963     Signed-off-by: Scott Wood <scottwood@freescale.com>
17964
17965 commit 279726bd00558e80263d44581c44167625b7fb9a
17966 Author: Becky Bruce <becky.bruce@freescale.com>
17967 Date:   Wed May 14 13:09:58 2008 -0500
17968
17969     MPC86xx: Change traps.c to not reference non-addressable memory
17970
17971     Currently, END_OF_RAM is used by the trap code to determine if
17972     we should attempt to access the stack pointer or not. However,
17973     on systems with a lot of RAM, only a subset of the RAM is
17974     guaranteed to be mapped in and accessible.  Change END_OF_RAM
17975     to use get_effective_memsize() instead of using the raw ram
17976     size out of the bd to prevent us from trying to access
17977     non-mapped memory.
17978
17979     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
17980
17981 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
17982 Author: Wolfgang Denk <wd@denx.de>
17983 Date:   Fri Jun 6 14:28:14 2008 +0200
17984
17985     tools/mkimage: fix compiler warnings on some systems.
17986
17987     Signed-off-by: Wolfgang Denk <wd@denx.de>
17988
17989 commit b2815f79288d4da7a3ba18bdbd05120ce09d5622
17990 Author: Stefan Roese <sr@denx.de>
17991 Date:   Fri Jun 6 16:10:41 2008 +0200
17992
17993     ppc4xx: Fix misspelled CONFIG_440SPE/440EPX/GRX config options
17994
17995     We use upper case letters for the AMCC processor defines (like
17996     CONFIG_440SPE) in U-Boot. So the 440SPe is labeled CONFIG_440SPE and
17997     not CONFIG_440SPe. This patch fixes the last misspelled config options.
17998
17999     Signed-off-by: Stefan Roese <sr@denx.de>
18000
18001 commit 72675dc6c06a48846d180106161d49dd714383cc
18002 Author: Stefan Roese <sr@denx.de>
18003 Date:   Fri Jun 6 15:55:21 2008 +0200
18004
18005     ppc4xx: Unify AMCC's board config files (part 3/3)
18006
18007     This patch series unifies the AMCC eval board ports by introducing
18008     a common include header for all AMCC eval boards:
18009
18010     include/configs/amcc-common.h
18011
18012     This header now includes all common configuration options/defines which
18013     are removed from the board specific headers.
18014
18015     The reason for this is ease of maintenance and unified look and feel
18016     of all AMCC boards.
18017
18018     Signed-off-by: Stefan Roese <sr@denx.de>
18019
18020 commit 490f204096d6e2c9940f67816f154a8125bab116
18021 Author: Stefan Roese <sr@denx.de>
18022 Date:   Fri Jun 6 15:55:03 2008 +0200
18023
18024     ppc4xx: Unify AMCC's board config files (part 2/3)
18025
18026     This patch series unifies the AMCC eval board ports by introducing
18027     a common include header for all AMCC eval boards:
18028
18029     include/configs/amcc-common.h
18030
18031     This header now includes all common configuration options/defines which
18032     are removed from the board specific headers.
18033
18034     The reason for this is ease of maintenance and unified look and feel
18035     of all AMCC boards.
18036
18037     Signed-off-by: Stefan Roese <sr@denx.de>
18038
18039 commit a8a11a9ed046b480a16e47a158f8f5300028dfa6
18040 Author: Stefan Roese <sr@denx.de>
18041 Date:   Fri Jun 6 15:54:31 2008 +0200
18042
18043     ppc4xx: Unify AMCC's board config files (part 1/3)
18044
18045     This patch series unifies the AMCC eval board ports by introducing
18046     a common include header for all AMCC eval boards:
18047
18048     include/configs/amcc-common.h
18049
18050     This header now includes all common configuration options/defines which
18051     are removed from the board specific headers.
18052
18053     The reason for this is ease of maintenance and unified look and feel
18054     of all AMCC boards.
18055
18056     Signed-off-by: Stefan Roese <sr@denx.de>
18057
18058 commit 0e38c938ed4bcadb4f4fc1419a541431e94fc202
18059 Author: Remy Bohmer <linux@bohmer.net>
18060 Date:   Thu Jun 5 13:03:36 2008 +0200
18061
18062     DM9000 fix status check fail 0x6d error for trizeps board
18063
18064     According to the Application Notes of the DM9000, only the 2 bits 0:1 of
18065     the status byte need to be checked to identify a valid packet in the fifo
18066
18067     But, The several different Application Notes do not all speak the same
18068     language on these bits. They do not disagree, but only 1 Application Note
18069     noted explicitly that only these 2 bits need to be checked.
18070     Even the datasheets do not mention anything about these 2 bits.
18071
18072     Because the old code, and the kernel check the whole byte, I left this piece
18073     untouched.
18074
18075     However, I tested all board/DM9000[A|E|EP] devices with this 2 bit check, so
18076     it should work.
18077
18078     Notice, that the 2nd iteration through this receive loop (when a 2nd packet is
18079     in the fifo) is much shorter now, compared to the older U-boot driver code,
18080     so that we can maybe run into a hardware condition now that was never seen
18081     before, or maybe was seen very unfrequently.
18082
18083     Additionaly added a cleanup of a stack variable.
18084
18085     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18086     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18087
18088 commit 7daf2ebe9196dd67131a06d85049c3a8a08ca413
18089 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18090 Date:   Thu Jun 5 22:29:00 2008 +0900
18091
18092     [MIPS] Update <asm/addrspace.h> header
18093
18094     - Fix traditional KSEG names
18095     - Replace PHYSADDR with CPHYSADDR
18096
18097     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18098
18099 commit f0d5a6f060d00358b85c62a921a423ea8df71184
18100 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18101 Date:   Thu Jun 5 22:29:00 2008 +0900
18102
18103     [MIPS] mips_config.mk: Misc fixes
18104
18105     - Kill redundant `-pipe' (this will be added by $(TOPDIR)/config.mk)
18106     - Modify comments
18107
18108     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18109
18110 commit 5f64d21c9a2998794f255b469165b91f092dfc2d
18111 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18112 Date:   Thu Jun 5 22:29:00 2008 +0900
18113
18114     [MIPS] Kill unused <version.h> inclusions
18115
18116     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18117
18118 commit a55d48174cfd1a5bc184159513f48dcbbe409c83
18119 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18120 Date:   Thu Jun 5 22:29:00 2008 +0900
18121
18122     [MIPS] lib_mips/time.c: Fix CP0 count register usage and timer routines
18123
18124     MIPS port has two problems in timer routines. One is now we assume CFG_HZ
18125     equals to CP0 counter frequency, but this is wrong. CFG_HZ has to be 1000
18126     in the U-Boot system.
18127
18128     The other is we don't have a proper time management counter like timestamp
18129     other ARCHs have. We need the 32-bit millisecond clock counter.
18130
18131     This patch introduces timestamp and CYCLES_PER_JIFFY. timestamp is a
18132     32-bit non-overflowing CFG_HZ counter, and CYCLES_PER_JIFFY is the number
18133     of calculated CP0 counter cycles in a CFG_HZ.
18134
18135     STRATEGY:
18136
18137     * Fix improper CFG_HZ value to have 1000
18138
18139     * Use CFG_MIPS_TIMER_FREQ for timer counter frequency, instead.
18140
18141     * timer_init: initialize timestamp and set up the first timer expiration.
18142       Note that we don't need to initialize CP0 count/compare registers here
18143       as they have been already zeroed out on the system reset. Leave them as
18144       they are.
18145
18146     * get_timer: calculate how many timestamps have been passed, then return
18147       base-relative timestamp. Make sure we can easily count missed timestamps
18148       regardless of CP0 count/compare value.
18149
18150     * get_ticks: return the current timestamp, that is get_timer(0).
18151
18152     Most parts are from good old Linux v2.6.16 kernel.
18153
18154     v2:
18155     - Remove FIXME comments as they turned out to be trivial.
18156     - Use CP0 compare register as a global variable for expirelo.
18157     - Kill a global variable 'cycles_per_jiffy'. Use #define CYCLES_PER_JIFFY
18158       instead.
18159
18160     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18161
18162 commit 199e4f657c8af42efe3fb3ba1d1104eb6bb28c25
18163 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18164 Date:   Thu Jun 5 22:29:00 2008 +0900
18165
18166     [MIPS] lib_mips/time.c: Fix udelay
18167
18168     What we have to do is just to wait for given micro-seconds. No need to
18169     take into account current time, get_timer and CFG_HZ.
18170
18171     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18172
18173 commit c7e38e413ae69120d3e51f132c7cb1d6b3514d03
18174 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18175 Date:   Thu Jun 5 22:28:59 2008 +0900
18176
18177     [MIPS] lib_mips/time.c: Replace CP0 access functions with existing macros
18178
18179     We already have many pre-defined CP0 access macros in <asm/mipsregs.h>.
18180     This patch replaces mips_{compare,count}_set and mips_count_get with
18181     existing macros.
18182
18183     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18184
18185 commit 6b52cfe16cd539935e32bd8cf19146522e462a4d
18186 Author: Remy Bohmer <linux@bohmer.net>
18187 Date:   Tue Jun 3 15:48:17 2008 +0200
18188
18189     Get rid of annoying/superfluous bad-checksum warning message
18190
18191     U-boot can complain a lot about 'checksum bad' when it is attached to the network.
18192     It is annoying for ordinary users who start to doubt the network connection
18193     in general when they see messages like this.
18194
18195     This is caused by the routine NetCksumOk() which cannot handle IP-headers longer
18196     than 20 bytes. Those packages can be ignored anyway by U-boot, so we trash them
18197     now before checking the checksum.
18198
18199     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18200     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18201
18202 commit d6ee5fa40c26970d39990c6fc4a2f20a97822650
18203 Author: Remy Bohmer <linux@bohmer.net>
18204 Date:   Wed Jun 4 10:47:25 2008 +0200
18205
18206     Fix order for reading rx-status registers in 32bit mode of DM9000
18207
18208     A last minute cleanup before submitting the DM9000A patch series yesterday introduced
18209     a bug in reading the rx-status registers in 32bit mode only.
18210     This patch repairs this.
18211
18212     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18213     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18214
18215 commit 98291e2e689096420465074cce926b226d2e71b4
18216 Author: Remy Bohmer <linux@bohmer.net>
18217 Date:   Tue Jun 3 15:26:26 2008 +0200
18218
18219     DM9000: Some minor code cleanups
18220
18221     Some lines of the U-boot DM9000x driver are longer than 80 characters, or
18222     need some other minor cleanup.
18223
18224     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18225     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18226
18227 commit 850ba7555dbd4ca8d14fc475b864d534797adab3
18228 Author: Remy Bohmer <linux@bohmer.net>
18229 Date:   Tue Jun 3 15:26:25 2008 +0200
18230
18231     DM9000: Make driver work properly for DM9000A
18232
18233     The DM9000A network controller does not work with the U-boot DM9000x driver.
18234     Analysis showed that many incoming packets are lost.
18235
18236     The DM9000A Application Notes V1.20 (section 5.6.1) recommend that the poll to
18237     check for a valid rx packet be done on the interrupt status register, not
18238     directly by performing the dummy read and the rx status check as is currently
18239     the case in the u-boot driver.
18240
18241     When the recommended poll is done as suggested the driver starts working
18242     correctly on 10Mbit/HD, but on 100MBit/FD packets come in faster so that there
18243     can be more than 1 package in the fifo at the same time.
18244
18245     The driver must perform the rx-status check in a loop and read and handle all
18246     packages until there is no more left _after_ the interrupt RX flag is set.
18247
18248     This change has been tested with DM9000A, DM9000E, DM9000EP.
18249
18250     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18251     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18252
18253 commit fbcb7ece0ea1e364180f1cf963e0fa0ce7f6560d
18254 Author: Remy Bohmer <linux@bohmer.net>
18255 Date:   Tue Jun 3 15:26:24 2008 +0200
18256
18257     DM9000: Improve eth_reset() routine
18258
18259     According to the application notes of the DM9000 v1.22 chapter 5.2 bullet 2, the
18260     reset procedure must be done twice to properly reset the DM9000 by means of software.
18261     This errata is not needed anymore for the DM9000A, but it does not bother it.
18262
18263     This change has been tested with DM9000A, DM9000E, DM9000EP.
18264
18265     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18266     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18267
18268 commit acba31847fad9ae40708cc2c9f3a634ec35f3416
18269 Author: Remy Bohmer <linux@bohmer.net>
18270 Date:   Tue Jun 3 15:26:23 2008 +0200
18271
18272     DM9000: improve eth_send() routine
18273
18274     The eth_send routine of the U-boot DM9000x driver does not match the
18275     DM9000 or DM9000A application notes/programming guides.
18276
18277     This change improves the stability of the DM9000A network controller.
18278
18279     This change has been tested with DM9000A, DM9000E, DM9000EP.
18280
18281     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18282     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18283
18284 commit 134e266253c02a7832560da59d394989c4f64453
18285 Author: Remy Bohmer <linux@bohmer.net>
18286 Date:   Tue Jun 3 15:26:22 2008 +0200
18287
18288     DM9000: repair debug logging
18289
18290     It seems that the debugging code of the DM9000x driver in U-boot has not been
18291     compiled for a long time, because it cannot compile...
18292
18293     Also rearranged some loglines to get more useful info while debugging.
18294
18295     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18296     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18297
18298 commit a101361bfe23c120321e45d114c0603b8e0763e9
18299 Author: Remy Bohmer <linux@bohmer.net>
18300 Date:   Tue Jun 3 15:26:21 2008 +0200
18301
18302     DM9000: Add data bus-width auto detection.
18303
18304     The U-boot DM9000x driver contains a compile time bus-width definition for
18305     the databus connected to the network controller.
18306
18307     This compile check makes the code unclear, inflexible and is unneccessary.
18308     It can be asked to the network controller what its bus-width is by reading bits
18309     6 and 7 of the interrupt status register.
18310
18311     The linux kernel already uses a runtime mechanism to determine this bus-width,
18312     so the implementation below looks somewhat like that implementation.
18313
18314     This change has been tested with DM9000A, DM9000E, DM9000EP.
18315
18316     Signed-off-by: Remy Bohmer <linux@bohmer.net>
18317     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18318
18319 commit 63a0afa0c32e5f4ea98a9439542870072437404d
18320 Author: Stefan Roese <sr@denx.de>
18321 Date:   Wed Jun 4 19:19:20 2008 +0200
18322
18323     ppc4xx: Fix problem with SDRAM init in bamboo NAND booting port
18324
18325     This patch fixes a problem spotted by Eugene O'Brian (thanks Eugene)
18326     introduced by the commit:
18327
18328     ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
18329
18330     With this patch SDRAM will get initialized again and booting from NAND
18331     is working again.
18332
18333     Signed-off-by: Stefan Roese <sr@denx.de>
18334     Acked-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
18335
18336 commit 9ef1cbef1a649e3779298b0e663be4865cbbbfbc
18337 Author: Wolfgang Denk <wd@denx.de>
18338 Date:   Tue May 27 14:19:30 2008 +0200
18339
18340     Socrates: Fix PCI bus frequency report
18341
18342     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
18343
18344 commit 8ec6e332eace0ee78c71ee5f645d12b06813b86f
18345 Author: Tor Krill <tor@excito.com>
18346 Date:   Thu May 29 11:10:30 2008 +0200
18347
18348     Fix incorrect switch for IF_TYPE in part.c
18349
18350     Use correct field in block_dev_desc_t when writing interface type in
18351     dev_print. Error introduced in 574b3195.
18352
18353     Also added fix from Martin Krause
18354
18355     Signed-off-by: Tor Krill <tor@excito.com>
18356
18357 commit b64b8a0bd310935b70af69ac970952f2b364ae56
18358 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
18359 Date:   Tue May 27 10:25:39 2008 +0200
18360
18361     Add size #defines for Altera Cyclone-II EP2C8 and EP2C20.
18362
18363     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
18364
18365 commit 35ef877f0a8f6232cdef748f442fed5accb2b641
18366 Author: Peter Tyser <ptyser@xes-inc.com>
18367 Date:   Thu May 22 18:56:52 2008 -0500
18368
18369     Additional fix to readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
18370
18371     Removed unneeded command line history initialization.  Also, the original
18372     code would access the 'initted' variable before relocation to SDRAM
18373     which resulted in erratic behavior since the bss is not initialized when
18374     executing from flash.
18375
18376     Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18377
18378 commit 22f371b63038a4ecab04068877c1089e51a01ba1
18379 Author: Grant Erickson <gerickson@nuovations.com>
18380 Date:   Wed May 21 13:28:30 2008 -0700
18381
18382     PPC4xx: Simplified post_word_{load, store}
18383
18384     This patch simplifies post_word_{load,store} by using the preprocessor
18385     to eliminate redundant, copy-and-pasted code.
18386
18387     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
18388
18389 commit 9c048b523413ae5f3ff34e00cf57569c3368ab51
18390 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
18391 Date:   Wed May 7 21:25:33 2008 +0400
18392
18393     cfi_flash: enable M18 flash chips family support.
18394
18395     Added new command set ID. Buffered write command processing is changed
18396     in order to support M18 flash chips family.
18397
18398     Signed-off-by: Alexey Korolev <akorolev@infradead.org>
18399     Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
18400
18401 commit 93c56f212ccdadc182018f0769cb284426b88f1d
18402 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
18403 Date:   Wed May 7 21:24:44 2008 +0400
18404
18405     cfi_flash: support of long cmd in U-boot.
18406
18407     Some NOR flash chips needs support of commands with length grether than max
18408     value size of uchar. For example all M18 family chips use 0x1ff command in
18409     buffered write mode as value of program loops count.
18410
18411     Signed-off-by: Alexey Korolev <akorolev@infradead.org>
18412     Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
18413
18414 commit 4d91d1df2f16b511ab80dec50c80e050ba0d841e
18415 Author: Stefan Roese <sr@denx.de>
18416 Date:   Fri May 16 11:06:06 2008 +0200
18417
18418     DTT: Issue one-shot command on AD7414 (LM75 code) to read temp
18419
18420     On AD7414 the first value upon bootup is not read correctly.
18421     This is most likely because of the 800ms update time of the
18422     temp register in normal update mode. To get current values
18423     each time we issue the "dtt" command including upon powerup
18424     we switch into one-short mode.
18425
18426     This patch fixes the problem on AD7414 equipped boards (Sequoia,
18427     Canyonlands etc), that temp value printed in the bootup log was
18428     incorrect.
18429
18430     Signed-off-by: Stefan Roese <sr@denx.de>
18431
18432 commit de5bfcf7b0425e032be12698252dbaa6b65a28c0
18433 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18434 Date:   Fri May 30 16:55:06 2008 +0200
18435
18436     ppc4xx: Cleanup CPCI405 variant's config file
18437
18438     This patch removes some dead code from CPCI405 board's
18439     config files. JFFS2 support is also removed. It's not used and
18440     CPCI4052 does not build anymore without some size reduction.
18441
18442     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
18443
18444 commit 2918eb9d42bc705fcbd18c9fcc39d15ff2843c65
18445 Author: Kenneth Johansson <kenneth@southpole.se>
18446 Date:   Thu May 29 16:32:33 2008 +0200
18447
18448     Remove shell variable UNDEF_SYM.
18449
18450     UNDEF_SYM is a shell variable in the main Makefile used to force the
18451     linker to add all u-boot commands to the final image. It has no use here.
18452
18453     Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
18454
18455 commit 8c66497e06bf803489c589df58ee591d71033274
18456 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18457 Date:   Fri May 16 11:10:35 2008 +0200
18458
18459     Add support for environment in SPI flash
18460
18461     This is pretty incomplete...it doesn't handle reading the environment
18462     before relocation, it doesn't support redundant environment, and it
18463     doesn't support embedded environment. But apart from that, it does
18464     seem to work.
18465
18466     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18467
18468 commit b6368467e6a97f225e0a5fd7bfc5c7598ef5ddc4
18469 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18470 Date:   Fri May 16 11:10:34 2008 +0200
18471
18472     SPI Flash: Add "sf" command
18473
18474     This adds a new command, "sf" which can be used to manipulate SPI
18475     flash. Currently, initialization, reading, writing and erasing is
18476     supported.
18477
18478     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18479
18480 commit d25ce7d24cc0f93881559f4009175ea305af65e8
18481 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18482 Date:   Fri May 16 11:10:33 2008 +0200
18483
18484     SPI Flash subsystem
18485
18486     This adds a new SPI flash subsystem.
18487
18488     Currently, only AT45 DataFlash in non-power-of-two mode is supported,
18489     but some preliminary support for other flash types is in place as
18490     well.
18491
18492     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18493
18494 commit 60445cb5c3eb77ed1a07f2d908eef09174483698
18495 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
18496 Date:   Fri May 16 11:10:32 2008 +0200
18497
18498     atmel_spi: Driver for the Atmel SPI controller
18499
18500     This adds a driver for the SPI controller found on most AT91 and AVR32
18501     chips, implementing the new SPI API.
18502
18503     Changed in v4:
18504       - Update to new API
18505       - Handle zero-length transfers appropriately. The user may send a
18506         zero-length SPI transfer with SPI_XFER_END set in order to
18507         deactivate the chip select after a series of transfers with chip
18508         select active. This is useful e.g. when polling the status
18509         register of DataFlash.
18510
18511     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
18512
18513 commit d255bb0e78d1cac5b7c8c98cb77a095f5f16de0d
18514 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
18515 Date:   Fri May 16 11:10:31 2008 +0200
18516
18517     SPI API improvements
18518
18519     This patch gets rid of the spi_chipsel table and adds a handful of new
18520     functions that makes the SPI layer cleaner and more flexible.
18521
18522     Instead of the spi_chipsel table, each board that wants to use SPI
18523     gets to implement three hooks:
18524       * spi_cs_activate(): Activates the chipselect for a given slave
18525       * spi_cs_deactivate(): Deactivates the chipselect for a given slave
18526       * spi_cs_is_valid(): Determines if the given bus/chipselect
18527         combination can be activated.
18528
18529     Not all drivers may need those extra functions however. If that's the
18530     case, the board code may just leave them out (assuming they know what
18531     the driver needs) or rely on the linker to strip them out (assuming
18532     --gc-sections is being used.)
18533
18534     To set up communication parameters for a given slave, the driver needs
18535     to call spi_setup_slave(). This returns a pointer to an opaque
18536     spi_slave struct which must be passed as a parameter to subsequent SPI
18537     calls. This struct can be freed by calling spi_free_slave(), but most
18538     driver probably don't want to do this.
18539
18540     Before starting one or more SPI transfers, the driver must call
18541     spi_claim_bus() to gain exclusive access to the SPI bus and initialize
18542     the hardware. When all transfers are done, the driver must call
18543     spi_release_bus() to make the bus available to others, and possibly
18544     shut down the SPI controller hardware.
18545
18546     spi_xfer() behaves mostly the same as before, but it now takes a
18547     spi_slave parameter instead of a spi_chipsel function pointer. It also
18548     got a new parameter, flags, which is used to specify chip select
18549     behaviour. This may be extended with other flags in the future.
18550
18551     This patch has been build-tested on all powerpc and arm boards
18552     involved. I have not tested NIOS since I don't have a toolchain for it
18553     installed, so I expect some breakage there even though I've tried
18554     fixing up everything I could find by visual inspection.
18555
18556     I have run-time tested this on AVR32 ATNGW100 using the atmel_spi and
18557     DataFlash drivers posted as a follow-up. I'd like some help testing
18558     other boards that use the existing SPI API.
18559
18560     But most of all, I'd like some comments on the new API. Is this stuff
18561     usable for everyone? If not, why?
18562
18563     Changed in v4:
18564       - Build fixes for various boards, drivers and commands
18565       - Provide common struct spi_slave definition that can be extended by
18566         drivers
18567       - Pass a struct spi_slave * to spi_cs_activate and spi_cs_deactivate
18568       - Make default bus and mode build-time configurable
18569       - Override default SPI bus ID and mode on mx32ads and imx31_litekit.
18570
18571     Changed in v3:
18572       - Add opaque struct spi_slave for controller-specific data associated
18573         with a slave.
18574       - Add spi_claim_bus() and spi_release_bus()
18575       - Add spi_free_slave()
18576       - spi_setup() is now called spi_setup_slave() and returns a
18577         struct spi_slave
18578       - soft_spi now supports four SPI modes (CPOL|CPHA)
18579       - Add bus parameter to spi_setup_slave()
18580       - Convert the new i.MX32 SPI driver
18581       - Convert the new MC13783 RTC driver
18582
18583     Changed in v2:
18584       - Convert the mpc8xxx_spi driver and the mpc8349emds board to the
18585         new API.
18586
18587     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
18588     Tested-by: Guennadi Liakhovetski <lg@denx.de>
18589
18590 commit 289011207d999b2e4085150d2aa30d547ad9b800
18591 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18592 Date:   Fri May 16 11:10:30 2008 +0200
18593
18594     Move definition of container_of() to common.h
18595
18596     AVR32 and AT91SAM9 both have their own identical definitions of
18597     container_of() taken from the Linux kernel. Move it to common.h so
18598     that all architectures can use it.
18599
18600     container_of() is already used by some drivers, and will be used
18601     extensively by the new and improved SPI API.
18602
18603     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18604
18605 commit 110e006fe67fb4a6e1719ae6956c79b7ffc0148b
18606 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18607 Date:   Fri May 16 11:08:11 2008 +0200
18608
18609     soft_i2c: Pull SDA high before reading
18610
18611     Spotted by Dean Capindale.
18612
18613     Systems that support open-drain GPIO properly are allowed provide an
18614     empty I2C_TRISTATE define. However, this means that we need to be
18615     careful not to drive SDA low when the slave is expected to respond.
18616
18617     This patch adds a missing I2C_SDA(1) to read_byte() required to
18618     tristate the SDA line on systems that support open-drain GPIO.
18619
18620     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18621
18622 commit 3c1de1a6d36be9eee284a6c596a86e94f19cc5b2
18623 Author: Stefan Roese <sr@denx.de>
18624 Date:   Mon May 19 11:34:53 2008 +0200
18625
18626     ppc4xx: Remove implementations of testdram()
18627
18628     This patch removes the used testdram() implementations of the board
18629     that are maintained by myself.
18630
18631     Signed-off-by: Stefan Roese <sr@denx.de>
18632
18633 commit bbeff30cbd1c5d551eb0ad1c2239ec01844c0b0a
18634 Author: Stefan Roese <sr@denx.de>
18635 Date:   Mon Jun 2 17:37:28 2008 +0200
18636
18637     ppc4xx: Remove superfluous dram_init() call or replace it by initdram()
18638
18639     Historically the 405 U-Boot port had a dram_init() call in early init
18640     stage. This function was still called from start.S and most of the time
18641     coded in assembler. This is not needed anymore (since a long time) and
18642     boards should implement the common initdram() function in C instead.
18643
18644     This patch now removed the dram_init() call from start.S and removes the
18645     empty implementations that are scattered through most of the 405 board
18646     ports. Some older board ports really implement this dram_init() though.
18647     These are:
18648
18649     csb272
18650     csb472
18651     ERIC
18652     EXBITGEN
18653     W7OLMC
18654     W7OLMG
18655
18656     I changed those boards to call this assembler dram_init() function now
18657     from their board specific initdram() instead. This *should* work, but please
18658     test again on those platforms. And it is perhaps a good idea that those
18659     boards use some common 405 SDRAM initialization code from cpu/ppc4xx at
18660     some time. So further patches welcome here.
18661
18662     Signed-off-by: Stefan Roese <sr@denx.de>
18663
18664 commit 192f90e272b3989ee7b4a666d1fdab831f20f8d2
18665 Author: Stefan Roese <sr@denx.de>
18666 Date:   Mon Jun 2 17:22:11 2008 +0200
18667
18668     ppc4xx: Use new 4xx SDRAM controller enable defines in common ECC code
18669
18670     Signed-off-by: Stefan Roese <sr@denx.de>
18671
18672 commit 39b32be18cd33b53a84065edcd4e465165cc5564
18673 Author: Stefan Roese <sr@denx.de>
18674 Date:   Mon Jun 2 17:20:03 2008 +0200
18675
18676     ppc4xx: Fix common ECC generation code for 440GP style platforms
18677
18678     This patch makes the common 4xx ECC code really usable on 440GP style
18679     platforms.
18680
18681     Since the IBM DDR controller used on 440GP/GX/EP/GR is not register
18682     compatible to the IBM DDR/2 controller used on 405EX/440SP/SPe/460EX/GT
18683     we need to make some processor dependant defines used later on by the
18684     driver.
18685
18686     Signed-off-by: Stefan Roese <sr@denx.de>
18687
18688 commit ec724f883ee3f3925e6c55027e8ffa70ada83303
18689 Author: Stefan Roese <sr@denx.de>
18690 Date:   Mon Jun 2 17:13:55 2008 +0200
18691
18692     ppc4xx: Change Kilauea to use the common DDR2 init function
18693
18694     This patch changes the kilauea and kilauea_nand (for NAND booting)
18695     board port to not use a board specific DDR2 init routine anymore. Now
18696     the common code from cpu/ppc4xx is used.
18697
18698     Thanks to Grant Erickson for all his basic work on this 405EX early
18699     bootup.
18700
18701     Signed-off-by: Stefan Roese <sr@denx.de>
18702
18703 commit 17ceb069b85fbb9269c4dc09b2c237f88334c5ba
18704 Author: Stefan Roese <sr@denx.de>
18705 Date:   Mon Jun 2 14:59:21 2008 +0200
18706
18707     ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part2
18708
18709     This patch now adds a new header file (asm-ppc/ppc4xx-sdram.h) for all
18710     ppc4xx related SDRAM/DDR/DDR2 controller defines.
18711
18712     Signed-off-by: Stefan Roese <sr@denx.de>
18713
18714 commit 36ea16f6a066ccb046e91ebce4f326b69f4c0569
18715 Author: Stefan Roese <sr@denx.de>
18716 Date:   Mon Jun 2 14:57:41 2008 +0200
18717
18718     ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part1
18719
18720     This patch removes all SDRAM related defines from the PPC4xx headers
18721     ppc405.h and ppc440.h. This is needed since now some 405 PPC's use
18722     the same SDRAM controller as 440 systems do (like 405EX and 440SP).
18723
18724     It also introduces new defines for the equipped SDRAM controller based on
18725     which PPC variant is used. There new defines are:
18726
18727     used on 405GR/CR/EP and some Xilinx Virtex boards.
18728
18729     used on 440GP/GX/EP/GR.
18730
18731     used on 440EPx/GRx.
18732
18733     used on 405EX/r/440SP/SPe/460EX/GT.
18734
18735     Signed-off-by: Stefan Roese <sr@denx.de>
18736
18737 commit 64852d09e06dd6db2b2db2a3c59bc2db176a54d6
18738 Author: Stefan Roese <sr@denx.de>
18739 Date:   Mon Jun 2 14:35:44 2008 +0200
18740
18741     ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
18742
18743     This patch consolidates the 405 and 440 parts of the NAND booting code
18744     selected via CONFIG_NAND_SPL. Now common code is used to initialize the
18745     SDRAM by calling initdram() and to "copy/relocate" to SDRAM/OCM/etc.
18746     Only *after* running from this location, nand_boot() is called.
18747
18748     Please note that the initsdram() call is now moved from nand_boot.c
18749     to start.S. I experienced problems with some boards like Kilauea
18750     (405EX), which don't have internal SRAM (OCM) and relocation needs to
18751     be done to SDRAM before the NAND controller can get accessed. When
18752     initdram() is called later on in nand_boot(), this can lead to problems
18753     with variables in the bss sections like nand_ecc_pos[].
18754
18755     Signed-off-by: Stefan Roese <sr@denx.de>
18756     Acked-by: Scott Wood <scottwood@freescale.com>
18757
18758 commit 8a24c07ba5da2c72ad1f05e3eb8a463750200c98
18759 Author: Grant Erickson <gerickson@nuovations.com>
18760 Date:   Thu May 22 14:44:24 2008 -0700
18761
18762     ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
18763
18764     This patch (Part 2 of 2):
18765
18766     * Rolls up a suite of changes to enable correct primordial stack and
18767       global data handling when the data cache is used for such a purpose
18768       for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
18769
18770     * Related to the first, unifies DDR2 SDRAM and ECC initialization by
18771       eliminating redundant ECC initialization implementations and moving
18772       redundant SDRAM initialization out of board code into shared 4xx
18773       code.
18774
18775     * Enables MCSR visibility on the 405EX(r).
18776
18777     * Enables the use of the data cache for initial RAM on
18778       both AMCC's Kilauea and Makalu and removes a redundant
18779       CFG_POST_MEMORY flag from each board's CONFIG_POST value.
18780
18781       - Removed, per Stefan Roese's request, defunct memory.c file for
18782         Makalu and rolled sdram_init from it into makalu.c.
18783
18784     With respect to the 4xx DDR initialization and ECC unification, there
18785     is certainly more work that can and should be done (file renaming,
18786     etc.). However, that can be handled at a later date on a second or
18787     third pass. As it stands, this patch moves things forward in an
18788     incremental yet positive way for those platforms that utilize this
18789     code and the features associated with it.
18790
18791     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
18792     Signed-off-by: Stefan Roese <sr@denx.de>
18793
18794 commit c821b5f120bedf73867513466412587c6912a8f8
18795 Author: Grant Erickson <gerickson@nuovations.com>
18796 Date:   Thu May 22 14:44:14 2008 -0700
18797
18798     ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
18799
18800     This patch (Part 1 of 2):
18801
18802     * Rolls up a suite of changes to enable correct primordial stack and
18803       global data handling when the data cache is used for such a purpose
18804       for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
18805
18806     * Related to the first, unifies DDR2 SDRAM and ECC initialization by
18807       eliminating redundant ECC initialization implementations and moving
18808       redundant SDRAM initialization out of board code into shared 4xx
18809       code.
18810
18811     * Enables MCSR visibility on the 405EX(r).
18812
18813     * Enables the use of the data cache for initial RAM on
18814       both AMCC's Kilauea and Makalu and removes a redundant
18815       CFG_POST_MEMORY flag from each board's CONFIG_POST value.
18816
18817       - Removed, per Stefan Roese's request, defunct memory.c file for
18818         Makalu and rolled sdram_init from it into makalu.c.
18819
18820     With respect to the 4xx DDR initialization and ECC unification, there
18821     is certainly more work that can and should be done (file renaming,
18822     etc.). However, that can be handled at a later date on a second or
18823     third pass. As it stands, this patch moves things forward in an
18824     incremental yet positive way for those platforms that utilize this
18825     code and the features associated with it.
18826
18827     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
18828     Signed-off-by: Stefan Roese <sr@denx.de>
18829
18830 commit a439680019e06171d4a5694b7992accce87f590e
18831 Author: Grant Erickson <gerickson@nuovations.com>
18832 Date:   Wed May 21 13:28:30 2008 -0700
18833
18834     PPC4xx: Simplified post_word_{load, store}
18835
18836     This patch simplifies post_word_{load,store} by using the preprocessor
18837     to eliminate redundant, copy-and-pasted code.
18838
18839     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
18840
18841 commit f979690ee337450b2030aba128f95b7a8d9881c0
18842 Author: Kumar Gala <galak@kernel.crashing.org>
18843 Date:   Thu May 15 15:13:08 2008 -0500
18844
18845     Fix warnings from gcc-4.3.0 build on a ppc host
18846
18847     * The cfi_flash.c memset fix actual allows the board to boot so there is
18848       a bit more going on here than just resolving warnings associated with
18849       uninitialized variables.
18850
18851     * include/asm/bitops.h:302: warning: '__swab32p' is static but used in
18852       inline function 'ext2_find_next_zero_bit' which is not static
18853
18854     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18855
18856 commit 9b124a68346ce9605b6e1fcf79e1021541cdba9e
18857 Author: Becky Bruce <becky.bruce@freescale.com>
18858 Date:   Wed May 14 13:09:51 2008 -0500
18859
18860     MPC512x: Change traps.c to not reference non-addressable memory
18861
18862     Currently, END_OF_RAM is used by the trap code to determine if
18863     we should attempt to access the stack pointer or not. However,
18864     on systems with a lot of RAM, only a subset of the RAM is
18865     guaranteed to be mapped in and accessible.  Change END_OF_RAM
18866     to use get_effective_memsize() instead of using the raw ram
18867     size out of the bd.
18868
18869     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
18870
18871 commit 81673e9ae14b771cd13faf19947192599cae3959
18872 Author: Kumar Gala <galak@kernel.crashing.org>
18873 Date:   Tue May 13 19:01:54 2008 -0500
18874
18875     Make sure common.h is the first include.
18876
18877     If common.h isn't first we can get CONFIG_ options defined in the
18878     board config file ignored.  This can cause an issue if any of those
18879     config options impact the size of types of data structures
18880     (eg CONFIG_PHYS_64BIT).
18881
18882     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18883
18884 commit 95d449ad4de79dd32b1705b8a4d3550f1e9081e3
18885 Author: Marian Balakowicz <m8@semihalf.com>
18886 Date:   Tue May 13 15:53:29 2008 +0200
18887
18888     Avoid initrd and logbuffer area overlaps
18889
18890     Add logbuffer to reserved LMB areas to prevent initrd allocation
18891     from overlaping with it.
18892
18893     Make sure to use correct logbuffer base address.
18894
18895     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
18896
18897 commit 6956d53d9934862507f83f0e3255dfd4662e7482
18898 Author: Sascha Laue <sascha.laue@liebherr.com>
18899 Date:   Tue May 13 13:29:54 2008 +0200
18900
18901     lwmon5: add memory-pattern-test to FPGA POST.
18902
18903 commit e34a0e911b6a1568d0ca864234fbd0ee060d9b35
18904 Author: Becky Bruce <becky.bruce@freescale.com>
18905 Date:   Thu May 8 19:02:51 2008 -0500
18906
18907     PPC: 86xx Add bat registers to reginfo command
18908
18909     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
18910
18911 commit d5b9b8cdb8b6eb3a8b0f5d9909d69ccc9c703ed9
18912 Author: Becky Bruce <becky.bruce@freescale.com>
18913 Date:   Fri May 9 15:41:35 2008 -0500
18914
18915     PPC: Add print_bats() to lib_ppc/bat_rw.c
18916
18917     This function prints the values of all the BAT register
18918     pairs - I needed this for debug earlier this week; adding it to
18919     lib_ppc so others can use it (and add it to reginfo commands
18920     if so desired).
18921
18922     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
18923
18924 commit c148f24c15743a02e855636e6bed013bd121f7f2
18925 Author: Becky Bruce <becky.bruce@freescale.com>
18926 Date:   Thu May 15 21:29:04 2008 -0500
18927
18928     PPC: Change lib_ppc/bat_rw.c to use high bats
18929
18930     Currently, this code only deals with BATs 0-3, which makes
18931     it useless on systems that support BATs 4-7.  Add the
18932     support for these registers.
18933
18934     Signed-off-by: Becky Bruce <Becky.bruce@freescale.com>
18935
18936 commit 31d826722434931e1152a09d140187dcf72f8aac
18937 Author: Becky Bruce <becky.bruce@freescale.com>
18938 Date:   Thu May 8 19:02:12 2008 -0500
18939
18940     PPC: Create and use CONFIG_HIGH_BATS
18941
18942     Change all code that conditionally operates on high bat
18943     registers (that is, BATs 4-7) to look at CONFIG_HIGH_BATS
18944     instead of the myriad ways this is done now.  Define the option
18945     for every config for which high bats are supported (and
18946     enabled by early boot, on parts where they're not always
18947     enabled)
18948
18949     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
18950
18951 commit aa3b8bf9c30065bb2ea852799d32db5020598495
18952 Author: Wolfgang Grandegger <wg@grandegger.com>
18953 Date:   Wed May 28 19:55:19 2008 +0200
18954
18955     E1000: Add support for the 82541GI LF Intel Pro 1000 GT Desktop Adapter
18956
18957     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
18958     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18959
18960 commit ff36fbb2e7583fb808eef773f511489c7a9c2df3
18961 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
18962 Date:   Wed May 28 13:06:25 2008 -0500
18963
18964     ColdFire: Add 10 base ethernet support for mcf5445x
18965
18966     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
18967     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18968
18969 commit 1a9fcc4b765599db24fa9c32293599f24c7a19ba
18970 Author: Jason McMullan <mcmullan@netapp.com>
18971 Date:   Fri May 30 00:53:38 2008 +0900
18972
18973     mips: Add an 'include/asm/errno.h', like all other architectures
18974
18975     All other u-boot architectures have an include/asm/errno.h, so
18976     this change adds it to the mips include/asm-mips headers also.
18977
18978     Stolen from Linux 2.6.25.
18979
18980     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
18981
18982 commit e2ad8426624bac457acc6925b6ff408e9bf20466
18983 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18984 Date:   Fri May 30 00:53:38 2008 +0900
18985
18986     [MIPS] <asm/mipsregs.h>: Update coprocessor register access macros
18987
18988     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18989
18990 commit 1a3adac81c292f2ee76e43cdeb2fbe8f915fe194
18991 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18992 Date:   Fri May 30 00:53:38 2008 +0900
18993
18994     [MIPS] <asm/mipsregs.h>: Update register / bit field definitions
18995
18996     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18997
18998 commit bf462ae450a7f2eeeddc699ed345b391e3263540
18999 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19000 Date:   Fri May 30 00:53:37 2008 +0900
19001
19002     [MIPS] <asm/mipsregs.h>: CodinygStyle cleanups
19003
19004     No functional changes.
19005
19006     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19007
19008 commit 89a1550ec6b74452274a7a23127936e2c7eec711
19009 Author: Jason McMullan <mcmullan@netapp.com>
19010 Date:   Fri May 30 00:53:37 2008 +0900
19011
19012     mips: If CONFIG_CMD_SPI is defined, call spi_init()
19013
19014     The mips architecture currently does not call 'spi_init()' in the generic
19015     board initialization routine is CONFIG_CMD_SPI is defined.
19016
19017     This patch rectifies that problem.
19018
19019     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
19020     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19021
19022 commit e996bc339b0f39f6c0b29b1455ba7eb318b023d3
19023 Author: Jason McMullan <mcmullan@netapp.com>
19024 Date:   Fri May 30 00:53:37 2008 +0900
19025
19026     [MIPS] lib_mips/board.c: Add nand_init
19027
19028     This patch adds the standard 'nand_init()' call to the mips generic
19029     'board_init_r()' call, bringing MIPS in line with the other architectures.
19030
19031     Signed-off-by: Jason McMullan <mcmullan@netapp.com>
19032     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19033
19034 commit d6ac2ed893c2168738aee01579d6283af8d37045
19035 Author: Scott Wood <scottwood@freescale.com>
19036 Date:   Thu May 22 10:49:46 2008 -0500
19037
19038     Remove prototypes of nand_init() in favor of including nand.h.
19039
19040     Likewise with onenand_init().
19041
19042     Signed-off-by: Scott Wood <scottwood@freescale.com>
19043
19044 commit 229c56f07a82eacda8c8720cb146fc9be0f6db54
19045 Author: Scott Wood <scottwood@freescale.com>
19046 Date:   Thu May 22 10:49:00 2008 -0500
19047
19048     Make onenand_uboot.h self-sufficient.
19049
19050     Don't assume types are provided by previously included headers.
19051
19052     Signed-off-by: Scott Wood <scottwood@freescale.com>
19053
19054 commit 9723bbb46abb7b2ca24eead5114a3faa58060c20
19055 Author: Dirk Behme <dirk.behme@gmail.com>
19056 Date:   Wed Jan 16 14:26:59 2008 +0100
19057
19058     nand: Correct NAND erase percentage output
19059
19060     For NAND erase sizes smaller than one NAND erase block, erase
19061     percentage output becomes grater than 100% e.g.
19062
19063     -- cut --
19064       > nand info
19065     Device 0: NAND 64MiB 1,8V 8-bit, sector size 16 KiB
19066       > nand erase 0x100000 0x2000
19067     NAND erase: device 0 offset 0x100000, size 0x2000
19068     Erasing at 0x100000 -- 200% complete.
19069     OK
19070       >
19071     -- cut --
19072
19073     Correct this and give user a warning that more is erased than specified:
19074
19075     -- cut --
19076       > nand erase 0x100000 0x2000
19077     NAND erase: device 0 offset 0x100000, size 0x2000
19078     Warning: Erase size 0x00002000 smaller than one erase block 0x00004000
19079                Erasing 0x00004000 instead
19080     Erasing at 0x100000 -- 100% complete.
19081     OK
19082       >
19083     -- cut --
19084
19085     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
19086
19087 commit 5922db6c0948506be91e0de44e7a6863a18a417f
19088 Author: Stelian Pop <stelian@popies.net>
19089 Date:   Tue May 13 17:31:24 2008 +0200
19090
19091     Cleanup nand_info[] declaration.
19092
19093     The nand_info array is declared as extern in several .c files.
19094     Those days, nand.h contains a reference to the array, so there is
19095     no need to declare it elsewhere.
19096
19097     Signed-off-by: Stelian Pop <stelian@popies.net>
19098     Signed-off-by: Scott Wood <scottwood@freescale.com>
19099
19100 commit 135f0a7488af2947adbe4b40b79280bdfe5e9886
19101 Author: Scott Wood <scottwood@freescale.com>
19102 Date:   Mon May 19 09:30:43 2008 -0500
19103
19104     NAND: Provide a sane default for NAND_MAX_CHIPS.
19105
19106     This allows the header to be included regardless of whether a board's
19107     config file provides NAND-related defininitions.
19108
19109     Signed-off-by: Scott Wood <scottwood@freescale.com>
19110
19111 commit a8092c021d27f27f4b323b7d49979ca01b3fc19d
19112 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19113 Date:   Mon May 26 12:19:10 2008 +0200
19114
19115     avr32: Fix theoretical race in udelay()
19116
19117     If the specified delay is very short, the cycle counter may go past the
19118     "end" time we are waiting for before we get around to reading it.
19119
19120     Fix it by checking the different between the cycle count "now" and the
19121     cycle count at the beginning. This will work as long as the delay
19122     measured in number of cycles is below 2^31.
19123
19124     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19125
19126 commit 48ea623eae8674793372e3e7c95e72e5a44d7a95
19127 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19128 Date:   Wed May 21 13:01:09 2008 +0200
19129
19130     avr32: Compile atmel_mci.o conditionally
19131
19132     Remove #ifdef CONFIG_MMC from the source file and use conditional
19133     compilation in the Makefile instead.
19134
19135     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19136
19137 commit e92a5bf8330654e33ac13f6b3058634e58f5d1c0
19138 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19139 Date:   Thu May 22 12:28:25 2008 +0200
19140
19141     avr32: Fix wrong error flags in atmel_mci driver
19142
19143     Make sure we check for CRC errors when sending commands that use CRC
19144     checking.
19145
19146     Reported-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
19147     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19148
19149 commit 7a96ddadd13e6ac9a829affce9b6f8823f580e49
19150 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19151 Date:   Wed May 21 11:10:59 2008 +0200
19152
19153     avr32: Fix two warnings in atmel_mci.c
19154
19155     The warnings are harmless but annoying. Let's fix them.
19156
19157     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19158
19159 commit a23e277c4a3a2bbc42d237aae29da3a8971e757f
19160 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19161 Date:   Mon May 19 11:36:28 2008 +0200
19162
19163     avr32: Rework SDRAM initialization code
19164
19165     This cleans up the SDRAM initialization and related code a bit, and
19166     allows faster booting.
19167
19168       * Add definitions for EBI and internal SRAM to asm/arch/memory-map.h
19169       * Remove memory test from sdram_init() and make caller responsible
19170         for verifying the SDRAM and determining its size.
19171       * Remove base_address member from struct sdram_config (was sdram_info)
19172       * Add data_bits member to struct sdram_config and kill CFG_SDRAM_16BIT
19173       * Add support for a common STK1000 hack: 16MB SDRAM instead of 8.
19174
19175     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19176
19177 commit 95107b7c028806919630bf02c653aa8f4f867c94
19178 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19179 Date:   Mon May 19 11:27:37 2008 +0200
19180
19181     avr32: Do stricter stack checking in the exception handler
19182
19183     Don't do a stack dump if the stack pointer is outside the memory area
19184     reserved for stack.
19185
19186     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19187
19188 commit caf83ea888a0220f41747d0b7748fa43b4a4bd49
19189 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19190 Date:   Fri May 2 15:32:57 2008 +0200
19191
19192     avr32: Use the same entry point for reset and exception handling
19193
19194     Since the reset vector is always aligned to a very large boundary, we
19195     can save a couple of KB worth of alignment padding by placing the
19196     exception vectors at the same address.
19197
19198     Deciding which one it is is easy: If we're handling an exception, the
19199     CPU is in Exception mode. If we're starting up after reset, the CPU is
19200     in Supervisor mode. So this adds a very minimal overhead to the reset
19201     path (only executed once) and the exception handling path (normally
19202     never executed at all.)
19203
19204     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19205
19206 commit 0c16eed2189a190bd5655b33c029f809a9b31128
19207 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19208 Date:   Fri May 2 15:24:22 2008 +0200
19209
19210     avr32: Put memset in its own section
19211
19212     All C code is compiled with -ffunction-sections -fdata-sections.
19213     Assembly functions should get their own sections as well so that
19214     everything looks consistent.
19215
19216     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19217
19218 commit 3ace2527ba80bd2fe1bceaab50d0b3c4fb5dd020
19219 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19220 Date:   Fri May 2 15:21:40 2008 +0200
19221
19222     avr32: Rename pm_init() as clk_init() and make SoC-specific
19223
19224     pm_init() was always more about clock initialization than anything
19225     else. Dealing with PLLs, clock gating and such is also inherently
19226     SoC-specific, so move it into a SoC-specific directory.
19227
19228     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19229
19230 commit 4f5972c3b2454c22957f2842cfe64ec8118e015b
19231 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19232 Date:   Wed Apr 30 16:15:57 2008 +0200
19233
19234     avr32: Use new-style Makefile for the at32ap platform
19235
19236     This makes it easier to avoid compiling certain files later.
19237
19238     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19239
19240 commit a9b2bb78a1bd8ebdb633509bdd1c8134d527b213
19241 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19242 Date:   Wed Apr 30 14:36:47 2008 +0200
19243
19244     avr32: Remove unused file cpu/at32ap/pm.c
19245
19246     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19247
19248 commit 44453b25b06426eef0b7b2fa7c026fdf19ce34f2
19249 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19250 Date:   Wed Apr 30 14:19:28 2008 +0200
19251
19252     avr32: Clean up the HMATRIX code
19253
19254     Rework the HMATRIX configuration interface so that it becomes easier
19255     to configure the HMATRIX for boards with special needs, and add new
19256     parts.
19257
19258     The HMATRIX header file has been split into a general,
19259     chip-independent part with register definitions, etc. and a
19260     chip-specific part with SFR bitfield definitions and master/slave
19261     identifiers.
19262
19263     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19264
19265 commit 0a2e48792dd372c90b80059f3235e67a567e16fc
19266 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19267 Date:   Thu Nov 22 12:14:11 2007 +0100
19268
19269     avr32: Add support for the ATSTK1006 board
19270
19271     This is a replacement for ATSTK1002 with 64MB SDRAM and NAND flash on
19272     board. It's currently in production and will be available soon.
19273
19274     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19275
19276 commit 781eb9a1e4af4bd34c138e6126ec5cc6dd4b5440
19277 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19278 Date:   Tue Apr 29 12:53:05 2008 +0200
19279
19280     avr32: Get rid of the .flashprog section
19281
19282     The .flashprog section was only needed back when we were running
19283     directly from flash, and it's even more useless on NGW100 since it
19284     uses the CFI flash driver which never used this workaround in the
19285     first place.
19286
19287     Remove it on STK1000 as well, and get rid of all the associated code and
19288     annotations.
19289
19290     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19291
19292 commit cdd42c0c7a5205fc380912d83229069a71ea3abf
19293 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19294 Date:   Wed Apr 30 13:09:56 2008 +0200
19295
19296     avr32: Use correct condition around macb clock accessors
19297
19298     get_macb_pclk_rate() and get_macb_hclk_rate() should be available when
19299     the chip has a MACB controller, not when it has a USART.
19300
19301     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19302
19303 commit f793a3581901ff39c2abb94012d9bbc8573ccf02
19304 Author: David Brownell <david-b@pacbell.net>
19305 Date:   Wed Apr 16 22:57:58 2008 -0700
19306
19307     avr32: Disable the AP7000 internal watchdog on startup
19308
19309     This patch forces the watchdog off in all cases.  That will at least
19310     get rid of the constant reboot cycle, though it won't let the watchdog
19311     actually run in the new kernels:  its probe() comes up with a polite
19312     warning.
19313
19314     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19315
19316 commit 55ac7a7490b55da56659f95d82a0c83b9756df27
19317 Author: David Brownell <david-b@pacbell.net>
19318 Date:   Fri Feb 22 12:54:39 2008 -0800
19319
19320     avr32: stk1002 and ngw100 convergence
19321
19322     Make STK1002 and NGW100 boards act more alike:
19323       - STK boards can use as many arguments as NGW
19324       - STK boards don't need to manage FPGAs either
19325       - NGW commands should match STK ones
19326
19327     Also spell U-Boot right in prompts for STK1002 and NGW100.
19328
19329     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
19330     [haavard.skinnemoen@atmel.com: update STK100[34] as well]
19331     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19332
19333 commit 5e1882df6a3efc7de5524d28cea4ecde7d163d54
19334 Author: Sergei Poselenov <sposelenov@emcraft.com>
19335 Date:   Tue May 27 13:47:00 2008 +0200
19336
19337     Socrates: Fix PCI bus frequency report
19338
19339     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
19340
19341 commit 791e1dba8de76ad8e762a7badb869f224a1f8b82
19342 Author: Sergei Poselenov <sposelenov@emcraft.com>
19343 Date:   Tue May 27 11:49:13 2008 +0200
19344
19345     Socrates: Added USB support.
19346
19347     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
19348
19349 commit 5a904e5637cff1d708dc67098004f83ba9e84c54
19350 Author: Sergei Poselenov <sposelenov@emcraft.com>
19351 Date:   Tue May 27 11:35:02 2008 +0200
19352
19353     USB: add new configuration variable CONFIG_PCI_OHCI_DEVNO
19354
19355     In case of several PCI USB controllers on a board this variable
19356     specifys which controller to use.
19357     See doc/README.generic_usb_ohci for details.
19358
19359     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
19360
19361 commit 2f7468aeba60e1288030a8d007c4e63bd3f13221
19362 Author: Sergei Poselenov <sposelenov@emcraft.com>
19363 Date:   Tue May 27 10:36:07 2008 +0200
19364
19365     Socrates: add support for DS75 Digital Thermo Sensor on I2C bus.
19366
19367     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
19368
19369 commit 83e9d7a2614d4006b92690afa3390c291734267e
19370 Author: Sergei Poselenov <sposelenov@emcraft.com>
19371 Date:   Mon May 26 18:16:04 2008 +0200
19372
19373     Socrates: Config file cleanup.
19374
19375     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
19376
19377 commit 602cac1389b755b223272f2328a47e6f8c240848
19378 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19379 Date:   Sat May 24 12:47:46 2008 +0200
19380
19381     MAKEALL: add at91 list
19382
19383     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19384
19385 commit 290ef6436838b1cc013bd67e0e0495c9eb3e23c0
19386 Author: Ron Madrid <ron_madrid@sbcglobal.net>
19387 Date:   Fri May 23 15:37:05 2008 -0700
19388
19389     Add Marvell 88E1118 support for TSEC
19390
19391     Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
19392     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19393
19394 commit 557b377d8bfc8b833b6e749457bcdfa298331a24
19395 Author: Jens Gehrlein <sew_s@tqs.de>
19396 Date:   Mon May 5 14:06:11 2008 +0200
19397
19398     smc911x: add 16 bit support
19399
19400     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
19401     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19402
19403 commit 6324e5bec8825f7fee3026ffbd394454ae8b53fb
19404 Author: Christian Eggers <ceggers@gmx.de>
19405 Date:   Wed May 21 21:29:10 2008 +0200
19406
19407     Fix endianess conversion in usb_ohci.c
19408
19409     Sorry, I forgot this line:
19410
19411     Signed-off-by: Christian Eggers <ceggers@gmx.de>
19412
19413     I think this must be swapped (result may be equal).
19414
19415 commit c918261c6d9f265f88baf70f8a73dfe6f0cb9596
19416 Author: Christian Eggers <ceggers@gmx.de>
19417 Date:   Wed May 21 22:12:00 2008 +0200
19418
19419     USB: replace old swap_ with proper endianess conversion macros
19420
19421     Signed-off-by: Christian Eggers <ceggers@gmx.de>
19422     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
19423
19424 commit fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c
19425 Author: Christian Eggers <ceggers@gmx.de>
19426 Date:   Wed May 21 21:29:10 2008 +0200
19427
19428     Fix endianess conversion in usb_ohci.c
19429
19430     Signed-off-by: Christian Eggers <ceggers@gmx.de>
19431     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
19432
19433 commit 477434c63c2ea5baa5c6c4e43500786f436511ff
19434 Author: Sergei Poselenov <sposelenov@emcraft.com>
19435 Date:   Thu May 22 01:15:53 2008 +0200
19436
19437     USB: add support for multiple PCI OHCI controllers
19438
19439     Add new configuration variable CONFIG_PCI_OHCI_DEVNO.
19440     In case of several PCI USB controllers on a board this variable
19441     specifys which controller to use.
19442
19443     Also add USB support for sokrates board.
19444
19445     See doc/README.generic_usb_ohci for details.
19446
19447     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
19448     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
19449
19450 commit ce6754df61cbe23b5b73d095a00ac9a8504b3d77
19451 Author: Wolfgang Denk <wd@denx.de>
19452 Date:   Wed May 21 16:56:08 2008 +0200
19453
19454     Fix some whitespace issues
19455
19456     introduced by 53677ef18 "Big white-space cleanup."
19457
19458     Signed-off-by: Wolfgang Denk <wd@denx.de>
19459
19460 commit 4416603aeb06861b468b06a981e52c3ff805db7b
19461 Author: York Sun <yorksun@freescale.com>
19462 Date:   Mon May 12 14:36:39 2008 -0500
19463
19464     Make ads5121 out-of-tree compiling safe
19465
19466     Reuse the existing DIU driver in board/freescale/common.
19467
19468     Signed-off-by: York Sun <yorksun@freescale.com>
19469
19470 commit 0e1bad47cd345c76c91a64caf41011e431b62599
19471 Author: York Sun <yorksun@freescale.com>
19472 Date:   Mon May 5 10:20:01 2008 -0500
19473
19474     Adding DIU support for Freescale 5121ADS
19475
19476     Add DIU and cfb console support to FSL 5121ADS board.
19477
19478     Use #define CONFIG_VIDEO in config file to enable fb console.
19479
19480     Signed-off-by: York Sun <yorksun@freescale.com>
19481
19482 commit a48ff68d235e671176f6b496c44246dbe5e0a93f
19483 Author: York Sun <yorksun@freescale.com>
19484 Date:   Mon May 5 10:20:00 2008 -0500
19485
19486     Replace DPRINTF with debug
19487
19488     Remove DPRINTF macro and replace it with generic debug macro.
19489
19490     Signed-off-by: York Sun <yorksun@freescale.com>
19491
19492 commit 3b80c5f574ad7f6e1c55a68f42752b427fdf778d
19493 Author: York Sun <yorksun@freescale.com>
19494 Date:   Mon May 5 10:19:59 2008 -0500
19495
19496     Move pixel clock setting to board file
19497
19498     The clock divider has different format in 5121 and 8610. This patch moves it to
19499     board specific code.
19500
19501     Signed-off-by: York Sun <yorksun@freescale.com>
19502
19503 commit 53677ef18e25c97ac613349087c5cb33ae5a2741
19504 Author: Wolfgang Denk <wd@denx.de>
19505 Date:   Tue May 20 16:00:29 2008 +0200
19506
19507     Big white-space cleanup.
19508
19509     This commit gets rid of a huge amount of silly white-space issues.
19510     Especially, all sequences of SPACEs followed by TAB characters get
19511     removed (unless they appear in print statements).
19512
19513     Also remove all embedded "vim:" and "vi:" statements which hide
19514     indentation problems.
19515
19516     Signed-off-by: Wolfgang Denk <wd@denx.de>
19517
19518 commit 2f845dc2bdf461bfee9fa25823f769f5db9eba0b
19519 Author: Sergei Poselenov <sposelenov@emcraft.com>
19520 Date:   Thu May 8 17:46:23 2008 +0200
19521
19522     socrates: fix second TSEC configuration (it is actually TSEC3)
19523
19524     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
19525
19526 commit 793670c3c0f0f72caead62f0be9fc3d9fbc6060f
19527 Author: Sergei Poselenov <sposelenov@emcraft.com>
19528 Date:   Thu May 8 14:17:08 2008 +0200
19529
19530     Fixed reset for socrates
19531
19532     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
19533
19534 commit e18575d5f589a62e19c70d471d4b4e27cad3af56
19535 Author: Sergei Poselenov <sposelenov@emcraft.com>
19536 Date:   Wed May 7 15:10:49 2008 +0200
19537
19538     socrates: changes to support FDT
19539
19540     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
19541     Signed-off-by: Wolfgang Denk <wd@denx.de>
19542
19543 commit 5d108ac8f435924c624cd6aaacd44f35f5cf94c0
19544 Author: Sergei Poselenov <sposelenov@emcraft.com>
19545 Date:   Wed Apr 30 11:42:50 2008 +0200
19546
19547     Initial support for "Socrates" board
19548
19549     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
19550
19551 commit 0e15ddd11f1a84c465e434eb051d2ef08ef02b9b
19552 Author: Yuri Tikhonov <yur@emcraft.com>
19553 Date:   Thu May 8 15:46:42 2008 +0200
19554
19555     POST: replace the LOGBUFF_INITIALIZED flag in gd->post_log_word (1 << 31) with the GD_FLG_LOGINIT flag in gd->flags.
19556
19557     This way we become able to utilize the full post_log_word for POST
19558     activities (overwise, POST ECC, which has 0x8000 ID, could be
19559     erroneously treated as started in post_output_backlog() even if there
19560     was actually no POST ECC run (because of OCM POST failure, for
19561     example).
19562
19563     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
19564
19565 commit 7845d49094c81321021b50a4dbb8864d2f3777e4
19566 Author: Yuri Tikhonov <yur@emcraft.com>
19567 Date:   Thu May 8 15:46:02 2008 +0200
19568
19569     POST: mark OCM test as POST_STOP
19570
19571     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19572
19573 commit 28a385065882d6cb6ac5f443311ff87887ed7c13
19574 Author: Yuri Tikhonov <yur@emcraft.com>
19575 Date:   Thu May 8 15:45:26 2008 +0200
19576
19577     POST: add POST_STOP flag
19578
19579     Don't run futher tests in case of a test fails that is marked as
19580     POST_STOP.
19581
19582     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19583     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
19584
19585 commit a525145d8110d15b4389d23c3ea8a78f22509d3f
19586 Author: Yuri Tikhonov <yur@emcraft.com>
19587 Date:   Thu May 8 15:44:16 2008 +0200
19588
19589     POST: switch CFG_POST_OCM with CFG_POST_CODEC (workaround)
19590
19591     Switch the OCM testid with the codec one. The reason is that current
19592     implementation requires the POST_ROM testid to fit into lower 16
19593     bits, and the codec test will never run with POST_ROM hopefully.
19594
19595     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19596
19597 commit 8b96c788d58f7cb85a89ee3f19c9b335d22443cd
19598 Author: Yuri Tikhonov <yur@emcraft.com>
19599 Date:   Thu May 8 15:43:28 2008 +0200
19600
19601     lwmon5: enable OCM post test on lwmon5 board
19602
19603     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19604
19605 commit 6e8ec682268493b8d098f99e17b1ce71b4448977
19606 Author: Yuri Tikhonov <yur@emcraft.com>
19607 Date:   Thu May 8 15:42:47 2008 +0200
19608
19609     POST: OCM test added.
19610
19611     Added OCM test to POST layer. This version runs before all other tests
19612     but doesn't yet interrupt post sequence on failure.
19613
19614     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19615     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
19616
19617 commit 6891260bdd935a382c95d9fa333922b0dfded68a
19618 Author: Yuri Tikhonov <yur@emcraft.com>
19619 Date:   Thu May 8 15:40:39 2008 +0200
19620
19621     POST: typo fix
19622
19623     Signed-off-by: Ilya Yanok <yanok@emcraft.com>
19624
19625 commit 727f63334676e760877d43bfb8f0e9331ac8b101
19626 Author: Hebbar <gururajakr@sanyo.co.in>
19627 Date:   Tue May 20 02:16:36 2008 -0700
19628
19629     common/usb.c: fix incorrect escape sequence
19630
19631     Signed off by: Gururaja Hebbar <gururajakr@sanyo.co.in>
19632
19633 commit 4ce1e23b5e12283579828b3d23e8fd6e1328a7aa
19634 Author: York Sun <yorksun@freescale.com>
19635 Date:   Thu May 15 15:26:27 2008 -0500
19636
19637     Fix 8313ERDB board configuration
19638
19639     Change LCRR clock ratio from 2 to 4 to commodate VSC7385.
19640     Correct TSEC1 vs TSEC2 assignment.
19641     Define ETHADDR and ETH1ADDR always.
19642
19643     Signed-off-by: York Sun <yorksun@freescale.com>
19644     Signed-off-by: Timur Tabi <timur@freescale.com>
19645
19646 commit 2c289e320dcfb3760e99cf1d765cb067194a1202
19647 Author: Jon Loeliger <jdl@freescale.com>
19648 Date:   Mon May 19 09:47:25 2008 -0500
19649
19650     mpc86xx: Removed unused and unconfigured memory test code.
19651
19652     Besides, other common code exists.
19653
19654     Signed-off-by: Jon Loeliger <jdl@freescale.com>
19655
19656 commit 180a90abdae72587c0f679edf8991455e559440d
19657 Author: Wolfgang Denk <wd@denx.de>
19658 Date:   Mon May 19 12:47:11 2008 +0200
19659
19660     Release v1.3.3
19661
19662     Update CHANGELOG for release.
19663
19664     Signed-off-by: Wolfgang Denk <wd@denx.de>
19665
19666 commit 16bedc661de0dae767b1377d8413373a3fbcfa79
19667 Author: Stefan Roese <sr@denx.de>
19668 Date:   Mon May 19 07:14:38 2008 +0200
19669
19670     ppc4xx: Canyonlands: Disable PCIe0/SATA in dev-tree depending on selection
19671
19672     When SATA is selected (via jumper J6) we need to disable the first PCIe
19673     node in the device tree, so that Linux doesn't initialize it. Otherwise
19674     the Linux SATA driver will fail to detect the devices.
19675
19676     The same goes the other way around too. So if PCIe is selected we need
19677     to disable the SATA node in the device tree.
19678
19679     This is because PCIe port 0 and SATA on 460EX share the same pins
19680     (multiplexed) and we have to configure in U-Boot which peripheral is
19681     enabled.
19682
19683     Signed-off-by: Stefan Roese <sr@denx.de>
19684
19685 commit 3cc27b426aeefe2930f911692e9df3143fb2565f
19686 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19687 Date:   Sun May 18 19:09:58 2008 +0200
19688
19689     i386: Fix multiple definitions of __show_boot_progress
19690
19691     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19692
19693 commit 311f3446930c1e64c12026c1cfd00500b05be52d
19694 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19695 Date:   Sun May 18 19:09:57 2008 +0200
19696
19697     sc530_spunk: add missing SOBJS entry
19698
19699     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19700
19701 commit a559317143b4f95927b08cd388707e6f077e95fa
19702 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19703 Date:   Sun May 18 19:09:56 2008 +0200
19704
19705     sc520_spunk: Fix flash
19706
19707     flash.c:593: warning: dereferencing type-punned pointer will break strict-aliasing rules
19708     flash.c:398: error: label at end of compound statement
19709
19710     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19711
19712 commit 91f221317af64191ee8caf303ea9305943158691
19713 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19714 Date:   Sun May 18 19:09:49 2008 +0200
19715
19716     drivers/pcmcia: add missing i82365
19717
19718     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19719
19720 commit dd223944132f97ffa52977ea95e5a52428f5cc2f
19721 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19722 Date:   Sun May 18 19:09:47 2008 +0200
19723
19724     i386/bootm: remove unused var
19725
19726     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19727
19728 commit a9da341df19b32ad2ecb58ce529f7e4fada7814e
19729 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19730 Date:   Sun May 18 19:09:45 2008 +0200
19731
19732     example/gitignore: update with all generated examples
19733
19734     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19735
19736 commit a38dc3ea8614f8b0c41e432b445a9959b9711295
19737 Author: Wolfgang Denk <wd@denx.de>
19738 Date:   Thu May 15 00:42:45 2008 +0200
19739
19740     TQM8272: fix out-of-tree building
19741
19742     ...and add to MAKEALL script
19743
19744     Signed-off-by: Wolfgang Denk <wd@denx.de>
19745
19746 commit 4f805c1e3a60b9263da8ec3bcd1f45edcefa7dcf
19747 Author: Wolfgang Denk <wd@denx.de>
19748 Date:   Wed May 14 23:34:53 2008 +0200
19749
19750     environment: fix bug introduced by commit a8409f4f1ac8
19751
19752     env_get_char is not a function, but a pointer to one.
19753
19754     Signed-off-by: Wolfgang Denk <wd@denx.de>
19755
19756 commit 0c11935cd62ca1f65eeb228ff4c848440d4553bf
19757 Author: Gary Jennejohn <garyj@denx.de>
19758 Date:   Wed May 14 13:39:22 2008 +0200
19759
19760     ppc4xx: QUAD100HD: Allow the environment to be put into flash.
19761
19762     After moving TEXT_BASE the value for CFG_ENV_ADDR was incorrect.  Also
19763     use a redundant environment.
19764
19765     Signed-off-by: Gary Jennejohn <garyj@denx.de>
19766
19767 commit cda2a4a9961fd4341b7db305cb22fc05957e8b77
19768 Author: Wolfgang Denk <wd@denx.de>
19769 Date:   Wed May 14 13:55:30 2008 +0200
19770
19771     Fix config files for out-of-tree building
19772
19773     Several board/<...>/config.mk files include dynamically built (by
19774     the Makefile) config files but used the wrong file name of
19775         $(TOPDIR)/board/$(BOARDDIR)/config.tmp
19776     instead if the correct
19777         $(OBJTREE)/board/$(BOARDDIR)/config.tmp
19778
19779     The bug is nasty because the build result is correct for the (normal)
19780     in-tree builds, and because 'sinclude' is used no errors get raised
19781     even for out-of-tree build tests. But out-of-tree builds use an
19782     incomplete and thus usually incorrect configuration...
19783
19784     Signed-off-by: Wolfgang Denk <wd@denx.de>
19785
19786 commit 2dd7082e06d580404010b06fe4e0e8b7038a00c8
19787 Author: Stefan Roese <sr@denx.de>
19788 Date:   Wed May 14 13:40:03 2008 +0200
19789
19790     ppc4xx: Fix bogus Canyonlands config.mk
19791
19792     This patch fixes the canyonlands config.mk file to enable correct
19793     out-of-tree builds. Thanks to Wolfgang Denk for spotting this.
19794
19795     Signed-off-by: Stefan Roese <sr@denx.de>
19796
19797 commit fdd1247a66d788a3446244f6fde9955a93c26322
19798 Author: Stefan Roese <sr@denx.de>
19799 Date:   Wed May 14 10:32:32 2008 +0200
19800
19801     ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
19802
19803     Canyonlands has a file ddr2_fixed.c which needs special treatment when
19804     building in separate directory. It has to be linked to build directory
19805     otherwise it is not seen.
19806
19807     Signed-off-by: Stefan Roese <sr@denx.de>
19808
19809 commit a8409f4f1ac84c36273c1a1e341189662521bcfb
19810 Author: Wolfgang Denk <wd@denx.de>
19811 Date:   Wed May 14 12:22:49 2008 +0200
19812
19813     environment: cleanup prototype declarations of env functions.
19814
19815     Signed-off-by: Wolfgang Denk <wd@denx.de>
19816
19817 commit cf39b07948015c480b72a6e732cf7d839aa93a9e
19818 Author: Wolfgang Denk <wd@denx.de>
19819 Date:   Wed May 14 12:21:48 2008 +0200
19820
19821     linkstation_HGLAN: Fix out of tree building.
19822
19823     Signed-off-by: Wolfgang Denk <wd@denx.de>
19824
19825 commit 085551c05ca09e6c491ea11a1c6727a36776a545
19826 Author: Stefan Roese <sr@denx.de>
19827 Date:   Wed May 14 10:32:32 2008 +0200
19828
19829     ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
19830
19831     Canyonlands has a file ddr2_fixed.c which needs special treatment when
19832     building in separate directory. It has to be linked to build directory
19833     otherwise it is not seen.
19834
19835     Signed-off-by: Stefan Roese <sr@denx.de>
19836
19837 commit 1510b82d50615f344e89d42533e8224cce067dc0
19838 Author: Wolfgang Denk <wd@denx.de>
19839 Date:   Tue May 13 23:15:52 2008 +0200
19840
19841     Makefile: fix "error: version_autogenerated.h: No such file or directory"
19842
19843     Signed-off-by: Wolfgang Denk <wd@denx.de>
19844
19845 commit 54694a91428f6c3280fe1ee0923488a1e7e8dbc4
19846 Author: Stelian Pop <stelian@popies.net>
19847 Date:   Tue May 13 17:31:24 2008 +0200
19848
19849     Cleanup nand_info[] declaration.
19850
19851     The nand_info array is declared as extern in several .c files.
19852     Those days, nand.h contains a reference to the array, so there is
19853     no need to declare it elsewhere.
19854
19855     Signed-off-by: Stelian Pop <stelian@popies.net>
19856     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19857
19858 commit 70fab1908fc1734a403711eaabbef546bc4b77dc
19859 Author: Stefan Roese <sr@denx.de>
19860 Date:   Tue May 13 20:22:01 2008 +0200
19861
19862     ppc4xx: Add 405EX(r) revision C PVR definitions and detection code
19863
19864     Signed-off-by: Stefan Roese <sr@denx.de>
19865
19866 commit 65dcfa79204f4750b905a173a5365e0b2eb6c2f6
19867 Author: Wolfgang Denk <wd@denx.de>
19868 Date:   Mon May 12 01:11:21 2008 +0200
19869
19870     Revert "pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option"
19871
19872     This reverts commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
19873     which broke many PowerPC boards.
19874
19875 commit ee0cfa70803a3e629ea581a9b216f8ecef402bfc
19876 Author: Wolfgang Denk <wd@denx.de>
19877 Date:   Mon May 12 00:56:28 2008 +0200
19878
19879     Revert "Avoid initrd and logbuffer area overlaps"
19880
19881     This reverts commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
19882     which breaks building on all PPC boards that don't use a log buffer.
19883
19884 commit 02b9b22446e3d7ad6a6382be17a1ce79a7de589b
19885 Author: Nick Spence <nick.spence@freescale.com>
19886 Date:   Sat May 10 14:02:04 2008 -0700
19887
19888     Fix offset calculation for multi-type legacy images.
19889
19890     Calculation of tail was incorrect when size % 4 == 0.
19891
19892     New code removes the conditional and does the same thing but with arithmetic
19893
19894     Signed-off-by: Nick Spence <nick.spence@freescale.com>
19895
19896 commit c9dca3c3f37d2647aec4509b24b16d15882ae3e4
19897 Author: Wolfgang Denk <wd@denx.de>
19898 Date:   Mon May 12 00:40:58 2008 +0200
19899
19900     Revert "Change env_get_char from a global function ptr to a function."
19901
19902     This reverts commit c0559be371b2a64b1a817088c3308688e2182f93
19903     which is known to break booting from dataflash and NAND.
19904
19905 commit 20e5ed137483823aaea5178169f3b144c7a4d9e0
19906 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19907 Date:   Sun May 11 23:13:57 2008 +0200
19908
19909     API: remove duplicate syscall check
19910
19911     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19912
19913 commit 67e3beb52c320b0a31cf030716c99392cde2d532
19914 Author: Stelian Pop <stelian@popies.net>
19915 Date:   Fri May 9 21:46:51 2008 +0200
19916
19917     AT91: Cleanup unused config header file definitions.
19918
19919     CONFIG_ENV_OVERWRITE is commented out in the config header files,
19920     so let's cleanup the files by removing the whole definition.
19921
19922     Signed-off-by: Stelian Pop <stelian@popies.net>
19923     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19924
19925 commit 19883aede2ac0a522493bfb2b35a7dbb200071b1
19926 Author: Stelian Pop <stelian@popies.net>
19927 Date:   Thu May 8 14:52:34 2008 +0200
19928
19929     Support AT91CAP9 revC CPUs
19930
19931     The AT91CAP9 revC CPU has a few differences over the previous,
19932     revB CPU which was distributed in small quantities only (revA was
19933     an internal Atmel product only).
19934
19935     The revC silicon needs a special initialisation sequence to
19936     switch from the internal (imprecise) RC oscillator to the
19937     external 32k clock.
19938
19939     Signed-off-by: Stelian Pop <stelian@popies.net>
19940     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19941
19942 commit 098b7b4b441b12c2a64dd517930f43c793542759
19943 Author: Stelian Pop <stelian@popies.net>
19944 Date:   Thu May 8 14:52:33 2008 +0200
19945
19946     Use custom logo for Atmel boards
19947
19948     This patch adds a custom vendor logo for the Atmel AT91 boards.
19949
19950     Signed-off-by: Stelian Pop <stelian@popies.net>
19951     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19952
19953 commit 761c70b80cdd3bead40146b96a8e713d6ae01632
19954 Author: Stelian Pop <stelian@popies.net>
19955 Date:   Thu May 8 14:52:32 2008 +0200
19956
19957     AT91SAM9RLEK: hook up the ATMEL LCD driver
19958
19959     This patch makes the necessary adaptations (PIO configurations and
19960     defines in config header file) to hook up the Atmel LCD driver to the
19961     AT91SAM9RLEK board.
19962
19963     Signed-off-by: Stelian Pop <stelian@popies.net>
19964     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19965
19966 commit 56a2479cd7fecabdd91348a775b2801dd2e65c7f
19967 Author: Stelian Pop <stelian@popies.net>
19968 Date:   Thu May 8 14:52:31 2008 +0200
19969
19970     AT91SAM9263EK: hook up the ATMEL LCD driver
19971
19972     This patch makes the necessary adaptations (PIO configurations and
19973     defines in config header file) to hook up the Atmel LCD driver to the
19974     AT91SAM9263EK board.
19975
19976     Signed-off-by: Stelian Pop <stelian@popies.net>
19977     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19978
19979 commit 820f2a958325061a446115f3035e48e4726b3390
19980 Author: Stelian Pop <stelian@popies.net>
19981 Date:   Thu May 8 14:52:30 2008 +0200
19982
19983     AT91SAM9261EK: hook up the ATMEL LCD driver
19984
19985     This patch makes the necessary adaptations (PIO configurations and
19986     defines in config header file) to hook up the Atmel LCD driver to the
19987     AT91SAM9261EK board.
19988
19989     Signed-off-by: Stelian Pop <stelian@popies.net>
19990     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19991
19992 commit c139b17d20c8371c1e0a8d7fb27c11050cf86304
19993 Author: Stelian Pop <stelian@popies.net>
19994 Date:   Thu May 8 14:52:29 2008 +0200
19995
19996     AT91CAP9ADK: hook up the ATMEL LCD driver
19997
19998     This patch makes the necessary adaptations (PIO configurations and
19999     defines in config header file) to hook up the Atmel LCD driver to the
20000     AT91CAP9ADK board.
20001
20002     Signed-off-by: Stelian Pop <stelian@popies.net>
20003     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20004
20005 commit 39cf480484fcce5c04a590ee1c30be0c17b02c34
20006 Author: Stelian Pop <stelian@popies.net>
20007 Date:   Fri May 9 21:57:18 2008 +0200
20008
20009     Add ATMEL LCD driver
20010
20011     This patch adds support for the ATMEL LCDC driver which is used on some
20012     AT91 and AVR platforms.
20013
20014     Is has been tested with the AT91CAP9ADK, AT91SAM9261EK, AT91SAM9263EK and
20015     AT91SAM9RLEK boards. Adaptation for AVR32 should probably be easy.
20016
20017     Signed-off-by: Stelian Pop <stelian@popies.net>
20018     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20019
20020 commit 2118ebb44dc40f8117c94950fd95799a9ef821b2
20021 Author: Stelian Pop <stelian@popies.net>
20022 Date:   Thu May 8 18:52:25 2008 +0200
20023
20024     AT91SAM9RLEK support
20025
20026     This patch adds support for the AT91SAM9RL chip and the AT91SAM9RLEK
20027     board.
20028
20029     Signed-off-by: Stelian Pop <stelian@popies.net>
20030     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20031
20032 commit 8e429b3eee23927c1222679f6b6f53667b21595c
20033 Author: Stelian Pop <stelian@popies.net>
20034 Date:   Thu May 8 18:52:23 2008 +0200
20035
20036     AT91SAM9263EK support
20037
20038     This patch adds support for the AT91SAM9263 chip and the AT91SAM9263EK
20039     board.
20040
20041     Signed-off-by: Stelian Pop <stelian@popies.net>
20042     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20043
20044 commit d99a8ff66d8ae87e5c87590ed2e4ead629540607
20045 Author: Stelian Pop <stelian@popies.net>
20046 Date:   Thu May 8 20:52:22 2008 +0200
20047
20048     AT91SAM9261EK support
20049
20050     This patch adds support for the AT91SAM9261 chip and the AT91SAM9261EK
20051     board.
20052
20053     Signed-off-by: Stelian Pop <stelian@popies.net>
20054     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20055
20056 commit 86c8c8a414988c50104a3b02c29f50af2be738c0
20057 Author: Stelian Pop <stelian@popies.net>
20058 Date:   Thu May 8 20:52:21 2008 +0200
20059
20060     AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
20061
20062     This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
20063     in order to cope with the changes in DataFlash partitionning scheme
20064     (cset c3a60cb3).
20065
20066     Signed-off-by: Stelian Pop <stelian@popies.net>
20067     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20068
20069 commit 96996ac25d5222611a8888968db6e53a6d3726da
20070 Author: Stelian Pop <stelian@popies.net>
20071 Date:   Thu May 8 20:52:20 2008 +0200
20072
20073     AT91SAM9260EK: Normalize BOOTARGS
20074
20075     This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
20076     DataFlash or from NAND), and gives to Linux a fully specified mtdparts
20077     variable.
20078
20079     Signed-off-by: Stelian Pop <stelian@popies.net>
20080     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20081
20082 commit 79f0cb6e9c54d31a1d9e3f5e226a9bebc3c3a47a
20083 Author: Stelian Pop <stelian@popies.net>
20084 Date:   Thu May 8 20:52:19 2008 +0200
20085
20086     AT91SAM9260EK: Normalize SPI timings
20087
20088     This patch changes the SPI timings to closely match the ones
20089     used by the Linux kernel and the Atmel's own bootstrap project.
20090
20091     Signed-off-by: Stelian Pop <stelian@popies.net>
20092     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20093
20094 commit c1212b2f5c5ed440bf8e9ebc8e4fd7488858b935
20095 Author: Stelian Pop <stelian@popies.net>
20096 Date:   Thu May 8 20:52:18 2008 +0200
20097
20098     AT91SAM9260EK: Handle 8 or 16 bit NAND
20099
20100     The Atmel boards can handle 8 or 16 bit NAND memories. This patch
20101     makes the support configurable in the board config header file
20102     (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
20103
20104     Signed-off-by: Stelian Pop <stelian@popies.net>
20105     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20106
20107 commit ab52640fc01624e208424e527af0b7b3a5a65a12
20108 Author: Stelian Pop <stelian@popies.net>
20109 Date:   Thu May 8 20:52:17 2008 +0200
20110
20111     AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
20112
20113     This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
20114     in order to cope with the changes in DataFlash partitionning scheme
20115     (cset c3a60cb3).
20116
20117     Signed-off-by: Stelian Pop <stelian@popies.net>
20118     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20119
20120 commit 3267508ec4c9e74c39ee41c9ae6951ad185fe270
20121 Author: Stelian Pop <stelian@popies.net>
20122 Date:   Thu May 8 20:52:16 2008 +0200
20123
20124     AT91CAP9ADK: Normalize BOOTARGS
20125
20126     This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
20127     DataFlash or from NAND), and gives to Linux a fully specified mtdparts
20128     variable.
20129
20130     Signed-off-by: Stelian Pop <stelian@popies.net>
20131     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20132
20133 commit 93da48b910511911ce110656e17ed733c8ac4c45
20134 Author: Stelian Pop <stelian@popies.net>
20135 Date:   Thu May 8 20:52:15 2008 +0200
20136
20137     AT91CAP9ADK: Normalize SPI timings
20138
20139     This patch changes the SPI timings to closely match the ones
20140     used by the Linux kernel and the Atmel's own bootstrap project.
20141
20142     Signed-off-by: Stelian Pop <stelian@popies.net>
20143     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20144
20145 commit 1c90df3e148ce0a3e2c86c63b38b19d47772f2a0
20146 Author: Stelian Pop <stelian@popies.net>
20147 Date:   Thu May 8 20:52:14 2008 +0200
20148
20149     AT91CAP9ADK: Handle 8 or 16 bit NAND
20150
20151     The Atmel boards can handle 8 or 16 bit NAND memories. This patch
20152     makes the support configurable in the board config header file
20153     (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
20154
20155     Signed-off-by: Stelian Pop <stelian@popies.net>
20156     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20157
20158 commit 11b162bae058e96c7929e358d4adff2bee6c2cc4
20159 Author: Stelian Pop <stelian@popies.net>
20160 Date:   Thu May 8 20:52:13 2008 +0200
20161
20162     Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms
20163
20164     All the AT91CAP9/AT91SAM9 boards have the same linker script. The patch
20165     below avoids the duplication of u-boot.lds by putting the file in the
20166     cpu directory instead of the board one.
20167
20168     Signed-off-by: Stelian Pop <stelian@popies.net>
20169     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20170
20171 commit d48abea4b89adaf5e45ea75b5e38c0d8de179ece
20172 Author: Stelian Pop <stelian@popies.net>
20173 Date:   Thu May 8 20:52:12 2008 +0200
20174
20175     Add proper copyright notices in Atmel boards Makefiles
20176
20177     The Makefiles for the AT91CAP9/AT91SAM9 boards have an incomplete
20178     copyright notice. This patch adds the missing pieces.
20179
20180     Signed-off-by: Stelian Pop <stelian@popies.net>
20181     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20182
20183 commit e817a042cef6164bf26fee86f90326f2ec9e6745
20184 Author: Stelian Pop <stelian@popies.net>
20185 Date:   Thu May 8 20:52:11 2008 +0200
20186
20187     Add copyright information in Atmel boards partition.c
20188
20189     When Ulf did the dataflash.c cleanup, he didn't add his copyright on
20190     the new created files. This patch fixes the problem.
20191
20192     Signed-off-by: Stelian Pop <stelian@popies.net>
20193     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20194
20195 commit 4f6c810106f4f76d83cfc57d98f4540cd45f9a19
20196 Author: Stelian Pop <stelian@popies.net>
20197 Date:   Thu May 8 20:52:10 2008 +0200
20198
20199     Update origin and copyright information in arch-at91sam9 header files
20200
20201     When doing the AT91CAP9/AT91SAM9 port, a number of header files were
20202     copied from the Linux kernel sources. This patch explicitly specifies
20203     this origin for all the copied headers, and for those missing copyright
20204     information, adds it.
20205
20206     Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
20207     in the latest kernel sources by 'at91sam9_smc.h'.
20208
20209     The copyright information has been confirmed by the AT91 Linux kernel
20210     maintainer, Andrew Victor <avictor.za@gmail.com>.
20211
20212     Signed-off-by: Stelian Pop <stelian@popies.net>
20213     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20214
20215 commit 79dd1712689d6a5031d7cbff54957049680751c7
20216 Author: Markus Klotzbücher <mk@denx.de>
20217 Date:   Thu May 8 16:00:55 2008 +0200
20218
20219     ppc4xx: Kilauea: Add CONFIG_BOOTP_SUBNETMASK to Kilauea board config
20220
20221     When using dhcp/bootp the "netmask" environment variable is not set
20222     because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
20223     desireable, so the following patch adds this this option to the board
20224     config.
20225
20226     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
20227     Signed-off-by: Stefan Roese <sr@denx.de>
20228
20229 commit 869d14b4cc2e47de2ddcb117bad0407a44436684
20230 Author: Stefan Roese <sr@denx.de>
20231 Date:   Sat May 10 10:30:36 2008 +0200
20232
20233     ppc4xx: Update Makalu defconfig to use device-tree booting as default
20234
20235     This patch reworks the default environment on Makalu. Now "net_nfs" for
20236     example uses the device-tree style booting formerly know as "net_nfs_fdt".
20237     Also the addresses in RAM were changed because of the new image booting
20238     support, which check for image overwriting. So the addresses needed to
20239     get adjusted.
20240
20241     Signed-off-by: Stefan Roese <sr@denx.de>
20242
20243 commit f3612a7b199cab3942f60d9c1392eb39d58cc699
20244 Author: Becky Bruce <bgill@freescale.com>
20245 Date:   Wed May 7 13:28:16 2008 -0500
20246
20247     PPC: fix map_physmem build warning
20248
20249     map_physmem currently generates a warning when CONFIG_PHYS_64BIT is
20250     enabled.  This quiets the warning.
20251
20252     Signed-off-by: Becky Bruce <Becky.Bruce@freescale.com>
20253
20254 commit 36f32675f40292002ee1fed252c180a43022d2d4
20255 Author: Becky Bruce <bgill@freescale.com>
20256 Date:   Wed May 7 13:24:57 2008 -0500
20257
20258     Update pci code to use phys_addr_t
20259
20260     Physical addrs need to be represented by phys_addr_t, not
20261     unsigned long.  Otherwise, systems that use CONFIG_PHYS_64BIT
20262     are going to fail mightily.
20263
20264     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
20265
20266 commit 91a616741fc128cdb88f39bddcd4d72fe17466d0
20267 Author: Nick Spence <nick.spence@freescale.com>
20268 Date:   Thu May 8 22:32:22 2008 -0700
20269
20270     Support legacy multi-type images without FDT section.
20271
20272     This patch enables legacy multi-type images containing only a Linux kernel
20273     and root file system to be loaded, maintaining compatibility with previous
20274     versions of u-boot.
20275
20276     This is required when using old image files such as a Linux 2.4 kernel /
20277     filesystem.
20278
20279     Signed-off-by: Nick Spence <nick.spence@freescale.com>
20280     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
20281
20282 commit 881031d9732783b7aeae2198fc7eb480ae8974a6
20283 Author: Wolfgang Denk <wd@denx.de>
20284 Date:   Sat May 10 00:38:02 2008 +0200
20285
20286     Update CHANGELOG.
20287
20288     Signed-off-by: Wolfgang Denk <wd@denx.de>
20289
20290 commit e5e9d6c9c08160be7e5a36e04d125ccce99b8774
20291 Author: Wolfgang Denk <wd@denx.de>
20292 Date:   Sat May 10 00:36:09 2008 +0200
20293
20294     post/cpu/ppc4xx/Makefile: line length cleanup
20295
20296     Signed-off-by: Wolfgang Denk <wd@denx.de>
20297
20298 commit cce9cfdabcf416ecd2aacc3681c91e5378c75a3d
20299 Author: Stelian Pop <stelian@popies.net>
20300 Date:   Thu May 8 22:52:09 2008 +0200
20301
20302     Fix @ -> <at> substitution
20303
20304     When applying the AT91CAP9 patches upstream, something transformed
20305     the '@' character into the ' <at> ' sequence.
20306
20307     The patch below restores the original form in all the places where
20308     it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
20309     were copied from AT91CAP9, and a couple of other files where the
20310     ' <at> ' sequence was present).
20311
20312     Signed-off-by: Stelian Pop <stelian@popies.net>
20313
20314 commit 9606b3c81b3c47a1d58514e9a232c6f461a17597
20315 Author: Stelian Pop <stelian@popies.net>
20316 Date:   Thu May 8 22:52:10 2008 +0200
20317
20318     Update origin and copyright information in arch-at91sam9 header files
20319
20320     When doing the AT91CAP9/AT91SAM9 port, a number of header files were
20321     copied from the Linux kernel sources. This patch explicitly specifies
20322     this origin for all the copied headers, and for those missing copyright
20323     information, adds it.
20324
20325     Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
20326     in the latest kernel sources by 'at91sam9_smc.h'.
20327
20328     The copyright information has been confirmed by the AT91 Linux kernel
20329     maintainer, Andrew Victor <avictor.za@gmail.com>.
20330
20331     Signed-off-by: Stelian Pop <stelian@popies.net>
20332
20333 commit ceb6b4fbe1dcc40bb672ef8133ddf4813e97cbb1
20334 Author: Stelian Pop <stelian@popies.net>
20335 Date:   Thu May 8 22:52:11 2008 +0200
20336
20337     Add copyright information in Atmel boards partition.c
20338
20339     When Ulf did the dataflash.c cleanup, he didn't add his copyright on
20340     the new created files. This patch fixes the problem.
20341
20342     Signed-off-by: Stelian Pop <stelian@popies.net>
20343
20344 commit 2ab02fd456d8ef92ae9f5439618d1fa7ca16e5f3
20345 Author: Guennadi Liakhovetski <lg@denx.de>
20346 Date:   Thu May 8 10:09:27 2008 +0200
20347
20348     mx31ads: fix 32kHz clock handling
20349
20350     According to schematics and to RedBoot sources, the MX31ADS uses a 32768Hz
20351     oscillator as a SKIL source. Fix previously wrongly assumed 32000Hz value.
20352     Also fix a typo when verifying a jumper configuration. While at it, make
20353     two needlessly global functions static.
20354
20355     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20356
20357 commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
20358 Author: Marian Balakowicz <m8@semihalf.com>
20359 Date:   Wed May 7 13:10:04 2008 +0200
20360
20361     Avoid initrd and logbuffer area overlaps
20362
20363     Add logbuffer to reserved LMB areas to prevent initrd allocation
20364     from overlaping with it.
20365
20366     Make sure to use correct logbuffer base address.
20367
20368     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20369
20370 commit c59518e15949b3403df5c5b0c2c48ea0e5bea24b
20371 Author: Marian Balakowicz <m8@semihalf.com>
20372 Date:   Wed May 7 13:08:54 2008 +0200
20373
20374     ppc: Cleanup get_effective_memsize() use
20375
20376     Removed duplicated effective memory size calculation code.
20377
20378     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20379
20380 commit 273c37d843d5b581090378016cd12dd9c586907b
20381 Author: Marian Balakowicz <m8@semihalf.com>
20382 Date:   Wed May 7 09:03:53 2008 +0200
20383
20384     Fix build errors when CONFIG_LOGBUFFER and CONFIG_FIT are enabled
20385
20386     Recent modifcations to LOGBUFFER handling code were incorrecly
20387     introduced to fit_check_kernel() routine during
20388     "Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing",
20389     commit 27f33e9f45ef7f9685cbdc65066a1828e85dde4f.
20390
20391     This patch cleans up this merge issue.
20392
20393     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20394
20395 commit bc11756daff89a3de09ca80adac962b88cf06e6e
20396 Author: Grant Erickson <gerickson@nuovations.com>
20397 Date:   Tue May 6 20:16:15 2008 -0700
20398
20399     Propagate Error Status to the Shell on fw_printenv Errors
20400
20401     Changed implementation such that fw_printenv returns failure status
20402     when one or more specified variables do not exist or when incorrect
20403     command syntax is used.
20404
20405     This aids scripting fw_printenv such that the script can key of the
20406     return status rather than relying on standard error "scraping".
20407
20408     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
20409     Signed-off-by: Wolfgang Denk <wd@denx.de>
20410
20411 commit f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6
20412 Author: Grant Erickson <gerickson@nuovations.com>
20413 Date:   Tue May 6 16:18:00 2008 -0700
20414
20415     Fix Compilation Errors with 'tools/env/fw_printenv'
20416
20417     In the current top-of-tree, 1.3.3.-rc2, the optional tool
20418     'tools/env/fw_printenv' fails to compile for two reasons:
20419
20420     1) The header watchdog.h cannot be found.
20421     2) The header zlib.h is picked up from the tool chain rather than the
20422        project causing a prototype conflict for crc32.
20423
20424     This patch addresses both of these issues.
20425
20426     Platforms Tested On:
20427     - AMCC "Kilauea"
20428
20429     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
20430
20431 commit 597f6c26a18b389903a64692bacbf9a1ca69355b
20432 Author: James Yang <James.Yang@freescale.com>
20433 Date:   Mon May 5 10:22:53 2008 -0500
20434
20435     Fix readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
20436
20437     When CONFIG_CMDLINE_EDITING is enabled, readline_into_buffer() doesn't
20438     work before relocating to RAM because command history is written into
20439     a global array that is not writable before relocation.  This patch
20440     defers to the no-editing and no-history code in readline_into_buffer()
20441     if it is called before relocation.
20442
20443     Signed-off-by: James Yang <James.Yang@freescale.com>
20444     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20445
20446 commit 726c0f1e5f108dccea052965123b95837d2bd402
20447 Author: Detlev Zundel <dzu@denx.de>
20448 Date:   Mon May 5 16:11:22 2008 +0200
20449
20450     cosmetic: Adjust coding style for switch statements to be consistent
20451
20452     Signed-off-by: Detlev Zundel <dzu@denx.de>
20453
20454 commit 574b319512b13e10800f0045e39b993f4ca25e42
20455 Author: Detlev Zundel <dzu@denx.de>
20456 Date:   Mon May 5 16:11:21 2008 +0200
20457
20458     Fix disk type output in disk/part.c
20459
20460     Signed-off-by: Detlev Zundel <dzu@denx.de>
20461
20462 commit 045b4d2d7168ef09c7349dcf6ecebe7432b74171
20463 Author: Vlad Lungu <vlad.lungu@windriver.com>
20464 Date:   Mon May 5 14:20:03 2008 +0300
20465
20466     Mail address change, documentation modified
20467
20468     Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
20469
20470 commit 4d49b28038e2819088e8356a77212fc95a89ce5a
20471 Author: Michal Simek <monstr@monstr.eu>
20472 Date:   Sun May 4 15:42:41 2008 +0200
20473
20474     microblaze: Repare intc handling
20475
20476     Signed-off-by: Michal Simek <monstr@monstr.eu>
20477
20478 commit 878b3b1e193e570caf3e96ad8e31e561f68d0287
20479 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20480 Date:   Sun May 4 15:17:52 2008 +0200
20481
20482     include/gitignore: update to all architectures
20483
20484     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20485
20486 commit 1df368aed3b8bc240fe1595d290b0e91b22961da
20487 Author: Marcel Ziswiler <marcel@ziswiler.com>
20488 Date:   Mon May 5 02:12:06 2008 +0200
20489
20490     ide: Remove spurious second include of io.h
20491
20492     Removed the second include, with all the #ifdef around as suggested by Wolfgang.
20493
20494     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
20495
20496 commit 8fbc985bdad09b23b7eb4df1d2ea589619d8db4c
20497 Author: Adrian Filipi <adrian.filipi@eurotech.com>
20498 Date:   Tue May 6 16:46:37 2008 -0400
20499
20500     Fix some typos
20501
20502     This patch fixes three typos.
20503     The first is a repetition of CONFIG_CMD_BSP.
20504     The second makes the #endif comment match its #if.
20505     The third is a spelling error.
20506
20507     Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
20508
20509 commit e419e12d04ae3b280c99a87a2ea4ad7a40628bcb
20510 Author: Grant Erickson <gerickson@nuovations.com>
20511 Date:   Sun May 4 16:45:01 2008 -0700
20512
20513     Recognize 'powerpc' As an Alias for IH_ARCH_PPC
20514
20515     Add support for the recognition of 'powerpc' as an alias for the PowerPC
20516     architecture type since Linux is already trending in that direction,
20517     preferring 'powerpc' to 'ppc'.
20518
20519     Signed-off-by: Grant Erickson <gerickson@nuovations.com>
20520
20521 commit f5a24259190c388c2527bdc49fee34577d862cc7
20522 Author: Wheatley Travis <Travis.Wheatley@freescale.com>
20523 Date:   Fri May 2 13:35:15 2008 -0700
20524
20525     7450 and 86xx L2 cache invalidate bug corrections
20526
20527     The 7610 and related parts have an L2IP bit in the L2CR that is
20528     monitored to signal when the L2 cache invalidate is complete whereas the
20529     7450 and related parts utilize L2I for this purpose. However, the
20530     current code does not account for this difference. Additionally the 86xx
20531     L2 cache invalidate code used an "andi" instruction where an "andis"
20532     instruction should have been used.
20533
20534     This patch addresses both of these bugs.
20535
20536     Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
20537     Acked-By: Jon Loeliger <jdl@freescale.com>
20538
20539 commit 4d31cdc45d3592a5545a649fb5a24b458a4e4b72
20540 Author: Wolfgang Denk <wd@denx.de>
20541 Date:   Fri May 9 10:16:13 2008 +0200
20542
20543     Avoid infinite loop "Generating include/autoconf.mk"
20544
20545     Fix a bogus circular dependency that caused an infinite loop of
20546     "Generating include/autoconf.mk" again and again.
20547
20548     Signed-off-by: Wolfgang Denk <wd@denx.de>
20549
20550 commit 567fb852178dbf59529d7301620a3f3732a4b02d
20551 Author: Stelian Pop <stelian@popies.net>
20552 Date:   Thu May 8 22:52:09 2008 +0200
20553
20554     Fix @ -> <at> substitution
20555
20556     When applying the AT91CAP9 patches upstream, something transformed
20557     the '@' character into the ' <at> ' sequence.
20558
20559     The patch below restores the original form in all the places where
20560     it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
20561     were copied from AT91CAP9, and a couple of other files where the
20562     ' <at> ' sequence was present).
20563
20564     Signed-off-by: Stelian Pop <stelian@popies.net>
20565     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20566
20567 commit 73ccb3410a0785593cda7aee455dfc51f790e281
20568 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
20569 Date:   Mon Apr 28 14:04:32 2008 +0200
20570
20571     ppc4xx: Add the Harris QUAD100HD AMCC 405EP-based board
20572
20573     Signed-off-by: Gary Jennejohn <garyj@denx.de>
20574     Signed-off-by: Stefan Roese <sr@denx.de>
20575
20576 commit ef2642625cbfb1c3695e3478d08ae515052a4950
20577 Author: Stefan Roese <sr@denx.de>
20578 Date:   Thu May 8 11:10:46 2008 +0200
20579
20580     ppc4xx: Kilauea: Fix incorrect FPGA FIFO address
20581
20582     Signed-off-by: Stefan Roese <sr@denx.de>
20583
20584 commit a00eccfebc954ad9485161efeca7d9aaf626d530
20585 Author: Stefan Roese <sr@denx.de>
20586 Date:   Thu May 8 11:05:15 2008 +0200
20587
20588     ppc4xx: Add fdt support to all remaining AMCC PPC4xx eval boards
20589
20590     This patch adds fdt (flattened device tree) support to all remaining AMCC
20591     eval boards. Most newer boards already support device tree. With this patch,
20592     all AMCC boards now enable device tree passing from U-Boot to Linux
20593     arch/powerpc kernels.
20594
20595     Signed-off-by: Stefan Roese <sr@denx.de>
20596
20597 commit cb5d88b9611e0c35c53543ad3b4ab99fa82203e3
20598 Author: Stefan Roese <sr@denx.de>
20599 Date:   Thu May 8 11:01:09 2008 +0200
20600
20601     ppc4xx: Add weak default ft_board_setup() routine
20602
20603     This patch adds a default ft_board_setup() routine to the 4xx fdt code.
20604     This routine is defined as weak and can be overwritten by a board specific
20605     one if needed.
20606
20607     Signed-off-by: Stefan Roese <sr@denx.de>
20608
20609 commit d1c1ba85c7915053adf6a8d14a08ac6fcb750d01
20610 Author: Stefan Roese <sr@denx.de>
20611 Date:   Thu May 8 10:48:58 2008 +0200
20612
20613     ppc4xx: acadia: Add fdt support and fix section overlap problem
20614
20615     This patch adds fdt (flattened device tree) support to the AMCC
20616     Acadia eval board. This increases the image size and it doesn't
20617     fit anymore into 256kByte. Since we didn't want to remove features
20618     from the configuration, we decided to increase the U-Boot image size
20619     (add one flash sector).
20620
20621     Also changed the default environment definition to make it
20622     independent of such changes.
20623
20624     Signed-off-by: Stefan Roese <sr@denx.de>
20625
20626 commit 4adb3023de75bc150f088c8935db340930ad38c8
20627 Author: Ira Snyder <iws@ovro.caltech.edu>
20628 Date:   Tue Apr 29 11:18:54 2008 -0700
20629
20630     ppc4xx: Add device tree support to AMCC Yosemite
20631
20632     Add support for booting with a device tree blob. This is needed to boot
20633     ARCH=powerpc kernels. Also add support for setting the eth0 mac address
20634     via the ethaddr variable.
20635
20636     Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
20637     Signed-off-by: Stefan Roese <sr@denx.de>
20638
20639 commit b9bbefce1a653ea35f74a66ec117cdda2e043a4b
20640 Author: Dave Mitchell <dmitchell@amcc.com>
20641 Date:   Wed May 7 09:00:23 2008 -0700
20642
20643     ppc4xx: Fix typos in 460GT/EX FBDV array
20644
20645     Corrected two typos in the 460GT/EX FBDV array.
20646
20647     Signed-off-by: Dave Mitchell <dmitchell@amcc.com>
20648     Signed-off-by: Stefan Roese <sr@denx.de>
20649
20650 commit 66f5fa9263629271edc86178b1f224e3c9aab2b3
20651 Author: Andy Fleming <afleming@freescale.com>
20652 Date:   Wed May 7 16:54:31 2008 -0500
20653
20654     85xx: Limit CPU2 workaround to parts that have the errata
20655
20656     Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
20657     Signed-off-by: Andy Fleming <afleming@freescale.com>
20658
20659 commit a5fe514e8ace564300d2c1d73846ddff49654243
20660 Author: Lee Nipper <lee.nipper@freescale.com>
20661 Date:   Fri Apr 25 15:44:45 2008 -0500
20662
20663     mpc83xx: system performance settings for MPC8349EMDS.
20664
20665     These same settings are used on MPC8349ITX, and
20666     improve performance on MPC8349EMDS.
20667
20668     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
20669     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20670
20671 commit 49387dba910e485640b575e920ee463b7e611dc3
20672 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20673 Date:   Tue May 6 13:22:52 2008 +0900
20674
20675     [MIPS] cpu/mips/cache.S: Fix build warning
20676
20677     Some old GNU assemblers, such as v2.14 (ELDK 3.1.1), v2.16 (ELDK 4.1.0),
20678     warns illegal global symbol references by bal (and jal also) instruction.
20679     This does not happen with the latest binutils v2.18.
20680
20681     Here's an example on gth2_config:
20682
20683     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
20684     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
20685     c -EB -c -o cache.o cache.S
20686     cache.S: Assembler messages:
20687     cache.S:243: Warning: Pretending global symbol used as branch target is local.
20688     cache.S:250: Warning: Pretending global symbol used as branch target is local.
20689
20690     In principle, gas might be sensitive to global symbol references in PIC
20691     code because they should be processed through GOT (global offset table).
20692     But if `bal' instruction is used, it results in PC-based offset jump.
20693     This is the cause of this warning.
20694
20695     In practice, we know it doesn't matter whether PC-based reference or GOT-
20696     based. As for this case, both will work before/after relocation. But let's
20697     fix the code.
20698
20699     This patch explicitly sets up a target address, then jump there.
20700     Here's an example of disassembled code with/without this patch.
20701
20702      90000668:       1485ffef        bne     a0,a1,90000628 <mips_cache_reset+0x20>
20703      9000066c:       ac80fffc        sw      zero,-4(a0)
20704      90000670:       01402821        move    a1,t2
20705     -90000674:       0411ffba        bal     90000560 <mips_init_icache>
20706     -90000678:       01803021        move    a2,t4
20707     -9000067c:       01602821        move    a1,t3
20708     -90000680:       0411ffcc        bal     900005b4 <mips_init_dcache>
20709     -90000684:       01a03021        move    a2,t5
20710     -90000688:       03000008        jr      t8
20711     -9000068c:       00000000        nop
20712     +90000674:       01803021        move    a2,t4
20713     +90000678:       8f8f83ec        lw      t7,-31764(gp)
20714     +9000067c:       01e0f809        jalr    t7
20715     +90000680:       00000000        nop
20716     +90000684:       01602821        move    a1,t3
20717     +90000688:       01a03021        move    a2,t5
20718     +9000068c:       8f8f81e0        lw      t7,-32288(gp)
20719     +90000690:       01e0f809        jalr    t7
20720     +90000694:       00000000        nop
20721     +90000698:       03000008        jr      t8
20722     +9000069c:       00000000        nop
20723
20724     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20725
20726 commit 0f8c62a14b523c56874ebcb67c1a16c99aad48b3
20727 Author: Vlad Lungu <vlad.lungu@windriver.com>
20728 Date:   Mon May 5 14:04:00 2008 +0300
20729
20730     Allow building mips versions with ELDK 3.1.1
20731
20732     .gpword works only with local symbols on certain binutils versions
20733
20734     Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
20735
20736 commit 12a67a9e51f6b3ec26cb0f077fb5685a447c359d
20737 Author: Wolfgang Denk <wd@denx.de>
20738 Date:   Mon May 5 12:52:36 2008 +0200
20739
20740     MAKEALL: add inka4x0 board
20741
20742     Signed-off-by: Wolfgang Denk <wd@denx.de>
20743
20744 commit b83dcc13ae7b2dab394bfef6f699750d11490ee2
20745 Author: Wolfgang Denk <wd@denx.de>
20746 Date:   Sun May 4 21:34:23 2008 +0200
20747
20748     kb9202 board: fix build problem.
20749
20750     Signed-off-by: Wolfgang Denk <wd@denx.de>
20751
20752 commit 6adf61dc4cb5c53a2df990cbc8df2bceacbfd869
20753 Author: Wolfgang Denk <wd@denx.de>
20754 Date:   Sun May 4 12:10:33 2008 +0200
20755
20756     Prepare for v1.3.3-rc3
20757
20758     Update ChNAGELOG, minor white space cleanup.
20759
20760     Signed-off-by: Wolfgang Denk <wd@denx.de>
20761
20762 commit 7c0773fde6100b61be2558cb5d8c442a3194aecb
20763 Author: Wolfgang Denk <wd@denx.de>
20764 Date:   Sun May 4 00:35:15 2008 +0200
20765
20766     drivers/net/tsec.c: Fix typo.
20767
20768     Signed-off-by: Wolfgang Denk <wd@denx.de>
20769
20770 commit aa737945e6f37a5de5dbad550a7694e0cb2a8120
20771 Author: Mike Frysinger <vapier@gentoo.org>
20772 Date:   Fri May 2 21:45:12 2008 -0400
20773
20774     version_autogenerated.h: use printf rather than echo -n
20775
20776     Some systems are dumb and do not implement the -n flag to echo (like OS X).
20777     Convert the Makefile to use printf as this should work everywhere.
20778
20779     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20780     Signed-off-by: Wolfgang Denk <wd@denx.de>
20781
20782 commit 4acc2a108ad0a669165924704a6cb083f9138242
20783 Author: Mike Frysinger <vapier@gentoo.org>
20784 Date:   Fri May 2 18:17:50 2008 -0400
20785
20786     fix building when saveenv is disabled in some setups
20787
20788     If you enable environment in the flash, but disable the embedded
20789     option, and you disable the saveenv command, then the #if nested
20790     logic will trigger a compile failure:
20791     env_flash.c: In function 'env_relocate_spec':
20792     env_flash.c:399: error: 'flash_addr' undeclared (first use in this function)
20793     The fix is to add CMD_SAVEENV ifdef protection like everywhere else.
20794
20795     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20796
20797 commit ccf1ad535ae1c0dc2d466235c668adbdfe3a55b7
20798 Author: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
20799 Date:   Fri May 2 16:10:04 2008 -0400
20800
20801     SBC8548: fix address mask to allow 64M flash
20802
20803     Fix incorrect mask to enable all 64MB of onboard flash.
20804     Previously U-Boot incorrectly mapped only 8MB of flash, this
20805     patch correctly maps all the available flash.
20806
20807     Signed-off-by: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
20808
20809 commit 3648085c464c8c22ef76fab006ca4344d3796124
20810 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20811 Date:   Fri May 2 19:48:56 2008 +0200
20812
20813     qemu_mips: add README
20814
20815     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20816
20817 commit 6fdd002689190a0022c7b3dbab37fcba724580ce
20818 Author: Marcel Ziswiler <marcel@ziswiler.com>
20819 Date:   Fri May 2 02:35:59 2008 +0200
20820
20821     Fix misspelled comment
20822
20823     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
20824
20825 commit fa956fde60b7ec4dd66bd62f9910fd341b5049a1
20826 Author: Mike Frysinger <vapier@gentoo.org>
20827 Date:   Thu May 1 04:13:05 2008 -0400
20828
20829     mkimage: make mmap() checks consistent
20830
20831     The mmap() related code is full of inconsistent casts/constants when
20832     it comes to error checking, and may break when building on some
20833     systems (like ones that do not implicitly define the caddr_t type).
20834     Let's just avoid the whole mess by writing the code nice and clean in
20835     the first place.
20836
20837     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20838
20839 commit 8e90cd0447a0f0ccf529ef86f0e6b56187d3b82a
20840 Author: Marcel Ziswiler <marcel@ziswiler.com>
20841 Date:   Thu May 1 09:05:34 2008 +0200
20842
20843     Fix defined but not used build warning
20844
20845     - warning: 'srom' defined but not used
20846
20847     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
20848
20849 commit b71190f3250aaffcc81c35f6cfd3498cb7c48013
20850 Author: Marcel Ziswiler <marcel@ziswiler.com>
20851 Date:   Thu May 1 09:05:26 2008 +0200
20852
20853     Fix implicit declaration build warnings
20854
20855     - warning: implicit declaration of function â€˜serial_initialize’
20856
20857     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
20858
20859 commit 9acde129cc3f9c1b3bc11a821480dd446774d618
20860 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
20861 Date:   Tue Apr 29 19:18:32 2008 +0200
20862
20863     TSEC: add config options for VSC8601 RGMII PHY
20864
20865     The Vitesse VSC8601 RGMII PHY has internal delay for both Rx
20866     and Tx clock lines. They are configured using 2 bits in extended
20867     register 0x17.
20868     Therefore CFG_VSC8601_SKEW_TX and CFG_VSC8601_SKEW_RX have
20869     been introduced with valid values 0-3 giving 0.0, 1.4,1.7 and 2.0ns delay.
20870
20871     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
20872     Acked-by: Andy Fleming <afleming@freescale.com>
20873     Acked-by: Ben Warren <biggerbadderben@gmail.com>
20874     --
20875
20876      drivers/net/tsec.c |    6 ++++++
20877      drivers/net/tsec.h |    3 +++
20878      2 files changed, 9 insertions(+), 0 deletions(-)
20879
20880 commit bd98ee60df43ee6dd6f5ebe32c67d03e90513ff8
20881 Author: Wolfgang Denk <wd@denx.de>
20882 Date:   Sat May 3 23:07:15 2008 +0200
20883
20884     Revert "ColdFire: Get information from the correct GCC"
20885
20886     This reverts commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
20887     (replaced by commit c4e5f52a58d278eebb87f476e353972c5dacea40).
20888
20889 commit c4e5f52a58d278eebb87f476e353972c5dacea40
20890 Author: Wolfgang Denk <wd@denx.de>
20891 Date:   Sat May 3 22:25:00 2008 +0200
20892
20893     config.mk: use correct (cross) compiler
20894
20895     Some config.mk files reference $(CC) to test for specific tool chain
20896     features, so make sure $(CC) gets set before including any such
20897     config files.
20898
20899     This patch replaces commit b7166e05a5 ("ColdFire: Get information from
20900     the correct GCC").
20901
20902     Signed-off-by: Wolfgang Denk <wd@denx.de>
20903
20904 commit 27c38689d0cfde0e444239345f97b5eecc9f4067
20905 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20906 Date:   Thu May 1 02:13:44 2008 +0200
20907
20908     pxa: fix previous definition on cpu init
20909
20910     start.S:183:1: warning: "ICMR" redefined
20911     In file included from start.S:33:
20912     include/asm/arch/pxa-regs.h:935:1: warning: this is the location of the previous definition
20913     start.S:187:1: warning: "RCSR" redefined
20914     ...
20915
20916     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20917
20918 commit 6d12e697de794d700767f22f950e3026ccf4daf6
20919 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20920 Date:   Thu May 1 02:13:43 2008 +0200
20921
20922     pxa: fix pcmcia operation on 'i' may be undefined
20923
20924     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20925     Signed-off-by: Wolfgang Denk <wd@denx.de>
20926
20927 commit 4d77f5102dfeaa36cd58d9a9f083bd2cc491526f
20928 Author: Kumar Gala <galak@kernel.crashing.org>
20929 Date:   Wed Apr 30 16:24:35 2008 -0500
20930
20931     MPC8610HPCD: Drop -O2 from the build flags
20932
20933     Make the flags use -Os like all other boards
20934
20935     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20936
20937 commit 0072b78be2b41e5a0ca3ddc39335574dc2e855bd
20938 Author: Stefan Roese <sr@denx.de>
20939 Date:   Wed Apr 30 15:50:39 2008 +0200
20940
20941     RTC: Fix month offset by one problem in M41T62 RTC driver
20942
20943     This patch fixes a problem with the month being read and written
20944     incorrectly (offset by one). This only gets visible by also using
20945     the Linux driver (rtc-m41t80).
20946
20947     Tested on AMCC Canyonlands.
20948
20949     Signed-off-by: Stefan Roese <sr@denx.de>
20950
20951 commit 141ba1cad8e6598a2466e7e2976c6a12285df619
20952 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20953 Date:   Sat May 3 13:51:44 2008 +0900
20954
20955     [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
20956
20957     Current trick to pick up GNU assembler minor version uses a dot(.) as a
20958     delimiter, and take the second field to obtain minor version number. But
20959     as can be expected, this doesn't work with a version string which has
20960     dots more than needs.
20961
20962     Here's an example:
20963
20964     $ mips-linux-gnu-as --version | grep 'GNU assembler'
20965     GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215
20966     $ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2
20967     2-129) 2
20968     $
20969
20970     This patch restricts the version format to 2.XX.XX... This will work
20971     in most cases.
20972
20973     $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+'
20974     2.18.50.20080215
20975     $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2
20976     18
20977     $
20978
20979     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20980
20981 commit ea638951acead7f1086c908c0b9f086beab82a22
20982 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20983 Date:   Sat May 3 13:51:28 2008 +0900
20984
20985     [MIPS] cpu/mips/cache.S: Add dcache_enable
20986
20987     Recent bootelf command fixes (017e9b7925f74878d0e9475388cca9bda5ef9482,
20988     "allow ports to override bootelf behavior") requires ports to have this
20989     function.
20990
20991     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20992     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20993
20994 commit d2c6fbec4397c936b18cd42482b6973cd6781bdf
20995 Author: Wolfgang Denk <wd@denx.de>
20996 Date:   Thu May 1 21:30:16 2008 +0200
20997
20998     onenand: rename 16 bit memory copy into memcpy_16() to avoid conflicts
20999
21000     Onenand needs a version of memcpy() which performs 16 bit accesses
21001     only; make sure the name does not conflict with the standard
21002     function.
21003
21004     Signed-off-by: Wolfgang Denk <wd@denx.de>
21005
21006 commit 12bc4e94251c369c529ffa505cf58b148c372f7f
21007 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21008 Date:   Wed Apr 30 22:38:17 2008 +0200
21009
21010     cmd_nand: fix warning: str2long ncompatible pointer type
21011
21012     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21013
21014 commit 1b9ed2574a38c93cb03dad41885fc06be4bfc9dd
21015 Author: Timur Tabi <timur@freescale.com>
21016 Date:   Fri Apr 4 11:16:11 2008 -0500
21017
21018     Fix calculation of I2C clock for some 86xx chips
21019
21020     Some 86xx chips use CCB as the base clock for the I2C, and others used CCB/2.
21021     There is no pattern that can be used to determine which chips use which
21022     frequency, so the only way to determine is to look up the actual SOC
21023     designation and use the right value for that SOC.
21024
21025     Signed-off-by: Timur Tabi <timur@freescale.com>
21026
21027 commit f32f7fe7bd3a5bda3a476520f00e1aca7c2103a9
21028 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21029 Date:   Wed Apr 30 12:11:19 2008 -0500
21030
21031     ColdFire: Fix ethernet hang issue for mcf547x_8x
21032
21033     The ethernet hang is caused by receiving buffer in DRAM is not
21034     yet ready due to access cycles require longer time in DRAM.
21035     Relocate DMA buffer descriptors from DRAM to internal SRAM.
21036
21037     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21038
21039 commit 886d90176fc257e0ab4d0db05d11d0749bbed3ca
21040 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21041 Date:   Wed Apr 30 12:10:47 2008 -0500
21042
21043     ColdFire: Fix compilation issue caused by new changes in fsl_i2c.c
21044
21045     Signed-off-by: Luigi Comio Mantellini <luigi.mantellini@idf-hit.com>
21046     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21047
21048 commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
21049 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21050 Date:   Wed Apr 30 12:10:23 2008 -0500
21051
21052     ColdFire: Get information from the correct GCC
21053
21054     Signed-off-by: Kurt Mahan <kmahan@freescale.com>
21055     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21056
21057 commit 378e7ec95da4751ec8fe461baacab2bf7d2512a9
21058 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
21059 Date:   Wed Apr 30 18:02:59 2008 +0200
21060
21061     Fix warning in env_nand.c if compiled for DaVinci Schmoogie
21062
21063     Fix warnings
21064
21065     nv_nand.c: In function 'saveenv':
21066     env_nand.c:200: warning: passing argument 3 of 'nand_write' from incompatible pointer type
21067     env_nand.c: In function 'env_relocate_spec':
21068     env_nand.c:275: warning: passing argument 3 of 'nand_read' from incompatible pointer type
21069
21070     if compiled for davinci_schmoogie_config.
21071
21072     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
21073     Ack by: Sergey Kubushyn <ksi@koi8.net>
21074
21075 commit 33a4a70d48d622cc4950c60a84fec23b9421f23e
21076 Author: Anatolij Gustschin <agust@denx.de>
21077 Date:   Wed Apr 30 13:34:40 2008 +0200
21078
21079     Fix warnings while compiling net/net.c for MPC8610HPCD board
21080
21081     MPC8610HPCD board adds -O2 gcc option to PLATFORM_CPPFLAGS
21082     causing overriding default -Os option. New gcc (ver. 4.2.2)
21083     produces warnings while compiling net/net.c file with -O2
21084     option. The patch is an attempt to fix this.
21085
21086     Signed-off-by: Anatolij Gustschin <agust@denx.de>
21087
21088 commit 58b575e575c25fdf8c88141e145db201f3092149
21089 Author: Sascha Laue <Sascha.Laue@gmx.biz>
21090 Date:   Wed Apr 30 15:23:38 2008 +0200
21091
21092     lwmon5: fix offset error in sysmon0 POST
21093
21094     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
21095     Signed-off-by: Wolfgang Denk <wd@denx.de>
21096
21097 commit e7419b243a373de4ee042f7d4f45f66de787240d
21098 Author: Sascha Laue <Sascha.Laue@gmx.biz>
21099 Date:   Wed Apr 30 15:16:35 2008 +0200
21100
21101     lwmon5: fix manual merge error in POST
21102
21103     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
21104
21105 commit 42ffcec3f9eba010a662d5b42981812b6bebfb9a
21106 Author: Wolfgang Denk <wd@denx.de>
21107 Date:   Wed Apr 30 17:46:26 2008 +0200
21108
21109     cmd_nand.c: fix another 'incompatible pointer type' warning.
21110
21111     Signed-off-by: Wolfgang Denk <wd@denx.de>
21112
21113 commit de109d909707e2dfe806be5efc3cdb103b47c8ad
21114 Author: Wolfgang Denk <wd@denx.de>
21115 Date:   Wed Apr 30 17:25:07 2008 +0200
21116
21117     Makefile: fix parallel builds
21118
21119     This problem shows up with parallel builds only; it results in
21120     somewhat cryptic error messages like
21121
21122         $ JOBS=-j6 MAKEALL netstar
21123         Configuring for netstar board...
21124         arm-linux-ld: cannot find -lgeneric
21125         make[1]: *** [eeprom.srec] Error 1
21126
21127     A few boards (like netstar and voiceblue) need some libraries for
21128     building; however, the board Makefile does not contain any such
21129     dependencies which may cause problems with parallel builds. Adding
21130     such dependencies is difficult as we would also have to provide build
21131     rules, which already exist in the respective library Makefiles.
21132
21133     To solve this, we make sure that all libraries get built before the
21134     board code.
21135
21136     Signed-off-by: Wolfgang Denk <wd@denx.de>
21137
21138 commit 4f27098e5b0736989b13cd61d7bca94b3574cf5f
21139 Author: Stefan Roese <sr@denx.de>
21140 Date:   Wed Apr 30 14:51:36 2008 +0200
21141
21142     ppc4xx: Adapt Canyonlands fixed DDR2 setup to new DIMM module
21143
21144     This patch changes the Canyonlands/Glacier fixed DDR2 controller setup
21145     used for NAND booting to match the values needed for the new 512MB
21146     DIMM modules shipped with the productions boards:
21147
21148     Crucial: CT6464AC667.8FB
21149
21150     Signed-off-by: Stefan Roese <sr@denx.de>
21151
21152 commit ea9202a659dc75996facf1475f1866a19a9d3129
21153 Author: Stefan Roese <sr@denx.de>
21154 Date:   Wed Apr 30 10:49:43 2008 +0200
21155
21156     ppc4xx: Fix problem with DIMMs with 8 banks in 44x_spd_ddr2.c
21157
21158     This patch fixes a problem with DIMMs that have 8 banks. Now the
21159     MCIF0_MBxCF register will be setup correctly for this setup too.
21160
21161     This was noticed with the 512MB DIMM on Canyonlands/Glacier.
21162
21163     Signed-off-by: Stefan Roese <sr@denx.de>
21164
21165 commit 76617299358ebba260ecc02d33e8e75d8d13dd3b
21166 Author: Wolfgang Denk <wd@denx.de>
21167 Date:   Tue Apr 29 23:41:06 2008 +0200
21168
21169     Prepare v1.3.3-rc2, again.
21170
21171     Signed-off-by: Wolfgang Denk <wd@denx.de>
21172
21173 commit b7fcc4c13993782342cf5cd20d237a6281648a0b
21174 Author: Wolfgang Denk <wd@denx.de>
21175 Date:   Tue Apr 29 23:35:24 2008 +0200
21176
21177     Prepare v1.3.3-rc2
21178
21179     Signed-off-by: Wolfgang Denk <wd@denx.de>
21180
21181 commit f7b16a0a4d571dd33b2b5185a54f7ddc311f89d4
21182 Author: Wolfgang Denk <wd@denx.de>
21183 Date:   Tue Apr 29 23:32:20 2008 +0200
21184
21185     common/env_nand.c: fix one more incompatible pointer type issue
21186
21187     Signed-off-by: Wolfgang Denk <wd@denx.de>
21188
21189 commit ea6f66894f952229eebfc4ad03cd21fe5c8b3f0f
21190 Author: Wolfgang Denk <wd@denx.de>
21191 Date:   Tue Apr 29 21:33:08 2008 +0200
21192
21193     post/board/lwmon5/sysmon.c: fix manual merge error.
21194
21195     Signed-off-by: Wolfgang Denk <wd@denx.de>
21196
21197 commit 70a0f81412b0b18a6fd0bea960451bc6c2cca49a
21198 Author: Kumar Gala <galak@kernel.crashing.org>
21199 Date:   Tue Apr 29 12:54:59 2008 -0500
21200
21201     85xx: Add -mno-spe to e500/85xx builds
21202
21203     Newer gcc's might be configured to enable autovectorization by default.
21204     If we happen to build with one of those compilers we will get SPE
21205     instructions in random code.
21206
21207     -mno-spe disables the compiler for automatically generating SPE
21208     instructions without our knowledge.
21209
21210     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21211
21212 commit 8ea08e5be69436abcc95d3da114de4a2ff8a6ab5
21213 Author: Kumar Gala <galak@kernel.crashing.org>
21214 Date:   Tue Apr 29 10:18:34 2008 -0500
21215
21216     Update .gitignore for zlib.h
21217
21218     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21219
21220 commit 45239cf4152109caa925145ccd433529902df887
21221 Author: Kumar Gala <galak@kernel.crashing.org>
21222 Date:   Tue Apr 29 10:27:08 2008 -0500
21223
21224     85xx/86xx: Rename ext_refrec to timing_cfg_3 to match docs
21225
21226     All the 85xx and 86xx UM describe the register as timing_cfg_3
21227     not as ext_refrec.
21228
21229     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21230
21231 commit ef7d30b14394e4c4a153118f5845760cadada02a
21232 Author: Kumar Gala <galak@kernel.crashing.org>
21233 Date:   Tue Apr 29 10:28:34 2008 -0500
21234
21235     85xx/86xx: Rename DDR init address and init extended address register
21236
21237     Rename init_addr and init_ext_addr to match the docs between
21238     85xx and 86xx.  Both now use 'init_addr' and 'init_ext_addr'.
21239
21240     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21241
21242 commit cf6cc014270549684873a5972d2595052c468cb6
21243 Author: Kumar Gala <galak@kernel.crashing.org>
21244 Date:   Mon Apr 28 02:24:04 2008 -0500
21245
21246     85xx: Additional fixes and cleanup of MP code
21247
21248     * adjust __spin_table alignment to match ePAPR v0.94 spec
21249     * loop over all cpus when determing who is up.  This fixes an issue if
21250       the "boot cpu" isn't core0.  The "boot cpu" will already be in the
21251       cpu_up_mask so there is no harm
21252     * Added some protection in the code to ensure proper behavior.  These
21253       changes are explicitly needed but don't hurt:
21254       - Added eieio to ensure the "hot word" of the table is written after
21255         all other table updates have occurred.
21256       - Added isync to ensure we don't prefetch loading of table entries
21257         until we a released
21258
21259     These issues we raised by Dave Liu.
21260
21261     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21262
21263 commit b2d527a8b9fb50afccbaf79b5540952585cdc760
21264 Author: Yuri Tikhonov <yur@emcraft.com>
21265 Date:   Tue Apr 29 15:06:41 2008 +0200
21266
21267     lwmon5: minor clean-up to include/configs/lwmon5.h
21268
21269     LWMON5 DSPIC POST uses the watch-dog scratch register. So, make
21270     the CFG_DSPIC_TEST_ADDR definition more readable.
21271
21272     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21273
21274 commit f4c4d21a885ccc222fd0acdf653b683249e85117
21275 Author: Stefan Roese <sr@denx.de>
21276 Date:   Tue Apr 29 16:08:05 2008 +0200
21277
21278     ppc4xx: Fix CFG_MONITOR_LEN on Katmai failsave this time
21279
21280     Signed-off-by: Stefan Roese <sr@denx.de>
21281
21282 commit 138105efe1d2b1a40a3a97b4c1f85c2111bea2d8
21283 Author: Yuri Tikhonov <yur@emcraft.com>
21284 Date:   Tue Apr 29 13:32:45 2008 +0200
21285
21286     ppc flush_cache: add watch-dog triggering into the loops.
21287
21288     Some boards (e.g. lwmon5) need rather a frequent watch-dog
21289     kicking. Since the time it takes for the flush_cache() function
21290     to complete its job depends on the size of data being flushed, one
21291     may encounter watch-dog resets on such boards when, for example,
21292     download big files over ethernet.
21293
21294     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21295
21296 commit cab99d6f3281ab6784feccf98b9b425daa58418a
21297 Author: Stefan Roese <sr@denx.de>
21298 Date:   Tue Apr 29 14:44:54 2008 +0200
21299
21300     ppc4xx: Fix compilation warning in denali_spd_ddr2.c
21301
21302     Signed-off-by: Stefan Roese <sr@denx.de>
21303
21304 commit 4ec9d78fe5cd585d2868731fa108ca1e62730e70
21305 Author: Stefan Roese <sr@denx.de>
21306 Date:   Tue Apr 29 14:12:07 2008 +0200
21307
21308     ppc4xx: Fix Katmai CFG_MONITOR_LEN
21309
21310     Signed-off-by: Stefan Roese <sr@denx.de>
21311
21312 commit 85ad184b3b2b0f8af9228477303c55dca1b52ed7
21313 Author: Stefan Roese <sr@denx.de>
21314 Date:   Tue Apr 29 13:57:07 2008 +0200
21315
21316     ppc4xx: Complete remove bogus dflush()
21317
21318     Since the current dflush() implementation is know to have some problems
21319     (as seem on lwmon5 ECC init) this patch removes it completely and replaces
21320     it by using clean_dcache_range().
21321
21322     Tested on Katmai with ECC DIMM.
21323
21324     Signed-off-by: Stefan Roese <sr@denx.de>
21325
21326 commit 135846d6ecaad255ad28d93ebbb78b3d5da68cdc
21327 Author: Stefan Roese <sr@denx.de>
21328 Date:   Tue Apr 29 13:36:51 2008 +0200
21329
21330     ppc4xx: Change ECC initialization on lwmon5 to use clean_dcache_range()
21331
21332     As it seems the "old" ECC initialization routine by using dflush() didn't
21333     write all lines in the dcache back to memory on lwmon5. This could lead
21334     to ECC error upon Linux booting. This patch changes the program_ecc()
21335     routine to now use clean_dcache_range() instead of dflush().
21336     clean_dcache_range() uses dcbst which is exactly what we want in this
21337     case.
21338
21339     Since dflush() is known is cause problems, this routine will be
21340     removed completely and replaced by clean_dcache_range() with an
21341     additional patch.
21342
21343     Signed-off-by: Stefan Roese <sr@denx.de>
21344
21345 commit 18ec19e4aa1a045dfbf2c7c2e33963488e92d757
21346 Author: Yuri Tikhonov <yur@emcraft.com>
21347 Date:   Mon Apr 28 18:19:34 2008 +0200
21348
21349     POST: fix Makefiles for mpc8xx, lwmon, and netta POSTs.
21350
21351     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21352
21353 commit eea5a743a2193ef2a05b9bc6dc447ba241416f35
21354 Author: Markus Brunner <super.firetwister@googlemail.com>
21355 Date:   Mon Apr 28 08:47:47 2008 +0200
21356
21357     ppc4xx: Fixup ebc clock in FDT for 405GP/EP
21358
21359     On ppc405EP and ppc405GP (at least) the ebc is directly attached to the plb
21360     and not to the opb. This patch will try to fixup /plb/ebc if /plb/opb/ebc
21361     doesn't exist.
21362
21363     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
21364
21365 commit 2ef7503a593c77a80c2a054011970227c4b62774
21366 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21367 Date:   Thu Apr 24 07:57:17 2008 +0200
21368
21369     NE2000: Fix regresssion introduced by e710185aae90 on non AX88796
21370
21371     Move non-inlied functions into specific drivers file
21372     Set get_prom as weak
21373
21374     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21375     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
21376     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21377
21378 commit 40cb90ee2b97db1f697e1b54f19a548ffc96d71b
21379 Author: Guennadi Liakhovetski <lg@denx.de>
21380 Date:   Thu Apr 3 17:04:19 2008 +0200
21381
21382     net: make ARP timeout configurable
21383
21384     Currently the timeout waiting for an ARP reply is hard set to 5 seconds.
21385     On i.MX31ADS due to a hardware "strangeness" up to four first IP packets
21386     to the boards get lost, which typically are ARP replies. By configuring
21387     the timeout to a lower value we significantly improve the first network
21388     transfer time on this board. The timeout is specified in milliseconds,
21389     later internally it is converted to deciseconds, because it has to be
21390     converted to hardware ticks, and CFG_HZ ranges from 900 to 27000000 on
21391     different boards.
21392
21393     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
21394     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21395
21396 commit 13e0b8f7ca9d29267bf01d7a01e521a0517adce1
21397 Author: Guennadi Liakhovetski <lg@denx.de>
21398 Date:   Thu Apr 3 13:36:18 2008 +0200
21399
21400     minor cs8900 driver clean up
21401
21402     Remove a redundant register definition, clean up some coding style
21403     violations.
21404
21405     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
21406     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21407
21408 commit 707fa917cca24c0f22776f48ac4a6fa5e5189b10
21409 Author: Wolfgang Denk <wd@denx.de>
21410 Date:   Mon Apr 28 22:01:04 2008 +0200
21411
21412     jffs2_1pass.c: fix incompatible pointer type warning
21413
21414     Signed-off-by: Wolfgang Denk <wd@denx.de>
21415
21416 commit 6aee00f5e6a1cf29d8fe8fdc9b7252fbd31115d9
21417 Author: Sascha Laue <Sascha.Laue@gmx.biz>
21418 Date:   Tue Apr 1 10:10:18 2008 +0200
21419
21420     lwmon5: update dsPIC POST spezification
21421
21422     The specification for the lwmon5 board dsPIC POST got changed.
21423     Also add defines for the temperatures  and voltages.
21424
21425     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
21426
21427 commit 3e4615ab7ff38781a5dd80d0f49b9af55b4fe0b7
21428 Author: Sascha Laue <Sascha.Laue@gmx.biz>
21429 Date:   Tue Apr 1 15:13:03 2008 +0200
21430
21431     Fix watchdog POST for lwmon5
21432
21433     If the hardware watchdog detects a voltage error, the watchdog sets
21434     GPIO62 to low. The watchdog POST has to detect this low level.
21435
21436     Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
21437     Signed-off-by: Wolfgang Denk <wd@denx.de>
21438
21439 commit dd5748bcd669f46aeb6686c1b341323843738ccc
21440 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
21441 Date:   Mon Apr 28 14:37:14 2008 +0200
21442
21443     rtl8169: fix compiler warnings
21444
21445     Fix multiple compiler warnings related to argument type mismatch.
21446
21447     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
21448
21449 commit 413bf586266f86c6bdbc6c6d140f67a15af4c4f1
21450 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
21451 Date:   Mon Apr 28 14:36:06 2008 +0200
21452
21453     IDE: fix compiler warnings
21454
21455     The IDE driver can use 32-bit addresses in LBA mode, in which case it
21456     spits multiple warnings during compilation. Fix them.
21457
21458     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
21459
21460 commit db9084de28c46ac81c8f681722cb0d7411be4d7f
21461 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
21462 Date:   Mon Apr 28 14:35:57 2008 +0200
21463
21464     LinkStation: fix compiler warning, add a maintainer
21465
21466     out_8 wants a pointer to an unsigned as the first argument. Add a
21467     maintainer for Linkstation boards.
21468
21469     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
21470
21471 commit c71abba3cb67b063f789f17abf6c7447727c0cd5
21472 Author: Wolfgang Denk <wd@denx.de>
21473 Date:   Mon Apr 28 14:55:12 2008 +0200
21474
21475     cmd_nand.c: fix "differ in signedness" problem
21476
21477     Signed-off-by: Wolfgang Denk <wd@denx.de>
21478
21479 commit f2c288a35341ad02ac03b1563d786763c9c8f159
21480 Author: Wolfgang Denk <wd@denx.de>
21481 Date:   Mon Apr 28 12:48:47 2008 +0200
21482
21483     pcnet.c: fix a merge issue
21484
21485     Signed-off-by: Wolfgang Denk <wd@denx.de>
21486
21487 commit 4ca79f477ebd25a6872e6196d80e2f5eff441376
21488 Author: Wolfgang Denk <wd@denx.de>
21489 Date:   Mon Apr 28 12:08:18 2008 +0200
21490
21491     NAND: fix some strict-aliasing compiler warnings
21492
21493     Signed-off-by: Wolfgang Denk <wd@denx.de>
21494
21495 commit 5cd0130ecc79d6dcde1b1ac253abc457ca8c3115
21496 Author: Stefan Roese <sr@denx.de>
21497 Date:   Mon Apr 28 11:37:14 2008 +0200
21498
21499     ppc4xx: Fix compile warning of hcu4 board
21500
21501     Signed-off-by: Stefan Roese <sr@denx.de>
21502
21503 commit 5379cd15dd6c74ac51499bce3455bf6e0cdbe9f1
21504 Author: Wolfgang Denk <wd@denx.de>
21505 Date:   Mon Apr 28 11:31:23 2008 +0200
21506
21507     MPC8323ERDB: fix implicit declaration of function 'mac_read_from_eeprom'
21508
21509     Signed-off-by: Wolfgang Denk <wd@denx.de>
21510
21511 commit 7602ed50a2f0ef3dc8d7da93f116de50288f5b59
21512 Author: Guennadi Liakhovetski <lg@denx.de>
21513 Date:   Mon Apr 28 00:25:32 2008 +0200
21514
21515     mx31ads: fix loadaddr environment variable define
21516
21517     Arithmetic expressions do not get evaluated under stringification. Remove
21518     default network configuration, add DHCP command support. Thanks to Felix
21519     Radensky for reporting.
21520
21521     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
21522
21523 commit 144eec777ac07bcb12bd38245a5a289f694a7f98
21524 Author: Wolfgang Denk <wd@denx.de>
21525 Date:   Mon Apr 28 10:55:24 2008 +0200
21526
21527     katmai: fix section overlap problem
21528
21529     Since we didn't want to remove features from the configuration, we
21530     decided to increase the U-Boot image size (add one flash sector).
21531
21532     Also changed the default environment definition to make it
21533     independent of such changes.
21534
21535     Signed-off-by: Wolfgang Denk <wd@denx.de>
21536     Acked-by: Stefan Roese <sr@denx.de>
21537
21538 commit 941d696d25624e3cc65ebf924199541acf52d74e
21539 Author: Wolfgang Denk <wd@denx.de>
21540 Date:   Mon Apr 28 10:55:24 2008 +0200
21541
21542     katmai: fix section overlap problem
21543
21544     Since we didn't want to remove features from the configuration, we
21545     decided to increase the U-Boot image size (add one flash sector).
21546
21547     Also changed the default environment definition to make it
21548     independent of such changes.
21549
21550     Signed-off-by: Wolfgang Denk <wd@denx.de>
21551     Acked-by: Stefan Roese <sr@denx.de>
21552
21553 commit 03c6cd39f9184143fd8c537872b3d4b2e03f1466
21554 Author: Kumar Gala <galak@kernel.crashing.org>
21555 Date:   Sat Apr 26 11:44:44 2008 -0500
21556
21557     post: Fix building with O=
21558
21559     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21560
21561 commit fd7531c1e9d56b9e5e06d2c0e02b798dab72f70c
21562 Author: Wolfgang Denk <wd@denx.de>
21563 Date:   Sat Apr 26 01:55:00 2008 +0200
21564
21565     Prepare v1.3.3-rc1
21566
21567     Signed-off-by: Wolfgang Denk <wd@denx.de>
21568
21569 commit 19cf2ec90d8ce52da60c1693693c4048cb810967
21570 Author: Wolfgang Denk <wd@denx.de>
21571 Date:   Sat Apr 26 01:25:39 2008 +0200
21572
21573     post/Makefile: make sure to use the correct flags
21574
21575     ARFLAGS was not set, which caused "ppc_8xx-ar: creating libgenpost.a"
21576     messages to be printed.
21577
21578     Signed-off-by: Wolfgang Denk <wd@denx.de>
21579
21580 commit 7ed4011733e7dca8f64d21291e4294662f7dc3e2
21581 Author: Wolfgang Denk <wd@denx.de>
21582 Date:   Sat Apr 26 00:34:42 2008 +0200
21583
21584     Coding Style cleanup, update CHANGELOG
21585
21586     Signed-off-by: Wolfgang Denk <wd@denx.de>
21587
21588 commit f9204e15173834ff8d123e36279ce49c3c6c74fc
21589 Author: Magnus Lilja <lilja.magnus@gmail.com>
21590 Date:   Sun Apr 20 10:38:12 2008 +0200
21591
21592     i.MX31: Enable SPI and MC13783/RTC support for the Litekit board
21593
21594     This patch enables SPI and MC13783/RTC support for the Litekit board.
21595
21596     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
21597
21598 commit f97abbfb47d9e407354e157cae3f6369e460cd37
21599 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
21600 Date:   Fri Apr 25 01:08:32 2008 -0500
21601
21602     MPC8544DS: decode pcie3 end-point configuration correctly.
21603
21604     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
21605     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21606
21607 commit 292188e15523c165c4269403fdcd33c26d89176e
21608 Author: Roy Zang <tie-fei.zang@freescale.com>
21609 Date:   Fri Apr 25 00:55:09 2008 -0500
21610
21611     MPC8544DS: Removes the unknown flash message information
21612
21613     This patch removes the unknown flash message information:
21614     '## Unknown FLASH on Bank 1 - Size = 0xdeadbeef = -286261248 MB'
21615     This unknown flash message is caused by PromJet.
21616     Some of the board user is unhappy with this information.
21617
21618     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
21619     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21620
21621 commit b2115757403beef0ac6bc2c6c3b24f31256a75d2
21622 Author: Kim Phillips <kim.phillips@freescale.com>
21623 Date:   Thu Apr 24 14:07:38 2008 -0500
21624
21625     mpc83xx: bump loadaddr over fdtaddr to 0x500000
21626
21627     this seems as a good compromise between human memory, typing,
21628     and last but not least, to accommodate for current and future kernel bloat.
21629
21630     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21631     Acked-by: Dave Liu <daveliu@freescale.com>
21632
21633 commit be5a7190265a34d968578ff266549c60f6f57654
21634 Author: Dave Liu <r63238@freescale.com>
21635 Date:   Tue Apr 15 13:12:23 2008 +0800
21636
21637     mpc83xx: clean up the readme for 83xx boards
21638
21639     1. correct the typo
21640     2. correct the memory map for 837xerdb board
21641
21642     Signed-off-by: Dave Liu <daveliu@freescale.com>
21643
21644 commit bcae52a6819ee9dad5d0d96cd7daeb20108d45ff
21645 Author: Dave Liu <r63238@freescale.com>
21646 Date:   Tue Apr 15 13:11:11 2008 +0800
21647
21648     mpc83xx: remove the unused CPM's stuff
21649
21650     The MPC83xx family never have CPM block, so remove it from 83xx.
21651
21652     Signed-off-by: Dave Liu <daveliu@freescale.com>
21653
21654 commit c63ad6325a8ac0097a54b418a3288926b0484b18
21655 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21656 Date:   Fri Apr 18 16:29:40 2008 +0200
21657
21658     cfi-flash: Add CFG_FLASH_AUTOPROTECT_LIST
21659
21660     This patch adds a configurable flash auto protection list that can be used
21661     to make U-Boot protect flash regions in flash_init().
21662
21663     The idea has been discussed on the u-boot mailing list starting
21664     on Nov 18th, 2007.
21665
21666     Even this patch brings a new feature it is used as a bugfix for 4xx
21667     platforms where flash_init() does not completely protect the
21668     monitor's flash range in all situations.
21669
21670     U-Boot protects the flash range from CFG_MONITOR_BASE to
21671     (CFG_MONITOR_BASE + monitor_flash_len  - 1) by default. This does not
21672     include the reset vector at 0xfffffffc.
21673
21674     Example:
21675     #define CFG_FLASH_AUTOPROTECT_LIST {{0xfff80000, 0x80000}}
21676
21677     This config option will auto protect the last 512k of flash that
21678     contains the bootloader on board like APC405 and PMC405.
21679
21680     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21681
21682 commit d0d91ae3acb4f29d1a2a3a766747478ed54e2848
21683 Author: Stefan Roese <sr@denx.de>
21684 Date:   Fri Apr 25 13:59:03 2008 +0200
21685
21686     ppc4xx: Remove double defines in lwmon5.h
21687
21688     introduced with latest lwmon5/POST merge
21689
21690     Signed-off-by: Stefan Roese <sr@denx.de>
21691
21692 commit 7590378fb9c686709492ceb142825cd058255956
21693 Author: Bartlomiej Sieka <tur@semihalf.com>
21694 Date:   Fri Apr 25 13:54:02 2008 +0200
21695
21696     Use watchdog-aware functions when calculating hashes of images - take two
21697
21698     Some files didn't get updated properly with the "Use watchdog-aware
21699     functions when calculating hashes of images" commit, this commit
21700     fixes this.
21701
21702     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
21703     Signed-off-by: Wolfgang Denk <wd@denx.de>
21704
21705 commit 8e048c438e20ec89b49da5f085f8f756eba6e587
21706 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21707 Date:   Fri Apr 25 12:01:39 2008 +0200
21708
21709     ppc4xx: Add bootcount limit handling for APC405 boards
21710
21711     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21712
21713 commit 1de6b28be5d107ae90ad7a8a43653c49966e8afe
21714 Author: Bartlomiej Sieka <tur@semihalf.com>
21715 Date:   Fri Apr 25 12:10:09 2008 +0200
21716
21717     Use watchdog-aware functions when calculating hashes of images
21718
21719     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
21720
21721 commit d00ce09040d3100e2c7998ef56db62c2d20d9ee3
21722 Author: Wolfgang Denk <wd@denx.de>
21723 Date:   Fri Apr 25 12:44:08 2008 +0200
21724
21725     USB: fix more GCC 4.2.x aliasing warnings
21726
21727     Signed-off-by: Wolfgang Denk <wd@denx.de>
21728     Acked-by: Markus Klotzbuecher <mk@denx.de>
21729
21730 commit aff4f86448f6586930f0a3be7fc4b0ddcf450980
21731 Author: Wolfgang Denk <wd@denx.de>
21732 Date:   Fri Apr 25 12:41:53 2008 +0200
21733
21734     lib_generic/crc32.c: add missing #include <watchdog.h>
21735
21736     Signed-off-by: Wolfgang Denk <wd@denx.de>
21737
21738 commit 03ccdbcd5602610cea4bd0db7e48e1ef881a51ef
21739 Author: Wolfgang Denk <wd@denx.de>
21740 Date:   Fri Apr 25 11:52:21 2008 +0200
21741
21742     lib_generic/crc32.c: fix compile problem
21743
21744     Signed-off-by: Wolfgang Denk <wd@denx.de>
21745
21746 commit 24bfedbd0be4dcaa94861407820d6a70fea7e03b
21747 Author: Stefan Roese <sr@denx.de>
21748 Date:   Tue Apr 22 12:20:32 2008 +0200
21749
21750     ppc4xx: Pass PCIe root-complex/endpoint configuration to Linux via the fdt
21751
21752     The PCIe root-complex/endpoint setup as configured via the "pcie_mode"
21753     environment variable will now get passed to the Linux kernel by setting
21754     the device_type property of the PCIe device tree node. For normal root-
21755     complex configuration it will keep its defaults value of "pci" and for
21756     endpoint configuration it will get changed to "pci-endpoint".
21757
21758     Signed-off-by: Stefan Roese <sr@denx.de>
21759
21760 commit eb0615bf600d2caf5aa2958f47f5ba364c52d5e7
21761 Author: Yuri Tikhonov <yur@emcraft.com>
21762 Date:   Thu Apr 24 10:30:53 2008 +0200
21763
21764     lwmon5: watchdog POST fix
21765
21766     Use the GPT0_MASKx registers as the temporary storage for watch-dog
21767     timer POST test instead of GPT0_COMPx. The latter
21768     (GPT0_COMP1..GPT0_COMP5) are used for the log-buffer header.
21769
21770     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
21771     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21772
21773 commit 78e488298824bc150b5f3ebf7958cd71fa2af1b9
21774 Author: Kim Phillips <kim.phillips@freescale.com>
21775 Date:   Mon Apr 21 18:10:14 2008 -0500
21776
21777     lib_ppc: Revert "Make MPC83xx one step closer to full relocation."
21778
21779     This reverts commit 70431e8a7393b6b793f77957f95b999fc9a269b8 which has
21780     proven problematic getting right from the start at least on 83xx and
21781     4xx.
21782
21783     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21784
21785 commit a99715b8ebfc500f3f40e01b36b64d473938443d
21786 Author: Detlev Zundel <dzu@denx.de>
21787 Date:   Fri Apr 18 14:50:01 2008 +0200
21788
21789     Realining some header definitions.
21790
21791     Signed-off-by: Detlev Zundel <dzu@denx.de>
21792
21793 commit 4acbc6c7f993cae409c424615415a3e76820f13d
21794 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21795 Date:   Thu Apr 24 07:57:16 2008 +0200
21796
21797     NE2000: coding style cleanup
21798
21799     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21800
21801 commit b4aff1ffaf7120032c653357c007faa14f74d29d
21802 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21803 Date:   Wed Apr 23 00:11:47 2008 +0900
21804
21805     qemu-mips.h: Add CFI support
21806
21807     CONFIG_ENV_OVERWRITE is also added.
21808
21809     This patch is originally created by Jean-Christophe PLAGNIOL-VILLARD.
21810
21811     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21812     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21813
21814 commit 4a1f11b45a82908e5b0df602d703082413a6b7ed
21815 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21816 Date:   Tue Apr 22 22:47:27 2008 +0900
21817
21818     doc/README.mips: Add MIPS notes
21819
21820     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21821
21822 commit 215b01bba8bc662d35f72b084700b192d367dfb4
21823 Author: Bartlomiej Sieka <tur@semihalf.com>
21824 Date:   Tue Apr 22 12:27:56 2008 +0200
21825
21826     Add support for calculating hashes with watchdog triggering
21827
21828     Implement watchodg-aware variants of hash calculation functions:
21829     - crc32_wd()
21830     - md5_wd()
21831     - sha1_csum_wd()
21832     The above functions calculate the hash of the input buffer in chunks,
21833     triggering the watchdog after processing each chunk. The chunk size
21834     is given as a function call parameter.
21835
21836     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
21837
21838 commit 8875e3abab986df930167ce5c1ac4f95dcacc81c
21839 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
21840 Date:   Wed Apr 23 11:02:12 2008 +0900
21841
21842     qemu-mips: Cleanup whitespace, indentation, etc.
21843
21844     No functional change.
21845
21846     This patch was originally submitted by Jean-Christophe PLAGNIOL-VILLARD.
21847     Then I re-created from scratch, and changed more lines than the original.
21848
21849     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21850     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21851
21852 commit 386563197e3a50b0e97ad9aae87f57d9aab909ab
21853 Author: Vlad Lungu <vlad@comsys.ro>
21854 Date:   Wed Oct 10 23:02:09 2007 +0300
21855
21856     Fixed pcnet io_base
21857
21858     Bus and phys address are not always the same
21859
21860     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
21861
21862 commit 11ea26fd1cb63c91403fe04a6eea975cd418603f
21863 Author: Wolfgang Denk <wd@denx.de>
21864 Date:   Thu Apr 24 23:44:26 2008 +0200
21865
21866     drivers/net/pcnet.c: Coding Style cleanup.
21867
21868     Signed-off-by: Wolfgang Denk <wd@denx.de>
21869
21870 commit 899ef7b84578b7cafadfd78488c2fd2aac93f636
21871 Author: Vlad Lungu <vlad@comsys.ro>
21872 Date:   Wed Oct 10 23:04:23 2007 +0300
21873
21874     Added Am79C970A chip id to pcnet
21875
21876     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
21877
21878 commit 17c9de6bb33f676eb776dcbfc46fc1b14c3871a5
21879 Author: Magnus Lilja <lilja.magnus@gmail.com>
21880 Date:   Sun Apr 20 10:35:03 2008 +0200
21881
21882     i.MX31: Fix architecture numbers for ADS and Litekit boards
21883
21884     Correct the Linux architecture number for i.MX31 Litekit and ADS boards.
21885
21886     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
21887
21888 commit e7ae84d6c7288790e88639f57cb60daf89c11369
21889 Author: Magnus Lilja <lilja.magnus@gmail.com>
21890 Date:   Sun Apr 20 10:36:36 2008 +0200
21891
21892     i.MX31: Use symbolic names for Litekit membases.
21893
21894     Use symbolic names instead of hard coded addresses for Litekit membases.
21895
21896     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
21897
21898 commit 2ef1d9b6030d02f576b1bcd9fec948e602522012
21899 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21900 Date:   Sat Apr 19 17:59:20 2008 +0200
21901
21902     Fix show_boot_progress prototype
21903
21904     in commit fad634071 "make show_boot_progress () weak."
21905     show_boot_progress is supposed to be declared as weak but declared as
21906     inline instead.
21907
21908     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21909
21910 commit edbed247a14d70b94958010f736621212285de91
21911 Author: Bartlomiej Sieka <tur@semihalf.com>
21912 Date:   Fri Apr 18 12:39:23 2008 +0200
21913
21914     Memory footprint optimizations
21915
21916     As suggested by Wolfgang Denk:
21917     - image printing functions:
21918       - remove wrappers
21919       - remove indentation prefix from functions' signatures
21920     - merge getenv_verify and getenv_autostart into one parametrized function
21921
21922     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
21923
21924 commit 0a0b606faaec4afb3f750b09aa4df1e40a39dcb8
21925 Author: Guennadi Liakhovetski <lg@denx.de>
21926 Date:   Tue Apr 15 13:33:11 2008 +0200
21927
21928     MX31ADS environment variable update, spi and rtc support
21929
21930     Update MX31ADS default environment to better match the flash layout and
21931     the memory map, support SPI and RTC.
21932
21933     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
21934
21935 commit 022f12163595b9a55380c6d77c3119b93d6a9a4b
21936 Author: Kumar Gala <galak@kernel.crashing.org>
21937 Date:   Mon Apr 21 09:28:36 2008 -0500
21938
21939     85xx: Round up frequency calculations to get reasonable output
21940
21941     eg. because of rounding error we can get 799Mhz instead of 800Mhz.
21942
21943     Introduced DIV_ROUND_UP and roundup taken from linux kernel.
21944
21945     Signed-off-by: Dejan Minic <minic@freescale.com>
21946     Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
21947     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21948     Acked-by: Andy Fleming <afleming@freescale.com>
21949
21950 commit 876b8f978982216ab4a22dcd9efddfcd9b0e04e6
21951 Author: Kumar Gala <galak@kernel.crashing.org>
21952 Date:   Wed Apr 23 16:58:04 2008 -0500
21953
21954     fsl_pci: Only modify registers if we have them
21955
21956     pme_msg_det exists only on PCIe controllers only set it if we are a "bridge".
21957
21958     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21959
21960 commit 83fe32334337def160b302aa9d152d808bfcc68e
21961 Author: Markus Klotzbücher <mk@denx.de>
21962 Date:   Wed Apr 23 10:57:33 2008 +0200
21963
21964     USB: remove a cpu bug workaround for an unsupported architecture.
21965
21966     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
21967
21968 commit f957576cb53e6cfab412709cfc8db1afd39d21c3
21969 Author: Markus Klotzbücher <mk@denx.de>
21970 Date:   Wed Apr 23 10:53:23 2008 +0200
21971
21972     USB: fix those pesky aliasing warnings issued by gcc-4.2
21973
21974     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
21975     Signed-off-by: Detlev Zundel <dzu@denx.de>
21976
21977 commit 89cdab788f3716b335fefb60b836ebcf975aceab
21978 Author: Mike Frysinger <vapier@gentoo.org>
21979 Date:   Mon Mar 31 11:02:01 2008 -0400
21980
21981     crc32: use uint32_t rather than unsigned long
21982
21983     The envcrc.c does sizeof(unsigned long) when calculating the crc, but
21984     this is done with the build toolchain instead of the target tool
21985     chain, so if the build is a 64bit system but the target is 32bits,
21986     the size will obviously be wrong. This converts all unsigned long
21987     stuff related to crc32 to uint32_t types. Compile tested only: output
21988     of ./tools/envcrc when run on a 32bit build system matches that of a
21989     64bit build system.
21990
21991     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21992     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21993
21994 commit 80c40b765b3642ddb9f3392b7898715aab44a29c
21995 Author: Dirk Behme <dirk.behme@googlemail.com>
21996 Date:   Wed Mar 26 09:53:29 2008 +0100
21997
21998     ARM: Davinci: Fix DM644x timer overflow handling and cleanup
21999
22000     Fix ARM based DaVinci DM644x timer overflow handling and cleanup timer code.
22001
22002     Changes:
22003
22004     - Remove *_masked() functions as noted by Wolfgang
22005
22006     - Adapt register naming to recent TI spec (sprue26, March 2007)
22007
22008     - Fix reset_timer() handling
22009
22010     - 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.
22011
22012     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
22013
22014     - Remove software division of timer count value (DIV(x) macro) and do it in hardware (TIM_CLK_DIV).
22015
22016     Many thanks to Troy Kisky <troy.kisky@boundarydevices.com> and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for the hints & testing!
22017
22018     Patch is compile tested with davinci_dvevm & sonata & schmoogie configuration and tested by Pieter on DaVinci EVM hardware.
22019
22020     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
22021     Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
22022
22023 commit a6e6fc610e39dec41b79680413d4ed38145bd3c8
22024 Author: Sergei Poselenov <sposelenov@emcraft.com>
22025 Date:   Wed Apr 9 16:09:41 2008 +0200
22026
22027     Added watchdog triggering calls in the "mtest" test function.
22028
22029     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
22030
22031 commit d32a874b9b4c1e949ee38be7790f6bf6d6143451
22032 Author: Yuri Tikhonov <yur@emcraft.com>
22033 Date:   Sun Apr 6 19:19:14 2008 +0200
22034
22035     lwmon5 watchdog: limit trigger rate
22036
22037     Limit the rate of h/w watch-dog triggering on the LWMON5 board by
22038     the CONFIG_WD_MAX_RATE value.
22039
22040     Note that an earlier version of this patch which used microseconds
22041     instead of ticks dis not work. The problem was that we used
22042     usec2ticks() to convert microseconds into ticks. usec2ticks() uses
22043     get_tbclk(), which in turn calls get_sys_info(). It turns out that
22044     this function does a lot of prolonged operations (like divisions)
22045     which take too much time so we do not trigger the watchdog in time,
22046     and it resets the system.
22047
22048     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
22049
22050 commit 2d2b994a30bb100774dc747ae9865b7f95285a88
22051 Author: Yuri Tikhonov <yur@emcraft.com>
22052 Date:   Mon Mar 31 10:51:37 2008 +0200
22053
22054     POST: move CONFIG_POST to Makefiles
22055
22056     Introduce the new logical option CONFIG_HAS_POST which is set when the
22057     platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles
22058     to determine should the POST libs be compiled for the selected target
22059     platform, or not.
22060
22061     To avoid breaking u-boot linking process, the empty post/libpost.a file is
22062     created for platforms which do not have POSTs.
22063
22064     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
22065     Signed-off-by: Wolfgang Denk <wd@denx.de>
22066
22067 commit 0a51e9248e2d27e0a02ef1e740c576ce90a39ee1
22068 Author: Yuri Tikhonov <yur@emcraft.com>
22069 Date:   Mon Mar 31 10:49:34 2008 +0200
22070
22071     POST: preparations for moving CONFIG_POST to Makefiles
22072
22073     Remove CONFIG_POST ifdefs from the post/ source files.
22074
22075     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
22076     Signed-off-by: Wolfgang Denk <wd@denx.de>
22077
22078 commit 5d40d4430d9ebc8434c6f0798594836e1efa7a1e
22079 Author: Stefan Roese <sr@denx.de>
22080 Date:   Tue Apr 22 14:14:20 2008 +0200
22081
22082     ppc4xx: Fix Canyonlands and Glacier default environment for fdt usage
22083
22084     This patch fixes the Canyonlands and Glacier default environment to better
22085     fit to the arch/powerpc device-tree kernels. The variables dealing with
22086     arch/ppc booting are removed, since these boards are supported only in
22087     arch/powerpc. Glacier uses the same config file as Canyonlands.
22088
22089     Also, the Glacier now uses non-FPU rootpath, since 460GT has no FPU.
22090
22091     Signed-off-by: Stefan Roese <sr@denx.de>
22092
22093 commit b789cb4a4c0c1deff82053539cfe29a9c6e23f8b
22094 Author: Stefan Roese <sr@denx.de>
22095 Date:   Tue Apr 22 14:06:42 2008 +0200
22096
22097     ppc4xx: Small coding style cleanup for the latest esd patches
22098
22099     Signed-off-by: Stefan Roese <sr@denx.de>
22100
22101 commit 79941d63bc03aed8c48d7602f18217cc200ee931
22102 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22103 Date:   Mon Apr 21 18:01:07 2008 +0200
22104
22105     ppc4xx: Update CPU strapping for PMC440 boards
22106
22107     This patch removes the temporary 'test' strapping option
22108     of the sbe command. The '667' strapping option now uses
22109     a PLB/PCI divider of 3.
22110
22111     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22112
22113 commit f00cf3193a6635355b121e90debb2f54e777e7da
22114 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22115 Date:   Mon Apr 21 14:42:21 2008 +0200
22116
22117     ppc4xx: Remove unused APC405 strataflash driver
22118
22119     The APC405 board support has been migrated to use the common
22120     CFI flash driver.
22121
22122     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22123
22124 commit 1c686676a86473bbd92151f0544e109413f6ed06
22125 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22126 Date:   Mon Apr 21 14:42:17 2008 +0200
22127
22128     ppc4xx: Update APC405 configuration
22129
22130     - enable esd's auto_update mechanism
22131     - support alternative flash layout on rev. 1.8 boards
22132     - update default environment
22133     - use common CFI flash driver
22134     - coding style cleanup
22135
22136     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22137
22138 commit 0b9872515a521bf7866dc24b85ddce708e60d702
22139 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22140 Date:   Mon Apr 21 14:42:11 2008 +0200
22141
22142     ppc4xx: Update APC405 board support
22143
22144     - enable esd's auto_update mechanism
22145     - fix LCD support on latest hardware revision (uses other LCD controller)
22146     - support alternative flash layout on rev. 1.8 boards
22147     - coding style cleanup
22148
22149     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22150
22151 commit 83975d02e225e231960784972e7820a8b303756b
22152 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22153 Date:   Mon Apr 21 14:42:06 2008 +0200
22154
22155     ppc4xx: update esd's common auto_update code for 405 boards
22156
22157     - Coding style cleanup (long lines)
22158     - improve handling of protected flash regions
22159     - remove dead code
22160
22161     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22162
22163 commit b9233fe5d59cb25d975071616bd1035d6f4c2285
22164 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22165 Date:   Mon Apr 21 14:41:59 2008 +0200
22166
22167     ppc4xx: Update esd's common LCD code for 405 boards
22168
22169     - Coding style cleanup (long lines)
22170     - Add s1d13505 support
22171     - Make some functions return a result code instead of void
22172
22173     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22174
22175 commit dea68189424c3f1242427a8146a3861bf093173c
22176 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22177 Date:   Mon Apr 21 11:36:55 2008 +0200
22178
22179     ppc4xx: Update FPGA image for APC405 boards
22180
22181     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22182
22183 commit 2a05b152924acfcec3b037693329e517e6d3578f
22184 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22185 Date:   Mon Apr 21 11:36:08 2008 +0200
22186
22187     ppc4xx: Update bootlogo for APC405 boards
22188
22189     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22190
22191 commit 8deafdc6ad368368cf03b58cab4bd39f45d64b5c
22192 Author: Stefan Roese <sr@denx.de>
22193 Date:   Fri Apr 18 16:41:31 2008 +0200
22194
22195     ppc4xx: Add dcache_enable() for 440
22196
22197     dcache_enable() was missing for 440 and the patch
22198     017e9b7925f74878d0e9475388cca9bda5ef9482 ["allow ports to override bootelf
22199     "] behavior uses this function.
22200
22201     Note: Currently the cache handling functions like
22202     d/icache_disable/enable() are NOP's on 440. This may be changed in the
22203     future.
22204
22205     Signed-off-by: Stefan Roese <sr@denx.de>
22206
22207 commit a49e0d177a0749614b316ec847fb623f09c82c07
22208 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22209 Date:   Mon Apr 21 11:19:04 2008 +0200
22210
22211     video: Add missing free for logo memory
22212
22213     This patch adds two missing free()s.
22214
22215     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22216
22217 commit 84c01d3a05ae3aca5f7c0c13a31ca72ba1199a42
22218 Author: Troy Kisky <troy.kisky@boundarydevices.com>
22219 Date:   Mon Sep 24 16:41:43 2007 -0700
22220
22221     PATCH - Fix oob data copied into supplied buffer
22222
22223     This patch correctly sets the oobavail variable
22224     and fixes a bug where the oob data was not valid when
22225     there where multiple groups in oobfree.
22226
22227     First segment fixes a typo
22228     Second segment fixes a bug where oob data may be copied incorrectly.
22229     Third segment adds an error message when exiting due to write protect.
22230     Forth segment fixes a bug where oobavail may be set incorrectly.
22231
22232     Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
22233
22234 commit e1d09680f64b452adde89ed9fe28a77c56bedc9a
22235 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22236 Date:   Fri Apr 18 17:24:32 2008 +0200
22237
22238     ppc4xx: Fix sys_get_info() for 405GP(r)
22239
22240     This patch assigns the correct EBC clock for 405GP(r) CPUs
22241     to PPC4xx_SYS_INFO structure. Without this patch U-Boot
22242     uses an uninitialized EBC clock in its startup message.
22243
22244     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22245
22246 commit dc7746d86d2a3dfe01ab9a70cb427f92adc303c7
22247 Author: Wolfgang Denk <wd@denx.de>
22248 Date:   Sun Apr 20 15:39:38 2008 -0700
22249
22250     Makefile: remove nand_spl/System.map when cleaning up.
22251
22252 commit d9a42c0ace4d4f9cb061d62a7265d1780f90447b
22253 Author: Wolfgang Denk <wd@denx.de>
22254 Date:   Sun Apr 20 15:35:52 2008 -0700
22255
22256     MAKEALL: sort entries / lists.
22257
22258     Signed-off-by: Wolfgang Denk <wd@denx.de>
22259
22260 commit 0878af169b181868a105b5c33f3a6423e2c9fd60
22261 Author: Kumar Gala <galak@kernel.crashing.org>
22262 Date:   Fri Apr 18 11:29:01 2008 -0500
22263
22264     85xx: Fix size of cpu-release-addr property
22265
22266     The cpu-release-addr is defined as always being a 64-bit quanity regardless
22267     if we are running on a 32-bit or 64-bit machine.
22268
22269 commit 88353a985109562a639b2f8a0c90d77011bfe374
22270 Author: Timur Tabi <timur@freescale.com>
22271 Date:   Fri Apr 4 11:15:58 2008 -0500
22272
22273     Fix calculation of I2C clock for some 85xx chips
22274
22275     Some 85xx chips use CCB as the base clock for the I2C.  Some use CCB/2, and
22276     some use CCB/3.  There is no pattern that can be used to determine which
22277     chips use which frequency, so the only way to determine is to look up the
22278     actual SOC designation and use the right value for that SOC.
22279
22280     Update immap_85xx.h to include the GUTS PORDEVSR2 register.
22281
22282     Signed-off-by: Timur Tabi <timur@freescale.com>
22283
22284 commit 1e01477aeaf409ddb97e2633aab9cf8c9c60612e
22285 Author: Wolfgang Denk <wd@denx.de>
22286 Date:   Fri Apr 18 11:44:27 2008 -0700
22287
22288     Fix build breakage casued by commit c0559be371b2
22289
22290         Change env_get_char from a global function ptr to a function.
22291
22292     Signed-off-by: Wolfgang Denk <wd@denx.de>
22293
22294 commit 268a804d7e2fa07b64211fd2f9a9615db4539f23
22295 Author: Wolfgang Denk <wd@denx.de>
22296 Date:   Fri Apr 18 10:53:41 2008 -0700
22297
22298     Coding Style cleanup, update CHANGELOG.
22299
22300     Signed-off-by: Wolfgang Denk <wd@denx.de>
22301
22302 commit 92bad20ad74b70adf3839df9a0a47cce000ac3d7
22303 Author: Mike Frysinger <vapier@gentoo.org>
22304 Date:   Tue Apr 8 14:00:57 2008 -0400
22305
22306     Add support for u-boot in svn and localversion-* files
22307
22308     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22309
22310 commit d23ff6827decf121461fbc5622612fd7effe207e
22311 Author: Guennadi Liakhovetski <lg@denx.de>
22312 Date:   Thu Apr 3 17:04:22 2008 +0200
22313
22314     MX31ADS network and flash updates
22315
22316     This patch allows U-Boot to use buffered writes to the Spansion NOR
22317     flash installed on this board, and eliminates long delays in network
22318     transfers after the board startup.
22319
22320     Also modify flash layout to embed main and redundant environment
22321     blocks in the U-Boot image.
22322
22323     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22324
22325 commit b5dc9b304d289831f291843ff88a45cbdf1a6290
22326 Author: Guennadi Liakhovetski <lg@denx.de>
22327 Date:   Mon Apr 14 10:53:12 2008 +0200
22328
22329     Support for the MX31ADS evaluation board from Freescale
22330
22331     This patch adds support for the MX31ADS evaluation board from Freescale,
22332     initialization code is copied from RedBoot sources, also provided by
22333     Freescale.
22334
22335     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22336
22337 commit 499e7831e1baaac6bfb959213f1950c216fbc5ba
22338 Author: Stefan Roese <sr@denx.de>
22339 Date:   Tue Apr 8 10:33:29 2008 +0200
22340
22341     ppc4xx: Change Canyonlands to support booting from 2k page NAND devices
22342
22343     Signed-off-by: Stefan Roese <sr@denx.de>
22344
22345 commit 5e182dce04d68cc94407a1b1fa09307f2bb96719
22346 Author: Stefan Roese <sr@denx.de>
22347 Date:   Tue Apr 8 10:33:28 2008 +0200
22348
22349     ppc4xx: Adjust Canyonlands fixed DDR2 setup (NAND booting) to 512MB SODIMM
22350
22351     Signed-off-by: Stefan Roese <sr@denx.de>
22352
22353 commit fe7c0db6b2a9004f96c2a2d4fff2849e19c2d825
22354 Author: Stefan Roese <sr@denx.de>
22355 Date:   Tue Apr 8 10:33:27 2008 +0200
22356
22357     ppc4xx: Add Glacier NAND booting target
22358
22359     Signed-off-by: Stefan Roese <sr@denx.de>
22360
22361 commit 46f373838e384a4c23d13581b1dfa5acb66b5810
22362 Author: Stefan Roese <sr@denx.de>
22363 Date:   Tue Apr 8 10:31:00 2008 +0200
22364
22365     nand_spl: Update nand_spl to support 2k page size NAND devices
22366
22367     This patch adds support for booting from 2k page sized NAND device
22368     (e.g. Micron 29F2G08AAC).
22369
22370     Tested on AMCC Canyonlands.
22371
22372     Signed-off-by: Stefan Roese <sr@denx.de>
22373
22374 commit 5e3dca577b7c1bf58bd2b48449b18b7e7dcd8e04
22375 Author: Anatolij Gustschin <agust@denx.de>
22376 Date:   Thu Apr 17 18:18:00 2008 +0200
22377
22378     Fix crash on sequoia in ppc_4xx_eth_init
22379
22380     Currently U-Boot crashes in ppc_4xx_eth_init on sequoia
22381     with cache enabled (TLB Parity exeption). This patch
22382     fixes the problem.
22383
22384     Signed-off-by: Anatolij Gustschin <agust@denx.de>
22385
22386 commit accf7355767dc7f6b85d88bb1c75c9d95e84ba5b
22387 Author: Anatolij Gustschin <agust@denx.de>
22388 Date:   Thu Apr 17 18:15:27 2008 +0200
22389
22390     ppc4xx: Fix crash on sequoia with cache enabled
22391
22392     Currently U-Boot crashes on sequoia board in CPU POST if
22393     cache is enabled (CONFIG_4xx_DCACHE defined). The cache
22394     won't be disabled by change_tlb before CPU POST because
22395     there is an insufficient adress range check since
22396     CFG_MEM_TOP_HIDE was introduced. This patch tries to fix
22397     this problem.
22398
22399     Signed-off-by: Anatolij Gustschin <agust@denx.de>
22400
22401 commit 43c509254fab375c49936498da944658117ed07c
22402 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
22403 Date:   Thu Apr 17 23:35:13 2008 +0900
22404
22405     Use jr as register jump instruction
22406
22407     Current assembler codes are inconsistent in the way of register jump
22408     instruction usage; some use jr, some use j. Of course GNU as allows both
22409     usages, but as can be expected from `Jump Register' the mnemonic `jr' is
22410     more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage
22411     at all.
22412
22413     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
22414
22415 commit 7ce63709828d37b08866e537339a169bd0db2bd3
22416 Author: Guennadi Liakhovetski <lg@denx.de>
22417 Date:   Tue Apr 15 14:15:30 2008 +0200
22418
22419     RTC driver for MC13783
22420
22421     MC13783 is a multifunction IS with an SPI interface to the host. This
22422     driver handles the RTC controller in this chip.
22423
22424     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22425
22426 commit 38254f45b0b412332726c90d3184ad47479fcffb
22427 Author: Guennadi Liakhovetski <lg@denx.de>
22428 Date:   Tue Apr 15 14:14:25 2008 +0200
22429
22430     New i.MX31 SPI driver
22431
22432     This is an SPI driver for i.MX and MXC based SoCs from Freescale. So far
22433     only implemented and tested on i.MX31, can with a modified register layout
22434     and definitions be used for i.MX27, I think, MXC CPUs have similar SPI
22435     controllers too.
22436
22437     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22438
22439 commit 7064122c2eef92f02a03ef37a1a1c07e70cd4e38
22440 Author: Magnus Lilja <lilja.magnus@gmail.com>
22441 Date:   Tue Apr 15 19:09:10 2008 +0200
22442
22443     Fix name of i.MX31 boards in config file header
22444
22445     Correct the name of the i.MX31 Litekit and phyCORE boards in config files.
22446
22447     Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
22448
22449 commit a49864593e083a5d0779fb9ca98e5a0f2053183d
22450 Author: Mike Frysinger <vapier@gentoo.org>
22451 Date:   Sun Apr 13 19:42:19 2008 -0400
22452
22453     allow ports to override go behavior
22454
22455     Split the arch-specific logic out of the common go code and into a dedicated
22456     weak function called do_go_exec() that lives in cpu directories.  This will
22457     need review from i386/nios people to make sure I didn't break them.
22458
22459 commit 017e9b7925f74878d0e9475388cca9bda5ef9482
22460 Author: Mike Frysinger <vapier@gentoo.org>
22461 Date:   Sun Apr 13 19:42:18 2008 -0400
22462
22463     allow ports to override bootelf behavior
22464
22465     Change the bootelf setup function into a dedicated weak function called
22466     do_bootelf_exec.  This way ports can control the behavior however they
22467     like before/after calling the ELF entry point.
22468
22469 commit a4b46ed6b3502335c3f3a5d672abe0bcb44f20b7
22470 Author: Ulf Samuelsson <ulf@atmel.com>
22471 Date:   Sat Apr 12 20:56:03 2008 +0200
22472
22473     Reorder ARM boards in Makefile
22474
22475     Rearrange ARM boards in Makefile so that ARM926EJ-S boards
22476     are no longer under ARM92xT header.
22477
22478     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
22479     Ack-By Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22480
22481 commit c3a60cb3bd67e120fc99b6ba88d9295c3c07f688
22482 Author: Ulf Samuelsson <ulf@atmel.com>
22483 Date:   Sat Apr 12 20:29:44 2008 +0200
22484
22485     Clean up dataflash partitioning
22486
22487     This patch removes the board dependent parts from
22488     "drivers/mtd/dataflash.c".
22489     Each board relying on this, will have the appropriate
22490     code in a new file, "partition.c" in the board directory.
22491     board Makefiles updated to use the file.
22492
22493     The dataflash partitions are aligned on sector/page boundaries.
22494
22495     The CONFIG_NEW_DF_PARTITION was used to create named partitions
22496     This is now the default operation, and the CONFIG variable is removed.
22497
22498     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
22499
22500 commit 51ecde946fec511a16346e498204ca10ad71080d
22501 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22502 Date:   Sat Apr 12 14:08:45 2008 +0200
22503
22504     gitignore: udpate stgit generated and .patch file
22505
22506     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22507
22508 commit 66e39818e95f51ee1c1dd2094407a8929543fa6d
22509 Author: Wolfgang Denk <wd@denx.de>
22510 Date:   Fri Apr 18 00:15:36 2008 -0700
22511
22512     Get rid of redundant copy of renamed header file.
22513
22514     Signed-off-by: Wolfgang Denk <wd@denx.de>
22515
22516 commit c3aafd8cf814e33a77de81c2f22b8c772216a3cc
22517 Author: Vlad Lungu <vlad@comsys.ro>
22518 Date:   Fri Apr 11 21:20:14 2008 +0300
22519
22520     Fix dependency generation for older gcc versions
22521
22522      With gcc 3.3.3 at least, compilation fails with
22523
22524     Generating include/autoconf.mk
22525     gcc: compilation of header file requested
22526     make: *** [include/autoconf.mk] Error 1
22527
22528     since commit 16fe77752eee099b9fb61ed73460e51cc94b37ba.
22529
22530     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
22531
22532 commit cb1c4896905ab22fcd982e6a8a539f0031942e71
22533 Author: Marian Balakowicz <m8@semihalf.com>
22534 Date:   Fri Apr 11 11:07:49 2008 +0200
22535
22536     Restore the ability to continue booting after legacy image overwrite
22537
22538     Before new uImage code was merged, bootm code allowed for the kernel image to
22539     get overwritten during decompresion. new uImage introduced a check for image
22540     overwrites and refused to boot the image that got overwritten. This patch
22541     restores the old behavior. It also adds a warning when the image overwriten is
22542     a multi-image file, because in such case accessing componentes other than the
22543     first one will fail.
22544
22545     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22546
22547 commit de2b3216e6b4f3b2fe93759c05b17504f9dfe036
22548 Author: Marian Balakowicz <m8@semihalf.com>
22549 Date:   Fri Apr 11 11:07:43 2008 +0200
22550
22551     ppc: Fix ftd_blob variable init when processing raw blob
22552
22553     Set fdt_blob variable before its value is printed out.
22554
22555     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22556
22557 commit 3d36be030043cd841a2551d00a395135e363a64b
22558 Author: Jason Wessel <jason.wessel@windriver.com>
22559 Date:   Thu Apr 10 14:30:16 2008 -0500
22560
22561     Remove all the search paths from the .lds files.
22562
22563     The cross compiler is responsible for providing the correct libraries
22564     and the logic to find the linking libraries.
22565
22566     Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
22567
22568 commit 7d721e34ae6be7d7db63e8d060a246278bb7ae58
22569 Author: Bartlomiej Sieka <tur@semihalf.com>
22570 Date:   Mon Apr 14 15:44:16 2008 +0200
22571
22572     Boot-related documentation update
22573
22574     - document 'bootm_low' and 'bootm_size' environment variables
22575     - update inaccurate CFG_BOOTMAPSZ entry
22576
22577     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
22578
22579 commit a6f0bd9f2b1971e2a61ac0fd1fc2c96cb7a4b67a
22580 Author: Guennadi Liakhovetski <lg@denx.de>
22581 Date:   Wed Apr 9 17:34:08 2008 +0200
22582
22583     Fix regression introduced by a typo in "Tidied other cpu/arm920t/start.S code"
22584
22585     Restore logic reverted by commit
22586
22587     commit 80767a6cead9990d9e77e62be947843c2c72f469
22588     Author: Peter Pearse <peter.pearse@arm.com>
22589     Date:   Wed Sep 5 16:04:41 2007 +0100
22590
22591         Changed API name to coloured_led.h
22592         Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
22593         Tidied other cpu/arm920t/start.S code
22594
22595     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22596
22597 commit e25cb8d3f4fcc265a9cdf8e9d577b59bdb64bbaf
22598 Author: Mike Frysinger <vapier@gentoo.org>
22599 Date:   Tue Apr 8 10:24:24 2008 -0400
22600
22601     Remove conflicting NAND ID
22602
22603     There are two NAND entries with ID 0xDC and this obviously causes problems.
22604     In the kernel, they punted the first entry, so we should do the same.
22605
22606     See this upstream e-mail for more info:
22607     http://lists.infradead.org/pipermail/linux-mtd/2007-July/018795.html
22608
22609     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
22610     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22611
22612 commit 188e94c370621708d13547d58dbc6ed3c5602aa8
22613 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
22614 Date:   Tue Apr 8 16:20:35 2008 +0900
22615
22616     cpu/mips/cpu.c: Fix flush_cache bug
22617
22618     Cache operations have to take line address (addr), not start_addr.
22619     I noticed this bug when debugging ping failure.
22620
22621     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
22622
22623 commit 8f2a68a07c058fca1d413e54f71c2e7e78a74ed4
22624 Author: Martin Krause <martin.krause@tqs.de>
22625 Date:   Thu Apr 3 14:29:01 2008 +0200
22626
22627     TQM5200: fix default IDE reset level
22628
22629     Before the first call of ide_reset(), the level of the IDE reset
22630     signal on the TQM5200 is low (reset asserted). This patch sets the
22631     default value to high (reset not asserted).
22632
22633     Currently this patch fixes no real problem, but it is cleaner to
22634     assert the reset signal only on demand, and not permanently.
22635
22636     Signed-off-by: Martin Krause <martin.krause@tqs.de>
22637
22638 commit c61e033d6e8abb7b4060ee36060961e1399f6079
22639 Author: Detlev Zundel <dzu@denx.de>
22640 Date:   Thu Apr 3 14:18:48 2008 +0200
22641
22642     mgcoge, mgsuv: realign CONFIG_EXTRA_ENV_SETTING
22643
22644     Signed-off-by: Detlev Zundel <dzu@denx.de>
22645
22646 commit f308572e19eb7fe63aa3d41f214cde4c23c9800f
22647 Author: Detlev Zundel <dzu@denx.de>
22648 Date:   Thu Apr 3 14:18:47 2008 +0200
22649
22650     mgcoge, mgsuv: rename 'addcon' to 'addcons'
22651
22652     The latter name with 13 users is already established, so we will use
22653     that.
22654
22655     Signed-off-by: Detlev Zundel <dzu@denx.de>
22656
22657 commit e175eacc87c3a9e4dad0799fee0e95732520afc7
22658 Author: Martin Krause <martin.krause@tqs.de>
22659 Date:   Thu Apr 3 13:37:56 2008 +0200
22660
22661     IDE: fix bug in reset sequence
22662
22663     According to the ata (ata5) specification the RESET- signal
22664     shall be asserted for at least 25 us. Without this patch,
22665     the RESET- signal is asserted on some boards for only < 1 us
22666     (e. g. on the TQM5200). This patch adds a general delay of
22667     25 us to the RESET- signal.
22668
22669     Without this patch a Platinum 4 GiB CF card is not recognised
22670     properly on boards with a TQM5200 (STK52xx, TB5200).
22671
22672     Signed-off-by: Martin Krause <martin.krause@tqs.de>
22673
22674 commit 813bea96a960916c72b4a3a7df840151529c26ce
22675 Author: Sascha Laue <Sascha.Laue@gmx.biz>
22676 Date:   Thu Apr 3 14:43:11 2008 +0200
22677
22678     lwmon5: disable CONFIG_ZERO_BOOTDELAY
22679
22680     Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
22681
22682 commit 53eec6f1d25932e76d63ccb14082792b0b96bf41
22683 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22684 Date:   Wed Apr 2 08:03:58 2008 +0200
22685
22686     ds174x: Fix warning on return in rtc_get and rtc_set functions
22687
22688     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22689
22690 commit a253b38bf50c85227c33ca0febc870ee49d1588e
22691 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22692 Date:   Wed Apr 2 08:03:57 2008 +0200
22693
22694     cmd_log.c: Fix assignment differ in signedness
22695
22696     In function 'logbuff_init_ptrs':
22697     cmd_log.c:79: warning: pointer targets in assignment differ in signedness
22698
22699     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22700
22701 commit 6c0e9a8f1cc090fbfbc6f86b6b4fd17a1628f3df
22702 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
22703 Date:   Wed Apr 2 11:04:43 2008 +0530
22704
22705     Remove duplicate #undef SHOW_INFO in drivers/usb/usb_ohci.c
22706
22707     Signed-off-by: gururaja hebbar <gururajakr@sanyo.co.in>
22708
22709 commit 478d5ec9ae3cbcc6040241d2d73dbbc61fe9b49d
22710 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22711 Date:   Tue Apr 1 14:07:10 2008 +0200
22712
22713     s3c4510b_eth: fix 'packed' attribute ignored for fields of MACFrame
22714
22715     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22716
22717 commit c08fb3ea36d19b1640b7906264581e9105534399
22718 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
22719 Date:   Tue Apr 15 10:24:14 2008 +0200
22720
22721     Additional PCI IDs for IDE and network controllers
22722
22723     These PCI IDs are required by the Linkstation platforms.
22724
22725     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
22726
22727 commit c0559be371b2a64b1a817088c3308688e2182f93
22728 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
22729 Date:   Mon Apr 14 23:01:50 2008 +0200
22730
22731     Change env_get_char from a global function ptr to a function.
22732
22733     This avoids an early global data reference.
22734
22735     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
22736
22737 commit 3e0f331c05d72f140715c1e9fca991927e44d422
22738 Author: Guennadi Liakhovetski <lg@denx.de>
22739 Date:   Tue Apr 29 12:35:08 2008 +0000
22740
22741     Clean up smsc911x driver
22742
22743     Replace direct register address derefencing with accessor functions.
22744     Restrict explicitly 32-bit bus-width, extend affected configurations
22745     respectively.
22746
22747     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22748     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22749
22750 commit de1b686b763aa8b87a86f6748ce9169e7fc0e4cd
22751 Author: Sascha Hauer <s.hauer@pengutronix.de>
22752 Date:   Tue Apr 15 00:08:20 2008 -0400
22753
22754     This patch adds a driver for the following smsc network controllers:
22755     LAN9115
22756     LAN9116
22757     LAN9117
22758     LAN9215
22759     LAN9216
22760     LAN9217
22761
22762     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
22763     Signed-off-by: Guennadi Liakhovetski<lg@denx.de>
22764     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22765
22766 commit 3dfd4aab929cccddb63d9ea509967861e1333b52
22767 Author: Sascha Laue <Sascha.Laue@gmx.biz>
22768 Date:   Tue Apr 1 15:13:03 2008 +0200
22769
22770     Fix watchdog POST for lwmon5
22771
22772     If the hardware watchdog detects a voltage error, the watchdog sets
22773     GPIO62 to low. The watchdog POST has to detect this low level.
22774
22775     Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
22776
22777 commit 24b448448a917e52806f82660a5c9d47608894fb
22778 Author: Dave Liu <r63238@freescale.com>
22779 Date:   Tue Apr 1 15:22:11 2008 +0800
22780
22781     ata: update the libata.h from ata.h of linux kernel
22782
22783     Current libata.h of u-boot is out of sync from linux kernel,
22784     this patch make it be consistent with linux kernel.
22785
22786     Signed-off-by: Dave Liu <daveliu@freescale.com>
22787     Signed-off-by: Tor Krill <tor@excito.com>
22788
22789 commit f8f9dc98883f66f59eb0601da65808e6b139c87c
22790 Author: Kumar Gala <galak@kernel.crashing.org>
22791 Date:   Mon Mar 31 11:59:27 2008 -0500
22792
22793     Allow use of ARCH=powerpc when building
22794
22795     The linux kernel is now mostly ARCH=powerpc, so to make life easier
22796     allow use to use ARCH=powerpc and convert it to ARCH=ppc.
22797
22798     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22799
22800 commit 8af657d2c6d1ca4f2f76973531394d4578ba2ef0
22801 Author: Kyungmin Park <kmpark@infradead.org>
22802 Date:   Mon Mar 31 10:40:54 2008 +0900
22803
22804     Add apollon board MAINTAINERS entry
22805
22806     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
22807
22808 commit 77e475cc0ed1832160017d364be32a0be9ff02a9
22809 Author: Kyungmin Park <kmpark@infradead.org>
22810 Date:   Mon Mar 31 10:40:36 2008 +0900
22811
22812     Fix OneNAND read
22813
22814     It should access with 16-bit instead of 8-bit
22815
22816     Now it uses the generic memcpy with 8-bit access. It means it reads wrong data from OneNAND.
22817
22818     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
22819
22820 commit a9da2b41079d230db3a5641625311983f85ce1fb
22821 Author: Kyungmin Park <kmpark@infradead.org>
22822 Date:   Mon Mar 31 10:40:19 2008 +0900
22823
22824     Fix OneNAND erase command
22825
22826     It mis-calculates the block address.
22827     Also fix DECLARE_GLOBAL_DATA_PTR in env_onenand.
22828
22829     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
22830
22831 commit 61525f2ffa156665a66908fda47dbf29d65ea579
22832 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
22833 Date:   Mon Mar 31 01:32:15 2008 +0200
22834
22835     Support for LinkStation / KuroBox HD and HG PPC models
22836
22837     This patch is based on the port by Mihai Georgian (see linkstation.c for
22838     Copyright information) and implements support for LinkStation / KuroBox HD
22839     and HG PPC models from Buffalo Technology, whereby HD is deactivated at
22840     the moment, pending network driver fixing.
22841
22842     Notice to users: this is pretty much a barebone port. Support for network
22843     on HG models is already in the U-Boot mainline, but you might also want
22844     patches to switch fan / phy modes depending on the negotiated ethernet
22845     parameters. This patch also doesn't support console switching, booting EM
22846     mode, Buffalo specific ext2 magic number. So, if you want to use any of
22847     those, you need additional patches. Otherwise this patche provides a fully
22848     functional u-boot with a network console on your system.
22849
22850     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22851
22852 commit 0f3ba7e9783f352318f197a3148f6d5cc3d75bea
22853 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22854 Date:   Sun Mar 30 01:22:13 2008 -0500
22855
22856     Add CONFIG_MII_INIT support to related boards
22857
22858     Replace CONFIG_8xx and CONFIG_MCF532x to CONFIG_MII_INIT in
22859     cmd_init.c. Add CONFIG_MII_INIT to board configuration files
22860     that use mii_init() in cmd_init.c.
22861
22862     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22863     Acked-by: Ben Warren <biggerbadderben@gmail.com>
22864
22865 commit f33fca22e76f20e4e4793810ca7a06a4805a6cf4
22866 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22867 Date:   Sun Mar 30 01:19:06 2008 -0500
22868
22869     Update CONFIG_PCIAUTO_SKIP_HOST_BRIDGE to related boards
22870
22871     Remove test for CONFIG_MPC5200 in drivers/pci/pci_auto.c and define
22872     CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in related board configuration files.
22873
22874     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22875
22876 commit e99ccb488181d012248c6be30b2093e950319fc5
22877 Author: Kumar Gala <galak@kernel.crashing.org>
22878 Date:   Thu Mar 27 11:46:38 2008 -0500
22879
22880     Introduce phys_size_t and move phys_addr_t into asm/types.h
22881
22882     Also add CONFIG_PHYS_64BIT on powerpc to deal with 32-bit ppc's
22883     that have larger physical addresses like 44x, 85xx, and 86xx.
22884
22885     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22886
22887 commit 20a14a42a25f72e379f38460b8a8484667536795
22888 Author: Andy Fleming <afleming@freescale.com>
22889 Date:   Wed Apr 2 16:19:07 2008 -0500
22890
22891     Rename include/md5.h to include/u-boot/md5.h
22892
22893     Some systems have md5.h installed in /usr/include/. This isn't the
22894     desired file (we want the one in include/md5.h). This will avoid the
22895     conflict. This fixes the host tools building problem by creating a new
22896     directory for U-Boot specific header files.
22897
22898     [Patch by Andy Fleming, modified to use separate directory by Wolfgang
22899     Denk]
22900
22901     Signed-off-by: Wolfgang Denk <wd@denx.de>
22902     Signed-off-by: Andy Fleming <afleming@freescale.com>
22903     Acked-by: Timur Tabi <timur@freescale.com>
22904
22905 commit f297b7a1ec87433f66320d89d993e1bc738c66b8
22906 Author: Dave Liu <r63238@freescale.com>
22907 Date:   Thu Mar 27 18:51:17 2008 +0800
22908
22909     drivers: code clean up
22910
22911     Signed-off-by: Dave Liu <daveliu@freescale.com>
22912
22913 commit 0ff7cba4a2e51c90827f6d21a0b28b4d67109597
22914 Author: Dave Liu <r63238@freescale.com>
22915 Date:   Thu Mar 27 18:50:41 2008 +0800
22916
22917     drivers: clean up the ata_piix.h
22918
22919     Signed-off-by: Dave Liu <daveliu@freescale.com>
22920
22921 commit e8f7ba404f1409606962815ecc955a06984b08b3
22922 Author: Dave Liu <r63238@freescale.com>
22923 Date:   Thu Mar 27 18:49:56 2008 +0800
22924
22925     doc: english polishing for README.sata
22926
22927     according to gvb's suggestion, polishing for the doc.
22928
22929     Signed-off-by: Jerry Van Baren <gerald.vanbaren@ge.com>
22930     Signed-off-by: Dave Liu <daveliu@freescale.com>
22931
22932 commit 3e3f766a5274d204780460e1879723b565296d34
22933 Author: Kumar Gala <galak@kernel.crashing.org>
22934 Date:   Wed Mar 26 18:53:28 2008 -0500
22935
22936     Fix warnings introduced by I2C bus speed setting patch
22937
22938     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22939
22940 commit 3c735e7437150e8615f26930c7819db85634276d
22941 Author: eran liberty <eran.liberty@gmail.com>
22942 Date:   Thu Mar 27 00:50:49 2008 +0100
22943
22944     Altera Stratix II support
22945
22946     Adds Support for Altera's Stratix II.
22947
22948     Within your board specific init file you will have to call
22949
22950     1. fpga_init (/* relocated code offset. usually => */ gd->reloc_off);
22951     2. fpga_add (fpga_altera, (Altera_desc*)&altera_desc);
22952
22953     Altera_desc* contines (for example):
22954         {
22955          Altera_StratixII,      /* part type */
22956          passive_serial,        /* interface type */
22957          1,                     /* bytes of data part can accept */
22958          (void *)(&funcs),      /* interface function table */
22959          0L,                    /* base interface address */
22960          0                      /* implementation specific cookie */
22961          }
22962
22963     funcs is the interface. It is of type altera_board_specific_func.
22964     It looks like this:
22965     altera_board_specific_func func = {
22966         pre_fn,
22967         config_fn,
22968         status_fn,
22969         done_fn,
22970         clk_fn,
22971         data_fn,
22972         abort_fn,
22973         post_fn,
22974     };
22975
22976     you will have to implement these functions, which is usually bit
22977     banging some gpio.
22978
22979     Signed-off-by: Eran Liberty <liberty@extricom.com>
22980
22981 commit 5ece9ec9f6cd52950ab848e2fe422dacf1d3a335
22982 Author: Wolfgang Denk <wd@denx.de>
22983 Date:   Sun Apr 13 14:32:54 2008 -0700
22984
22985     Update CHANGELOG
22986
22987     Signed-off-by: Wolfgang Denk <wd@denx.de>
22988
22989 commit 5ad862166aa24d62a69aa9c708f6b2f5c0d28fb7
22990 Author: Sascha Hauer <s.hauer@pengutronix.de>
22991 Date:   Wed Mar 26 20:41:17 2008 +0100
22992
22993     Phytec Phycore-i.MX31 support
22994
22995     This patch adds support for the Phytec Phycore-i.MX31 board
22996
22997     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
22998     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22999
23000 commit caebc95be3b42e5147b5fac7672ac4b2693ef7e1
23001 Author: Sascha Hauer <s.hauer@pengutronix.de>
23002 Date:   Wed Mar 26 20:41:09 2008 +0100
23003
23004     mx31 litekit support
23005
23006     This patch adds support for the mx31 litekit board
23007
23008     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
23009     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
23010
23011 commit cdace0661208754a53019ea0dc7b803a040e0939
23012 Author: Sascha Hauer <s.hauer@pengutronix.de>
23013 Date:   Wed Mar 26 20:40:49 2008 +0100
23014
23015     add an i2c driver for mx31
23016
23017     This patch adds an i2c driver for Freescale i.MX processors
23018
23019     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
23020     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
23021
23022 commit 9b56f4f0306f3940b0aafd823ed6ecfc2d75d6c6
23023 Author: Sascha Hauer <s.hauer@pengutronix.de>
23024 Date:   Wed Mar 26 20:40:42 2008 +0100
23025
23026     core support for Freescale mx31
23027
23028     This patch adds the core support for Freescale mx31
23029
23030     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
23031     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
23032
23033 commit 7ec68862a27c8f6f6d566228de8f6724d964a939
23034 Author: Wolfgang Denk <wd@denx.de>
23035 Date:   Sun Apr 13 14:19:23 2008 -0700
23036
23037     Fix compile error
23038
23039     ...as suggested by Peter Pearse
23040
23041     Signed-off-by: Wolfgang Denk <wd@denx.de>
23042
23043 commit 5252ed95204bdf55bec5a90ea69860bf2f78c643
23044 Author: Sascha Hauer <s.hauer@pengutronix.de>
23045 Date:   Wed Mar 26 20:40:36 2008 +0100
23046
23047     Separate omap24xx specific code from arm1136
23048
23049     Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136
23050     to cpu/arm1136/omap24xx.
23051
23052     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
23053     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
23054
23055 commit 1f1d88dd40815332df32982e739f2ddd2da6fe1a
23056 Author: Mike Frysinger <vapier@gentoo.org>
23057 Date:   Tue Jan 29 18:21:05 2008 -0500
23058
23059     disable caches before booting an app for Blackfin apps
23060
23061     It isn't generally save to execute applications outside of U-Boot with caches
23062     enabled due to the way the Blackfin processor handles caches (requires
23063     software assistance).  This patch disables caches before booting an ELF or
23064     just booting raw code.  The previous discussion on the patch was that we
23065     wanted to use weaks instead, but that proved to not be feasible when multiple
23066     symbols are involved, which puts us back at the ifdef solution.  I've
23067     minimized the ugliness by moving the setup step outside of the main function.
23068
23069     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23070
23071 commit e6dfed705efa44ebf00d21bb1588c6ccc8f3ad32
23072 Author: Wolfgang Denk <wd@denx.de>
23073 Date:   Sun Apr 13 10:03:54 2008 -0700
23074
23075     ppc: Get rid of unused machine type definitions
23076
23077     Signed-off-by: Wolfgang Denk <wd@denx.de>
23078
23079 commit 1aeed8d71acb3290cf2446f316d6ba437e7881c4
23080 Author: Wolfgang Denk <wd@denx.de>
23081 Date:   Sun Apr 13 09:59:26 2008 -0700
23082
23083     Coding Style cleanup; update CHANGELOG
23084
23085     Signed-off-by: Wolfgang Denk <wd@denx.de>
23086
23087 commit 7754f33c6fb7a2c050388d20bf3847038558bdcf
23088 Author: Larry Johnson <lrj@acm.org>
23089 Date:   Thu Feb 21 13:58:11 2008 -0500
23090
23091     LM73 bug fix for negative temperatures and cleanup
23092
23093     When the LM73 temperature sensor measures a temperature below 0 C, the
23094     current driver does not perform sign extension, so the result returned is
23095     512 C too high.  This patch fixes the problem, and does general cleanup
23096     of the code.
23097
23098     Signed-off-by: Larry Johnson <lrj@acm.org>
23099
23100 commit 96ef831f713289afba19da0c8f905e99da2b23e0
23101 Author: Guennadi Liakhovetski <lg@denx.de>
23102 Date:   Thu Apr 3 13:36:02 2008 +0200
23103
23104     cfi_flash: Support buffered writes on non-standard Spansion NOR flash
23105
23106     Some NOR flash chip from Spansion, for example, the s29ws-n MirrorBit
23107     series require different addresses for buffered write commands. Define a
23108     configuration option to support buffered writes on those chips. A more
23109     elegant solution would be to automatically detect those chips by parsing
23110     their CFI records, but that would require introduction of a fixup table
23111     into the cfi_flash driver.
23112
23113     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
23114
23115 commit 3f9c542d3d69b1a10a5e193e779133a0454d1f44
23116 Author: Lee Nipper <lee.nipper@freescale.com>
23117 Date:   Thu Apr 10 09:35:06 2008 -0500
23118
23119     mpc83xx: Update DIMM data bus width test to support 40-bit width
23120
23121     32-bit wide ECC memory modules report 40-bit width.
23122     Changed the DIMM data bus width test to 'less than 64' instead of 'equal 32'.
23123
23124     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
23125     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23126
23127 commit 5fb5a689d822ca61e814bd523fc930af335242fa
23128 Author: Dave Liu <r63238@freescale.com>
23129 Date:   Mon Mar 31 17:05:12 2008 +0800
23130
23131     mpc83xx: Fix the bug of serdes initialization
23132
23133     Currently the serdes will not be initializated due to the
23134     partid's error.
23135
23136     Signed-off-by: Dave Liu <daveliu@freescale.com>
23137     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23138
23139 commit 2000784818f043db7ca60e2846a72d097766b894
23140 Author: Dave Liu <r63238@freescale.com>
23141 Date:   Thu Apr 3 16:28:29 2008 +0800
23142
23143     mpc83xx: Fix the SATA clock setting of 837x targets
23144
23145     Currently the SATA controller clock is configured as CSB clock,
23146     usually the CSB clock is 400/333/266MHz.
23147
23148     However, The SATA IP block is only guaranteed to operate up to
23149     200 MHz as stated in the HW spec.
23150
23151     The bug is reported by Joe D'Abbraccio <ljd015@freescale.com>
23152
23153     This patch makes the SATA clock as half of CSB clock.
23154
23155     Signed-off-by: Dave Liu <daveliu@freescale.com>
23156     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23157
23158 commit 1ac4f320bf0b593aa0a741f2d649a8ece8838672
23159 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23160 Date:   Wed Apr 2 13:41:21 2008 +0200
23161
23162     mpc837xerdb: Fix warning: implicit declaration of function 'fdt_fixup_dr_usb'
23163
23164     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23165     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23166
23167 commit 97b3ecb575a92fa34c1765229dbc06f2b662f139
23168 Author: Kumar Gala <galak@kernel.crashing.org>
23169 Date:   Wed Apr 9 04:20:57 2008 -0500
23170
23171     85xx: Fix detection of MP cpu spin up
23172
23173     We were looking at the wrong memory offset to determine of a secondary
23174     cpu had been spun up or not.  Also added a warning message if the
23175     all the secondary cpus we expect don't spin up.
23176
23177     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23178
23179 commit f3e04bdc3f360c66801a9048956e61e41a16edba
23180 Author: Kumar Gala <galak@kernel.crashing.org>
23181 Date:   Tue Apr 8 10:45:50 2008 -0500
23182
23183     85xx: Use SVR_SOC_VER instead of SVR_VER
23184
23185     The recent change introduced by 'Update SVR numbers to expand support'
23186     now requires that we use SVR_SOC_VER instead of SVR_VER if we want
23187     to compare against a particular processor id.
23188
23189     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23190
23191 commit 5b2052e5f5fcce5dbd4d2750a29c0e45bce806e7
23192 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
23193 Date:   Fri Apr 11 10:00:35 2008 -0400
23194
23195     ppc4xx: Fix power mgt definitions for PPC440
23196
23197     Corrected DCR addresses of PPC440EP power management registers.
23198
23199     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
23200
23201 commit 950a392464e616b4590bc4501be46e2d7d162dea
23202 Author: Wolfgang Denk <wd@denx.de>
23203 Date:   Fri Apr 11 15:11:26 2008 +0200
23204
23205     Revert merge of git://www.denx.de/git/u-boot-arm, commit 62479b18:
23206
23207     Reverting became necessary after it turned out that the patches in
23208     the u-boot-arm repo were modified, and in some cases corrupted.
23209
23210     This reverts the following commits:
23211
23212         066bebd6353e33af3adefc3404560871699e9961
23213         7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
23214         c88ae20580b2b01487b4cdcc8b2a113f551aee36
23215         a147e56f03871bba4f05058d5e04ce7deb010b04
23216         d6674e0e2a6a1f033945f78838566210d3f28c95
23217         8c8463cce44d849e37744749b32d38e1dfb12e50
23218         c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
23219         8bf69d81782619187933a605f1a95ee1d069478d
23220         8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
23221         a574a73852a527779234e73e17e7597fd8128882
23222         1377b5583a48021d983e1fd565f7d40c89e84d63
23223         1704dc20917b4f71e373e2c888497ee666d40380
23224
23225     Signed-off-by: Wolfgang Denk <wd@denx.de>
23226
23227 commit 64e541f4c1b413dd84c7e409f5c2bf328db2ac13
23228 Author: Stefan Roese <sr@denx.de>
23229 Date:   Fri Apr 11 07:02:29 2008 +0200
23230
23231     ppc4xx: Update Kilauea defconfig to use device-tree booting as default
23232
23233     This patch reworks the default environment on Kilauea/Haleakala. Now
23234     "net_nfs" for exmaple uses the device-tree style booting formerly know
23235     as "net_nfs_fdt". Also the addresses in RAM were changed because of the
23236     new image booting support, which check for image overwriting. So the
23237     addresses needed togeet adjusted.
23238
23239     Signed-off-by: Stefan Roese <sr@denx.de>
23240
23241 commit 756f5dacda3810b094b94bcceffd3ce6c7ff9a28
23242 Author: Stefan Roese <sr@denx.de>
23243 Date:   Wed Apr 9 11:58:02 2008 +0200
23244
23245     ppc4xx: Fix Canyonlands default environment to work with new image support
23246
23247     Since the new image support checks for image overwriting, the default
23248     environment needs to get adjusted to use correct addresses.
23249
23250     Signed-off-by: Stefan Roese <sr@denx.de>
23251
23252 commit dfc6c7b647dba7ab86749616f0e9e5740deed422
23253 Author: Stefan Roese <sr@denx.de>
23254 Date:   Wed Apr 9 11:54:11 2008 +0200
23255
23256     ppc: Revert patch 70431e8a that used _start instead of CFG_MONITOR_BASE
23257
23258     The patch 70431e8a7393b6b793f77957f95b999fc9a269b8 (Make MPC83xx one step
23259     closer to full relocation.) doesn't use CFG_MONITOR_BASE anymore. But
23260     on 4xx systems _start currently cannot be used for this calculation.
23261     So revert back to the original version for now.
23262
23263     Signed-off-by: Stefan Roese <sr@denx.de>
23264
23265 commit f91374f65eae8b42cac329e06ba1c54728278efb
23266 Author: Michal Simek <monstr@monstr.eu>
23267 Date:   Fri Mar 28 12:49:52 2008 +0100
23268
23269     microblaze: Sort microblaze boards in MAKEALL script
23270
23271 commit 62032deb7214c6d9b4396297e2aaa559bc2f8495
23272 Author: Michal Simek <monstr@monstr.eu>
23273 Date:   Fri Mar 28 11:58:45 2008 +0100
23274
23275     microblaze: clean microblaze_config.mk
23276
23277     FLAGS are generated by U-BOOT generator.
23278     Board specific FLAGS are in board directory
23279
23280     Signed-off-by: Michal Simek <monstr@monstr.eu>
23281
23282 commit cf5c679ca04a6b54bf53a55b8b9c29335b387287
23283 Author: Michal Simek <monstr@monstr.eu>
23284 Date:   Fri Mar 28 12:47:19 2008 +0100
23285
23286     microblaze: xupv2p fix config file for supporting FDT
23287
23288 commit 188dc16b189143573b1ed90e584bf866d75cdd12
23289 Author: Michal Simek <monstr@monstr.eu>
23290 Date:   Fri Mar 28 11:53:02 2008 +0100
23291
23292     microblaze: ml401 fix config file for supporting FDT
23293
23294     Signed-off-by: Michal Simek <monstr@monstr.eu>
23295
23296 commit 4c6a6f02e239236261333759997eeaf86b30b54c
23297 Author: Michal Simek <monstr@monstr.eu>
23298 Date:   Fri Mar 28 11:22:48 2008 +0100
23299
23300     microblaze: ml401 - add ifdef for GPIO
23301
23302     Signed-off-by: Michal Simek <monstr@monstr.eu>
23303
23304 commit af7ae1a411c67ee9d17a66d17ce50b374f3dd4e7
23305 Author: Michal Simek <monstr@monstr.eu>
23306 Date:   Fri Mar 28 12:13:03 2008 +0100
23307
23308     microblaze: clean uart16550 and uartlite handling
23309
23310     Signed-off-by: Michal Simek <monstr@monstr.eu>
23311
23312 commit 0b20f250877441460fb79d72192954abe8498834
23313 Author: Michal Simek <monstr@monstr.eu>
23314 Date:   Fri Mar 28 11:08:31 2008 +0100
23315
23316     microblaze: Add Emaclite driver to Makefile
23317
23318     Signed-off-by: Michal Simek <monstr@monstr.eu>
23319
23320 commit 868cde5310f88234b774878e4f06e79df10a88b3
23321 Author: Michal Simek <monstr@monstr.eu>
23322 Date:   Fri Mar 28 11:08:01 2008 +0100
23323
23324     microblaze: Add Emac driver to Makefile
23325
23326     Signed-off-by: Michal Simek <monstr@monstr.eu>
23327
23328 commit 6f961b4f461f6cbb83a467d468a02e6078c2b327
23329 Author: Michal Simek <monstr@monstr.eu>
23330 Date:   Fri Mar 28 12:42:29 2008 +0100
23331
23332     microblaze: add Emac ethernet driver
23333
23334 commit 89c53891b18cbafd29ab8931b40e27ad231b6085
23335 Author: Michal Simek <monstr@monstr.eu>
23336 Date:   Fri Mar 28 12:41:56 2008 +0100
23337
23338     microblaze: add Emaclite ethernet driver
23339
23340 commit e5845e21224dbe2fe47b11f1cdf95de7f84be7cb
23341 Author: Michal Simek <monstr@monstr.eu>
23342 Date:   Fri Mar 28 11:04:01 2008 +0100
23343
23344     microblaze: ML401 and XUPV2P remove emac and emaclite reference
23345
23346     Signed-off-by: Michal Simek <monstr@monstr.eu>
23347
23348 commit 6bf3e982aefdb1daf9f5462d482c8f9d1cc90a57
23349 Author: Michal Simek <monstr@monstr.eu>
23350 Date:   Fri Mar 28 10:59:32 2008 +0100
23351
23352     microblaze: remove old setting for emac driver
23353
23354     Signed-off-by: Michal Simek <monstr@monstr.eu>
23355
23356 commit cd2b75efb9cc037c74ecee9b3586f9bf9e1d4e57
23357 Author: Michal Simek <monstr@monstr.eu>
23358 Date:   Fri Mar 28 10:58:15 2008 +0100
23359
23360     microblaze: Clean Makefile from ancient emac driver
23361
23362     Signed-off-by: Michal Simek <monstr@monstr.eu>
23363
23364 commit ab68f921d9c741830f721c3d879c13a0c5597183
23365 Author: Daniel Hellstrom <daniel@gaisler.com>
23366 Date:   Fri Mar 28 10:20:43 2008 +0100
23367
23368     SPARC/LEON2: added support for Gaisler simulator GRSIM/TSIM for SPARC/LEON2 targets. See www.gaisler.com for information.
23369
23370     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
23371
23372 commit 6ed8a43a19bb0275501bc286007daafa923552cf
23373 Author: Daniel Hellstrom <daniel@gaisler.com>
23374 Date:   Wed Mar 26 23:38:48 2008 +0100
23375
23376     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.
23377
23378     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
23379
23380 commit 6940383d9ec1bfe2f13e339e6f723e8d34af2b12
23381 Author: Daniel Hellstrom <daniel@gaisler.com>
23382 Date:   Wed Mar 26 23:34:47 2008 +0100
23383
23384     SPARC/LEON3: added support for Altera NIOS Development kit (STRATIX II Edition) with GRLIB template design. See www.gaisler.com for information.
23385
23386     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
23387
23388 commit 823edd8a66ed50af5aaba0c79567f67061e4d79a
23389 Author: Daniel Hellstrom <daniel@gaisler.com>
23390 Date:   Fri Mar 28 10:06:52 2008 +0100
23391
23392     SPARC/LEON3: added support for Gaisler GRSIM/TSIM2 SPARC/LEON3 simulatorn. See www.gaisler.com for information.
23393
23394     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
23395
23396 commit 71d7e4c0489e5ed8fc69382236aaa2a1e510c135
23397 Author: Daniel Hellstrom <daniel@gaisler.com>
23398 Date:   Wed Mar 26 23:26:48 2008 +0100
23399
23400     SPARC/LEON3: added support for GR-XC3S-1500 board with GRLIB template design. See www.gaisler.com for board information.
23401
23402     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
23403
23404 commit b330990c2f36ee4a8bb318360e1c8ba965269ab6
23405 Author: Daniel Hellstrom <daniel@gaisler.com>
23406 Date:   Fri Mar 28 10:00:33 2008 +0100
23407
23408     SPARC: Added support for SPARC LEON2 SOC Processor.
23409
23410     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
23411
23412 commit 2a2fa797e63b1e3cd4d570318ca5fbf8723ef53a
23413 Author: Daniel Hellstrom <daniel@gaisler.com>
23414 Date:   Wed Mar 26 23:00:38 2008 +0100
23415
23416     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.
23417
23418     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
23419
23420 commit 1e9a164e22976933002c5e4b0b79b09fcede9cd4
23421 Author: Daniel Hellstrom <daniel@gaisler.com>
23422 Date:   Wed Mar 26 22:51:29 2008 +0100
23423
23424     SPARC: Added support for SPARC LEON3 SOC processor.
23425
23426     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
23427
23428 commit bf3d8b31169546fcddb4737391e1893fb12d033a
23429 Author: Daniel Hellstrom <daniel@gaisler.com>
23430 Date:   Fri Mar 28 08:29:26 2008 +0100
23431
23432     SPARC: added SPARC support for new uimage in common code.
23433
23434     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
23435
23436 commit 00ab32c85405a4fe65fd4128243086210fc90a21
23437 Author: Daniel Hellstrom <daniel@gaisler.com>
23438 Date:   Wed Mar 26 22:36:03 2008 +0100
23439
23440     SPARC: added SPARC board information to the command bdinfo.
23441
23442     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
23443
23444 commit c2f02da21a3f37f0878554eebc785e04fdc4e128
23445 Author: Daniel Hellstrom <daniel@gaisler.com>
23446 Date:   Fri Mar 28 09:47:00 2008 +0100
23447
23448     SPARC: Added generic support for SPARC architecture.
23449
23450     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
23451
23452 commit e54ec0f016803e4d9524ff71f7971bda0c51b287
23453 Author: Stefan Roese <sr@denx.de>
23454 Date:   Thu Apr 3 14:50:34 2008 +0200
23455
23456     ppc4xx: Fix 4xx enet driver to support 460GT EMAC2+3
23457
23458     This patch fixes a problem with the RGMII setup of the 460GT. The 460GT
23459     has 2 RGMII instances and we need to configure the 2nd RGMII instance
23460     for the EMAC2+3 channels.
23461
23462     Signed-off-by: Stefan Roese <sr@denx.de>
23463
23464 commit c2a545ce33b26d80337f80b533828839249fb1c9
23465 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23466 Date:   Wed Apr 2 08:03:56 2008 +0200
23467
23468     MPC8xx: Fix libfdt support introduced in commit 77ff7b74
23469
23470     fdt.c: In function 'ft_cpu_setup':
23471     fdt.c:33: warning: implicit declaration of function 'do_fixup_by_prop_u32'
23472     fdt.c:39: warning: implicit declaration of function 'do_fixup_by_compat_u32'
23473     fdt.c:43: warning: implicit declaration of function 'fdt_fixup_ethernet'
23474     fdt.c:45: warning: implicit declaration of function 'fdt_fixup_memory'
23475
23476     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23477
23478 commit 4abd844d8eb108736e1cf8fbf3dbf61f2d5fc11b
23479 Author: Andy Fleming <afleming@freescale.com>
23480 Date:   Mon Mar 31 20:45:56 2008 -0500
23481
23482     Fix fdt set command to conform to dts spec
23483
23484     The fdt set command was treating properties specified as <00> and <0011>
23485     as byte streams, rather than as an array of cells.  As we already have
23486     syntax for expressing the desire for a stream of bytes ([ xx xx ...]),
23487     we should use the <> syntax to describe arrays of cells, which are always
23488     32-bits per element.  If we imagine this likely (IMHO) scenario:
23489
23490     > fdt set /ethernet-phy@1 reg <1>
23491
23492     With the old code, this would create a bad fdt, since the reg cell would be
23493     made to be one byte in length.  But the cell must be 4 bytes, so this would
23494     break mysteriously.
23495
23496     Also, the dts spec calls for constants inside the angle brackets (<>)
23497     to conform to C constant standards as they pertain to base.
23498     Take this scenario:
23499
23500     > fdt set /ethernet@f00 reg <0xe250000\ 0x1000>
23501
23502     The old fdt command would complain that it couldn't parse that.  Or, if you
23503     wanted to specify that a certain clock ran at 33 MHz, you'd be required to
23504     do this:
23505
23506     > fdt set /mydev clock <1f78a40>
23507
23508     Whereas the new code will accept decimal numbers.
23509
23510     While I was in there, I extended the fdt command parser to handle property
23511     strings which are split across multiple arguments:
23512
23513     > fdt set /ethernet@f00 interrupts < 33 2 34 2 36 2 >
23514     > fdt p /ethernet@f00
23515     ethernet@f00 {
23516         interrupts = <0x21 0x2 0x22 0x2 0x24 0x2>;
23517     };
23518
23519     Lastly, the fdt print code was rearranged slightly to print arrays of cells
23520     if the length of the property is a multiple of 4 bytes, and to not print
23521     leading zeros.
23522
23523     Signed-off-by: Andy Fleming <afleming@freescale.com>
23524
23525 commit 1c2926abdd7db89296a8cc7f224dd9d5d4e37a56
23526 Author: Stefan Roese <sr@denx.de>
23527 Date:   Wed Apr 2 08:39:33 2008 +0200
23528
23529     ppc4xx: Canyonlands: Init SATA/PCIe port correctly
23530
23531     Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
23532     interface. This usage can be configured with the jumper J6. This patch
23533     correctly configures the SATA/PCIe PHY for SATA usage when this jumper
23534     is installed.
23535
23536     Signed-off-by: Stefan Roese <sr@denx.de>
23537
23538 commit 6fe2946f198481254a6ee9600d7456b8316a4083
23539 Author: Kim Phillips <kim.phillips@freescale.com>
23540 Date:   Fri Mar 28 17:37:49 2008 -0500
23541
23542     remove remaining CONFIG_OF_HAS_{UBOOT_ENV,BD_T} code
23543
23544     finish off what commit 43ddd9c820fec44816188f53346b464e20b3142d,
23545     "Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T"
23546     started.
23547
23548     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23549
23550 commit b5873f1732b92a25690e1513b90dfb0d644f6697
23551 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23552 Date:   Tue Apr 1 07:30:51 2008 +0200
23553
23554     dataflash: Move CONFIG_HAS_DATAFLASH to Makefile
23555
23556     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23557
23558 commit 2d934ea51f276522b532f870a820e844ff480b5b
23559 Author: Tor Krill <tor@excito.com>
23560 Date:   Fri Mar 28 15:29:45 2008 +0100
23561
23562     Add Vitesse 8601 support to TSEC driver
23563
23564     Add phy_info for Vitesse VSC8601.
23565     Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing compensation.
23566
23567     Signed-off-by: Tor Krill <tor@excito.com>
23568     Reviewed-by: Kim Phillips <kim.phillips@freescale.com>
23569     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23570
23571 commit 3eac6402a508b0f68a21cc9cbc2cc49347de0c31
23572 Author: Daniel Hellstrom <daniel@gaisler.com>
23573 Date:   Mon Mar 31 14:25:00 2008 +0000
23574
23575     SPARC: added SMC91111 driver in and out macros for LEON processors.
23576
23577     This patch makes SPARC/LEON processors able to read and write
23578     to the SMC91111 chip using the chip external I/O bus of the memory
23579     controller. This patchs defines the standard in and out macros
23580     expected by the SMC9111 driver.
23581
23582     To access that I/O bus one must set up the memory controller
23583     (MCTRL or FTMCTRL) correctly. It is assumed that the user sets
23584     up this correctly when the other MCTRL parameters are set up. It
23585     can be set up from the board configuration header file.
23586
23587     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
23588     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23589
23590 commit 3ca7c558eba36332556bc470d45e2f5d42bd0ca6
23591 Author: Stelian Pop <stelian@popies.net>
23592 Date:   Wed Mar 26 18:52:34 2008 +0100
23593
23594     Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards
23595
23596     Signed-off-by: Stelian Pop <stelian@popies.net>
23597
23598 commit 4e03dde84dd2c91e327cdc23ae119d432559a7a3
23599 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23600 Date:   Mon Mar 31 21:31:04 2008 +0200
23601
23602     AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile
23603
23604     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23605
23606 commit 0176d43e759a6e00cacc85eff26fd60f74b4f6b7
23607 Author: Stelian Pop <stelian@popies.net>
23608 Date:   Wed Mar 26 18:52:33 2008 +0100
23609
23610     Add support for AT91SAM9260EK
23611
23612     Support for booting from internal DataFlash, external DataFlash card
23613     or NAND flash is available.
23614
23615     Signed-off-by: Stelian Pop <stelian@popies.net>
23616
23617 commit 1762f13b4aab88b685b1722f17dada247945624b
23618 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23619 Date:   Mon Mar 31 21:20:49 2008 +0200
23620
23621     AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile
23622
23623     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23624
23625 commit 761712188b353494defb2b644491ff73d0daaa6f
23626 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23627 Date:   Mon Mar 31 21:12:17 2008 +0200
23628
23629     AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile
23630
23631     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23632
23633 commit 983c1db04c1dd0f92e02f06d29f0c65a3d9a2687
23634 Author: Stelian Pop <stelian@popies.net>
23635 Date:   Wed Mar 26 20:52:32 2008 +0100
23636
23637     Port AT91CAP9 to the new headers
23638
23639     Adapt the existing AT91CAP9 code to the new headers and APIs.
23640
23641     Signed-off-by: Stelian Pop <stelian@popies.net>
23642
23643 commit 177e8a5ac81bbc531a1d54abdb47f2860266c3aa
23644 Author: Stelian Pop <stelian@popies.net>
23645 Date:   Wed Mar 26 19:52:31 2008 +0100
23646
23647     Finish header files reworking
23648
23649     Replace AT91CAP9.h file with several splitted header files coming
23650     from the Linux kernel.
23651
23652     This is part 2 of the replacement: more header imports and edits.
23653
23654     Signed-off-by: Stelian Pop <stelian@popies.net>
23655
23656 commit 6d1dbbbf9fdf727384002e553e615c15d8b967f4
23657 Author: Stelian Pop <stelian@popies.net>
23658 Date:   Wed Mar 26 19:52:30 2008 +0100
23659
23660     Import several header files from Linux
23661
23662     Replace AT91CAP9.h file with several splitted header files coming
23663     from the Linux kernel.
23664
23665     This is part 1 of the replacement: pristine header files import.
23666
23667     Signed-off-by: Stelian Pop <stelian@popies.net>
23668
23669 commit a8a78f2d99dc1bd30dc3595da118539b506c6118
23670 Author: Stelian Pop <stelian@popies.net>
23671 Date:   Wed Mar 26 20:52:28 2008 +0100
23672
23673     Move at91cap9 specific files to at91sam9 directory
23674
23675     AT91CAP9 and AT91SAM9 SoCs are very close hardware wise, so a
23676     common infrastructure can be used. Let this infrastructure be
23677     named after the AT91SAM9 family, and move the existing AT91CAP9
23678     files to the new place.
23679
23680     Signed-off-by: Stelian Pop <stelian@popies.net>
23681
23682 commit 61106a565870ff503f92b251b94bd7afef889a04
23683 Author: Stelian Pop <stelian@popies.net>
23684 Date:   Wed Mar 26 21:52:27 2008 +0100
23685
23686     Use timer_init() instead of board supplied interrupt_init()
23687
23688     The timer on AT91CAP9/AT91SAM9 is supplied by the SoC, and not by
23689     the board, so use timer_init() instead of interrupt_init().
23690
23691     Signed-off-by: Stelian Pop <stelian@popies.net>
23692
23693 commit 5604e2178c5218fbfdba2e4293ca7652e829ac25
23694 Author: Stelian Pop <stelian@popies.net>
23695 Date:   Wed Mar 26 21:52:36 2008 +0100
23696
23697     Cleanup DataFlash partition handling
23698
23699     DataFlash partition information has become a mess. This patch
23700     defines a single partition scheme for Atmel DataFlashes. This partition
23701     scheme will be used by all AT91CAP9 and AT91SAM9 boards.
23702
23703     Signed-off-by: Stelian Pop <stelian@popies.net>
23704
23705 commit 9b46432fc65ce0f0826b32e4f15c15b33ccb8d42
23706 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23707 Date:   Fri Mar 28 08:47:45 2008 -0500
23708
23709     ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S
23710
23711     When the version_string function in start.S is not 4-byte align,
23712     it will cause the compiler generates "unaligned opcodes detected
23713     in executable segment". This issue affects all ColdFire CPUs.
23714     By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if
23715     it is not aligned.
23716
23717     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23718     Acked-by: John Rigby <jrigby@freescale.com>
23719
23720 commit bae61eefe15b4d454060a7140e49ae58322be803
23721 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23722 Date:   Tue Mar 25 15:41:15 2008 -0500
23723
23724     ColdFire: Add dspi and serial flash support for MCF5445x
23725
23726     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23727     Acked-by: John Rigby <jrigby@freescale.com>
23728
23729 commit 48ead7a7a922fceaf494e352abfab8216a41b417
23730 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23731 Date:   Tue Mar 18 17:37:01 2008 -0500
23732
23733     ColdFire: Remove R5200 board
23734
23735     This board never went into production
23736
23737     Signed-off-by: Zachary P. Landau <zachary.landau@labxtechnologies.com>
23738     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23739     Acked-by: John Rigby <jrigby@freescale.com>
23740
23741 commit 545c8e0a7cd3ca9d3846668f69b0d201250abea8
23742 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
23743 Date:   Thu Jan 24 14:02:32 2008 -0600
23744
23745     ColdFire: Added M5275EVB support.
23746
23747     Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
23748     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23749     Acked-by: John Rigby <jrigby@freescale.com>
23750
23751 commit f71d9d91a2cd9c30b2b6369f15c1a46c11537c2b
23752 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
23753 Date:   Mon Feb 4 15:38:20 2008 -0600
23754
23755     ColdFire: Added MCF5275 cpu support.
23756
23757     Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
23758     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23759     Acked-by: John Rigby <jrigby@freescale.com>
23760
23761 commit 44e5b9edab077aba6e9b849afa4b7fbd8fd7b02b
23762 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23763 Date:   Mon Mar 17 12:14:11 2008 -0500
23764
23765     ColdFire: Define bootdelay in configuration file for M52277EVB
23766
23767     Signed-off-by: Matt Wadel <Matt.Waddel@freescale.com>
23768     Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23769     Acked-by: John Rigby <jrigby@freescale.com>
23770
23771 commit 77878f16cedee17161ff2336990970fffc6cea35
23772 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23773 Date:   Mon Mar 17 12:09:07 2008 -0500
23774
23775     ColdFire: Fix second memory Chipselect for M5475EVB
23776
23777     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23778     Acked-by: John Rigby <jrigby@freescale.com>
23779
23780 commit 43d60642395a550956cb21d287c8cfa563913d28
23781 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23782 Date:   Thu Mar 13 14:26:32 2008 -0500
23783
23784     ColdFire: Update correct FLASHBAR and RAMBAR1 for MCF5282
23785
23786     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23787     Acked-by: John Rigby <jrigby@freescale.com>
23788
23789 commit eb14ebe813a0cb5d47905228da446a5ad692473b
23790 Author: Larry Johnson <lrj@acm.org>
23791 Date:   Sun Mar 30 20:33:04 2008 -0500
23792
23793     ppc4xx: Add CFG_MEM_TOP_HIDE to Denali SPD-based SDRAM setup
23794
23795     Signed-off-by: Larry Johnson <lrj@acm.org>
23796
23797 commit 02e3892021112f21067d9ed1d04ae4182725ba52
23798 Author: Stefan Roese <sr@denx.de>
23799 Date:   Mon Mar 31 12:20:48 2008 +0200
23800
23801     ppc4xx: Small whitespace fix of esd patches
23802
23803     Signed-off-by: Stefan Roese <sr@denx.de>
23804
23805 commit 034394abb524785047c815f00dde8cdbdc1593c5
23806 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23807 Date:   Sun Mar 30 18:52:44 2008 +0200
23808
23809     ppc4xx: Cleanup PMC440 board support
23810
23811     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23812
23813 commit a6cc6c37188d85c25d167a4515da86f48d9a583e
23814 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23815 Date:   Sun Mar 30 18:52:06 2008 +0200
23816
23817     ppc4xx: Add ptm configuration variables for PMC440
23818
23819     Add support for the ptm1la, ptm1ms, ptm2la and ptm2ms
23820     environment variables.
23821
23822     Cleanup pci_target_init.
23823
23824     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23825
23826 commit 7c91f51a2fe296909147f1646a1412729dd10b1d
23827 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23828 Date:   Sun Mar 30 18:01:15 2008 +0200
23829
23830     ppc4xx: Minor updates for DU440 boards
23831
23832     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23833
23834 commit d5bffeb868d6b4d462f558dac43011027b6644b7
23835 Author: Mike Frysinger <vapier@gentoo.org>
23836 Date:   Tue Feb 19 00:54:20 2008 -0500
23837
23838     Blackfin: cleanup and overhaul common board init functions
23839
23840     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23841
23842 commit b86b3416f874358acaf07519e7620cdb2145f75b
23843 Author: Mike Frysinger <vapier@gentoo.org>
23844 Date:   Tue Feb 19 00:50:58 2008 -0500
23845
23846     Blackfin: cleanup lib_blackfin/cache.c
23847
23848     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23849
23850 commit 9171fc81722c20fdb5a829a58b17c9eaadd5fb44
23851 Author: Mike Frysinger <vapier@gentoo.org>
23852 Date:   Sun Mar 30 15:46:13 2008 -0400
23853
23854     Blackfin: unify cpu and boot modes
23855
23856     All of the duplicated code for Blackfin processors and boot modes have been
23857     unified.  After all, the core is the same for all processors, just the
23858     peripheral set differs (which gets handled in the drivers).
23859
23860     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23861
23862 commit 880cc4381ea8360248cddcdf87a64566745a5724
23863 Author: Stelian Pop <stelian@popies.net>
23864 Date:   Wed Mar 26 22:52:35 2008 +0100
23865
23866     Fix CFG_NO_FLASH compilation.
23867
23868     Many Atmel boards have no "real" (NOR) flash on board, and rely only
23869     on DataFlash and NAND memories. This patch enables CFG_NO_FLASH to
23870     be present in a board configuration file, while still enabling flash
23871     commands like 'flinfo', 'protect', etc.
23872
23873     Signed-off-by: Stelian Pop <stelian@popies.net>
23874
23875 commit 9ce7e53abd039decea1af67aec81bbd5df7a2593
23876 Author: Mike Frysinger <vapier@gentoo.org>
23877 Date:   Tue Feb 19 00:58:13 2008 -0500
23878
23879     Blackfin: BF537-stamp: cleanup spi flash driver
23880
23881     This punts the old spi flash driver for a new/generalized one until the
23882     common one can be integrated.
23883
23884     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23885
23886 commit bb8e3cf25bc0b04936c0c1a075985dd8700a244b
23887 Author: Ben Warren <biggerbadderben@gmail.com>
23888 Date:   Sun Mar 30 11:34:34 2008 -0400
23889
23890     Fix macro typo in common/cmd_mii.c
23891
23892     This typo was introduced in commit 233a8bcd94997f3f345833a3b82e836222f2a206.  I
23893     actually applied the wrong patch.
23894
23895     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23896
23897 commit f1b985f2d724ccaa4d3def07917f0caaf18fa77d
23898 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23899 Date:   Sun Mar 30 16:39:53 2008 +0200
23900
23901     use correct at91rm9200 register name in m501sk board
23902
23903     This fixes a naming bug for at91rm9200 lowlevel init code:
23904     NOR boot flash is on chipselect 0, not chipselect 2.  This
23905     makes code use the register name from chip datasheets.
23906
23907     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23908
23909 commit 480ed1dea103a1c8f4591afc77d2de3c7868d983
23910 Author: David Brownell <david-b@pacbell.net>
23911 Date:   Fri Jan 18 12:55:00 2008 -0800
23912
23913     use correct at91rm9200 register name
23914
23915     This fixes a naming bug for at91rm9200 lowlevel init code:
23916     NOR boot flash is on chipselect 0, not chipselect 2.  This
23917     makes code use the register name from chip datasheets.
23918
23919     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
23920
23921 commit a3543d6dc52b0ba9c64016687cf32d600b31a476
23922 Author: David Brownell <david-b@pacbell.net>
23923 Date:   Fri Jan 18 12:45:45 2008 -0800
23924
23925     add missing ARM boards to MAKEALL
23926
23927     Add some missing ARM boards to MAKEALL.  These build correctly,
23928     unlike several of the boards already listed.
23929
23930     Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
23931
23932 commit 066bebd6353e33af3adefc3404560871699e9961
23933 Author: Peter Pearse <peter.pearse@arm.com>
23934 Date:   Sun Mar 30 11:34:09 2008 +0100
23935
23936     Bracket READ_TIMER macro in cpu/arm1136/omap24xx/interrupts.c
23937     to prevent compilation error.
23938
23939     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
23940
23941 commit 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
23942 Author: Guennadi Liakhovetski <[lg@denx.de]>
23943 Date:   Sun Mar 30 11:32:30 2008 +0100
23944
23945     Support for the MX31ADS evaluation board from Freescale
23946
23947     This patch adds support for the MX31ADS evaluation board from Freescale,
23948     initialization code is copied from RedBoot sources, also provided by Freescale.
23949
23950     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
23951
23952 commit c88ae20580b2b01487b4cdcc8b2a113f551aee36
23953 Author: Sascha Hauer <s.hauer@pengutronix.de>
23954 Date:   Sun Mar 30 11:32:27 2008 +0100
23955
23956     Phytec Phycore-i.MX31 support
23957
23958     This patch adds support for the Phytec Phycore-i.MX31 board
23959
23960     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
23961     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
23962
23963 commit a147e56f03871bba4f05058d5e04ce7deb010b04
23964 Author: Sascha Hauer <s.hauer@pengutronix.de>
23965 Date:   Sun Mar 30 11:32:24 2008 +0100
23966
23967     mx31 litekit support
23968
23969     This patch adds support for the mx31 litekit board
23970
23971     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
23972     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
23973
23974 commit d6674e0e2a6a1f033945f78838566210d3f28c95
23975 Author: Sascha Hauer <s.hauer@pengutronix.de>
23976 Date:   Sun Mar 30 11:32:21 2008 +0100
23977
23978     add SMSC LAN9x1x Network driver
23979
23980     This patch adds a driver for the following smsc network controllers:
23981     LAN9115
23982     LAN9116
23983     LAN9117
23984     LAN9215
23985     LAN9216
23986     LAN9217
23987
23988     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
23989     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
23990
23991 commit 8c8463cce44d849e37744749b32d38e1dfb12e50
23992 Author: Sascha Hauer <s.hauer@pengutronix.de>
23993 Date:   Sun Mar 30 11:32:16 2008 +0100
23994
23995     add an i2c driver for mx31
23996
23997     This patch adds an i2c driver for Freescale i.MX processors
23998
23999     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
24000     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
24001
24002 commit c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
24003 Author: Sascha Hauer <s.hauer@pengutronix.de>
24004 Date:   Sun Mar 30 11:30:43 2008 +0100
24005
24006     core support for Freescale mx31
24007
24008     This patch adds the core support for Freescale mx31
24009
24010     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
24011     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
24012
24013 commit 8bf69d81782619187933a605f1a95ee1d069478d
24014 Author: Sascha Hauer <s.hauer@pengutronix.de>
24015 Date:   Sun Mar 30 11:28:46 2008 +0100
24016
24017     Separate omap24xx specific code from arm1136
24018
24019     Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136 to cpu/arm1136/omap24xx.
24020
24021     Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
24022     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
24023
24024 commit 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
24025 Author: Peter Pearse <peter.pearse@arm.com>
24026 Date:   Sun Mar 30 11:23:05 2008 +0100
24027
24028     Add pmdra into MAKEALL
24029
24030     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
24031
24032 commit a574a73852a527779234e73e17e7597fd8128882
24033 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
24034 Date:   Sun Mar 30 11:21:58 2008 +0100
24035
24036     Adds support for the Prodrive PMDRA board, based on a DM6441
24037
24038     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
24039
24040 commit 1377b5583a48021d983e1fd565f7d40c89e84d63
24041 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
24042 Date:   Sun Mar 30 11:11:34 2008 +0100
24043
24044     Removes all board specific code from the arch. part for DM644x (DaVinci) boards
24045
24046     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
24047
24048 commit 1704dc20917b4f71e373e2c888497ee666d40380
24049 Author: Dirk Behme <dirk.behme@gmail.com>
24050 Date:   Sun Mar 30 11:09:01 2008 +0100
24051
24052     - Remove *_masked() functions as noted by Wolfgang
24053     - Adapt register naming to recent TI spec (sprue26, March 2007)
24054     - Fix reset_timer() handling
24055     - As reported by Pieter [1] the overflow fix introduced a
24056     delay of factor 16 (e.g 2 seconds became 32). While the
24057     overflow fix is basically okay, it missed to divide udelay by
24058     16, too. Fix this.
24059     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
24060     - Remove software division of timer count value (DIV(x)
24061     macro) and do it in hardware (TIM_CLK_DIV).
24062     Many thanks to Troy Kisky <troy.kisky@boundarydevices.com>
24063     and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for
24064     the hints & testing!
24065
24066     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
24067
24068     Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
24069
24070 commit ac3315c26e143c31680750c9c13f027efbcc887e
24071 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
24072 Date:   Thu Mar 6 16:45:44 2008 +0100
24073
24074     new PHY @ e1000 - 2nd try
24075
24076     Add 82541ER device with latest integrated IGP2 PHY.
24077     Introduced CONFIG_E1000_FALLBACK_MAC for NIC bring-up with empty eeprom.
24078
24079     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
24080     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24081
24082 commit c2b7da552293b50c9c9e46ed71267b02c2de9ea8
24083 Author: Daniel Hellstrom <daniel@gaisler.com>
24084 Date:   Fri Mar 28 20:22:53 2008 +0100
24085
24086     SPARC/LEON3: Added GRETH Ethernet 10/100/1000 driver.
24087
24088     GRETH is an Ethernet 10/100 or 10/100/1000 MAC with out without
24089     a debug link (EDCL). The GRETH core is documented in GRIP.pdf
24090     available at www.gaisler.com.
24091
24092     If the GRETH has GigaBit support (GBIT, Scatter gather, checksum
24093     offloading etc.) can be determined by a bit in the control register.
24094     The GBIT MAC is supported by operating in GRTEH 10/100 legacy mode.
24095
24096     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
24097     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24098
24099 commit 233a8bcd94997f3f345833a3b82e836222f2a206
24100 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
24101 Date:   Mon Mar 17 17:08:22 2008 -0500
24102
24103     Add CONFIG_MII_INIT in cmd_mii.c
24104
24105     Provide common configuration in do_mii() to execute mii_init()
24106     for all cpu architectures
24107
24108     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24109     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24110
24111 commit f605479de2deb11e834f31dfdb0af107c86aced6
24112 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
24113 Date:   Mon Mar 17 17:08:16 2008 -0500
24114
24115     ColdFire: Fix FEC transmit issue for MCF5275
24116
24117     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24118     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24119
24120 commit d9a2f416d6ac6058cd7845033ae4dc32ef1c0746
24121 Author: Aras Vaichas <arasv@magtech.com.au>
24122 Date:   Wed Mar 26 09:43:57 2008 +1100
24123
24124     DHCP request fix for Windows Server 2003
24125
24126     Added option CONFIG_BOOTP_DHCP_REQUEST_DELAY. This provides an optional
24127     delay before sending "DHCP Request" in net/bootp.c. Required to overcome
24128     interoperability problems with Windows Server 200x DHCP server when U-Boot
24129     client responds too fast for server to handle.
24130
24131     Signed-off-by: Aras Vaichas <arasv@magtech.com.au>
24132     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24133
24134 commit 97bf85d784fbed485e652eb907589ad0d5cb7262
24135 Author: Daniel Hellstrom <daniel@gaisler.com>
24136 Date:   Fri Mar 28 20:40:19 2008 +0100
24137
24138     MTD/CFI: flash_read64 is defined a weak function (for SPARC)
24139
24140     SPARC has implemented __raw_readq, it reads 64-bit from any 32-bit address.
24141     SPARC CPUs implement flash_read64 which calls __raw_readq.
24142
24143     For current SPARC architectures (LEON2 and LEON3) each read from the
24144     FLASH must lead to a cache miss. This is because FLASH can not be set
24145     non-cacheable since program code resides there, and alternatively disabling
24146     cache is poor from performance view, or doing a cache flush between each
24147     read is even poorer.
24148
24149     Forcing a cache miss on a SPARC is done by a special instruction "lda" -
24150     load alternative space, the alternative space number (ASI) is processor
24151     implementation spcific and can be found by including <asm/processor.h>.
24152
24153     Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
24154
24155 commit 70431e8a7393b6b793f77957f95b999fc9a269b8
24156 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
24157 Date:   Fri Mar 28 15:41:25 2008 +0100
24158
24159     Make MPC83xx one step closer to full relocation.
24160
24161     Remove a few absolute references to CFG_MONITOR_BASE for ppc/mpc83xx
24162     and use GOT relative reference.
24163
24164     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
24165     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24166
24167 commit 5b2793a3f3de34d439232b05acc8af67a028fd35
24168 Author: Michael Barkowski <michael.barkowski@freescale.com>
24169 Date:   Thu Mar 27 14:34:43 2008 -0400
24170
24171     mpc8323erdb: fix EEPROM page size and get MAC from EEPROM
24172
24173     This patch fixes eeprom page size so that you can now write more than
24174     64 bytes at a time.
24175
24176     It also makes the board take MAC addresses, if found, from EEPROM.
24177
24178     User should place up to 4 addresses at offset 0x7f00, for
24179     eth{,1,2,3}addr.  Any unused addresses should be zero.  This group of
24180     four six-byte values should have it's CRC at the end.  crc32 and
24181     eeprom commands can be used to accomplish this.
24182
24183     If CRC fails, MAC addresses come from the environment.  If CRC
24184     succeeds, the environment is overwritten at startup.
24185
24186     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
24187     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24188
24189 commit 8f325cff31f6e745e6540014b131b9a97f61944c
24190 Author: Michael Barkowski <michael.barkowski@freescale.com>
24191 Date:   Fri Mar 28 15:15:38 2008 -0400
24192
24193     mpc8323erdb: define CONFIG_PCI_SKIP_HOST_BRIDGE
24194
24195     Commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2 broke the onboard USB
24196     controller on the PCI bus in Linux on the MPC8323ERDB.
24197
24198     This fixes it by defining CONFIG_PCI_SKIP_HOST_BRIDGE in the board's
24199     config file.
24200
24201     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
24202     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24203
24204 commit e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9
24205 Author: Kim Phillips <kim.phillips@freescale.com>
24206 Date:   Fri Mar 28 10:19:07 2008 -0500
24207
24208     mpc83xx: cleanup System Part and Revision ID Register (SPRIDR) code
24209
24210     in the spirit of commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6,
24211     85xx's "Update SVR numbers to expand support", simplify SPRIDR processing
24212     and processor ID display.  Add REVID_{MAJ,MIN}OR macros to make
24213     REVID dependent code simpler.  Also added PARTID_NO_E and IS_E_PROCESSOR
24214     convenience macros.
24215
24216     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24217
24218 commit 81fd52c6c8fd19f0b7856b98217ce37c46c521af
24219 Author: Kim Phillips <kim.phillips@freescale.com>
24220 Date:   Fri Mar 28 10:18:53 2008 -0500
24221
24222     mpc83xx: display ddr frequency in board_add_ram_info banner
24223
24224     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24225
24226 commit 35cf155c5ec1ceab2849fa5b6aa3d9a3e9e6f482
24227 Author: Kim Phillips <kim.phillips@freescale.com>
24228 Date:   Fri Mar 28 10:18:40 2008 -0500
24229
24230     mpc83xx: unreinvent mem_clk
24231
24232     delete ddr_clk and use mem_clk instead.  Rename other ddr_*_clk to
24233     mem_*_clk for consistency's sake.
24234
24235     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24236
24237 commit 730e792926ca3fe4dd1b734a3bf44e55afa6f536
24238 Author: Kim Phillips <kim.phillips@freescale.com>
24239 Date:   Fri Mar 28 14:31:23 2008 -0500
24240
24241     mpc83xx: enable the SATA interface on mpc8315 rdb and mpc837x rdb boards
24242
24243     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24244
24245 commit 2eeb3e4fc54ef2f5d574dafd42c6ce93afa30393
24246 Author: Dave Liu <r63238@freescale.com>
24247 Date:   Wed Mar 26 22:57:19 2008 +0800
24248
24249     mpc83xx: enable the SATA interface on mpc837xemds board
24250
24251     Enable the first two SATA interfaces on MPC837xEMDS board,
24252     The two SATA ports are on LYNX1. (SATA0/1 on J4/5)
24253
24254     Signed-off-by: Dave Liu <daveliu@freescale.com>
24255     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24256
24257 commit 6f8c85e8d1865730c158d9ef5a06c70c3a10600a
24258 Author: Dave Liu <r63238@freescale.com>
24259 Date:   Wed Mar 26 22:56:36 2008 +0800
24260
24261     mpc83xx: initialize serdes for MPC837xEMDS boards
24262
24263     This patch is stolen from Anton Vorontsov's patch
24264     for mpc837xerdb boards.
24265
24266     The reference clk and xcorevdd voltage of serdes1/2
24267     is same between mpc837xemds and mpc837xerdb.
24268
24269     8377E: LYNX1- 2 SATA        LYNX2- 2 PCIE
24270     8378E: LYNX1- 2 SGMII       LYNX2- 2 PCIE
24271     8379E: LYNX1- 2 SATA        LYNX2- 2 SATA
24272
24273     Signed-off-by: Dave Liu <daveliu@freescale.com>
24274     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24275
24276 commit cc8e839abc80887ae832767b5930d40edd6d7eb7
24277 Author: Stefan Roese <sr@denx.de>
24278 Date:   Fri Mar 28 14:09:04 2008 +0100
24279
24280     ppc4xx: Canyonlands: Print SATA/PCIe configuration and board revision
24281
24282     Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
24283     interface. This usage can be configured with the jumper J6. This patch
24284     displays the current configuration upon bootup and changes the PCIe
24285     init loop, to only initialize the availabel PCIe slots.
24286
24287     Signed-off-by: Stefan Roese <sr@denx.de>
24288
24289 commit 90447ecbbac8572457b6d8903073ac3f120995ba
24290 Author: Tor Krill <tor@excito.com>
24291 Date:   Fri Mar 28 11:29:10 2008 +0100
24292
24293     MTD/CFI: Add support for 16bit legacy AMD flash
24294
24295     Add entry for 512Kx16 AMD flash to jedec_table.
24296     Read out 16bit device id if chipwidth is 16bit.
24297     Fixed coding style after Stefans feedback
24298
24299     Signed-off-by: Tor Krill <tor@excito.com>
24300
24301 commit 5e12e75d17c4b15a310a45cd78fe71b7698a8a8e
24302 Author: Stefan Roese <sr@denx.de>
24303 Date:   Fri Mar 28 11:02:53 2008 +0100
24304
24305     ppc: Small change to CFG_MEM_TOP_HIDE description
24306
24307     Signed-off-by: Stefan Roese <sr@denx.de>
24308
24309 commit 280df59a8d62c6e74c281b1cb7e2052df4d6cb00
24310 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24311 Date:   Thu Mar 27 15:44:12 2008 +0900
24312
24313     sh: Add support stat structure and stat.h
24314
24315     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24316
24317 commit 4be9eb789e72b845d6693cc36b70a0b3529b3f09
24318 Author: Mark Jonas <toertel@gmail.com>
24319 Date:   Sat Mar 22 19:27:52 2008 +0100
24320
24321     sh: Removed warning when compiling drivers/serial/serial_sh.c.
24322
24323     Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
24324     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24325
24326 commit f309fa38929ffba71230c02330ffa42f4bba6333
24327 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24328 Date:   Wed Mar 12 18:02:57 2008 +0900
24329
24330     sh: Remove disable_ctrlc function from R7780MP
24331
24332     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24333
24334 commit 6f4b266ff2a4fcc2bff985d6a217852469afddb3
24335 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24336 Date:   Wed Mar 12 17:55:15 2008 +0900
24337
24338     sh: Add maintainer of R7780MP to MAINTAINER file
24339
24340     Update MAINTAINER entry for R7780MP. And fix maintainer's name.
24341
24342     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24343
24344 commit f5e2466f7baa887a7df0c536333eea8231333497
24345 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24346 Date:   Tue Mar 25 17:11:24 2008 +0900
24347
24348     sh: Add support Renesas Solutions R2D plus board
24349
24350     R2D plus is SH reference board used with SH7751R.
24351     This board has 266Mhz CPU, 64MB SDRAM, Cardbus, CF interface,
24352     one PCI bus, VGA, and two Ethernet controller.
24353
24354     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24355
24356 commit e92c95180bb5bc5fd4051598a9d60beaba48988d
24357 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24358 Date:   Wed Mar 12 12:15:29 2008 +0900
24359
24360     sh: Add support SH4 cache control
24361
24362     Add support SH4 cache control and flash_cache function
24363
24364     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24365
24366 commit 28e5efde4d925fcb34901d0030d0648de2da7e89
24367 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24368 Date:   Mon Mar 24 01:53:01 2008 +0900
24369
24370     sh: Add support PCI host driver for SH7751/SH7751R
24371
24372     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24373
24374 commit ab8f4d40d069cd3cbe7563ddfe3e5f03b0c7c721
24375 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24376 Date:   Mon Mar 24 02:11:26 2008 +0900
24377
24378     sh: Move SuperH PCI driver from cpu/sh4 to drivers/pci
24379
24380     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24381
24382 commit 566933278101c144d75361ea682678a326c1290d
24383 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24384 Date:   Wed Mar 12 12:10:28 2008 +0900
24385
24386     sh: Add support SuperH SH7751/SH7751R
24387
24388     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24389
24390 commit 3313e0e26224fc9a0c445124f3455058c696df84
24391 Author: Mark Jonas <toertel@gmail.com>
24392 Date:   Mon Mar 10 11:37:10 2008 +0100
24393
24394     sh: Added support for SH7720 based board MPR2.
24395
24396     Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
24397     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24398
24399 commit 3ecff1d70ae93e628fe65b3fe1fc7c9c76cdf99f
24400 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24401 Date:   Thu Mar 6 14:05:53 2008 +0900
24402
24403     sh: Fix receive FIFO level register of SH4A
24404
24405     Receive FIFO level register is different in SH4A.
24406     Because register is different, cannot occasionally receive data.
24407
24408     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24409
24410 commit c133c1fb0b590662206b0eba70f4478ee0300a9a
24411 Author: Yusuke Goda <goda.yusuke@renesas.com>
24412 Date:   Tue Mar 11 12:55:12 2008 +0900
24413
24414     sh: Add support Renesas Solutions R7780MP
24415
24416     Renesas Solutions R7780MP is a reference board on SH7780.
24417     This board has serial, 10/100 base Ethernet deivice, CF slot
24418     and VGA devices. This board can set extension board.
24419     Extension board has 10/100/1000 base Ethernet device, PCI slot,
24420     S-ATA, iDVR slot.
24421
24422     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
24423     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24424
24425 commit 1a2334a4eb6386d7cd35d9de5fa39af2c764ad28
24426 Author: Yusuke Goda <goda.yusuke@renesas.com>
24427 Date:   Wed Mar 5 14:30:02 2008 +0900
24428
24429     sh: Add support PCI of SuperH and SH7780
24430
24431     This patch add support PCI of SuperH base code and SH7780 specific code.
24432
24433     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
24434     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24435
24436 commit b55523efff2ae11f0b9ae3cc405893c32eb78156
24437 Author: Yusuke Goda <goda.yusuke@renesas.com>
24438 Date:   Wed Mar 5 14:23:26 2008 +0900
24439
24440     sh: Add support SH7780
24441
24442     SH7780 is CPU of Renesas Technology.
24443     This CPU has
24444      - CPU clock 400MHz
24445      - PCI support
24446      - DDR-SDRAM controller
24447      - etc ...
24448
24449     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
24450     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24451
24452 commit c2042f5952a686c414031309b8f244513bf578f0
24453 Author: goda.yusuke <goda.yusuke@renesas.com>
24454 Date:   Fri Jan 25 20:46:36 2008 +0900
24455
24456     sh: Add support Renesas Solutions Migo-R board
24457
24458     Migo-R is a board based on SH7722 and has may devices.
24459     In this patch, supported SCIF, NOR flash and Ethernet.
24460
24461     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
24462     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24463
24464 commit 74d1e66d22dac91388bc538b2fe19f735edc5b82
24465 Author: Bartlomiej Sieka <tur@semihalf.com>
24466 Date:   Thu Mar 27 15:06:40 2008 +0100
24467
24468     Fix host tool build breakage, take two
24469
24470     Revert commit 87c8431f and fix build breakage so that the build continues
24471     to work on FC systems.
24472
24473     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
24474
24475 commit 7e4a0d25ed18f6437bdf59ebfa49bb0edc2f24e6
24476 Author: Stefan Roese <sr@denx.de>
24477 Date:   Wed Mar 19 09:36:47 2008 +0100
24478
24479     ppc4xx: Enable ECC on LWMON5
24480
24481     Since all ECC related problems seem to be resolved on LWMON5, this patch
24482     now enables ECC support.
24483
24484     We have to write the ECC bytes by zeroing and flushing in smaller
24485     steps, since the whole 256MByte takes too long for the external
24486     watchdog.
24487
24488     Signed-off-by: Stefan Roese <sr@denx.de>
24489
24490 commit 6433fa202a91a6594dd48f06807ac38ba27fa0bb
24491 Author: Larry Johnson <lrj@acm.org>
24492 Date:   Mon Mar 17 11:10:35 2008 -0500
24493
24494     ppc4xx: Updates to Korat-specific code
24495
24496     This patch contains updates for changes for the Korat PPC440EPx board.
24497     These changes include:
24498
24499     (1) Support for "permanent" and "upgradable" copies of U-Boot, as
24500     described in the new "doc/README.korat" file;
24501
24502     (2) a new memory map for the registers in the board's CPLD;
24503
24504     (3) a revised format for manufacturer's data in serial EEPROM; and
24505
24506     (4) changes to track updates to U-Boot for the Sequoia board.
24507
24508     Signed-off-by: Larry Johnson <lrj@acm.org>
24509
24510 commit f766cdf89b3a2a7634b8c5869f606150e332036c
24511 Author: Markus Brunner <super.firetwister@gmail.com>
24512 Date:   Thu Mar 27 10:46:25 2008 +0100
24513
24514     ppc4xx: PPC405EP Set EMAC noise filter bits
24515
24516     This bug was introduced with commit aee747f19b460a0e9da20ff21e90fdaac1cec359
24517     which enabled CFG_4xx_GPIO_TABLE for PPC405 and unintentionally
24518     disabled the setting of the emac noise filter bits for PPC405EP when CFG_4xx_GPIO_TABLE is set.
24519
24520     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
24521     Signed-off-by: Stefan Roese <sr@denx.de>
24522
24523 commit f66e2c8b25c04b79e5fb385bc8989c2de7f63991
24524 Author: Mike Nuss <mike@terascala.com>
24525 Date:   Wed Feb 20 11:54:20 2008 -0500
24526
24527     ppc4xx: Reconfigure PLL for 667MHz processor for PPC440EPx
24528
24529     On PPC440EPx without a bootstrap I2C EEPROM, the PLL can be reconfigured
24530     after startup to change the speed of the clocks. This patch adds the
24531     option CFG_PLL_RECONFIG. If this option is set to 667, the CPU
24532     initialization code will reconfigure the PLL to run the system with a CPU
24533     frequency of 667MHz and PLB frequency of 166MHz, without the need for an
24534     external EEPROM.
24535
24536     Signed-off-by: Mike Nuss <mike@terascala.com>
24537     Acked-by: Stefan Roese <sr@denx.de>
24538
24539 commit 87c8431fe24d48121f053fe67cff4ccfe097d4d1
24540 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24541 Date:   Thu Mar 27 09:12:40 2008 +0100
24542
24543     new-image: Fix host tool build breakage
24544
24545     Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
24546
24547 commit 6fb4b640562a10daff0dbe537638d511b5b48650
24548 Author: Stefan Roese <sr@denx.de>
24549 Date:   Thu Mar 27 10:24:03 2008 +0100
24550
24551     ppc: Set CFG_MEM_TOP_HIDE to 0 if not already defined
24552
24553     Signed-off-by: Stefan Roese <sr@denx.de>
24554
24555 commit 9462732a3ec551c11862450902cd8ee1bedea6d9
24556 Author: Stefan Roese <sr@denx.de>
24557 Date:   Wed Mar 19 10:23:43 2008 +0100
24558
24559     ppc4xx: Add fdt support to Prodrive alpr
24560
24561     Since this board will probably be ported to arch/powerpc in the
24562     near future, we add device tree support now. This way we are
24563     "ready" for arch/powerpc from now on.
24564
24565     Signed-off-by: Stefan Roese <sr@denx.de>
24566
24567 commit 511e4f9e7f7b6719e4d91d7f0fc89412b13b5150
24568 Author: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
24569 Date:   Mon Mar 17 09:27:56 2008 +0100
24570
24571     ppc4xx: Enable cache support on the ALPR board
24572
24573     Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
24574
24575 commit 14f73ca679f6fdb44cff0b7304d419db41a0ab69
24576 Author: Stefan Roese <sr@denx.de>
24577 Date:   Wed Mar 26 10:14:11 2008 +0100
24578
24579     ppc: Add CFG_MEM_TOP_HIDE option to hide memory area that doesn't get "touched"
24580
24581     If CFG_MEM_TOP_HIDE is defined in the board config header, this specified
24582     memory area will get subtracted from the top (end) of ram and won't get
24583     "touched" at all by U-Boot. By fixing up gd->ram_size the Linux kernel
24584     should gets passed the now "corrected" memory size and won't touch it
24585     either. This should work for arch/ppc and arch/powerpc. Only Linux board
24586     ports in arch/powerpc with bootwrapper support, which recalculate the
24587     memory size from the SDRAM controller setup, will have to get fixed
24588     in Linux additionally.
24589
24590     This patch enables this config option on some PPC440EPx boards as a workaround
24591     for the CHIP 11 errata. Here the description from the AMCC documentation:
24592
24593     CHIP_11: End of memory range area restricted access.
24594     Category: 3
24595
24596     Overview:
24597     The 440EPx DDR controller does not acknowledge any
24598     transaction which is determined to be crossing over the
24599     end-of-memory-range boundary, even if the starting address is
24600     within valid memory space. Any such transaction from any PLB4
24601     master will result in a PLB time-out on PLB4 bus.
24602
24603     Impact:
24604     In case of such misaligned bursts, PLB4 masters will not
24605     retrieve any data at all, just the available data up to the
24606     end of memory, especially the 440 CPU. For example, if a CPU
24607     instruction required an operand located in memory within the
24608     last 7 words of memory, the DCU master would burst read 8
24609     words to update the data cache and cross over the
24610     end-of-memory-range boundary. Such a DCU read would not be
24611     answered by the DDR controller, resulting in a PLB4 time-out
24612     and ultimately in a Machine Check interrupt. The data would
24613     be inaccessible to the CPU.
24614
24615     Workaround:
24616     Forbid any application to access the last 256 bytes of DDR
24617     memory. For example, make your operating system believe that
24618     the last 256 bytes of DDR memory are absent. AMCC has a patch
24619     that does this, available for Linux.
24620
24621     This patch sets CFG_MEM_TOP_HIDE for the following 440EPx boards:
24622     lwmon5, korat, sequoia
24623
24624     The other remaining 440EPx board were intentionally not included
24625     since it is not clear to me, if they use the end of ram for some
24626     other purpose. This is unclear, since these boards have CONFIG_PRAM
24627     defined and even comments like this:
24628
24629     PMC440.h:
24630     /* esd expects pram at end of physical memory.
24631      * So no logbuffer at the moment.
24632      */
24633
24634     It is strongly recommended to not use the last 256 bytes on those
24635     boards too. Patches from the board maintainers are welcome.
24636
24637     Signed-off-by: Stefan Roese <sr@denx.de>
24638
24639 commit c664bf8c3c9bb9e236891f0d8dfda883e86d159b
24640 Author: Stefan Roese <sr@denx.de>
24641 Date:   Thu Mar 27 10:09:05 2008 +0100
24642
24643     ppc4xx: Fix Canyonlands linker script (remove bogus ASSERT)
24644
24645     Signed-off-by: Stefan Roese <sr@denx.de>
24646
24647 commit d56a3ce179688cde61073a3690e21703d68fafd7
24648 Author: Stefan Roese <sr@denx.de>
24649 Date:   Tue Mar 25 17:51:13 2008 +0100
24650
24651     ppc4xx: Correctly pass phyiscal FLASH base address into dtb
24652
24653     The routine ft_board_setup() configures the EBC NOR mappings for the
24654     Linux physmap_of driver. Since on 460EX/GT we remap the FLASH from
24655     0x4.fc00.0000 to 0x4.cc00.0000 because of the max. 16MByte boot-CS
24656     problem, we need to pass the corrected address here too.
24657
24658     Signed-off-by: Stefan Roese <sr@denx.de>
24659
24660 commit 9ad31989de12ce5c67b07c4867ead47465655c4b
24661 Author: Stefan Roese <sr@denx.de>
24662 Date:   Wed Mar 19 16:35:12 2008 +0100
24663
24664     ppc4xx: Fix compilation warning in 4xx_enet.c
24665
24666     Signed-off-by: Stefan Roese <sr@denx.de>
24667
24668 commit 4c9e855734c523900322a7c3cdd9099b4f51b51d
24669 Author: Stefan Roese <sr@denx.de>
24670 Date:   Wed Mar 19 16:20:49 2008 +0100
24671
24672     ppc4xx: Add AMCC Glacier 406GT eval board support
24673
24674     This patch adds support for the AMCC Glacier 460GT eval board.
24675     The main difference to the Canyonlands board are listed here:
24676
24677     - 4 ethernet ports instead of 2
24678     - no SATA port
24679     - no USB port
24680
24681     Currently EMAC2+3 are not working. This will be fixed in a later
24682     release.
24683
24684     Signed-off-by: Stefan Roese <sr@denx.de>
24685
24686 commit d8bd643141af4710d7f1b69bbab6b760de0af0a1
24687 Author: Stefan Roese <sr@denx.de>
24688 Date:   Thu Mar 27 08:47:26 2008 +0100
24689
24690     ppc4xx: Mask 'vec' with 0x1f in uic_interrupt() for bit set/clear
24691
24692     Signed-off-by: Stefan Roese <sr@denx.de>
24693
24694 commit b9670dd85be6e0496ef2e231043c23cad9b1d903
24695 Author: Anatolij Gustschin <agust@denx.de>
24696 Date:   Wed Mar 26 21:05:43 2008 +0100
24697
24698     Fix out of tree building issue
24699
24700     Currently U-Boot building in some external directory
24701     doesn't work. This patch tries to fix the problem.
24702
24703     Signed-off-by: Anatolij Gustschin <agust@denx.de>
24704
24705 commit d4ee711d8a5c366ee3f857c26b927d12e66614ff
24706 Author: Anatolij Gustschin <agust@denx.de>
24707 Date:   Wed Mar 26 18:13:33 2008 +0100
24708
24709     README: update documentation (availability, links, etc.)
24710
24711     Fix typo in README
24712
24713     Signed-off-by: Anatolij Gustschin <agust@denx.de>
24714
24715 commit e813eae3bfeba9c0bda9d1bf9fc3d081f790972f
24716 Author: Anatolij Gustschin <agust@denx.de>
24717 Date:   Wed Mar 26 17:47:44 2008 +0100
24718
24719     Fix compilation error in cmd_usb.c
24720
24721     This patch fixes compilation error
24722     cmd_usb.c: In function 'do_usb':
24723     cmd_usb.c:552: error: void value not ignored as it ought to be
24724
24725     Signed-off-by: Anatolij Gustschin <agust@denx.de>
24726
24727 commit d8c82db482d6b535d12b419d6440b88bf7091c9b
24728 Author: Timur Tabi <timur@freescale.com>
24729 Date:   Fri Mar 14 17:45:29 2008 -0500
24730
24731     Add support for setting the I2C bus speed in fsl_i2c.c
24732
24733     Add support to the Freescale I2C driver (fsl_i2c.c) for setting and querying
24734     the I2C bus speed.  Current 8[356]xx boards define the CFG_I2C_SPEED macro,
24735     but fsl_i2c.c ignores it and uses conservative value when programming the
24736     I2C bus speed.
24737
24738     Signed-off-by: Timur Tabi <timur@freescale.com>
24739     Acked-by: Andy Fleming <afleming@freescale.com>
24740
24741 commit d049cc7f71c0d875e8f5099d1ed23666a82b8f8e
24742 Author: Wolfgang Denk <wd@denx.de>
24743 Date:   Thu Mar 27 00:03:57 2008 +0100
24744
24745     Coding style cleanup, update CHANGELOG
24746
24747     Signed-off-by: Wolfgang Denk <wd@denx.de>
24748
24749 commit fd0b1fe3c388a77e8fe00cdd930ca317a91198d4
24750 Author: Dave Liu <r63238@freescale.com>
24751 Date:   Wed Mar 26 22:55:32 2008 +0800
24752
24753     drivers: add the support for Freescale SATA controller
24754
24755     Add the Freescale on-chip SATA controller driver to u-boot,
24756     The SATA controller is used on the 837x and 8315 targets,
24757     The driver can be used to load kernel, fs and dtb.
24758
24759     The features list:
24760     - 1.5/3 Gbps link speed
24761     - LBA48, LBA28 support
24762     - DMA and FPDMA support
24763     - Two ports support
24764
24765     Signed-off-by: Dave Liu <daveliu@freescale.com>
24766
24767 commit bede87f4c87c3ccd868cc60ebf792e0560c6d024
24768 Author: Dave Liu <r63238@freescale.com>
24769 Date:   Wed Mar 26 22:54:44 2008 +0800
24770
24771     ata: add the readme for SATA command line
24772
24773     Signed-off-by: Dave Liu <daveliu@freescale.com>
24774
24775 commit cd54081cd479e542fc399b8a40651ff11a1ad849
24776 Author: Dave Liu <r63238@freescale.com>
24777 Date:   Wed Mar 26 22:53:24 2008 +0800
24778
24779     ata: enable the sata initialize on boot up
24780
24781     Signed-off-by: Dave Liu <daveliu@freescale.com>
24782
24783 commit 69386383c5c2b323c66495b0b0cef6a9714d83bf
24784 Author: Dave Liu <r63238@freescale.com>
24785 Date:   Wed Mar 26 22:52:36 2008 +0800
24786
24787     ata: add the fis struct for SATA
24788
24789     Signed-off-by: Dave Liu <daveliu@freescale.com>
24790
24791 commit ffc664e80dfb2e17de0df5ad39e91a02e9c361bc
24792 Author: Dave Liu <r63238@freescale.com>
24793 Date:   Wed Mar 26 22:51:44 2008 +0800
24794
24795     ata: add the libata support
24796
24797     add simple libata support in u-boot
24798
24799     Signed-off-by: Dave Liu <daveliu@freescale.com>
24800
24801 commit 8e9bb43429e50df55fa41932cbe65841ff579220
24802 Author: Dave Liu <r63238@freescale.com>
24803 Date:   Wed Mar 26 22:50:45 2008 +0800
24804
24805     ata: make the ata_piix driver using new SATA framework
24806
24807     original ata_piix driver is using IDE framework, not real
24808     SATA framework. For now, the ata_piix driver is only used
24809     by x86 sc520_cdp board. This patch makes the ata_piix driver
24810     use the new SATA framework, so
24811
24812     - remove the duplicated command stuff
24813     - remove the CONFIG_CMD_IDE define in the sc520_cdp.h
24814     - add the CONFIG_CMD_SATA define to sc520_cdp.h
24815
24816     Signed-off-by: Dave Liu <daveliu@freescale.com>
24817
24818 commit c7057b529c3c3cb9c0ac9060686a4068f1491bbe
24819 Author: Dave Liu <r63238@freescale.com>
24820 Date:   Wed Mar 26 22:49:44 2008 +0800
24821
24822     ata: add the support for SATA framework
24823
24824     - add the SATA framework
24825     - add the SATA command line
24826
24827     Signed-off-by: Dave Liu <daveliu@freescale.com>
24828
24829 commit 83c7f470a4ce94f33600f11ae85ce4dcf00aa90c
24830 Author: Dave Liu <r63238@freescale.com>
24831 Date:   Wed Mar 26 22:48:18 2008 +0800
24832
24833     ata: merge the header of ata_piix driver
24834
24835     move the sata.h from include/ to drivers/block/ata_piix.h
24836
24837     Signed-off-by: Dave Liu <daveliu@freescale.com>
24838
24839 commit 9eef62804d9695425b24c87b46a61a7fa74afee0
24840 Author: Dave Liu <r63238@freescale.com>
24841 Date:   Wed Mar 26 22:47:06 2008 +0800
24842
24843     ata: merge the ata_piix driver
24844
24845     move the cmd_sata.c from common/ to drivers/ata_piix.c,
24846     the cmd_sata.c have some part of ata_piix controller drivers.
24847     consolidate the driver to have better framework.
24848
24849     Signed-off-by: Dave Liu <daveliu@freescale.com>
24850
24851 commit b9e749e95354f33eb5dc6653c6db7d502adb95fe
24852 Author: Markus Klotzbuecher <mk@denx.de>
24853 Date:   Wed Mar 26 18:26:43 2008 +0100
24854
24855     USB, Storage: fix a bug introduced in commit
24856     f6b44e0e4d18fe507833a0f76d24a9aa72c123f1 that will cause usb_stor_info
24857     to only print only information on one storage device, but not for
24858     multiple.
24859
24860     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
24861
24862 commit 841e5edd1623f3fecb6bffc5c2f938ed7a947360
24863 Author: Anatolij Gustschin <agust@denx.de>
24864 Date:   Wed Mar 26 17:47:44 2008 +0100
24865
24866     Fix compilation error in cmd_usb.c
24867
24868     This patch fixes compilation error
24869     cmd_usb.c: In function 'do_usb':
24870     cmd_usb.c:552: error: void value not ignored as it ought to be
24871
24872     Signed-off-by: Anatolij Gustschin <agust@denx.de>
24873     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
24874
24875 commit dd6c910aadf27c822f17b87eae1a9bd0b2e3aa15
24876 Author: Kumar Gala <galak@kernel.crashing.org>
24877 Date:   Wed Mar 26 08:53:53 2008 -0500
24878
24879     85xx: Add cpu_mp_lmb_reserve helper to reserve boot page
24880
24881     Provide a board_lmb_reserve helper function to ensure we reserve
24882     the page of memory we are using for the boot page translation code.
24883
24884     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24885
24886 commit 79679d80021ab095e639e250ca472fe526da02e2
24887 Author: Kumar Gala <galak@kernel.crashing.org>
24888 Date:   Wed Mar 26 08:34:25 2008 -0500
24889
24890     85xx: Update multicore boot mechanism to ePAPR v0.81 spec
24891
24892     The following changes are needed to be inline with ePAPR v0.81:
24893
24894     * r4, r5 and now always set to 0 on boot release
24895     * r7 is used to pass the size of the initial map area (IMA)
24896     * EPAPR_MAGIC value changed for book-e processors
24897     * changes in the spin table layout
24898     * spin table supports a 64-bit physical release address
24899
24900     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24901
24902 commit 25eedb2c1958a13110c7de1fc809b624053cc69c
24903 Author: Jon Loeliger <jdl@freescale.com>
24904 Date:   Wed Mar 19 15:02:07 2008 -0500
24905
24906     FSL: Clean up board/freescale/common/Makefile
24907
24908     Each file that can be built here now follows some
24909     CONFIG_ option so that they are appropriately built
24910     or not, as needed.  And CONFIG_ defines were added
24911     to various board config files to make sure that happens.
24912
24913     The other board/freescale/*/Makefiles no longer need
24914     to reach up and over into ../common to build their
24915     individually needed files any more.
24916
24917     Boards that are CDS specific were renamed with cds_ prefix.
24918
24919     Signed-off-by: Jon Loeliger <jdl@freescale.com>
24920
24921 commit a5af4b358a7caa9c0aa374d4d894bf762ec37669
24922 Author: Kumar Gala <galak@kernel.crashing.org>
24923 Date:   Wed Feb 27 22:00:27 2008 -0600
24924
24925     85xx: Fix merge duplication
24926
24927     ft_fixup_cpu() got duplicated in some merge snafu.  Remove the duplicate.
24928
24929     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24930
24931 commit 5893b3d0a4084f87a06a5d3dc03db91206818941
24932 Author: James Yang <James.Yang@freescale.com>
24933 Date:   Tue Feb 12 16:35:07 2008 -0600
24934
24935     85xx: Expand CCSR space with more DDR controller registers.
24936
24937     Signed-off-by: James Yang <James.Yang@freescale.com>
24938     Signed-off-by: Jon Loeliger <jdl@freescale.com>
24939     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24940
24941 commit a3e77fa5359b3f9f59e4e946b46d57a53057cc85
24942 Author: James Yang <James.Yang@freescale.com>
24943 Date:   Fri Feb 8 18:05:08 2008 -0600
24944
24945     85xx: Speed up get_ddr_freq() and get_bus_freq()
24946
24947     get_ddr_freq() and get_bus_freq() used get_sys_info() each time they were
24948     called.  However, get_sys_info() recalculates extraneous information when
24949     called each time.  Have get_ddr_freq() and get_bus_freq() return memoized
24950     values from global_data instead.
24951
24952     Signed-off-by: James Yang <James.Yang@freescale.com>
24953     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24954
24955 commit e9ea679918fbc9a53fa2f2a904aac874ea736036
24956 Author: James Yang <James.Yang@freescale.com>
24957 Date:   Fri Feb 8 16:46:27 2008 -0600
24958
24959     85xx: Show DDR memory data rate in addition to the memory clock frequency.
24960
24961     Show the DDR memory data rate in addition to the memory clock
24962     frequency.  For DDR/DDR2 memories the memory data rate is 2x the
24963     memory clock.
24964
24965     Signed-off-by: James Yang <James.Yang@freescale.com>
24966     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24967
24968 commit 591933ca6eabc440e6ed6967233aaf56fce464a3
24969 Author: James Yang <James.Yang@freescale.com>
24970 Date:   Fri Feb 8 16:44:53 2008 -0600
24971
24972     85xx: get_tbclk() speed up and rounding fix
24973
24974     Speed up get_tbclk() by referencing pre-computed bus clock
24975     frequency value from global data instead of sys_info_t.  Fix
24976     rounding of result to nearest; previously it was rounding
24977     upwards.
24978
24979     Signed-off-by: James Yang <James.Yang@freescale.com>
24980     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24981
24982 commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6
24983 Author: Andy Fleming <afleming@freescale.com>
24984 Date:   Wed Feb 6 01:19:40 2008 -0600
24985
24986     Update SVR numbers to expand support
24987
24988     FSL has taken to using SVR[16:23] as an SOC sub-version field.  This
24989     is used to distinguish certain variants within an SOC family.  To
24990     account for this, we add the SVR_SOC_VER() macro, and update the SVR_*
24991     constants to reflect the larger value.  We also add SVR numbers for all
24992     of the current variants.  Finally, to make things neater, rather than
24993     use an enormous switch statement to print out the CPU type, we create
24994     and array of SVR/name pairs (using a macro), and print out the CPU name
24995     that matches the SVR SOC version.
24996
24997     Signed-off-by: Andy Fleming <afleming@freescale.com>
24998
24999 commit b83eef440cf3cef816172ccbb5897ccd8e403cf3
25000 Author: Andy Fleming <afleming@freescale.com>
25001 Date:   Wed Feb 6 01:12:57 2008 -0600
25002
25003     Add the Freescale PCI device IDs
25004
25005     Signed-off-by: Andy Fleming <afleming@freescale.com>
25006
25007 commit 7aff0c051ad0613171cf2b9941ee48675c62e7cd
25008 Author: Kumar Gala <galak@kernel.crashing.org>
25009 Date:   Thu Feb 14 11:04:23 2008 -0600
25010
25011     85xx: Added support for multicore boot mechanism
25012
25013     Added the cpu command that provides a generic mechanism to get status,
25014     reset, and release secondary cores in multicore processors.
25015
25016     Added support for using the ePAPR defined spin-table mechanism on 85xx.
25017
25018     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25019     Signed-off-by: Andy Fleming <afleming@freescale.com>
25020
25021 commit ec2b74ffd36f02c6123725e7c2533dd2deaf4b64
25022 Author: Kumar Gala <galak@kernel.crashing.org>
25023 Date:   Thu Jan 17 16:48:33 2008 -0600
25024
25025     85xx: Added support for multicore boot mechanism
25026
25027     Added the cpu command that provides a generic mechanism to get status,
25028     reset, and release secondary cores in multicore processors.
25029
25030     Added support for using the ePAPR defined spin-table mechanism on 85xx.
25031
25032     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25033
25034 commit f69766e4b5d47ecd3aa58677a8da875694f364f2
25035 Author: Kumar Gala <galak@kernel.crashing.org>
25036 Date:   Wed Jan 30 14:55:14 2008 -0600
25037
25038     85xx: Add the concept of CFG_CCSRBAR_PHYS
25039
25040     When we go to 36-bit physical addresses we need to keep the concept of
25041     the physical CCSRBAR address seperate from the virtual one.
25042
25043     For the majority of boards CFG_CCSBAR_PHYS == CFG_CCSRBAR
25044
25045     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25046
25047 commit 5b5eb9ca5b778f763bcf332697b35cc1e747626e
25048 Author: Wolfgang Denk <wd@denx.de>
25049 Date:   Wed Mar 26 15:38:47 2008 +0100
25050
25051     Coding style cleanup.
25052
25053     Signed-off-by: Wolfgang Denk <wd@denx.de>
25054
25055 commit da8808df7a9cef5a3d2ee286ef9ebf9de1780660
25056 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
25057 Date:   Wed Mar 26 13:02:13 2008 +0100
25058
25059     Add CFG_RTC_DS1337_NOOSC to turn off OSC output
25060
25061     The default settings for RTC DS1337 keeps the OSC
25062     output, 32,768 Hz, on. This add CFG_RTC_DS1337_NOOSC to
25063     turn it off.
25064
25065     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
25066
25067 commit 438a4c11260b4ea9805039b0b4f92f9df5306b02
25068 Author: Wolfgang Denk <wd@denx.de>
25069 Date:   Wed Mar 26 11:48:46 2008 +0100
25070
25071     Cleanup coding style, update CHANGELOG
25072
25073     Signed-off-by: Wolfgang Denk <wd@denx.de>
25074
25075 commit 218ca724c08ca8a649f0917cf201cf23d4b33f39
25076 Author: Wolfgang Denk <wd@denx.de>
25077 Date:   Wed Mar 26 10:40:12 2008 +0100
25078
25079     README: update documentation (availability, links, etc.)
25080
25081     Signed-off-by: Wolfgang Denk <wd@denx.de>
25082
25083 commit f6b44e0e4d18fe507833a0f76d24a9aa72c123f1
25084 Author: Aras Vaichas <arasv@magtech.com.au>
25085 Date:   Tue Mar 25 12:09:07 2008 +1100
25086
25087     USB Storage, add meaningful return value
25088
25089     This patch changes the "usb storage" command to return success if it
25090     finds a USB storage device, otherwise it returns error.
25091
25092     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
25093
25094 commit 18e69a35efbb078403db0c0063986470dad7d082
25095 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25096 Date:   Fri Mar 14 23:20:18 2008 +0300
25097
25098     83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role
25099
25100     Linux understands "host" (default), "peripheral" and "otg" (broken).
25101     Though, U-Boot doesn't restrict dr_mode variable to these values (think
25102     of renames in future).
25103
25104     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25105     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25106
25107 commit c7604783b236e368f225efb7b3efb418fe20b404
25108 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25109 Date:   Fri Mar 14 23:20:30 2008 +0300
25110
25111     tsec: fix link detection for the RTL8211B PHY
25112
25113     RTL8211B sets link state register after autonegotiation complete,
25114     so with bootdelay=0 RTL8211B will report lack of the link.
25115
25116     To fix this, we should wait for aneg to complete, even if the
25117     link is currently down.
25118
25119     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25120     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25121
25122 commit 7fa9cbb00dc83fcf175042b6f20c2c9bce9a15f4
25123 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25124 Date:   Mon Mar 24 20:47:09 2008 +0300
25125
25126     mpc83xx: add "fsl,soc" and "fsl,immr" compatible fixups
25127
25128     device_type = "soc" is being deprecated, newer device trees will use
25129     "fsl,soc" and/or "fsl,immr" for the soc nodes.
25130
25131     This patch also adds clock-frequency property for soc nodes (the same
25132     value as bus-frequency).
25133
25134     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25135
25136 commit 507e2d79c91441a0bb2cd3d0c31c8bfe3f8cec07
25137 Author: Joe D'Abbraccio <ljd015@freescale.com>
25138 Date:   Mon Mar 24 13:00:59 2008 -0400
25139
25140     Modified the DDR SDRAM clock control register to delay MCK/MCK_B 3/4 clock
25141
25142     With the original value of 1/2 clock cycle delay, the system ran relatively
25143     stable except when we run benchmarks that are intensive users of memory.
25144     When I run samba connected disk with a HDBENCH test, the system locks-up
25145     or reboots sporadically.
25146
25147     Signed-off by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
25148
25149 commit a7ba32d480a86db5db8dcd8ca66b21b4cadda923
25150 Author: Scott Wood <scottwood@freescale.com>
25151 Date:   Mon Mar 24 12:44:13 2008 -0500
25152
25153     mpc83xx: Set PCI I/O bus-address base to zero.
25154
25155     The device trees for these boards describe PCI I/O as starting from
25156     address zero from the device's perspective.
25157
25158     Placing I/O elsewhere may cause problems with certain PCI boards, and may
25159     cause problems with Linux.
25160
25161     Signed-off-by: Scott Wood <scottwood@freescale.com>
25162
25163 commit f700e7df7fecf2d3765ae568ce77ce788cde4f3e
25164 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25165 Date:   Mon Mar 24 20:47:05 2008 +0300
25166
25167     mpc83xx: MPC8360E-RDK: use 33.3(3)MHz CLKIN/SYS_CLK
25168
25169     At least on the "33MHz Pilot" board crystal is actually 33.3MHz.
25170     This patch fixes "system time drifting" problem.
25171
25172     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25173
25174 commit 3a0cfdd576dc9b16d1468d37339182607c697fb7
25175 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25176 Date:   Mon Mar 24 20:47:02 2008 +0300
25177
25178     mpc83xx: MPC8360E-RDK: define CONFIG_OF_STDOUT_VIA_ALIAS
25179
25180     This is needed to update /choosen/linux,stdout-path properly.
25181
25182     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25183
25184 commit 3419eb62f088d7a22f1d2a3cebf76b77e408b5b9
25185 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25186 Date:   Mon Mar 24 20:47:00 2008 +0300
25187
25188     mpc83xx: MPC8360E-RDK: add dhcp command
25189
25190     Plus modify environment to use it and remove bootfile env variable,
25191     it is internal and CONFIG_BOOTFILE is used for these purposes.
25192
25193     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25194
25195 commit d892b2dbb4087a26778bfd42470c3ea7d0e2b6aa
25196 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25197 Date:   Mon Mar 24 20:46:57 2008 +0300
25198
25199     mpc83xx: MPC8360E-RDK: rework ddr setup, enable ecc
25200
25201     Current DDR setup easily causes memory corruption, this patch fixes it.
25202
25203     Also fix TIMING_CFG0_MRS_CYC definition.
25204
25205     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25206
25207 commit d47d49cc37a38f2719a3e1b9bbe08ac810cf2d9a
25208 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25209 Date:   Mon Mar 24 20:46:53 2008 +0300
25210
25211     mpc83xx: MPC8360E-RDK: configure pario pins for AD7843 and FHCI
25212
25213     This patch adds qe pario pins configuration for AD7843 ADC/Touchscreen
25214     controller and FHCI (QE USB).
25215
25216     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25217
25218 commit 7ad959490962e6842648d87d4bd795ea6cdcce67
25219 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25220 Date:   Mon Mar 24 20:46:51 2008 +0300
25221
25222     mpc83xx: MPC8360E-RDK: add support for NAND
25223
25224     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25225
25226 commit 9a3e832aeb491861d029991241572ebdf4b5b61b
25227 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25228 Date:   Mon Mar 24 20:46:46 2008 +0300
25229
25230     mpc83xx: MPC8360E-RDK: use RGMII_RXID interface mode
25231
25232     This is needed for BCM PHYs to work on this board.
25233
25234     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25235
25236 commit 300615dc5d9b0a2022fbc6af0c13159e33fd752e
25237 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25238 Date:   Mon Mar 24 20:46:34 2008 +0300
25239
25240     uec: add support for Broadcom BCM5481 Gigabit PHY
25241
25242     This patch adds basic support for Broadcom BCM5481 PHY.
25243
25244     RXD-RXC delay quirk comes from MPC8360E-RDK BSP source, author is
25245     Peter Barada <peterb@logicpd.com>.
25246
25247     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25248
25249 commit 6a600c3a1876bc203445df4f0fd6b12648259666
25250 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25251 Date:   Mon Mar 24 20:46:28 2008 +0300
25252
25253     uec: add support for RGMII_RXID interface mode
25254
25255     PHY drivers will use it to setup software delay between RXD and RXC
25256     signals.
25257
25258     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25259
25260 commit 91cdaa3a9d7562b869d96774e9c9ddf142c0848d
25261 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25262 Date:   Mon Mar 24 20:46:24 2008 +0300
25263
25264     uec: add support for gbit mii status readings
25265
25266     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25267
25268 commit aabce7fb505ffe55ebf3bf4dcafdae97a581558d
25269 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25270 Date:   Mon Mar 24 17:40:47 2008 +0300
25271
25272     83xx: define CONFIG_OF_STDOUT_VIA_ALIAS for the MPC837XERDB boards
25273
25274     This is primarily for the early console support.
25275
25276     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25277
25278 commit 2bd7460e9283ec98565189b3cdbcfb2bcdcdd635
25279 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25280 Date:   Mon Mar 24 17:40:43 2008 +0300
25281
25282     83xx: initialize serdes for MPC837XRDB boards
25283
25284     On the MPC8377ERDB: 2 SATA and 2 PCI-E.
25285     On the MPC8378ERDB: 2 PCI-E
25286     On the MPC8379ERDB: 4 SATA
25287
25288     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25289
25290 commit 453316a2a19642d8afcbca7452e40a6b44a197b1
25291 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25292 Date:   Mon Mar 24 17:40:32 2008 +0300
25293
25294     83xx: serdes setup routines
25295
25296     This patch adds few routines to configure serdes on 837x targets.
25297
25298     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25299
25300 commit a796cdf9c377cb4e5d61d1079a296608f8fbd903
25301 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25302 Date:   Mon Mar 24 17:40:27 2008 +0300
25303
25304     83xx: split COBJS onto separate lines
25305
25306     ..plus get rid of some #ifdefs in the .c files.
25307
25308     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25309
25310 commit 46a3aeea73c13ab04ebf7a8739afb87ac5da94a3
25311 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25312 Date:   Mon Mar 24 17:40:23 2008 +0300
25313
25314     83xx: nand support for MPC837XRDB boards
25315
25316     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25317
25318 commit 82e45a204190593e8613145a928f998fb8c909c4
25319 Author: Jerry Van Baren <gvb.uboot@gmail.com>
25320 Date:   Tue Mar 18 21:44:41 2008 -0400
25321
25322     Enable CONFIG_FLASH_SHOW_PROGRESS on the MPC8360EMDS.
25323
25324     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
25325     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25326
25327 commit 0fa7a1b4719e325fce332689fb8754ec166191ff
25328 Author: Michael Barkowski <michael.barkowski@freescale.com>
25329 Date:   Thu Mar 20 13:15:39 2008 -0400
25330
25331     mpc8323erdb: remove RTC and add EEPROM
25332
25333     There's no on-board RTC on the MPC8323ERDB, but there is an EEPROM.
25334
25335     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
25336     Acked-by: Kim Phillips <kim.phillips@freescale.com>
25337
25338 commit 5bbeea86eb6afb872374cd23217cb3c1018443ed
25339 Author: Michael Barkowski <michael.barkowski@freescale.com>
25340 Date:   Thu Mar 20 13:15:34 2008 -0400
25341
25342     mpc8323erdb: Improve the system performance
25343
25344     The following changes are based on kernel UCC ethernet performance:
25345
25346     1.  Make the CSB bus pipeline depth as 4, and enable the repeat mode
25347     2.  Optimize transactions between QE and CSB.  Added CFG_SPCR_OPT
25348         switch to enable this setting.
25349
25350     The following changes are based on the App Note AN3369 and
25351     verified to improve memory latency using LMbench:
25352
25353     3.  CS0_CONFIG[AP_n_EN] is changed from 1 to 0
25354     4.  CS0_CONFIG[ODT_WR_CONFIG] set to 1.  Was a reserved setting
25355         previously.
25356     5.  TIMING_CFG_1[WRREC] is changed from 3clks to 2clks  (based on
25357         Twr=15ns, and this was already the setting in DDR_MODE)
25358     6.  TIMING_CFG_1[PRETOACT] is changed from 3clks to 2clks. (based on
25359         Trp=15ns)
25360     7.  TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 6clks. (based on
25361         Tras=40ns)
25362     8.  TIMING_CFG_1[ACTTORW] is changed from 3clks to 2clks. (based on
25363         Trcd=15ns)
25364     9.  TIMING_CFG_1[REFREC] changed from 21 clks to 11clks.  (based on
25365         Trfc=75ns)
25366     10. TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 7clks.  (based
25367         on Tfaw=50ns)
25368     11. TIMING_CFG_2[ADD_LAT] and DDR_MODE[AL] changed from 0 to 1 (based
25369         on CL=3 and WL=2).
25370
25371     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
25372     Acked-by: Kim Phillips <kim.phillips@freescale.com>
25373
25374 commit fc549c871f43933396a5b3e21d897023d4b31b8d
25375 Author: Michael Barkowski <michael.barkowski@freescale.com>
25376 Date:   Thu Mar 20 13:15:28 2008 -0400
25377
25378     mpc8323erdb: use readable DDR config macros
25379
25380     Use available shift/mask macros to define DDR configuration.
25381
25382     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
25383     Acked-by: Kim Phillips <kim.phillips@freescale.com>
25384
25385 commit 89c7784ed90ba50301eec521144f95111e472906
25386 Author: Timur Tabi <timur@freescale.com>
25387 Date:   Fri Feb 8 13:15:55 2008 -0600
25388
25389     83xx: Add Vitesse VSC7385 firmware uploading
25390
25391     Update the MPC8349E-mITX, MPC8313E-RDB, and MPC837XE-RDB board files to upload
25392     the Vitesse VSC7385 firmware.  Changed CONFIG_VSC7385 to CONFIG_VSC7385_ENET.
25393     Cleaned up the board header files to make selecting the VSC7385 easier to
25394     control.
25395
25396     Signed-off-by: Timur Tabi <timur@freescale.com>
25397     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25398
25399 commit b55d98c6d5b8694e560a0e727b14cb6921d7cfcc
25400 Author: Timur Tabi <timur@freescale.com>
25401 Date:   Fri Feb 8 13:15:54 2008 -0600
25402
25403     NET: Add Vitesse VSC7385 firmware uploading
25404
25405     The Vitesse VSC7385 is a 5-port switch found on the Freescale MPC8349E-mITX
25406     and other boards.  A small firwmare must be uploaded to its on-board memory
25407     before it can be enabled.  This patch adds the code which uploads firmware
25408     (but not the firmware itself).
25409
25410     Previously, this feature was provided by a U-Boot application that was
25411     made available only on Freescale BSPs.  The VSC7385 firmware must still
25412     be obtained separately, but at least there is no longer a need for a separate
25413     application.
25414
25415     Signed-off-by: Timur Tabi <timur@freescale.com>
25416     Acked-by: Ben Warren <biggerbadderben@gmail.com>
25417
25418 commit aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855
25419 Author: Wolfgang Denk <wd@denx.de>
25420 Date:   Wed Mar 26 00:52:10 2008 +0100
25421
25422     Coding Style cleanyp; update CHANGELOG
25423
25424     Signed-off-by: Wolfgang Denk <wd@denx.de>
25425
25426 commit 43ddd9c820fec44816188f53346b464e20b3142d
25427 Author: Jerry Van Baren <gvb.uboot@gmail.com>
25428 Date:   Sat Mar 22 14:23:49 2008 -0400
25429
25430     Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T
25431
25432     These defines embedded the u-boot env variables and/or the bd_t structure
25433     in the fdt blob.  The conclusion of discussion on the u-boot email list
25434     was that embedding these in the fdt blob is not useful: there are better
25435     ways of passing the data (in fact, the fdt blob itself replaces the
25436     bd_t struct).
25437
25438     The only board that enables these is the stxxtc and they don't appear
25439     to be used by linux.
25440
25441     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
25442     Acked-by: Kim Phillips <kim.phillips@freescale.com>
25443
25444 commit 22ed2285743359fd1fe73e411dff914b2256e68f
25445 Author: Stefan Roese <sr@denx.de>
25446 Date:   Mon Mar 17 10:49:25 2008 +0100
25447
25448     rtc: Remove 2nd reference to max6900.o in drivers/rtc/Makefile
25449
25450     Signed-off-by: Stefan Roese <sr@denx.de>
25451
25452 commit 1bb707c39a0833e91d9f797dd862aaaaf4af264d
25453 Author: Kyungmin Park <kmpark@infradead.org>
25454 Date:   Mon Mar 17 08:54:06 2008 +0900
25455
25456     Add Flex-OneNAND booting support
25457
25458     Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array
25459     using a NOR Flash interface. This on-chip integration enables system designers
25460     to reduce external system logic and use high-density NAND Flash
25461     in applications that would otherwise have to use more NOR components.
25462
25463     Flex-OneNAND enables users to configure to partition it into SLC and MLC areas
25464     in more flexible way. While MLC area of Flex-OneNAND can be used to store data
25465     that require low reliability and high density, SLC area of Flex-OneNAND
25466     to store data that need high reliability and high performance. Flex-OneNAND
25467     can let users take advantage of storing these two different types of data
25468     into one chip, which is making Flex-OneNAND more cost- and space-effective.
25469
25470     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
25471
25472 commit c512389cc4a10253249271ff6c887c6dab1f0db2
25473 Author: André Schwarz <andre.schwarz@matrix-vision.de>
25474 Date:   Thu Mar 13 13:50:52 2008 +0100
25475
25476     MPC5200: support setup without FEC
25477
25478     Include FEC specific nodes in ft_cpu_setup only if CONFIG_MPC5xxx_FEC is
25479     defined. Systems without FEC, i.e. no FEC node in DTB, should be possible.
25480
25481     Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
25482     Acked-by: Grant Likely <grant.likely@secretlab.ca>
25483
25484 commit aa3511e422946041ef626f80a05ae5e8bfc700e6
25485 Author: Jon Loeliger <jdl@freescale.com>
25486 Date:   Wed Mar 5 18:05:46 2008 -0600
25487
25488     FSL: Move board/mpc8266ads under board/freescale
25489
25490     Signed-off-by: Jon Loeliger <jdl@freescale.com>
25491
25492 commit 7f1d846e5c5754449c286587d099d85246062772
25493 Author: Jon Loeliger <jdl@freescale.com>
25494 Date:   Wed Mar 5 18:05:47 2008 -0600
25495
25496     FSL: Move board/mpc7448hpc2 under board/freescale
25497
25498     Signed-off-by: Jon Loeliger <jdl@freescale.com>
25499
25500 commit b7e24d283e34727c2a6cdfdac2e09a426c579b73
25501 Author: Jon Loeliger <jdl@freescale.com>
25502 Date:   Wed Mar 5 18:05:45 2008 -0600
25503
25504     FSL: Move board/mpc8260ads under board/freescale
25505
25506     Signed-off-by: Jon Loeliger <jdl@freescale.com>
25507
25508 commit 6a8a5dc4759867c45aa95580deb8bf26669a5d97
25509 Author: goda.yusuke <goda.yusuke@renesas.com>
25510 Date:   Wed Mar 5 17:08:33 2008 +0900
25511
25512     net: Add support AX88796L ethernet device
25513
25514     AX88796L is device of NE2000 compatible.
25515     This patch support AX88796L ethernet device.
25516
25517     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
25518     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25519
25520 commit e0a6140dd381e1eed1ada2291166ef2616d8822b
25521 Author: Wolfgang Denk <wd@denx.de>
25522 Date:   Tue Mar 25 22:50:41 2008 +0100
25523
25524     ne2000 driver: change #ifdef to Makefile conditional compilation
25525
25526     Signed-off-by: Wolfgang Denk <wd@denx.de>
25527
25528 commit e710185aae90c64d39c2d453e40e58ceefe4f250
25529 Author: goda.yusuke <goda.yusuke@renesas.com>
25530 Date:   Wed Mar 5 17:08:20 2008 +0900
25531
25532     net: Divided code of NE2000 ethernet driver
25533
25534     There are more devices of the NE2000 base.
25535     A present code is difficult for us to support more devices.
25536     To support more NE2000 clone devices, separated the function.
25537
25538     Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
25539     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25540
25541 commit 395bce4f59a507a60a475f7ee46bed47de9482df
25542 Author: Mike Frysinger <vapier@gentoo.org>
25543 Date:   Sun Feb 24 23:58:13 2008 -0500
25544
25545     net/Blackfin: move on-chip MAC driver into drivers/net/
25546
25547     The Blackfin on-chip MAC driver was being managed in the BF537-STAMP board
25548     directory, but it is not board specific, so relocate it to the drivers dir
25549     so that other Blackfin ports can utilize it.
25550
25551     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25552
25553 commit 8a30b4700942f37495d2e67f5998cdffb6e3ba8a
25554 Author: Mike Frysinger <vapier@gentoo.org>
25555 Date:   Sun Feb 24 23:52:35 2008 -0500
25556
25557     smc91111: use SSYNC() rather than asm(ssync) for Blackfin
25558
25559     Since the "ssync" instruction may have hardware anomalies associated with
25560     it, have the smc91111 driver use the SSYNC macro rather than invoking it
25561     directly.  We workaround all the anomalies via this macro.
25562
25563     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25564
25565 commit 77ff7b7444ceb8022b46114f3d0b6d18e2fd1138
25566 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
25567 Date:   Sun Feb 17 22:57:47 2008 +0000
25568
25569     8xx: Update OF support on 8xx
25570
25571     This patch does some shifting around of OF support on 8xx.
25572
25573     Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
25574
25575 commit 9c666a7db0b2285a270c68810889ce7d5dba304b
25576 Author: Kumar Gala <galak@kernel.crashing.org>
25577 Date:   Fri Feb 15 15:16:18 2008 -0600
25578
25579     ppc: Allow boards to specify how much memory they can map
25580
25581     For historical reasons we limited the stack to 256M because some boards
25582     could only map that much via BATS.  However newer boards are capable of
25583     mapping more memory (for example 85xx is capble of doing up to 2G).
25584
25585     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25586
25587 commit a6f5f317cd074bbbfa2aab4fca05904c811c19fb
25588 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
25589 Date:   Fri Feb 15 01:05:58 2008 +0000
25590
25591     8xx : Add OF support to Adder875 board port - resubmit
25592
25593     Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
25594
25595 commit d058698fd2d9f769ff38ac53c8708b3fdd314f2d
25596 Author: Kumar Gala <galak@kernel.crashing.org>
25597 Date:   Thu Feb 14 20:44:42 2008 -0600
25598
25599     Add setexpr command
25600
25601     Add a simple expr style command that will set an env variable as the result
25602     of the command.  This allows us to do simple math in shell.  The following
25603     operations are supported: &, |, ^, +, -, *, /.
25604
25605     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25606
25607 commit 3f105faa64b9826e088711fdfcaa70cb1230397a
25608 Author: Jon Loeliger <jdl@freescale.com>
25609 Date:   Wed Mar 5 17:27:48 2008 -0600
25610
25611     FSL: Move board/mpc7448hpc2 under board/freescale
25612
25613     Signed-off-by: Jon Loeliger <jdl@freescale.com>
25614
25615 commit 449c703374a8868453425e15da7e2f76221b72e4
25616 Author: Jon Loeliger <jdl@freescale.com>
25617 Date:   Wed Mar 5 17:21:43 2008 -0600
25618
25619     FSL: Move board/mpc8266ads under board/freescale
25620
25621     Signed-off-by: Jon Loeliger <jdl@freescale.com>
25622
25623 commit 5863577989ad689427bb750107e9a75f1c1645d2
25624 Author: Jon Loeliger <jdl@freescale.com>
25625 Date:   Wed Mar 5 16:41:41 2008 -0600
25626
25627     FSL: Move board/mpc8260ads under board/freescale
25628
25629     Signed-off-by: Jon Loeliger <jdl@freescale.com>
25630
25631 commit 8a773983957ee6c4aa344469b742f29c7d26afbd
25632 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25633 Date:   Tue Mar 25 21:30:08 2008 +0900
25634
25635     [MIPS] Move gth2_config from ARM section to MIPS
25636
25637     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25638
25639 commit 373b16fc0c5ae34d28b9027f809ae3cbf45cdd15
25640 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25641 Date:   Tue Mar 25 21:30:07 2008 +0900
25642
25643     [MIPS] Extend MIPS_MAX_CACHE_SIZE upto 64kB
25644
25645     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25646
25647 commit d98e348e2ed5aab8f7a6471ff628ab0688b8a459
25648 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25649 Date:   Tue Mar 25 21:30:07 2008 +0900
25650
25651     [MIPS] Fix dcache_status()
25652
25653     You can't judge UNCACHED by Config.K0 LSB.
25654
25655     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25656
25657 commit b0c66af53ec9385ac2d1cc2e5d7d1ecdc81caf34
25658 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25659 Date:   Tue Mar 25 21:30:07 2008 +0900
25660
25661     [MIPS] Introduce _machine_restart
25662
25663     Handles machine specific functions by using weak functions.
25664
25665     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25666
25667 commit decaba6f5cf386d569ac3997bebb871b966c6b18
25668 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25669 Date:   Tue Mar 25 21:30:07 2008 +0900
25670
25671     [MIPS] Cleanup CP0 Status initialization
25672
25673     Add setup_c0_status from Linux. For the moment we disable interrupts, set
25674     CU0, mark the kernel mode, and clear ERL and EXL. This is good enough for
25675     reset-time configuration and will work well across most processors.
25676
25677     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25678
25679 commit d43d43ef2845af309c25a64bb9c2c5fb3261bc23
25680 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25681 Date:   Tue Mar 25 21:30:07 2008 +0900
25682
25683     [MIPS] Initialize CP0 Cause before setting up CP0 Status register
25684
25685     Without this change, we'll be suffering from deffered WATCH exception
25686     once Status.EXL is cleared. Make sure Cause.WP is cleared.
25687
25688     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25689
25690 commit 26138623230ca2bad3c78e05a65527ea70c8b688
25691 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25692 Date:   Tue Mar 25 21:30:07 2008 +0900
25693
25694     [MIPS] INCA-IP: Move watchdog init code from start.S to lowlevel_init()
25695
25696     Move things to appropriate place.
25697
25698     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25699
25700 commit ccf8f824ef67df028dedb29f8ea5d71a5a88d895
25701 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25702 Date:   Tue Mar 25 21:30:06 2008 +0900
25703
25704     [MIPS] Implement flush_cache()
25705
25706     We do Hit_Writeback_Inv_D and Hit_Invalidate_I. You might think that you
25707     don't need to do Hit_Invalidate_I, but flush_cache() needs it since this
25708     function is used not only in U-Boot specfic programs but also at loading
25709     target binaries.
25710
25711     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25712
25713 commit 2e0e5271aac917812a76c72030a2b2c6f1d3387d
25714 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25715 Date:   Tue Mar 25 21:30:06 2008 +0900
25716
25717     [MIPS] Fix I-/D-cache initialization loops
25718
25719     Currently we do 1) Index_Store_Tag_I, 2) Fill and 3) Index_Store_Tag_I
25720     again per a loop for I-cache initialization. But according to 'See MIPS
25721     Run', we're encouraged to use three separate loops rather than combining
25722     them *for both I- and D-cache*. This patch tries to fix this.
25723
25724     In accordance with fixing above, mips_init_[id]cache are separated from
25725     mips_cache_reset(), and rewrite cache loops are completely rewritten with
25726     useful macros.
25727
25728     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25729
25730 commit 1898840797c7f50799377bd5b285a8a93a82c419
25731 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25732 Date:   Tue Mar 25 21:30:06 2008 +0900
25733
25734     [MIPS] Replace memory clearance code with f_fill64
25735
25736     This routine fills memory with zero by 64 bytes, and is 64-bit capable.
25737
25738     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25739
25740 commit 2f5d414ccb4024dd0992ff6b22561732dbc73590
25741 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25742 Date:   Tue Mar 25 21:30:06 2008 +0900
25743
25744     [MIPS] cpu/mips/cache.S: Introduce NESTED/LEAF/END macros
25745
25746     This patch replaces the current function definitions with NESTED, LEAF
25747     and END macro. They specify some more additional information about the
25748     function; an alignment of symbol, type of symbol, stack frame usage, etc.
25749     These information explicitly tells the assembler and the debugger about
25750     the types of code we want to generate.
25751
25752     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25753
25754 commit 282223a607c611425fa33f5428f8eae6636972bb
25755 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25756 Date:   Tue Mar 25 11:43:17 2008 +0900
25757
25758     [MIPS] asm headers' updates
25759
25760     Make some asm headers adjusted to the latest Linux kernel.
25761
25762     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25763
25764 commit e1390801a3c1a2b6d12fa90be368efc19f5b9bfd
25765 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25766 Date:   Tue Mar 25 11:39:29 2008 +0900
25767
25768     [MIPS] Request for the 'mips_cache_lock()' removal
25769
25770     The initial intension of having mips_cache_lock() was to use the cache
25771     as memory for temporary stack use so that a C environment can be set up
25772     as early as possible.
25773
25774     But now mips_cache_lock() follow lowlevel_init(). We've already have the
25775     real memory initilaized at this point, therefore we could/should use it.
25776     No reason to lock at all.
25777
25778     Other problems:
25779
25780     Cache locking is not consistent across MIPS implementaions. Some imple-
25781     mentations don't support locking at all. The style of locking varies -
25782     some support per line locking, others per way, etc. Some parts use bits
25783     in status registers instead of cache ops. Current mips_cache_lock() is
25784     not necessarily general-purpose.
25785
25786     And this is worthy of special mention; once U-Boot/MIPS locks the lines,
25787     they are never get unlocked, so the code relies on whatever gets loaded
25788     after U-Boot to re-initialize the cache and clear the locks. We're sup-
25789     posed to have CFG_INIT_RAM_LOCK and unlock_ram_in_cache() implemented,
25790     but leave the situation as it is for a long time.
25791
25792     For these reasons, I proposed the removal of mips_cache_lock() from the
25793     global start-up code.
25794
25795     This patch adds CFG_INIT_RAM_LOCK_MIPS to make existing users aware that
25796     *things have changed*. If he wants the same behavior as before, he needs
25797     to have CFG_INIT_RAM_LOCK_MIPS in his config file.
25798
25799     If we don't have any regression report through several releases, then
25800     we'll remove codes entirely.
25801
25802     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25803     Acked-by: Andrew Dyer <amdyer@gmail.com>
25804
25805 commit 0d48926c87ec96f974a6ac4034f4a2f2eab3255f
25806 Author: Yuri Tikhonov <yur@emcraft.com>
25807 Date:   Mon Mar 24 11:30:54 2008 +0100
25808
25809     lwmon5 SYSMON POST: fix backlight control
25810
25811     If the LWMON5 config has SYSMON POST among CONFIG_POSTs which may be
25812     run on the board, then the SYSMON POST controls the display backlight
25813     (doesn't switch backlight ON if POST FAILED, and does switch the
25814     backlight ON if PASSED).
25815
25816     If not, then the video driver controls the display backlight (just
25817     switch ON the backlight upon initialization).
25818
25819     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
25820
25821 commit ff2bdfb2c1e073f65c065011f1e18d0a130bd3d8
25822 Author: Yuri Tikhonov <yur@emcraft.com>
25823 Date:   Mon Mar 24 11:29:14 2008 +0100
25824
25825     lwmon5 SYSMON POST: fix handling of negative temperatures
25826
25827     Fix errors in the LWMON5 Sysmon POST for negative temperatures.
25828
25829     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
25830
25831 commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
25832 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25833 Date:   Fri Mar 7 16:04:25 2008 +0900
25834
25835     pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option
25836
25837     In current source code, when the device number of PCI is 0, process PCI
25838     bridge without fail. However, when the device number is 0, it is not PCI
25839     always bridge. There are times when device of PCI allocates.
25840
25841     When CONFIG_PCI_SKIP_HOST_BRIDGE is enable, this problem is solved when
25842     use this patch.
25843
25844     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25845     Acked-by: Stefan Roese <sr@denx.de>
25846
25847 commit 86aea3eaefa248ffb9328e2b50c64720489cdbeb
25848 Author: Yuri Tikhonov <yur@emcraft.com>
25849 Date:   Fri Mar 21 09:18:40 2008 +0100
25850
25851     LWMON5: fix dsPIC POST
25852
25853     Add test for DPIC_SYS_ERROR_REG to be zero in the LWMON5 dsPIC POST.
25854
25855     Signed-off-by: Yuri Tikhonov <yur@emcraft.com> ---
25856
25857 commit 388b82fddc7c05596f3f615f190da0448227dc82
25858 Author: Bartlomiej Sieka <tur@semihalf.com>
25859 Date:   Thu Mar 20 23:23:13 2008 +0100
25860
25861     [new uImage] Enable new uImage support for the pcs440ep board.
25862
25863     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25864
25865 commit 95f4ec2b9c910c7261e6f060ea530d58b039692d
25866 Author: Bartlomiej Sieka <tur@semihalf.com>
25867 Date:   Thu Mar 20 23:23:13 2008 +0100
25868
25869     [new uImage] Do not compile new uImage format support by default
25870
25871     Disable default building of new uImage format support in preparation
25872     for merge with the master. Support for new format can be enabled on
25873     a per-board basis, by defining the following in the board's config file:
25874
25875     #define CONFIG_FIT             1
25876     #define CONFIG_OF_LIBFDT       1
25877
25878     This can be optionally defined to give more verbose output:
25879
25880     #define CONFIG_FIT_VERBOSE     1 /* enable fit_format_{error,warning}() */
25881
25882     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25883
25884 commit dafaede8a46c7159310239e036c93e31c6374487
25885 Author: Bartlomiej Sieka <tur@semihalf.com>
25886 Date:   Thu Mar 20 23:20:31 2008 +0100
25887
25888     [new uImage] Disable debuging output in preparation for merge with master
25889
25890     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25891
25892 commit fbe7a155027beacebaee9b32e1ada781fe924bca
25893 Author: Bartlomiej Sieka <tur@semihalf.com>
25894 Date:   Thu Mar 20 19:38:45 2008 +0100
25895
25896     [new uImage] Compilation and new uImage handling fixes for imxtract
25897
25898     Fix imxtract command not being compiled-in despite CONFIG_CMD_XIMG being in
25899     include/config_cmd_default.h. Fix few warnings and handling of new format
25900     images.
25901
25902     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25903
25904 commit 36cc8cbb3379d5166f882641123521735c469f92
25905 Author: Bartlomiej Sieka <tur@semihalf.com>
25906 Date:   Thu Mar 20 23:10:19 2008 +0100
25907
25908     [new uImage] Fix autoscr command used with new uImage format
25909
25910     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25911
25912 commit 43142e817f0597be412e7cbe19413f5532eafa5d
25913 Author: Bartlomiej Sieka <tur@semihalf.com>
25914 Date:   Thu Mar 20 23:10:19 2008 +0100
25915
25916     [new uImage] Fix *.its files location in documentation
25917
25918     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25919
25920 commit 81a0ac62ea29f8252d0a714709d0ecfdbba2a15e
25921 Author: Wolfgang Denk <wd@denx.de>
25922 Date:   Thu Mar 20 22:01:38 2008 +0100
25923
25924     lwmon5 POST: remove unreachable code
25925
25926     plus some coding style cleanup
25927
25928     Signed-off-by: Wolfgang Denk <wd@denx.de>
25929
25930 commit b73a19e1609d0f705cbab8014ca17aefe89e4c76
25931 Author: Yuri Tikhonov <yur@emcraft.com>
25932 Date:   Thu Mar 20 17:56:04 2008 +0300
25933
25934     LWMON5: POST RTC fix
25935
25936     Modify the RTC API to provide one a status for the time reported by
25937     the rtc_get() function:
25938       0 - a reliable time is guaranteed,
25939     < 0 - a reliable time isn't guaranteed (power fault, clock issues,
25940           and so on).
25941
25942     The RTC chip drivers are responsible for providing this info if the
25943     corresponding chip supports such functionality. If not - always
25944     report that the time is reliable.
25945
25946     The POST RTC test was modified to detect the RTC faults utilizing
25947     this new rtc_get() feature.
25948
25949     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
25950
25951 commit a5cc5555ccee596908a7d8cf22a104f6b993bfd5
25952 Author: Martin Krause <martin.krause@tqs.de>
25953 Date:   Wed Mar 19 14:25:14 2008 +0100
25954
25955     TQM5200B: update MTD partition layout
25956
25957     - insert partition for dtb blob to TQM5200B MTD layout
25958     - set env variables dependent on the configured board
25959       (TQM5200 or TQM5200B)
25960
25961     Signed-off-by: Martin Krause <martin.krause@tqs.de>
25962
25963 commit f0105727d132f56a21fa3ed8b162309cca6cac44
25964 Author: Stefan Roese <sr@denx.de>
25965 Date:   Wed Mar 19 07:09:26 2008 +0100
25966
25967     CFI: Small cleanup for FLASH_SHOW_PROGRESS
25968
25969     With this patch we don't need that many #ifdef's in the code. It moves
25970     the subtraction into the macro and defines a NOP-macro when
25971     CONFIG_FLASH_SHOW_PROGRESS is not defined.
25972
25973     Signed-off-by: Stefan Roese <sr@denx.de>
25974     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
25975
25976 commit 9a042e9ca512beaaa2cb450274313fc477141241
25977 Author: Jerry Van Baren <gvb.uboot@gmail.com>
25978 Date:   Sat Mar 8 13:48:01 2008 -0500
25979
25980     Flash programming progress countdown.
25981
25982     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
25983
25984 commit 5e339fd9ed539a7d7fec59cfc88f0857ab26a53f
25985 Author: Bartlomiej Sieka <tur@semihalf.com>
25986 Date:   Wed Mar 19 10:00:06 2008 +0100
25987
25988     [new uImage] Fix style issue spotted by Wolfgang Denk <wd@denx.org>
25989
25990     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25991
25992 commit 11abe45c48ec3485a6c1a5168ce8d79c3288adc1
25993 Author: David Gibson <david@gibson.dropbear.id.au>
25994 Date:   Mon Feb 18 18:09:04 2008 +1100
25995
25996     libfdt: Remove no longer used code from fdt_node_offset_by_compatible()
25997
25998     Since fdt_node_offset_by_compatible() was converted to the new
25999     fdt_next_node() iterator, a chunk of initialization code became
26000     redundant, but was not removed by oversight.  This patch cleans it up.
26001
26002     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
26003
26004 commit d0ccb9b140b472039732de102fc14597eedb14df
26005 Author: David Gibson <david@gibson.dropbear.id.au>
26006 Date:   Mon Feb 18 18:06:31 2008 +1100
26007
26008     libfdt: Trivial cleanup for CHECK_HEADER)
26009
26010     Currently the CHECK_HEADER() macro is defined local to fdt_ro.c.
26011     However, there are a handful of functions (fdt_move, rw_check_header,
26012     fdt_open_into) from other files which could also use it (currently
26013     they open-code something more-or-less identical).  Therefore, this
26014     patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those
26015     places.
26016
26017     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
26018
26019 commit fe30a354cdbb808b5f15366a935b151a4ccee74f
26020 Author: Kumar Gala <galak@kernel.crashing.org>
26021 Date:   Wed Feb 20 14:32:36 2008 -0600
26022
26023     Fix fdt boardsetup command parsing
26024
26025     The introduciton of the 'fdt bootcpu' broke parsing for 'fdt boardsetup'.
26026
26027     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26028
26029 commit 804887e6001e2f00bea11431bf34d6d472512cda
26030 Author: Kumar Gala <galak@kernel.crashing.org>
26031 Date:   Fri Feb 15 03:34:36 2008 -0600
26032
26033     Add sub-commands to fdt
26034
26035     fdt header                          - Display header info
26036     fdt bootcpu <id>                    - Set boot cpuid
26037     fdt memory <addr> <size>            - Add/Update memory node
26038     fdt rsvmem print                    - Show current mem reserves
26039     fdt rsvmem add <addr> <size>        - Add a mem reserve
26040     fdt rsvmem delete <index>           - Delete a mem reserves
26041
26042     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26043
26044 commit f84d65f9b085ffbed464d1d58e8aaa8f5a2efc07
26045 Author: David Gibson <david@gibson.dropbear.id.au>
26046 Date:   Thu Feb 14 16:50:34 2008 +1100
26047
26048     libfdt: Fix NOP handling bug in fdt_add_subnode_namelen()
26049
26050     fdt_add_subnode_namelen() has a bug if asked to add a subnode to a
26051     node which has NOP tags interspersed with its properties.  In this
26052     case fdt_add_subnode_namelen() will put the new subnode before the
26053     first NOP tag, even if there are properties after it, which will
26054     result in an invalid blob.
26055
26056     This patch fixes the bug, and adds a testcase for it.
26057
26058     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
26059
26060 commit ae0b5908de3b9855f8931bc9b32c9fc4962df5a9
26061 Author: David Gibson <david@gibson.dropbear.id.au>
26062 Date:   Tue Feb 12 11:58:31 2008 +1100
26063
26064     libfdt: Add and use a node iteration helper function.
26065
26066     This patch adds an fdt_next_node() function which can be used to
26067     iterate through nodes of the tree while keeping track of depth.  This
26068     function is used to simplify the iteration code in a lot of other
26069     functions, and is also exported for use by library users.
26070
26071     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
26072
26073 commit 9eaeb07a7185d852c7aa10735ecd4e9edf24fb5d
26074 Author: David Gibson <david@gibson.dropbear.id.au>
26075 Date:   Fri Jan 11 14:55:05 2008 +1100
26076
26077     libfdt: Add fdt_set_name() function
26078
26079     This patch adds an fdt_set_name() function to libfdt, mirroring
26080     fdt_get_name().  This is a r/w function which alters the name of a
26081     given device tree node.
26082
26083     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
26084
26085 commit 23e20aa6488e6c0622496549861bfdc74108debe
26086 Author: Yuri Tikhonov <yur@pollux.denx.de>
26087 Date:   Tue Mar 18 13:33:30 2008 +0100
26088
26089     lwmon5: Fix register test logic to match the specific GDC h/w.
26090
26091     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
26092     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26093
26094 commit 46bc0a938779aa1d664b847d36b08aa00f22e539
26095 Author: Yuri Tikhonov <yur@pollux.denx.de>
26096 Date:   Tue Mar 18 13:27:57 2008 +0100
26097
26098     Fix backlight in the lwmon5 POST.
26099
26100     Backlight was switched on even when temperature was too low.
26101
26102     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
26103     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26104
26105 commit 3d61018643a2cd38c145aa6dde53f3f5f1a0e9cf
26106 Author: Yuri Tikhonov <yur@pollux.denx.de>
26107 Date:   Wed Feb 6 18:48:36 2008 +0100
26108
26109     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).
26110
26111      To enable this, alternative, configuration the U-Boot board configuration
26112     file for lwmon5 includes the definitions of alternative addresses for header
26113     (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
26114
26115      The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
26116     and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
26117     lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
26118
26119     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26120
26121 commit 0f009f781b5b88f25769e154ea4d42db13baf0c6
26122 Author: Yuri Tikhonov <yur@pollux.denx.de>
26123 Date:   Mon Feb 4 17:11:53 2008 +0100
26124
26125     Add support for the lwmon5 board reset via GPIO58.
26126
26127     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
26128     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26129
26130 commit f694e32f93565ec1fa8d0226c584d6b89e931ed9
26131 Author: Yuri Tikhonov <yur@pollux.denx.de>
26132 Date:   Mon Feb 4 17:09:55 2008 +0100
26133
26134     Some fixes to dspic, fpga, and gdc post tests for lwmon5. Disable external watch-dog for now.
26135
26136     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
26137     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26138
26139 commit b428f6a8c65c5303e5f96db8d24f2f699d94a98c
26140 Author: Yuri Tikhonov <yur@pollux.denx.de>
26141 Date:   Mon Feb 4 14:11:03 2008 +0100
26142
26143     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.
26144
26145     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
26146     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26147
26148 commit 8f15d4addd49c956412e1e3bfc764a0c8b1f3184
26149 Author: Yuri Tikhonov <yur@pollux.denx.de>
26150 Date:   Mon Feb 4 14:10:42 2008 +0100
26151
26152     The patch adds new POST tests for the Lwmon5 board. These are:
26153
26154     * External Watchdog test;
26155     * dsPIC tests;
26156     * FPGA test;
26157     * GDC test;
26158     * Sysmon tests.
26159
26160     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
26161     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26162
26163 commit c2ed33efbfff5767bca236828e021c55fd547b6c
26164 Author: Yuri Tikhonov <yur@pollux.denx.de>
26165 Date:   Mon Feb 4 14:10:01 2008 +0100
26166
26167     Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
26168
26169     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
26170
26171 commit 3a5d1e7f1309998791702b2a559e3126781746b9
26172 Author: Yuri Tikhonov <yur@pollux.denx.de>
26173 Date:   Tue Mar 18 13:33:30 2008 +0100
26174
26175     lwmon5: Fix register test logic to match the specific GDC h/w.
26176
26177     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
26178     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26179
26180 commit 0f855a1f056a8c22116a2103a3900cbfb669df0b
26181 Author: Yuri Tikhonov <yur@pollux.denx.de>
26182 Date:   Tue Mar 18 13:27:57 2008 +0100
26183
26184     Fix backlight in the lwmon5 POST.
26185
26186     Backlight was switcehd on even when temperature was too low.
26187
26188     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
26189     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26190
26191 commit 2d991958b1e420fbfe17b128bd26ade74be5efcc
26192 Author: Yuri Tikhonov <yur@pollux.denx.de>
26193 Date:   Wed Feb 6 18:48:36 2008 +0100
26194
26195      The patch introduces the alternative configuration of the log buffer for
26196     the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory),
26197     the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ...,
26198     PPC440EPX_GPT0_COMP5).
26199
26200      To enable this, alternative, configuration the U-Boot board configuration
26201     file for lwmon5 includes the definitions of alternative addresses for header
26202     (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
26203
26204      The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
26205     and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
26206     lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
26207
26208     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26209
26210 commit ff818b21b069f4bc9cb73373cc5a16014be101b7
26211 Author: Yuri Tikhonov <yur@pollux.denx.de>
26212 Date:   Mon Feb 4 17:11:53 2008 +0100
26213
26214     Add support for the lwmon5 board reset via GPIO58.
26215
26216     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
26217     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26218
26219 commit 603f194e5ad81bb2ef42d6d8aaa74de175bcb411
26220 Author: Yuri Tikhonov <yur@pollux.denx.de>
26221 Date:   Mon Feb 4 17:09:55 2008 +0100
26222
26223     Some fixes to dspic, fpga, and gdc post tests for lwmon5.
26224     Disable external watch-dog for now.
26225
26226     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
26227     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26228
26229 commit e262efe35742c1ad4b0966ff501efc26f34a0aec
26230 Author: Yuri Tikhonov <yur@pollux.denx.de>
26231 Date:   Mon Feb 4 14:11:03 2008 +0100
26232
26233     The patch introduces the CRITICAL feature of POST tests. If the test
26234     marked as POST_CRITICAL fails then the alternative, post_critical,
26235     boot-command is used. If this command is not defined then U-Boot
26236     enters into interactive mode.
26237
26238     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
26239     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26240
26241 commit 65b20dcefc89618193fa51947968dada91e4c778
26242 Author: Yuri Tikhonov <yur@pollux.denx.de>
26243 Date:   Mon Feb 4 14:10:42 2008 +0100
26244
26245     The patch adds new POST tests for the Lwmon5 board.
26246     These are:
26247
26248     * External Watchdog test;
26249     * dsPIC tests;
26250     * FPGA test;
26251     * GDC test;
26252     * Sysmon tests.
26253
26254     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
26255     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26256
26257 commit 8dc3b2303d2b57c774b609ca0e7043ed8f9b88c1
26258 Author: Yuri Tikhonov <yur@pollux.denx.de>
26259 Date:   Mon Feb 4 14:10:01 2008 +0100
26260
26261     Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
26262
26263     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
26264
26265 commit 3515fd18d4e8e44f863ac7142b55e22b109e9af2
26266 Author: Wolfgang Denk <wd@denx.de>
26267 Date:   Tue Mar 18 17:35:51 2008 +0100
26268
26269     HMI1001: fix compile problem.
26270
26271     Signed-off-by: Wolfgang Denk <wd@denx.de>
26272
26273 commit 1f2a9970109cebf7446e0503b10b71f8673045ee
26274 Author: Mike Frysinger <vapier@gentoo.org>
26275 Date:   Mon Feb 18 05:32:30 2008 -0500
26276
26277     Blackfin: BF537-stamp: drop board-specific flash driver for CFI
26278
26279     The parallel flash on the BF537-STAMP is CFI compliant, so there is no need
26280     for the board specific driver at all.  Just use the common CFI driver.
26281
26282     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26283
26284 commit 5b22163fef865af2b6bfb6b75f1b7bf443ce170c
26285 Author: Mike Frysinger <vapier@gentoo.org>
26286 Date:   Tue Feb 19 00:36:14 2008 -0500
26287
26288     Blackfin: add proper ELF markings to some assembly functions
26289
26290     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26291
26292 commit cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf
26293 Author: Mike Frysinger <vapier@gentoo.org>
26294 Date:   Tue Feb 19 00:35:17 2008 -0500
26295
26296     Blackfin: new cplbinfo command for viewing cplb tables
26297
26298     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26299
26300 commit aadb72503cd1602349a5fe53356d5f55ecc1b900
26301 Author: Mike Frysinger <vapier@gentoo.org>
26302 Date:   Mon Feb 18 05:37:51 2008 -0500
26303
26304     Blackfin: update MAINTAINERS list
26305
26306     Add maintainer information for the Blackfin boards.
26307
26308     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26309
26310 commit f7ce12cb65a30c6e152eecf26f0304b7d78cf39d
26311 Author: Mike Frysinger <vapier@gentoo.org>
26312 Date:   Mon Feb 18 05:26:48 2008 -0500
26313
26314     Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU
26315
26316     Stop tying things to the processor that should be tied to other defines and
26317     change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build
26318     system to select the -mcpu option.
26319
26320     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26321
26322 commit 86a20fb920bd198105acf7b1191117f566d637ed
26323 Author: Mike Frysinger <vapier@gentoo.org>
26324 Date:   Sat Feb 16 07:40:36 2008 -0500
26325
26326     Blackfin: move bootldr command to common code
26327
26328     This moves the Blackfin-common bootldr command out of the BF537-STAMP
26329     specific board directory and into the common directory so that all Blackfin
26330     boards may utilize it.
26331
26332     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26333
26334 commit decbe029b2a9d3333d02c433389b1c821eea96d7
26335 Author: Heiko Schocher <hs@denx.de>
26336 Date:   Fri Mar 14 11:05:20 2008 +0100
26337
26338     mgcoge: update configuration
26339
26340     Fix configuration for mgcoge board
26341
26342     Signed-off-by: Heiko Schocher <hs@denx.de>
26343
26344 commit c136724cda0219c49f1d4b346f00da29b14fdf14
26345 Author: Wolfgang Denk <wd@denx.de>
26346 Date:   Sun Mar 16 01:22:59 2008 +0100
26347
26348     drivers/rtc/Makefile: keep list sorted
26349
26350     Signed-off-by: Wolfgang Denk <wd@denx.de>
26351
26352 commit 9536dfcce03e7be4ccbceb47a08d9ba07ada362f
26353 Author: Tor Krill <tor@excito.com>
26354 Date:   Sat Mar 15 15:40:26 2008 +0100
26355
26356     Add support for Intersil isl1208 RTC
26357
26358     Signed-off-by: Tor Krill <tor@excito.com>
26359
26360 commit 0210cff3d079d97b2156b13685ee8de368e68a1a
26361 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26362 Date:   Sat Mar 15 17:36:41 2008 +0100
26363
26364     cramfs: Fix ifdef
26365
26366     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26367
26368 commit 0b8f2a27861a9fd06eb55a34f855ec9c5102aab4
26369 Author: Wolfgang Denk <wd@denx.de>
26370 Date:   Sun Mar 16 01:12:58 2008 +0100
26371
26372     Conding style cleanup
26373
26374     Signed-off-by: Wolfgang Denk <wd@denx.de>
26375
26376 commit 41712b4e8c95dff23354bcd620e1f9477160c190
26377 Author: Stefan Roese <sr@denx.de>
26378 Date:   Wed Mar 5 12:31:53 2008 +0100
26379
26380     ppc4xx: Add USB OHCI support to AMCC Canyonlands 460EX eval board
26381
26382     This patch adds USB OHCI support to the Canyonlands board port. It also
26383     enables EXT2 support.
26384
26385     Signed-off-by: Stefan Roese <sr@denx.de>
26386
26387 commit 2596f5b9d353ff3e4387a3325d05740f16958038
26388 Author: Stefan Roese <sr@denx.de>
26389 Date:   Wed Mar 5 12:29:32 2008 +0100
26390
26391     usb: Add CFG_OHCI_USE_NPS to common USB-OHCI driver
26392
26393     This patch adds CFG_OHCI_USE_NPS to the common USB-OHCI driver. This
26394     way a board just needs to define this new option to enable the "force
26395     NoPowerSwitching mode" instead of adding new CPU/architecture defines
26396     to the USB source itself.
26397
26398     This new option will be used first with the new AMCC 460EX Canyonlands
26399     board port, which will be posted in a few days.
26400
26401     This patch also fixes a small compilation problem when DEBUG is enabled.
26402
26403     Signed-off-by: Stefan Roese <sr@denx.de>
26404
26405 commit 71665ebf88408ff2acb762af47989fd4365b321a
26406 Author: Stefan Roese <sr@denx.de>
26407 Date:   Mon Mar 3 17:27:02 2008 +0100
26408
26409     ppc4xx: Add Canyonlands NAND booting support
26410
26411     460EX doesn't support a fixed bootstrap option to boot from 512 byte page
26412     NAND devices. The only bootstrap option for NAND booting is option F for
26413     2k page devices. So to boot from a 512 bype page device, the I2C bootstrap
26414     EEPROM needs to be programmed accordingly.
26415
26416     This patch adds basic NAND booting support for the AMCC Canyonlands aval
26417     board and also adds support to the "bootstrap" command, to enable NAND
26418     booting I2C setting.
26419
26420     Tested with 512 byte page NAND device (32MByte) on Canyonlands.
26421
26422     Signed-off-by: Stefan Roese <sr@denx.de>
26423
26424 commit c813f1f835a7edfdb929f2843b09db72cd5cd2f2
26425 Author: Stefan Roese <sr@denx.de>
26426 Date:   Tue Mar 11 16:53:00 2008 +0100
26427
26428     ppc4xx: Add AMCC Canyonlands support (460EX) (3/3)
26429
26430     This patch adds support for the AMCC Canyonlands 460EX evaluation
26431     board.
26432
26433     Signed-off-by: Stefan Roese <sr@denx.de>
26434
26435 commit 6983fe21f774a924d3adb263a270bc2f301f2aa2
26436 Author: Stefan Roese <sr@denx.de>
26437 Date:   Tue Mar 11 16:52:24 2008 +0100
26438
26439     ppc4xx: Add AMCC Canyonlands support (460EX) (2/3)
26440
26441     This patch adds support for the AMCC Canyonlands 460EX evaluation
26442     board.
26443
26444     Signed-off-by: Stefan Roese <sr@denx.de>
26445
26446 commit 8e1a3fe545bbcfceafe183344ebc9f1ad03819c1
26447 Author: Stefan Roese <sr@denx.de>
26448 Date:   Tue Mar 11 16:51:17 2008 +0100
26449
26450     ppc4xx: Add AMCC Canyonlands support (460EX) (1/3)
26451
26452     This patch adds support for the AMCC Canyonlands 460EX evaluation
26453     board.
26454
26455     Signed-off-by: Stefan Roese <sr@denx.de>
26456
26457 commit 43c60992cdf72496e7eaaa3fbd37ebbe75835f69
26458 Author: Stefan Roese <sr@denx.de>
26459 Date:   Tue Mar 11 15:11:43 2008 +0100
26460
26461     ppc4xx: Add basic support for AMCC 460EX/460GT (5/5)
26462
26463     This patch adds basic support for the AMCC 460EX/460GT PPC's.
26464
26465     Signed-off-by: Stefan Roese <sr@denx.de>
26466
26467 commit 6f2eb3f3d8ea2dbb224d0da5a12038693bab9945
26468 Author: Stefan Roese <sr@denx.de>
26469 Date:   Tue Mar 11 15:11:18 2008 +0100
26470
26471     ppc4xx: Add basic support for AMCC 460EX/460GT (4/5)
26472
26473     This patch adds basic support for the AMCC 460EX/460GT PPC's.
26474
26475     Signed-off-by: Stefan Roese <sr@denx.de>
26476
26477 commit 999ecd5aca381984d8ebbeb207ece82a1c275577
26478 Author: Stefan Roese <sr@denx.de>
26479 Date:   Tue Mar 11 15:07:10 2008 +0100
26480
26481     ppc4xx: Add basic support for AMCC 460EX/460GT (3/5)
26482
26483     This patch adds basic support for the AMCC 460EX/460GT PPC's.
26484
26485     Signed-off-by: Stefan Roese <sr@denx.de>
26486
26487 commit 2801b2d2a9906f206ab9ee8d0b6e746d2b7fe05a
26488 Author: Stefan Roese <sr@denx.de>
26489 Date:   Tue Mar 11 15:05:50 2008 +0100
26490
26491     ppc4xx: Add basic support for AMCC 460EX/460GT (2/5)
26492
26493     This patch adds basic support for the AMCC 460EX/460GT PPC's.
26494
26495     Signed-off-by: Stefan Roese <sr@denx.de>
26496
26497 commit 8ac41e3e37c3080c6b1d9461d654161cfe2aa492
26498 Author: Stefan Roese <sr@denx.de>
26499 Date:   Tue Mar 11 15:05:26 2008 +0100
26500
26501     ppc4xx: Add basic support for AMCC 460EX/460GT (1/5)
26502
26503     This patch adds basic support for the AMCC 460EX/460GT PPC's.
26504
26505     Signed-off-by: Stefan Roese <sr@denx.de>
26506
26507 commit 56e410178375d9f20be25fb24e180974f0ae120b
26508 Author: Stefan Roese <sr@denx.de>
26509 Date:   Tue Feb 19 22:07:57 2008 +0100
26510
26511     ppc4xx: interrupt.c reworked
26512
26513     This patch is a rework of the 4xx interrupt handling done while
26514     adding the 460EX/GT support. Interrupts are needed on 4xx for the
26515     EMAC driver.
26516
26517     Signed-off-by: Stefan Roese <sr@denx.de>
26518
26519 commit 84a999b6cdd0b02dc7de2cacc306eaa84afe2b46
26520 Author: Stefan Roese <sr@denx.de>
26521 Date:   Tue Feb 19 22:01:57 2008 +0100
26522
26523     ppc4xx: program_tlb now uses 64bit physical addess
26524
26525     This patch changes the physical addess parameter from 32bit to 64bit.
26526     This is needed for 36bit 4xx platforms to access areas located
26527     beyond the 4GB border, like SoC peripherals (EBC etc.).
26528
26529     Signed-off-by: Stefan Roese <sr@denx.de>
26530
26531 commit c3307fa186af85771924c434997089b8104c0a46
26532 Author: Stefan Roese <sr@denx.de>
26533 Date:   Tue Feb 19 21:58:25 2008 +0100
26534
26535     ppc4xx: miiphy.c reworked
26536
26537     While adding the 460EX/GT support I reworked the 4xx miiphy code. It
26538     badly neede some cleanup.
26539
26540     Signed-off-by: Stefan Roese <sr@denx.de>
26541
26542 commit 88aff62df39c0756241ea9f9b5a7b3ade26cb82b
26543 Author: Stefan Roese <sr@denx.de>
26544 Date:   Tue Feb 19 16:21:49 2008 +0100
26545
26546     rtc: Add M41T62 support
26547
26548     This patch add support for the STM M41T62 RTC. It is used and tested
26549     on the AMCC Canyonlands 406EX platform.
26550
26551     Signed-off-by: Stefan Roese <sr@denx.de>
26552
26553 commit 217d383e201adc7f2271145ae345ea5eae2b7170
26554 Author: Niklaus Giger <niklaus.giger@netstal.com>
26555 Date:   Mon Feb 25 18:46:43 2008 +0100
26556
26557     ppc4xx: Add 405GPr based MCU25 board specific files
26558
26559     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
26560
26561 commit 75a66dcdb383863ad33f0534cfc27b7a86947dad
26562 Author: Niklaus Giger <niklaus.giger@netstal.com>
26563 Date:   Mon Feb 25 18:46:42 2008 +0100
26564
26565     ppc4xx: Add 405GPr based MCU25 board config file
26566
26567     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
26568
26569 commit b05f35436b733a240559e77e46bed8439665ecc5
26570 Author: Niklaus Giger <niklaus.giger@netstal.com>
26571 Date:   Mon Feb 25 18:46:41 2008 +0100
26572
26573     ppc4xx: Add 405GPr based MCU25 board. Global files
26574
26575     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
26576
26577 commit 14c27b35ac812a71abce6e3e2f4129d5e9313660
26578 Author: Niklaus Giger <niklaus.giger@netstal.com>
26579 Date:   Mon Feb 25 18:37:02 2008 +0100
26580
26581     ppc4xx: HCU4/5. remove obsolete hcu_flash.c
26582
26583     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
26584
26585 commit a079494853cc2bfeddb26673219db0b4b2b31566
26586 Author: Niklaus Giger <niklaus.giger@netstal.com>
26587 Date:   Mon Feb 25 18:37:01 2008 +0100
26588
26589     ppc4xx: HCU4/5. Use FLASH_CFI_LEGACY
26590
26591     Cleanup: Remove custom flash driver for 8 bit boot-eprom and replace it with
26592     the FLASH_CFI_LEGACY et al. config options.
26593
26594     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
26595
26596 commit e4170e5a50c8110f792bc37472833ae669d69951
26597 Author: Stefan Roese <sr@denx.de>
26598 Date:   Tue Mar 11 13:52:25 2008 +0100
26599
26600     ppc4xx: Fix comment in 405EX DDR2 init code
26601
26602     Signed-off-by: Stefan Roese <sr@denx.de>
26603
26604 commit 766529fccc860ecb9e955b4239dff69cd9e4ea09
26605 Author: Bartlomiej Sieka <tur@semihalf.com>
26606 Date:   Fri Mar 14 16:22:34 2008 +0100
26607
26608     Add MD5 support to the new uImage format
26609
26610     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
26611
26612 commit 0ede0c383530a418cf98be9122371a86573cd0db
26613 Author: Bartlomiej Sieka <tur@semihalf.com>
26614 Date:   Fri Mar 14 16:22:34 2008 +0100
26615
26616     Add the MD5 algorithm
26617
26618     MD5 supoprt is turned on by defining CONFIG_MD5, the digest can be then
26619     calculated using the md5() function -- see include/md5.h for details.
26620
26621     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
26622
26623 commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0
26624 Author: Wolfgang Denk <wd@denx.de>
26625 Date:   Fri Mar 14 16:04:54 2008 +0100
26626
26627     tools/setlocalversion: use a git-describe-ish format
26628
26629     Change the automatic local version to have the form -nnnnn-gSHA1SUMID,
26630     where 'nnnnn' is the number of commits since the last tag (i.e.,
26631     1.3.2-rc3).  This makes it much easier to recognize "newer" versions
26632     and to see how much has been changed since the referenced tag.
26633
26634     Stolen from Linux kernel's scripts/setlocalversio, see commit d882421f.
26635
26636     Signed-off-by: Wolfgang Denk <wd@denx.de>
26637
26638 commit c6dc21c84de0f159a1752c5ebd33cff843f63609
26639 Author: Wolfgang Denk <wd@denx.de>
26640 Date:   Thu Mar 13 14:32:03 2008 +0100
26641
26642     HMI1001: add support for MPC5200 Rev. B processors.
26643
26644     Signed-off-by: Wolfgang Denk <wd@denx.de>
26645
26646 commit 90f13dce7a7a9a84d5730576c9a24d0dbb07cb3a
26647 Author: Wolfgang Denk <wd@denx.de>
26648 Date:   Thu Mar 13 14:29:49 2008 +0100
26649
26650     TQM5200: remove dead code
26651
26652     This board never used a MGT5100 processor.
26653
26654     Signed-off-by: Wolfgang Denk <wd@denx.de>
26655
26656 commit afe45c87e3c5d77bad76b1a57dccd20764d45b5d
26657 Author: Marian Balakowicz <m8@semihalf.com>
26658 Date:   Wed Mar 12 12:14:15 2008 +0100
26659
26660     [new uImage] Fix build issue on ARM
26661
26662     ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead.
26663
26664     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26665
26666 commit 3310c549a73a949430bfda90876df7552a1dab0c
26667 Author: Marian Balakowicz <m8@semihalf.com>
26668 Date:   Wed Mar 12 12:13:13 2008 +0100
26669
26670     [new uImage] Add new uImage format documentation and examples
26671
26672     Create doc/uImage.FIT documentation directory with the following files:
26673     - command_syntax_extensions.txt : extended command syntax description
26674     - howto.txt                     : short usage howto
26675     - source_file_format.txt        : internal new uImage format description
26676
26677     Add example image source files:
26678     - kernel.its
26679     - kernel_fdt.its
26680     - multi.its
26681
26682     Update README appropriately.
26683
26684     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26685     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
26686
26687 commit 1ec73761d2e247078f4520a265d463e8b73391a2
26688 Author: Marian Balakowicz <m8@semihalf.com>
26689 Date:   Wed Mar 12 10:35:52 2008 +0100
26690
26691     [new uImage] Fix definition of common bootm_headers_t fields
26692
26693     verify, autostart and lmb fields are used regardless of CONFIG_FIT
26694     setting, move their definitions to common section.
26695
26696     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26697
26698 commit 1d1cb4270edc6a99276834064069717f9782c491
26699 Author: Marian Balakowicz <m8@semihalf.com>
26700 Date:   Wed Mar 12 10:35:51 2008 +0100
26701
26702     [new uImage] Fix build problems on trab board
26703
26704     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26705
26706 commit f773bea8e11f4a11c388dcee956b2444203e6b65
26707 Author: Marian Balakowicz <m8@semihalf.com>
26708 Date:   Wed Mar 12 10:35:46 2008 +0100
26709
26710     [new uImage] Add proper ramdisk/FDT handling when FIT configuration is used
26711
26712     Save FIT configuration provied in the first bootm argument and use it
26713     when to get ramdisk/FDT subimages when second and third (ramdisk/FDT)
26714     arguments are not specified.
26715
26716     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26717
26718 commit 2682ce8a4225f23d72bb7fed069e928dd39d34ae
26719 Author: Marian Balakowicz <m8@semihalf.com>
26720 Date:   Wed Mar 12 10:33:01 2008 +0100
26721
26722     [new uImage] More verbose kernel image uncompress error message
26723
26724     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26725
26726 commit 1372cce2b9040fb640e5032b84e3a033a22d6ff0
26727 Author: Marian Balakowicz <m8@semihalf.com>
26728 Date:   Wed Mar 12 10:33:01 2008 +0100
26729
26730     [new uImage] Use show_boot_progress() for new uImage format
26731
26732     This patch allocates a set of show_boot_progress() IDs for new uImage format
26733     and adds show_boot_progress() calls in new uImage format handling code.
26734
26735     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26736
26737 commit c28c4d193dbfb20b2dd3a5447640fd6de7fd0720
26738 Author: Marian Balakowicz <m8@semihalf.com>
26739 Date:   Wed Mar 12 10:33:01 2008 +0100
26740
26741     [new uImage] Add new uImage fromat support to fpga command
26742
26743     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26744
26745 commit 09475f7527460e426c0e0628fc5b8f3754fbaa23
26746 Author: Marian Balakowicz <m8@semihalf.com>
26747 Date:   Wed Mar 12 10:33:01 2008 +0100
26748
26749     [new uImage] Add new uImage format handling to other bootm related commands
26750
26751     Updated commands:
26752
26753     docboot  - cmd_doc.c
26754     fdcboot  - cmd_fdc.c
26755     diskboot - cmd_ide.c
26756     nboot    - cmd_nand.c
26757     scsiboot - cmd_scsi.c
26758     usbboot  - cmd_usb.c
26759
26760     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26761
26762 commit 1b7897f28d49a80d78d760ec6f6f11dc0f914338
26763 Author: Marian Balakowicz <m8@semihalf.com>
26764 Date:   Wed Mar 12 10:33:00 2008 +0100
26765
26766     [new uImage] Add new uImage format support to imgextract command
26767
26768     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26769
26770 commit 424c4abdd175d2c470510df8ce0e32d3f463ec16
26771 Author: Marian Balakowicz <m8@semihalf.com>
26772 Date:   Wed Mar 12 10:33:00 2008 +0100
26773
26774     [new uImage] Add new uImage format support to autoscript routine
26775
26776     autoscript() routine is updated to accept second argument, which
26777     is only used for FIT images and provides a FIT subimage unit name.
26778
26779     autoscript() routine callers must now pass two arguments. For
26780     non-interactive use (like in cmd_load.c, cmd_net.c), new environment
26781     variable 'autoscript_uname' is introduced and used as a FIT
26782     subimage unit name source.
26783
26784     autoscript command accepts extended syntax of the addr argument:
26785     addr:<subimg_uname>
26786
26787     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26788
26789 commit cd7c596e9f561dbbc17b717277438aee78cde14f
26790 Author: Marian Balakowicz <m8@semihalf.com>
26791 Date:   Wed Mar 12 10:33:00 2008 +0100
26792
26793     [new uImage] Add new uImage format support to arch specific do_bootm_linux() routines
26794
26795     This patch updates architecture specific implementations of
26796     do_bootm_linux() adding new uImage format handling for
26797     operations like get kernel entry point address, get kernel
26798     image data start address.
26799
26800     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26801
26802 commit 3dfe110149311425919e6d6a14b561b4207498f1
26803 Author: Marian Balakowicz <m8@semihalf.com>
26804 Date:   Wed Mar 12 10:32:59 2008 +0100
26805
26806     [new uImage] Add node offsets for FIT images listed in struct bootm_headers
26807
26808     This patch adds new node offset fields to struct bootm_headers
26809     and updates bootm_headers processing code to make use of them.
26810     Saved node offsets allow to avoid repeating fit_image_get_node() calls.
26811
26812     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26813
26814 commit bc8ed486b125452ba3bd8344f052f437329150c5
26815 Author: Marian Balakowicz <m8@semihalf.com>
26816 Date:   Wed Mar 12 10:32:53 2008 +0100
26817
26818     [new uImage] ppc: Add new uImage format support to FDT handling routines
26819
26820     Support for new (FIT) format uImages is added to powerpc specific
26821     boot_get_fdt() routine which now recognizes, sanity checks FIT image
26822     and is able to access data sections of the requested component image.
26823
26824     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26825
26826 commit a44a269a905f924b420020506a4d7d7eedcc0eaf
26827 Author: Marian Balakowicz <m8@semihalf.com>
26828 Date:   Wed Mar 12 10:14:57 2008 +0100
26829
26830     [new uImage] Re-enable interrupts for non automatic booting
26831
26832     Re-enable interrupts if we return from do_bootm_<os> and 'autostart'
26833     environment variable is not set to 'yes'.
26834
26835     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26836
26837 commit d985c8498c4e47095820da97aa722381d39172c5
26838 Author: Marian Balakowicz <m8@semihalf.com>
26839 Date:   Wed Mar 12 10:14:38 2008 +0100
26840
26841     [new uImage] Remove unnecessary arguments passed to ramdisk routines
26842
26843     boot_get_ramdisk() and image_get_ramdisk() do not need all
26844     cmdtp, flag, argc and argv arguments. Simplify routines definition.
26845
26846     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26847
26848 commit c87796483bc7c2900470dc747c367f602577608d
26849 Author: Marian Balakowicz <m8@semihalf.com>
26850 Date:   Wed Mar 12 10:12:37 2008 +0100
26851
26852     [new uImage] Add new uImage format support for ramdisk handling
26853
26854     This patch updates boot_get_ramdisk() routine adding format
26855     verification and handling for new (FIT) uImages.
26856
26857     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26858
26859 commit 6986a385671749ecb3f60cf99e9cbae8e47bb50e
26860 Author: Marian Balakowicz <m8@semihalf.com>
26861 Date:   Wed Mar 12 10:01:05 2008 +0100
26862
26863     [new uImage] Add new uImage format support for kernel booting
26864
26865     New format uImages are recognized by the bootm command,
26866     validity of specified kernel component image is checked and
26867     its data section located and used for further processing
26868     (uncompress, load, etc.)
26869
26870     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26871
26872 commit e32fea6adb620ecf2bd70acf2dd37e53df9d1547
26873 Author: Marian Balakowicz <m8@semihalf.com>
26874 Date:   Tue Mar 11 12:35:20 2008 +0100
26875
26876     [new uImage] Add new uImage format support for imls and iminfo commands
26877
26878     imls and iminfo can now recognize nad print out contents of the new (FIT)
26879     format uImages.
26880
26881     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26882
26883 commit 9d25438fe7d70cf35a8a293ea5e392fefc672613
26884 Author: Bartlomiej Sieka <tur@semihalf.com>
26885 Date:   Tue Mar 11 12:34:47 2008 +0100
26886
26887     [new uImage] Add support for new uImage format to mkimage tool
26888
26889     Support for the new uImage format (FIT) is added to mkimage tool.
26890     Commandline syntax is appropriately extended:
26891
26892     mkimage [-D dtc_options] -f fit-image.its fit-image
26893
26894     mkimage (together with dtc) takes fit-image.its and referenced therein
26895     binaries (like vmlinux.bin.gz) as inputs, and produces fit-image file -- the
26896     final image that can be transferred to the target (e.g., via tftp) and then
26897     booted using the bootm command in U-Boot.
26898
26899     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
26900
26901 commit eb6175edd6c120d8b89678243e5a2be362ee8e40
26902 Author: Marian Balakowicz <m8@semihalf.com>
26903 Date:   Mon Mar 10 17:53:49 2008 +0100
26904
26905     [new uImage] Make node unit names const in struct bootm_headers
26906
26907     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26908
26909 commit 5dfb52138688ccbf0146f62683fe6217b3ce1b05
26910 Author: Marian Balakowicz <m8@semihalf.com>
26911 Date:   Fri Feb 29 21:24:06 2008 +0100
26912
26913     [new uImage] New uImage low-level API
26914
26915     Add FDT-based functions for handling new format component images,
26916     configurations, node operations, property get/set, etc.
26917
26918     fit_        - routines handling global new format uImage operations
26919                   like get/set top level property, process all nodes, etc.
26920     fit_image_  - routines handling component images subnodes
26921     fit_conf_   - routines handling configurations node
26922
26923     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
26924     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26925
26926 commit 30f1806f60978d707b0cff2d7bf89d141fc24290
26927 Author: Wolfgang Denk <wd@denx.de>
26928 Date:   Sun Mar 9 16:20:02 2008 +0100
26929
26930     Release v1.3.2
26931
26932     Update CHANGELOG for release.
26933
26934     Signed-off-by: Wolfgang Denk <wd@denx.de>
26935
26936 commit 5b464c289ba715d0979b6e1f94947bb8f1068d16
26937 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26938 Date:   Sun Mar 9 14:52:11 2008 +0100
26939
26940     SCM: fix 'packed' attribute ignored for field of type 'can_msg_t' warnings
26941
26942     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26943     Signed-off-by: Wolfgang Denk <wd@denx.de>
26944
26945 commit db695b78515ddb88a2d4f3357c120345efbf59ec
26946 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26947 Date:   Sun Mar 9 10:44:01 2008 +0100
26948
26949     scb9328: Fix flash warning: type qualifiers ignored on function return type
26950
26951     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26952
26953 commit 2b3e7e61d6a72f16aee93f870bc6af67f30758c4
26954 Author: Wolfgang Denk <wd@denx.de>
26955 Date:   Sun Mar 9 10:50:41 2008 +0100
26956
26957     esd/common/fpga.c: fix indentation.
26958
26959     Signed-off-by: Wolfgang Denk <wd@denx.de>
26960
26961 commit cc3843e36453e2b8db65d7e56de938ba045016a0
26962 Author: Wolfgang Denk <wd@denx.de>
26963 Date:   Sun Mar 9 10:33:31 2008 +0100
26964
26965     common/kgdb.c: fix 'dereferencing type-punned pointer' warning
26966
26967     and get rid of a couple of unneeded casts.
26968
26969     Signed-off-by: Wolfgang Denk <wd@denx.de>
26970
26971 commit 8d4f4a838d7dc7cf4de17e3e9a67e2f222b6a1c8
26972 Author: Wolfgang Denk <wd@denx.de>
26973 Date:   Sun Mar 9 10:09:53 2008 +0100
26974
26975     esd/common/fpga.c: fix 'assignment of read-only location' error
26976
26977     Signed-off-by: Wolfgang Denk <wd@denx.de>
26978
26979 commit c6fe4dabac066e8758345d249032768496983a3e
26980 Author: Wolfgang Denk <wd@denx.de>
26981 Date:   Sun Mar 9 02:13:19 2008 +0100
26982
26983     Makefile: make build silently again.
26984
26985     Signed-off-by: Wolfgang Denk <wd@denx.de>
26986
26987 commit 76babc86576f092573599334c85ec543fdbc6015
26988 Author: Wolfgang Denk <wd@denx.de>
26989 Date:   Sun Mar 9 02:07:49 2008 +0100
26990
26991     m501sk: Fix out of tree building
26992
26993     Signed-off-by: Wolfgang Denk <wd@denx.de>
26994
26995 commit 210ed2004e062fdd03f25ab4925998aa1bd08a07
26996 Author: Wolfgang Denk <wd@denx.de>
26997 Date:   Sun Mar 9 00:06:09 2008 +0100
26998
26999     ADS5121: fix out of tree build
27000
27001     and simplify Makefile a bit.
27002
27003     Signed-off-by: Wolfgang Denk <wd@denx.de>
27004
27005 commit 46cb5074a3f74de64ebd97dd0c4ec7eb3d768b93
27006 Author: Wolfgang Denk <wd@denx.de>
27007 Date:   Sat Mar 8 22:35:31 2008 +0100
27008
27009     Release v1.3.2
27010
27011     Signed-off-by: Wolfgang Denk <wd@denx.de>
27012
27013 commit 78a90f827df74520e939c794fc7413dace21c4db
27014 Author: Wolfgang Denk <wd@denx.de>
27015 Date:   Sat Mar 8 22:35:04 2008 +0100
27016
27017     Update CHANGELOG
27018
27019     Signed-off-by: Wolfgang Denk <wd@denx.de>
27020
27021 commit 58f3c57c6008b42e01f551d3be6efd88c14ac87f
27022 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27023 Date:   Sat Mar 8 21:30:04 2008 +0100
27024
27025     esd: Fix warning: passing argument 1 of 'fpga_boot' discards qualifiers from pointer target type
27026
27027     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27028
27029 commit d75469d48c05795144f4b8ba76addbb4920a7bba
27030 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27031 Date:   Sat Mar 8 09:25:49 2008 +0900
27032
27033     net: rtl8169: Add processing when OWNbit did't enable in rtl_recv()
27034
27035     When rtl_recv() of rtl8169 is called, OWNbit of status register
27036     is not enable occasionally.
27037     rtl_recv() doesn't work normally when the driver doesn't do
27038     appropriate processing.
27039     This patch fix this problem.
27040
27041     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27042
27043 commit 82afabfeb8ae6a27c7b396011ea99f4712aa73fa
27044 Author: Heiko Schocher <hs@denx.de>
27045 Date:   Fri Mar 7 08:15:28 2008 +0100
27046
27047     mgsuvd: update board configuration
27048
27049     initialize the UPIOx controller.
27050
27051     Signed-off-by: Heiko Schocher <hs@denx.de>
27052
27053 commit e492c90c26215e459aec0fdf0f8ef1fd204988f5
27054 Author: Heiko Schocher <hs@denx.de>
27055 Date:   Fri Mar 7 08:13:41 2008 +0100
27056
27057     mgcoge: update board configuration
27058
27059     add support for the config Flash.
27060     initialize the UPIOx controller.
27061
27062     Signed-off-by: Heiko Schocher <hs@denx.de>
27063
27064 commit 270fe261b7f9292800b2b3d1bf19ae7cbc880258
27065 Author: Kim Phillips <kim.phillips@freescale.com>
27066 Date:   Fri Mar 7 12:27:31 2008 -0600
27067
27068     mpc83xx: make dtb basename file references equal those of linux
27069
27070     the dts file basenames were updated in linux - this helps avoid
27071     inadvertently loading any old dtbs laying around.
27072
27073     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27074
27075 commit f30b6154f16f5ffa4a9f5bfca5e114d72b6ef675
27076 Author: Kim Phillips <kim.phillips@freescale.com>
27077 Date:   Wed Feb 27 16:08:22 2008 -0600
27078
27079     net: uec_phy: actually increment the timeout counter
27080
27081     allow u-boot to recover (and, e.g., switch to another interface) in the
27082     case where a PHY does not report autonegotiation is complete within its
27083     two second timeout value.
27084
27085     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27086
27087 commit 772003e43957ee0c895abed7cd82cbe72820cbb8
27088 Author: Markus Brunner <super.firetwister@googlemail.com>
27089 Date:   Wed Mar 5 21:38:12 2008 +0100
27090
27091     fix taihu soft spi_read
27092
27093     The taihu board used gpio_read_out_bit which reads the output register and not
27094     the pin state.
27095
27096     Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
27097
27098 commit fc84a8495ac750f6b4adae81f8c4f100f65b6340
27099 Author: Stefan Roese <sr@denx.de>
27100 Date:   Fri Mar 7 08:01:43 2008 +0100
27101
27102     ppc4xx: Sequoia: Add device tree (fdt) Linux booting default env variables
27103
27104     Signed-off-by: Stefan Roese <sr@denx.de>
27105
27106 commit bd4458cb47abecabd406b1210457be96c69fc49d
27107 Author: Dave Liu <r63238@freescale.com>
27108 Date:   Tue Mar 4 16:59:22 2008 +0800
27109
27110     837xEMDS: Improve the system performance
27111
27112     1. Make the CSB bus pipeline depth as 4, and enable
27113        the repeat mode;
27114     2. Raise the eTSEC emergency priority;
27115     3. Use the highest IP blocks clock.
27116
27117     Signed-off-by: Dave Liu <daveliu@freescale.com>
27118
27119 commit d8ab58b212481b1c57947ea21aa96c4ce800d0b4
27120 Author: Detlev Zundel <dzu@denx.de>
27121 Date:   Thu Mar 6 16:45:53 2008 +0100
27122
27123     Replace "run load; run update" with conditionalized "run load update".
27124
27125     The latter version stops when "run load" fails for whatever reasons
27126     rendering the combination *a lot* more secure.
27127
27128     Signed-off-by: Detlev Zundel <dzu@denx.de>
27129
27130 commit 6bc113886d7d316df1a4e459bec8baf027518551
27131 Author: Stefan Roese <sr@denx.de>
27132 Date:   Tue Mar 4 17:40:41 2008 +0100
27133
27134     net: Print error message upon net usage when no ethernet-interface is found
27135
27136     This patch fixes a problem seen on PPC4xx boards, when no MAC address is
27137     defined. Then no ethernet interface is available but a simple "tftp"
27138     command will return without any error message which is quite confusing.
27139
27140     Signed-off-by: Stefan Roese <sr@denx.de>
27141
27142 commit a30a549a3553032d809e0356306b62de0b125901
27143 Author: Jon Loeliger <jdl@freescale.com>
27144 Date:   Tue Mar 4 10:03:03 2008 -0600
27145
27146     Remove erroneous or extra spd.h #includers.
27147
27148     Many of the spd.h #includers don't need it,
27149     and wanted to have spd_sdram() declared instead.
27150     Since they didn't get that, some also had open
27151     coded extern declarations of it instead or as well.
27152     Fix it all up by using spd_sdram.h where needed.
27153
27154     Signed-off-by: Jon Loeliger <jdl@freescale.com>
27155
27156 commit a4475386cef14af3fd88f0518b688e755669486d
27157 Author: Wolfgang Denk <wd@denx.de>
27158 Date:   Tue Mar 4 17:41:28 2008 +0100
27159
27160     PCS440EP: fix build problems (redundant #define)
27161
27162     Signed-off-by: Wolfgang Denk <wd@denx.de>
27163
27164 commit e85e2fa85ec09a6fac2846d1d881d8737e2bbda9
27165 Author: Stefan Roese <sr@denx.de>
27166 Date:   Tue Mar 4 17:39:25 2008 +0100
27167
27168     net: Print error message upon net usage when no ethernet-interface is found
27169
27170     This patch fixes a problem seen on PPC4xx boards, when no MAC address is
27171     defined. Then no ethernet interface is available but a simple "tftp"
27172     command will return without any error message which is quite confusing.
27173
27174     Signed-off-by: Stefan Roese <sr@denx.de>
27175
27176 commit 384faaafb999cae3ce447c93e28a0b7e2e5fef53
27177 Author: Wolfgang Denk <wd@denx.de>
27178 Date:   Tue Mar 4 17:38:50 2008 +0100
27179
27180     W7OLMC/W7OLMG: fix build problems (redundant #define)
27181
27182     Signed-off-by: Wolfgang Denk <wd@denx.de>
27183
27184 commit f9301e1cda296245ba052d7b08321199c3d0af9d
27185 Author: Wolfgang Denk <wd@denx.de>
27186 Date:   Tue Mar 4 14:58:31 2008 +0100
27187
27188     Makefile: fix problem with out-of-tree builds introduced by 5013c09f
27189
27190     Commit 5013c09f (Makefile: cleanup "clean" target) introduced a
27191     problem for out-of-tree builds which caused "make clean" to fail.
27192
27193     Signed-off-by: Wolfgang Denk <wd@denx.de>
27194
27195 commit dfece9500556bed5d8244b1c15d973cec7c25bfe
27196 Author: Wolfgang Denk <wd@denx.de>
27197 Date:   Tue Mar 4 11:58:26 2008 +0100
27198
27199     examples/Makefile: build "hello_world" on 8xx, too.
27200
27201     Signed-off-by: Wolfgang Denk <wd@denx.de>
27202
27203 commit 74eb0222594fd23aafdf168e60e872814eea8b62
27204 Author: Mike Nuss <mike@terascala.com>
27205 Date:   Mon Mar 3 15:27:05 2008 -0500
27206
27207     PPC4xx (Sequoia): Fix Ethernet "remote fault" problems
27208
27209     Every now and then a Sequoia board (or equivalent hardware) had
27210     problems connecting to a Gigabit capable network interface.
27211
27212     There were differences in the PHY setup between Linux and U-Boot.
27213
27214     This patch fixes the problem. Apparently "remote fault" is being set,
27215     which signals to some devices (on the other end of the cable) that a
27216     fault has occurred, while other devices ignore it. I believe the RF bit
27217     was causing the issue, but I removed T4 also, to match up with Linux.
27218
27219     Signed-off-by: Mike Nuss <mike@terascala.com>
27220
27221 commit 491fb6dea9f52fdb9cb5996e8e978b9e9685179f
27222 Author: Timur Tabi <timur@freescale.com>
27223 Date:   Mon Mar 3 09:58:52 2008 -0600
27224
27225     fix QE firmware uploading limit
27226
27227     Fix a typo in qe_upload_firmware() that prevented uploading firmware on
27228     systems with more than one RISC core.
27229
27230     Signed-off-by: Timur Tabi <timur@freescale.com>
27231
27232 commit 42ba58e0c302b339a3c2faa6006a013c6f186b7a
27233 Author: Bernhard Nemec <bnemec@ganssloser.com>
27234 Date:   Mon Mar 3 11:57:23 2008 +0000
27235
27236     Fix endianess problem in cramfs code (cramfs is always host-endian in Linux)
27237
27238     Originally pointed out by Laurent Pinchart <laurent.pinchart@tbox.biz>,
27239     see http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/22846
27240
27241     Signed-off-by: Bernhard Nemec <bnemec <at> ganssloser.com>
27242
27243 commit 84d0c2f1e39caff58bf765a7ab7c72da23c25ec8
27244 Author: Kim B. Heino <Kim.Heino@bluegiga.com>
27245 Date:   Mon Mar 3 10:39:13 2008 +0200
27246
27247     fix copy from ram to dataflash
27248
27249     If I try to "cp.b <ram> <dataflash>", u-boot selects normal flash
27250     routines instead of dataflash. This is because it checks "if source
27251     address is not dataflash" instead of target address.
27252
27253     Signed-off-by: Kim B. Heino <Kim.Heino@bluegiga.com>
27254
27255 commit 32bf3d143a888f8deacfdcc97e898f6c06d0aea4
27256 Author: Wolfgang Denk <wd@denx.de>
27257 Date:   Mon Mar 3 12:16:44 2008 +0100
27258
27259     Fix quoting problem (preboot setting) in many board config files.
27260
27261     Signed-off-by: Wolfgang Denk <wd@denx.de>
27262
27263 commit 5b0b2b6fc9fe22e3864c2a57316d91a2507ec215
27264 Author: Wolfgang Denk <wd@denx.de>
27265 Date:   Mon Mar 3 12:36:49 2008 +0100
27266
27267     ADS5121: Fix default environment.
27268
27269     Signed-off-by: Wolfgang Denk <wd@denx.de>
27270
27271 commit 91c82076ae492bb1f9d9c47a481314631d32dc8e
27272 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27273 Date:   Sun Mar 2 16:12:31 2008 +0100
27274
27275     Makefile: Fix missing unconfig and mkconfig use
27276
27277     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27278
27279 commit 8ce4e5c2c02cb7e8adddf7b651d3050d81ce4c1d
27280 Author: michael <trimarchi@gandalf.sssup.it>
27281 Date:   Sun Mar 2 23:33:46 2008 +0100
27282
27283     Fix checking fat32 cluster size.
27284
27285     This fixes the cluster size tests in the FAT32 file system.
27286     The current implementation of VFAT support doesn't work if the
27287     referred cluster has an offset > 16bit representation, causing
27288     "fatload" and "fatls" commands etc. to fail.
27289
27290     Signed-off-by: michael trimarchi <trimarchi@gandalf.sssup.it>
27291
27292 commit 661bad63a076a96c39c64f136915f146725af92b
27293 Author: Wolfgang Denk <wd@denx.de>
27294 Date:   Sun Mar 2 22:57:23 2008 +0100
27295
27296     Prepare v1.3.2-rc2 release candidate
27297
27298     Signed-off-by: Wolfgang Denk <wd@denx.de>
27299
27300 commit 76957cb3d621bf664311908e5962e151c633c285
27301 Author: Stefan Roese <sr@denx.de>
27302 Date:   Sat Mar 1 12:11:40 2008 +0100
27303
27304     ppc4xx: EMAC: Fix 405EZ fifo size setup in EMAC_MR1
27305
27306     The 405EZ only supports 512 bytes of rx-/tx-fifo EMAC sizes. But
27307     currently 4k/2k is configured. This patch fixes this issue.
27308
27309     Thanks to Thomas Kindler <tkindler@lenord.de> for pointing this out.
27310
27311     Signed-off-by: Stefan Roese <sr@denx.de>
27312
27313 commit 118978c8eb43803e2794233922df4249fa278b83
27314 Author: Woodruff, Richard <r-woodruff2@ti.com>
27315 Date:   Fri Feb 29 17:34:35 2008 -0600
27316
27317     Fix alignment error on ARM for modules
27318
27319     Fix alignment fault on ARM when running modules.  With out an explicit
27320     linker file gcc4.2.1 will half word align __bss_start's value.  The word
27321     dereference will crash hello_world.
27322
27323     signed-off-by Richard Woodruff <r-woodruff2@ti.com>
27324
27325 commit ce1120dd703e6f12c59e4eba9962356a0300b832
27326 Author: Dave Liu <r63238@freescale.com>
27327 Date:   Fri Feb 29 17:45:31 2008 +0800
27328
27329     fs: Fix ext2 read issue
27330
27331     The ext2 aligned process will corrupt the key
27332     data struct, the patch fix this.
27333
27334     Signed-off-by: Dave Liu <daveliu@freescale.com>
27335
27336 commit 5013c09f7a5675952a3ca88b6bc6c924e63af33e
27337 Author: Wolfgang Denk <wd@denx.de>
27338 Date:   Sun Mar 2 22:45:33 2008 +0100
27339
27340     Makefile: cleanup "clean" target
27341
27342     Make sure CDPATH settings cannot interfere.
27343     Update CHANGELOG.
27344
27345     Signed-off-by: Wolfgang Denk <wd@denx.de>
27346
27347 commit ffda586fc1373243c9794babde69500f6293a8d8
27348 Author: Li Yang <leoli@freescale.com>
27349 Date:   Fri Feb 29 11:46:05 2008 +0800
27350
27351     add cscope build target
27352
27353     Add cscope build target to generate cscope database for code browsing.
27354
27355     Signed-off-by: Li Yang <leoli@freescale.com>
27356
27357 commit f655adef65e4cf6b929054b049ee19ae9b5ccbe2
27358 Author: Kim Phillips <kim.phillips@freescale.com>
27359 Date:   Wed Feb 27 15:06:39 2008 -0600
27360
27361     net: uec_phy: handle 88e1111 rev.B2 erratum 5.6
27362
27363     erratum 5.6 states the autoneg completion bit is functional only if the
27364     autoneg bit is asserted.
27365
27366     This fixes any secondarily-issued networking commands on non-gigabit
27367     links on the mpc8360 mds board.
27368
27369     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27370
27371 commit 5f91db7f582ca17b1f19f10189c025696f333d2e
27372 Author: John Rigby <jrigby@freescale.com>
27373 Date:   Tue Feb 26 09:38:14 2008 -0700
27374
27375     MPC5121e ADS PCI support take 3
27376
27377     Adds PCI support for MPC5121
27378
27379     Tested with drivers/net/rtl8139.c
27380
27381     Support is conditional since PCI on old silicon does not work.
27382
27383     ads5121_PCI_config turns on PCI
27384
27385     In this version, condition compilation of PCI code has been moved
27386     from ifdef in board/ads5121/pci.c to board/ads5121/Makefile as
27387     suggested by Jean-Christophe PLAGNIOL-VILLARD
27388
27389     Signed-off-by: John Rigby <jrigby@freescale.com>
27390
27391 commit 44b4dbed4133f657705b7c5193209da9978243a7
27392 Author: Anatolij Gustschin <agust@denx.de>
27393 Date:   Mon Feb 25 23:53:07 2008 +0100
27394
27395     Fix warnings while compilation of post/drivers/memory.c
27396
27397     Fix warnings while compilation with new gcc in eldk-4.2
27398
27399     Signed-off-by: Anatolij Gustschin <agust@denx.de>
27400
27401 commit 4fae35a53b3e958254d6574a1cc7e10811fc6726
27402 Author: Anatolij Gustschin <agust@denx.de>
27403 Date:   Mon Feb 25 20:54:04 2008 +0100
27404
27405     ppc4xx: Fix problem in 4xx_enet.c driver
27406
27407     U-Boot crashes in the net loop if CONFIG_4xx_DCACHE is
27408     enabled. To reproduce the problem ensure that 'ethrotate'
27409     environment variable isn't set to "no" and then run
27410     "tftp 200000 not_existent_file".
27411     This patch tries to fix the issue.
27412
27413     Signed-off-by: Anatolij Gustschin <agust@denx.de>
27414
27415 commit 60ec654c5eb80d0fe0c38a3bd42140215bc06484
27416 Author: Anatolij Gustschin <agust@denx.de>
27417 Date:   Mon Feb 25 20:04:20 2008 +0100
27418
27419     POST: Disable cache while SPR POST
27420
27421     Currently (since commit b2e2142c) u-boot crashes on
27422     sequoia board while SPR test if CONFIG_4xx_DCACHE is
27423     enabled. This patch disables the cache while SPR test.
27424
27425     Signed-off-by: Anatolij Gustschin <agust@denx.de>
27426
27427 commit c313b2c6c555e7d89ec59bd51c59ab164ad0105d
27428 Author: Martin Krause <martin.krause@tqs.de>
27429 Date:   Mon Feb 25 17:52:40 2008 +0100
27430
27431     TQM5200: use automatic fdt memory fixup (part 2)
27432
27433     Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
27434     TB5200 and TB5200_B to fixup the /memory node with the memory values
27435     detected by U-Boot.
27436
27437     Signed-off-by: Martin Krause <martin.krause@tqs.de>
27438
27439 commit 44ceec253ea941b301abf4b079d52324def69d92
27440 Author: Martin Krause <martin.krause@tqs.de>
27441 Date:   Mon Feb 25 15:17:05 2008 +0100
27442
27443     TQM5200: use automatic fdt memory fixup
27444
27445     Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
27446     TB5200 and TB5200_B to fixup the /memory node with the memory values
27447     detected by U-Boot.
27448
27449     Signed-off-by: Martin Krause <martin.krause@tqs.de>
27450
27451 commit f3a329acb26017d8e10e9c93e1e726c2a5ac634a
27452 Author: Martin Krause <martin.krause@tqs.de>
27453 Date:   Mon Feb 25 13:27:52 2008 +0100
27454
27455     TQM5200: fix bug in SDRAM initialization code
27456
27457     This patch fixes a bug in the SDRAM initialization code for the
27458     TQM5200. The hi_addr bit is now set correctly. Without this patch
27459     the hi_addr bit is always set to 1, if the second SDRAM bank is
27460     not populated.
27461
27462     For other MPC5200 boards a correspondig patch has already been applied
27463     some time ago, see commit a63109281ad41b0fb489fdcb901171f76bcdbc2c.
27464
27465     Signed-off-by: Martin Krause <martin.krause@tqs.de>
27466     --
27467     Forget the first patch please. I confused flash with SDRAM in
27468     the comment ...
27469
27470 commit 217bf6b6a313d9ccb619a4dbc09f73f77cd48df1
27471 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27472 Date:   Mon Feb 25 00:03:12 2008 +0100
27473
27474     mx1fs2/flash: Fix multiple compiler warnings
27475
27476     "pointer targets in assignment differ in signedness"
27477
27478     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27479
27480 commit 5599c28cef55be42a8ca6fa8086b1a44e56a85d2
27481 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27482 Date:   Mon Feb 25 00:03:11 2008 +0100
27483
27484     arm-imx: Fix register definitions
27485
27486     Sync register definitions with linux
27487
27488     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27489
27490 commit c9bcf75fecc58886af77d2a571cff2eab39eab6f
27491 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27492 Date:   Mon Feb 25 00:03:10 2008 +0100
27493
27494     actua1/actua2/actua3: Fix multiple unused variable warnings
27495
27496     - actua1:
27497         actux1.c: In function 'checkboard':
27498         actux1.c:92: warning: unused variable 'revision'
27499
27500     - actua2:
27501         actux2.c: In function 'checkboard':
27502         actux2.c:100: warning: unused variable 's'
27503         actux2.c:99: warning: unused variable 'revision'
27504         actux2.c: In function 'reset_phy':
27505         actux2.c:130: warning: unused variable 'i'
27506
27507     - actua3:
27508         actux3.c: In function 'checkboard':
27509         actux3.c:114: warning: unused variable 'revision'
27510
27511     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27512
27513 commit f8fa6368a6a0c02164da8e2f52f18d457c6977bd
27514 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27515 Date:   Sun Feb 24 11:44:29 2008 +0900
27516
27517     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
27518
27519     The previous patch was lacking of i386, microblaze, nios and nios2. This
27520     patch tries to fix them.
27521
27522     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
27523
27524 commit 05e07b1ea22844e946cfcf7d5e8a0199d18d2a95
27525 Author: Marian Balakowicz <m8@semihalf.com>
27526 Date:   Fri Feb 29 22:22:46 2008 +0100
27527
27528     [new uImage] Fix FDT blob totalsize calculation in boot_relocate_fdt()
27529
27530     Do not use global fdt blob pointer, calculate blob size from routine
27531     argument blob pointer.
27532
27533     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27534
27535 commit d1cc52879c8966507dad9fb575481e6d3985e64e
27536 Author: David Gibson <david@gibson.dropbear.id.au>
27537 Date:   Tue Feb 12 00:58:31 2008 +1100
27538
27539     libfdt: Add and use a node iteration helper function.
27540
27541     This patch adds an fdt_next_node() function which can be used to
27542     iterate through nodes of the tree while keeping track of depth.  This
27543     function is used to simplify the iteration code in a lot of other
27544     functions, and is also exported for use by library users.
27545
27546     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
27547
27548 commit 8cf30809a82902a471866d2f07725ce3b8a22291
27549 Author: Bartlomiej Sieka <tur@semihalf.com>
27550 Date:   Fri Feb 29 16:00:24 2008 +0100
27551
27552     [new uImage] Add libfdt support to mkimage
27553
27554     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
27555
27556 commit a6e530f00d31a8494a0422799b2b9a692a9c0eb9
27557 Author: Bartlomiej Sieka <tur@semihalf.com>
27558 Date:   Fri Feb 29 16:00:23 2008 +0100
27559
27560     [new uImage] Add sha1.o object to mkimage binary build
27561
27562     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
27563
27564 commit df6f1b895c997978f03afe04502ee76b7ba34ab9
27565 Author: Marian Balakowicz <m8@semihalf.com>
27566 Date:   Fri Feb 29 16:00:06 2008 +0100
27567
27568     [new uImage] Fix component handling for legacy multi component images
27569
27570     Use uint32_t when accessing size table in image_multi_count() and
27571     image_multi_getimg() for multi component images.
27572
27573     Add missing uimage_to_cpu() endianness conversion.
27574
27575     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27576
27577 commit 570abb0ad120f6002bcaa3cf6f32bd4ca2e1b248
27578 Author: Marian Balakowicz <m8@semihalf.com>
27579 Date:   Fri Feb 29 15:59:59 2008 +0100
27580
27581     [new uImage] Share common uImage code between mkimage and U-boot
27582
27583     This patch adds the following common routines:
27584
27585     1) Dedicated mkimage print_header() is replaced with common
27586     image_print_contents()
27587     image_print_contents_noindent()
27588
27589     2) Common os/arch/type/comp fields name <--> id translation routines
27590     genimg_get_os_name()
27591     genimg_get_arch_name()
27592     genimg_get_type_name()
27593     genimg_get_comp_name()
27594     genimg_get_os_id()
27595     genimg_get_arch_id()
27596     genimg_get_type_id()
27597     genimg_get_comp_id()
27598
27599     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27600
27601 commit 9a4daad0a35eb5143037eea9f786a3e9d672bdd6
27602 Author: Marian Balakowicz <m8@semihalf.com>
27603 Date:   Fri Feb 29 14:58:34 2008 +0100
27604
27605     [new uImage] Update naming convention for bootm/uImage related code
27606
27607     This patch introduces the following prefix convention for the
27608     image format handling and bootm related code:
27609
27610     genimg_             - dual format shared code
27611     image_              - legacy uImage format specific code
27612     fit_                - new uImage format specific code
27613     boot_               - booting process related code
27614
27615     Related routines are renamed and a few pieces of code are moved around and
27616     re-grouped.
27617
27618     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27619
27620 commit 75fa002c47171b73fb4c1f2c2fe4d6391c136276
27621 Author: Kumar Gala <galak@kernel.crashing.org>
27622 Date:   Wed Feb 27 21:51:51 2008 -0600
27623
27624     [new uImage] Respect autostart setting in linux bootm
27625
27626     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27627     Acked-by: Marian Balakowicz <m8@semihalf.com>
27628
27629 commit d3f2fa0d278467b2232e4eb2372f905c3febfbeb
27630 Author: Kumar Gala <galak@kernel.crashing.org>
27631 Date:   Wed Feb 27 21:51:50 2008 -0600
27632
27633     [new uImage] Provide ability to restrict region used for boot images
27634
27635     Allow the user to set 'bootm_low' and 'bootm_size' env vars as a way
27636     to restrict what memory range is used for bootm.
27637
27638     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27639     Acked-by: Marian Balakowicz <m8@semihalf.com>
27640
27641 commit e822d7fc4dd4755d4d0a22f05e33f33d1a0481da
27642 Author: Kumar Gala <galak@kernel.crashing.org>
27643 Date:   Wed Feb 27 21:51:49 2008 -0600
27644
27645     [new uImage] Use lmb for bootm allocations
27646
27647     Convert generic ramdisk_high(), get_boot_cmdline(), get_boot_kbd()
27648     functions over to using lmb for allocation of the ramdisk, command line
27649     and kernel bd info.
27650
27651     Convert PPC specific fdt_relocate() to use lmb for allocation of the device
27652     tree.
27653
27654     Provided a weak function that board code can call to do additional
27655     lmb reserves if needed.
27656
27657     Also introduce the concept of bootmap_base to specify the offset in
27658     physical memory that the bootmap is located at.  This is used for
27659     allocations of the cmdline, kernel bd, and device tree as they should
27660     be contained within bootmap_base and bootmap_base + CFG_BOOTMAPSZ.
27661
27662     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27663
27664 commit f5614e7926863bf0225ec860d9b319741a9c4004
27665 Author: Kumar Gala <galak@kernel.crashing.org>
27666 Date:   Wed Feb 27 21:51:48 2008 -0600
27667
27668     [new uImage] Add autostart flag to bootm_headers structure
27669
27670     The autostart env variable was dropped as part of the initial new uImage
27671     cleanup.  Add it back here so the arch specific code can decide if it
27672     wants to really boot or not.
27673
27674     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27675     Acked-by: Marian Balakowicz <m8@semihalf.com>
27676
27677 commit 4ed6552f715983bfc7d212c1199a1f796f1144ad
27678 Author: Kumar Gala <galak@kernel.crashing.org>
27679 Date:   Wed Feb 27 21:51:47 2008 -0600
27680
27681     [new uImage] Introduce lmb from linux kernel for memory mgmt of boot images
27682
27683     Introduce the LMB lib used on PPC in the kernel as a clean way to manage
27684     the memory spaces used by various boot images and structures.  This code
27685     will allow us to simplify the code in bootm and its support functions.
27686
27687     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27688
27689 commit 4648c2e7a173b0d7f17bef4adaa0623090c9e904
27690 Author: Kumar Gala <galak@kernel.crashing.org>
27691 Date:   Tue Feb 19 22:03:47 2008 -0600
27692
27693     [new uImage] ppc: Allow boards to specify effective amount of memory
27694
27695     For historical reasons we limited the stack to 256M because some boards
27696     could only map that much via BATS.  However newer boards are capable of
27697     mapping more memory (for example 85xx is capable of doing up to 2G).
27698
27699     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27700     Acked-by: Marian Balakowicz <m8@semihalf.com>
27701
27702 commit 274cea2bddbca10cdad7daa518951b75c44ef6bc
27703 Author: Kumar Gala <galak@kernel.crashing.org>
27704 Date:   Wed Feb 27 21:51:46 2008 -0600
27705
27706     [new uImage] rework error handling so common functions don't reset
27707
27708     Changed image_get_ramdisk() to just return NULL on error and have
27709     get_ramdisk() propogate that error to the caller.  It's left to the
27710     caller to call do_reset() if it wants to.
27711
27712     Also moved calling do_reset() in get_fdt() and fdt_relocate() on ppc
27713     to a common location.  In the future we will change get_fdt() and
27714     fdt_relocate() to return success/failure and not call do_reset() at all.
27715
27716     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27717     Acked-by: Marian Balakowicz <m8@semihalf.com>
27718
27719 commit d2bc095a639672def11d5d043b5688d0dbd692ec
27720 Author: Kumar Gala <galak@kernel.crashing.org>
27721 Date:   Wed Feb 27 21:51:45 2008 -0600
27722
27723     [new uImage] ppc: Re-order ramdisk/fdt handling sequence
27724
27725     Doing the fdt before the ramdisk allows us to grow the fdt w/o concern
27726     however it does mean we have to go in and fixup the initrd info since
27727     we don't know where it will be.
27728
27729     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27730
27731 commit 27953493ef025fb698d68c5dee39b36f01f4d530
27732 Author: Kumar Gala <galak@kernel.crashing.org>
27733 Date:   Wed Feb 27 21:51:44 2008 -0600
27734
27735     [new uImage] ppc: Determine if we are booting an OF style
27736
27737     If we are bootin OF style than we can skip setting up some things
27738     that are used for the old boot method.
27739
27740     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27741     Acked-by: Marian Balakowicz <m8@semihalf.com>
27742
27743 commit a6612bdfe7ef37b9787b66800cf02aaded05fbeb
27744 Author: Kumar Gala <galak@kernel.crashing.org>
27745 Date:   Wed Feb 27 21:51:43 2008 -0600
27746
27747     [new uImage] Don't pass kdb to ramdisk_high since we may not have one
27748
27749     We don't actually need the kdb param as we are just using it to get
27750     bd->bi_memsize which we can get from gd->bd->bi_memsize.  Also, if we
27751     boot via OF we might not actually fill out a kdb.
27752
27753     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27754     Acked-by: Marian Balakowicz <m8@semihalf.com>
27755
27756 commit 2b22fa4baee51e6b467c44ea1be0d1ecd86e8775
27757 Author: Kumar Gala <galak@kernel.crashing.org>
27758 Date:   Wed Feb 27 16:30:47 2008 -0600
27759
27760     85xx: Don't icbi when unlocking the cache
27761
27762     There is no reason to icbi when invalidating the temporary stack in
27763     the d-cache.  Its impossible on e500 to have the i-cache contain
27764     any addresses in the temp stack and it can be problematic in generating
27765     transactions on the bus to non-valid addresses.
27766
27767     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27768
27769 commit 534ea6b6f86f8b75ef2ac061ef110a98f103d7d6
27770 Author: Andy Fleming <afleming@freescale.com>
27771 Date:   Wed Feb 27 15:50:50 2008 -0600
27772
27773     Fix source for ECM error IVPR
27774
27775     The source vector for the ECM was being set to 2,
27776     but that's what the source vector for DDR was being
27777     set to.  Change it to 1.
27778
27779     Signed-off-by: Andy Fleming <afleming@freescale.com>
27780
27781 commit 21fae8b2b4e4e6e648796e07e20ab13e9cb18923
27782 Author: Andy Fleming <afleming@freescale.com>
27783 Date:   Wed Feb 27 14:29:58 2008 -0600
27784
27785     Invalidate INIT_RAM TLB mappings
27786
27787     Commit 0db37dc...  (and some others) changed the INIT_RAM TLB
27788     mappings to be unguarded.  This collided with an existing "bug"
27789     where the mappings for the INIT_RAM were being kept around.
27790     This meant that speculative loads to those addresses were
27791     succeeding in the TLB, and going out to the bus, where they
27792     were causing an exception (there's nothing at that address). The
27793     Flash code was coincidentally causing such a speculative load.
27794     Rather than go back to mapping the INIT RAM as guarded, we fix
27795     it so that the entries for the INIT_RAM are invalidated.  Thus
27796     the speculative loads will fail in the TLB, and have no effect.
27797
27798     Signed-off-by: Andy Fleming <afleming@freescale.com>
27799
27800 commit 347b7938d3e561eb215aa386c37fb5acb5a383c6
27801 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27802 Date:   Sun Feb 17 22:56:17 2008 +0100
27803
27804     sbc8548: Fix Revision reading and unused variable 'path'
27805
27806     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27807
27808 commit 495d162374c472f46454453553382ad0735dc725
27809 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27810 Date:   Sun Feb 17 22:56:16 2008 +0100
27811
27812     sbc8548: Fix cfi flash bank declaration
27813
27814     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27815
27816 commit 4efbe9dbb129f857f27856936112c8c02f016be6
27817 Author: Marian Balakowicz <m8@semihalf.com>
27818 Date:   Wed Feb 27 11:02:26 2008 +0100
27819
27820     [new uImage] Correct raw FDT blob handlig when CONFIG_FIT is disabled
27821
27822     Dual format image code must properly handle all three FDT passing methods:
27823     - raw FDT blob passed
27824     - FDT blob embedded in the legacy uImage
27825     - FDT blob embedded in the new uImage
27826
27827     This patch enables proper raw FDT handling when no FIT imaeg support
27828     is compiled in. This is a bit tricky as we must dected FIT format even
27829     when FIT uImage handling is not enabled as both FIT uImages and raw FDT
27830     blobs use tha same low level format (libfdt).
27831
27832     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27833
27834 commit ff0734cff0fb5397ce2f4602f4f3e5ec9c8a36e8
27835 Author: Marian Balakowicz <m8@semihalf.com>
27836 Date:   Wed Feb 27 11:02:26 2008 +0100
27837
27838     [new uImage] POWERPC: Add image_get_fdt() routine
27839
27840     FDT blob may be passed either: (1) raw (2) or embedded in the legacy uImage
27841     (3) or embedded in the new uImage. For the (2) case embedding image must be
27842     verified before we get FDT from it. This patch factors out legacy image
27843     specific verification routine to the separate helper routine.
27844
27845     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27846     Acked-by: Kumar Gala <galak@kernel.crashing.org>
27847
27848 commit 1efd43601f90de21ec6c0ebb9880823e822927b1
27849 Author: Marian Balakowicz <m8@semihalf.com>
27850 Date:   Wed Feb 27 11:02:07 2008 +0100
27851
27852     [new uImage] Add image_get_kernel() routine
27853
27854     Legacy image specific verification is factored out to a separate helper
27855     routine to keep get_kernel() generic and simple.
27856
27857     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27858     Acked-by: Kumar Gala <galak@kernel.crashing.org>
27859
27860 commit 8a5ea3e6168fe6a2780eeaf257a3b19f30dec658
27861 Author: Marian Balakowicz <m8@semihalf.com>
27862 Date:   Wed Feb 27 11:01:04 2008 +0100
27863
27864     [new uImage] Move image verify flag to bootm_headers structure
27865
27866     Do not pass image verification flag directly to related routines.
27867     Simplify argument passing and move it to the bootm_header structure which
27868     contains curently processed image specific data and is already being passed
27869     on the argument list.
27870
27871     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27872     Acked-by: Kumar Gala <galak@kernel.crashing.org>
27873
27874 commit 823afe7cefe00dafefc6696c1cc7aa828c394234
27875 Author: Marian Balakowicz <m8@semihalf.com>
27876 Date:   Wed Feb 27 11:00:47 2008 +0100
27877
27878     [Makefile] Sort COBJS in lib_<arch> Makefiles
27879
27880     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27881
27882 commit 6f0f9dfc4ee880fbf400a2ebe14238181a6c3f91
27883 Author: Marian Balakowicz <m8@semihalf.com>
27884 Date:   Wed Feb 27 11:00:47 2008 +0100
27885
27886     [new uImage] Optimize gen_get_image() flow control
27887
27888     When CONFIG_HAS_DATAFLASH is not defined gen_get_image() routine has nothing
27889     to do, update its control flow to better reflect that simple case.
27890
27891     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27892     Acked-by: Kumar Gala <galak@kernel.crashing.org>
27893
27894 commit d2ced9eb19ec74f4a359949dbe353427fa6d55ca
27895 Author: Marian Balakowicz <m8@semihalf.com>
27896 Date:   Mon Feb 4 08:28:17 2008 +0100
27897
27898     [new uImage] POWERPC: Split get_fdt() into get and relocate routines
27899
27900     PPC specific FDT blob handling code is divided into two separate routines:
27901
27902     get_fdt()   - find and verify a FDT blob (either raw or image embedded)
27903     fdt_relocate()      - move FDT blob to within BOOTMAP if needed
27904
27905     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27906     Acked-by: Kumar Gala <galak@kernel.crashing.org>
27907
27908 commit 33fa5c0bfaf465de8ceb23fcd6b397f68b35a817
27909 Author: Jon Loeliger <jdl@freescale.com>
27910 Date:   Mon Feb 25 13:13:37 2008 -0600
27911
27912     86xx: Fix renamed GUR symbols in sbc8641d board.
27913
27914     Back in commit a551cee99ad1d1da20fd23ad265de47448852f56
27915     (86xx: Fix GUR PCI config registers properly), we should have
27916     changed the MPC86xx_PORBMSR_HA and MPC86xx_PORDEVSR_IO_SEL
27917     symbols in the sbc8641d board as well.  Fix this oversight.
27918
27919     Signed-off-by: Jon Loeliger <jdl@freescale.com>
27920
27921 commit 64cd594e623c39f73964d18787763e4533f791f7
27922 Author: Stefan Roese <sr@denx.de>
27923 Date:   Mon Feb 25 16:50:48 2008 +0100
27924
27925     ppc4xx: Fix acadia_nand build problem
27926
27927     Don't include testdram() on NAND-booting target acadia_nand. This saves
27928     a few bytes and makes the target build clean again.
27929
27930     Signed-off-by: Stefan Roese <sr@denx.de>
27931
27932 commit 14e099e698d41e8179d05c2b2dbcf704a236f748
27933 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27934 Date:   Sun Feb 24 23:03:12 2008 +0000
27935
27936     mx1fs2/flash: Fix multiple pointertargets in assignment differ in signedness
27937
27938     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27939
27940 commit 724902c8464e610642b3a170278b99710325888e
27941 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27942 Date:   Sun Feb 24 23:03:11 2008 +0000
27943
27944     arm-imx: Fix registers definition
27945
27946     Sync registers definition with linux
27947
27948     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27949
27950 commit 4cd288b589ea1178947c6e364453c32b3dede6b7
27951 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27952 Date:   Sun Feb 24 23:03:10 2008 +0000
27953
27954     actua1/actua2/actua3: Fix multipleunused variable
27955
27956     - actua1:
27957         actux1.c: In function 'checkboard':
27958         actux1.c:92: warning: unused variable 'revision'
27959
27960     - actua2:
27961         actux2.c: In function 'checkboard':
27962         actux2.c:100: warning: unused variable 's'
27963         actux2.c:99: warning: unused variable 'revision'
27964         actux2.c: In function 'reset_phy':
27965         actux2.c:130: warning: unused variable 'i'
27966
27967     - actua3:
27968         actux3.c: In function 'checkboard':
27969         actux3.c:114: warning: unused variable 'revision'
27970
27971     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27972
27973 commit d5934ad7756f038a393a9cfab76a4fe306d9d930
27974 Author: Marian Balakowicz <m8@semihalf.com>
27975 Date:   Mon Feb 4 08:28:09 2008 +0100
27976
27977     [new uImage] Add dual format uImage support framework
27978
27979     This patch adds framework for dual format images. Format detection is added
27980     and the bootm controll flow is updated to include cases for new FIT format
27981     uImages.
27982
27983     When the legacy (image_header based) format is detected appropriate
27984     legacy specific handling is invoked. For the new (FIT based) format uImages
27985     dual boot framework has a minial support, that will only print out a
27986     corresponding debug messages. Implementation of the FIT specific handling will
27987     be added in following patches.
27988
27989     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
27990
27991 commit b29661fc1151077776454288051bc9a488351ce8
27992 Author: Wolfgang Denk <wd@denx.de>
27993 Date:   Sun Feb 24 15:21:36 2008 +0100
27994
27995     Coding style cleanup. Prepare v1.3.2-rc2 release candidate
27996
27997     Signed-off-by: Wolfgang Denk <wd@denx.de>
27998
27999 commit 00b48a48424894daa589d166d73277830b1c6ac4
28000 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28001 Date:   Sat Feb 23 12:15:56 2008 +0100
28002
28003     ENV: remove saveenv when CFG_ENV_IS_NOWHERE is selected
28004
28005     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28006
28007 commit b075d74efb70ff68c49a2532f26b56d6703b69c1
28008 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28009 Date:   Sat Feb 23 17:24:16 2008 +0900
28010
28011     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
28012
28013     ----------------------------------------------------------------
28014     Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)]
28015
28016     Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on
28017     32bit targets.
28018
28019     GCC can be made to warn about usage of long long types with ISO C90
28020     (-ansi), but only with -pedantic.  You can write this in a way that even
28021     then it doesn't cause warnings, namely by:
28022
28023     #ifdef __GNUC__
28024     __extension__ typedef __signed__ long long __s64;
28025     __extension__ typedef unsigned long long __u64;
28026     #endif
28027
28028     The __extension__ keyword in front of this switches off any pedantic
28029     warnings for this expression.
28030
28031     Signed-off-by: Olaf Hering <olh@suse.de>
28032     Cc: <linux-arch@vger.kernel.org>
28033     Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
28034     Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
28035     ----------------------------------------------------------------
28036
28037     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28038
28039 commit 208acd112e6517b21fc30c420396902b103563ac
28040 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28041 Date:   Sat Feb 23 17:07:57 2008 +0900
28042
28043     cpu/mcf52x2/config.mk: Make needlessly deffered expansions immediate.
28044
28045     This will reduce the build time.
28046
28047     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28048
28049 commit 495a0dde7fa1b14cdc15607d86503ec2bdcd02c4
28050 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28051 Date:   Sat Feb 23 17:05:00 2008 +0900
28052
28053     cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate.
28054
28055     This will reduce the build time.
28056
28057     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28058
28059 commit e682ba399a1d76f09d8cc7af1e57066f1d360d91
28060 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28061 Date:   Sat Feb 23 16:58:41 2008 +0900
28062
28063     cpu/mips/cofigl.mk: Make a needlessly deffered expansion immediate.
28064
28065     This reduces the build time by ~10%. Here's the gth2_config example.
28066
28067             BEFORE       AFTER
28068     real    0m31.441s    0m27.833s
28069     user    0m24.766s    0m23.045s
28070     sys     0m10.425s    0m7.468s
28071
28072     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28073
28074 commit 02409f8cf54c7cd91981f0dfec135dbf3858090c
28075 Author: Marcel Moolenaar <marcelm@juniper.net>
28076 Date:   Fri Feb 22 10:48:07 2008 -0800
28077
28078     make define2mk.sed work on FreeBSD
28079
28080     In the thread "[1.3.2-rc1] MPC8548CDS/MPC8555CDS configs fails to link",
28081     the define2mk.sed script was identified as the source of the link
28082     failure on FreeBSD. The problem is that sed(1) does not always support
28083     the '+' operator. It isn't on FreeBSD. The attach patch implements the
28084     equivalent, using the '*' operator instead and should work everywhere.
28085
28086     Signed-off-by: Marcel Moolenaar <marcelm@juniper.net>
28087
28088 commit e5084af8ded58453cd07ec1af8b0f29f34122bbc
28089 Author: Detlev Zundel <dzu@denx.de>
28090 Date:   Fri Feb 22 17:21:32 2008 +0100
28091
28092     Replace deprecated "ramdisk" with "ramdisk_size" kernel parameter.
28093
28094     The Linux commit fac8b209b1084bc85748bd54e13d00c1262b220f ("Remove
28095     final traces of long-deprecated "ramdisk" kernel parm") makes these
28096     changes neccessary.
28097
28098     Signed-off-by: Detlev Zundel <dzu@denx.de>
28099
28100 commit d01b847c5cd070895c4ba178c85cd068a95cf7cd
28101 Author: Larry Johnson <lrj@acm.org>
28102 Date:   Thu Feb 21 13:58:16 2008 -0500
28103
28104     LM75 bug fix for negative temperatures
28105
28106     When the LM75 temperature sensor measures a temperature below 0 C, the
28107     current driver does not perform sign extension, so the result returned is
28108     256 C too high.  This patch fixes the problem.
28109
28110     Signed-off-by: Larry Johnson <lrj@acm.org>
28111
28112 commit 5a910c224b13e413bda41922379add6d75c32da3
28113 Author: Heiko Schocher <hs@denx.de>
28114 Date:   Thu Feb 21 18:33:45 2008 +0100
28115
28116     IDS8247: update MAINTAINER entry.
28117
28118     Signed-off-by: Heiko Schocher <hs@denx.de>
28119
28120 commit 79eac2bfb591f2b028ec1735049dc91e4320de4a
28121 Author: Heiko Schocher <hs@denx.de>
28122 Date:   Thu Feb 21 18:31:15 2008 +0100
28123
28124     Fix device tree for mgsuvd board.
28125
28126     Rename the "scc" node in "ethernet" for the mgsuvd board.
28127
28128     Signed-off-by: Heiko Schocher <hs@denx.de>
28129
28130 commit 2e721094a70a52206af2e1bf1208d9a7131f6dad
28131 Author: Yuri Tikhonov <yur@emcraft.com>
28132 Date:   Thu Feb 21 14:23:42 2008 +0100
28133
28134     lwmon5: enable hardware watchdog
28135
28136     Some boards (e.g. lwmon5) may use rather small watchdog intervals, so
28137     causing it to reboot the board if U-Boot does a long busy-wait with
28138     udelay(). Thus, for these boards we have to restart WD more
28139     frequently.
28140
28141     This patch splits the busy-wait udelay() into smaller, predefined,
28142     intervals, so that the watchdog timer may be resetted with the
28143     configurable (CONFIG_WD_PERIOD) interval.
28144
28145     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
28146
28147 commit bc77881247ee6f95d7a9ebc499d26b96bae38c9d
28148 Author: Anatolij Gustschin <agust@denx.de>
28149 Date:   Thu Feb 21 12:52:29 2008 +0100
28150
28151     ppc4xx: Support for ATI Radeon 9200 card on sequoia
28152
28153     Adds configuration option for ATI Radeon 9200 card
28154     support to sequoia config file. If CONFIG_VIDEO
28155     is enabled, TEXT_BASE should be changed to 0xFFF80000.
28156
28157     Signed-off-by: Anatolij Gustschin <agust@denx.de>
28158
28159 commit 5a9abcc317cf3c8a69559ff83081f4e5d719edb7
28160 Author: Kumar Gala <galak@kernel.crashing.org>
28161 Date:   Mon Feb 18 08:18:07 2008 -0600
28162
28163     Remove duplicate defines for ARRAY_SIZE
28164
28165     A few duplicate of the ARRAY_SIZE macro sneaked in since we put
28166     the define in common.h.
28167
28168     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28169
28170 commit 81d93e5c4b83d8b6dcee69de6f4a14ccf6f7114a
28171 Author: Kumar Gala <galak@kernel.crashing.org>
28172 Date:   Mon Feb 18 08:09:37 2008 -0600
28173
28174     ppc: Allow boards to specify effective amount of memory
28175
28176     For historical reasons we limited the stack to 256M because some boards
28177     could only map that much via BATS.  However newer boards are capable of
28178     mapping more memory (for example 85xx is capable of doing up to 2G).
28179
28180     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28181
28182 commit 755c35f54ba7eb7687aa7935e04a02a01ef1b27b
28183 Author: Mike Frysinger <vapier@gentoo.org>
28184 Date:   Mon Feb 18 05:24:13 2008 -0500
28185
28186     include autoconf.mk before any other .mk files
28187
28188     This bumps the autoconf.mk include step above board/cpu/arch/etc... so that
28189     those .mk files can have make if statements based on the current config.
28190
28191     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28192
28193 commit 16fe77752eee099b9fb61ed73460e51cc94b37ba
28194 Author: Mike Frysinger <vapier@gentoo.org>
28195 Date:   Mon Feb 18 05:10:07 2008 -0500
28196
28197     error check autoconf.mk generation
28198
28199     If any of the steps for generating autoconf.mk fail currently, they go
28200     unnoticed.  To fix, we can simply add 'set -e' to the long list of commands.
28201     This is simpler and more robust than placing '|| exit $$?' after every line.
28202
28203     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28204
28205 commit 019895a8dee71a9f00da05c03e379f45d581b0fe
28206 Author: Stefano Babic <sbabic@denx.de>
28207 Date:   Mon Feb 18 08:03:51 2008 +0100
28208
28209     Fix bug in dependency checking
28210
28211     By adding VERSION_FILE to the PHONY targets the script
28212     /tools/setlocalversion is always called and version_autogenerated.h
28213     is replaced only if the script find a modified source file.
28214
28215     Signed-off-by: Stefano Babic <sbabic@denx.de>
28216
28217 commit 98ba144ccc912eee90dd42699f023c497ce774c6
28218 Author: Kyungmin Park <kmpark@infradead.org>
28219 Date:   Mon Feb 18 14:35:43 2008 +0900
28220
28221     Fix GPMC CS2 memory setup at apollon
28222
28223     It disables the current map first
28224
28225     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
28226
28227 commit e845e07e1e6e64f40e35688439d3cdcf01cfff4f
28228 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28229 Date:   Sun Feb 17 23:52:46 2008 +0100
28230
28231     uli526x: Fix multiple differ in signedness and parentheses around comparison
28232
28233     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28234
28235 commit beeccf7a5dc5415c202e0132a33c58fc316c2a62
28236 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28237 Date:   Sun Feb 17 16:58:04 2008 +0100
28238
28239     MIPS: Fix CFG_NO_FLASH support
28240
28241     - Fix flash_init call when CFG_NO_FLASH is used
28242     - Remove no more needed flash.c for qemu-mips
28243
28244     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28245
28246 commit edfed1d91df2b2670a812ca9d1a1f9faae7dba47
28247 Author: Mike Frysinger <vapier@gentoo.org>
28248 Date:   Sat Feb 16 02:40:18 2008 -0500
28249
28250     easylogo: clean up some more and add -r (rgb) support
28251
28252     Michael Hennerich added support for outputting an image in RGB format rather
28253     than forcing YUYV all the time.  This makes obvious sense if the display you
28254     have takes RGB input rather than YUYV.
28255
28256     Rather than hack in support for options, I've converted it to use getopt and
28257     cleaned up the argument parsing in the process.
28258
28259     Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
28260     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28261
28262 commit f65c98129ccada3f7caf97d80395a95b84e911de
28263 Author: Mike Frysinger <vapier@gentoo.org>
28264 Date:   Sat Feb 16 02:12:37 2008 -0500
28265
28266     Makefile: add target for $(LDSCRIPT)
28267
28268     If the $(LDSCRIPT) does not exist (normally it's board/$(BOARD)/u-boot.lds),
28269     then change into the board directory and try and create it.  This allows you
28270     to generate the linker script on the fly based upon board defines (like the
28271     Blackfin boards do).
28272
28273     There should be no regressions due to this change as the normal case is to
28274     already have a u-boot.lds file.  If that's the case, then there's nothing to
28275     generate, and so make will always exit.  The fix here is that if the linker
28276     script does not exist, the implicit rules take over and attempt to guess how
28277     to generate the file.
28278
28279     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28280
28281 commit 5583cbf736474ef754e128a54fb78632f57b48fd
28282 Author: Marian Balakowicz <m8@semihalf.com>
28283 Date:   Thu Feb 21 17:27:49 2008 +0100
28284
28285     [new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds
28286
28287     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
28288
28289 commit 2242f5369822bc7780db95c47985bb408ea9157b
28290 Author: Marian Balakowicz <m8@semihalf.com>
28291 Date:   Thu Feb 21 17:27:41 2008 +0100
28292
28293     [new uImage] Rename and move print_image_hdr() routine
28294
28295     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
28296
28297 commit f50433d670ec2ee9e96abac67cdc6e5e061a810d
28298 Author: Marian Balakowicz <m8@semihalf.com>
28299 Date:   Thu Feb 21 17:20:20 2008 +0100
28300
28301     [new uImage] Add fit_parse_conf() and fit_parse_subimage() routines
28302
28303     Introducing routines for parsing new uImage format bootm arguments:
28304     [<addr>]#<conf>             - configuration specification
28305     [<addr>]:<subimg>   - subimage specification
28306
28307     New format images can contain multiple subimages of the same type. For example
28308     a single new format image file can contain three kernels, two ramdisks and a
28309     couple of FDT blobs. Subimage and configuration specifications are extensions
28310     to bootm (and other image-related commands) arguments' syntax that allow to
28311     specify which particular subimage should be operated on.
28312
28313     Subimage specification is used to denote a particular subimage. Configurations
28314     are a bit more complex -- they are used to define a particualr booting setup,
28315     for example a (kernel, fdt blob) pair, or a (kernel, ramdisk, fdt blob) tuple,
28316     etc.
28317
28318     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
28319
28320 commit fff888a1997ff7de9b29e24050fc4a0fd403ba16
28321 Author: Marian Balakowicz <m8@semihalf.com>
28322 Date:   Thu Feb 21 17:20:19 2008 +0100
28323
28324     [new uImage] Add gen_get_image() routine
28325
28326     This routine assures that image (whether legacy or FIT) is not
28327     in a special dataflash storage.
28328
28329     If image address is a dataflash address image is moved to system RAM.
28330
28331     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
28332
28333 commit 75d3e8fbd93c14d9929d024c75af2d742c76db70
28334 Author: Marian Balakowicz <m8@semihalf.com>
28335 Date:   Thu Feb 21 17:20:18 2008 +0100
28336
28337     [new uImage] Pull in libfdt if CONFIG_FIT is enabled
28338
28339     New uImage format (Flattened Image Tree) requires libfdt
28340     functionality, print out error message if CONFIG_OF_LIBFDT
28341     is not defined.
28342
28343     New uImage support is enabled by defining CONFIG_FIT (and CONFIG_OF_LIBFDT).
28344     This commit turns it on by default.
28345
28346     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
28347
28348 commit 1ba639da5604a64b3ed884a2cbb1c5414a9fa728
28349 Author: Michael Schwingen <michael@schwingen.org>
28350 Date:   Mon Feb 18 23:16:35 2008 +0100
28351
28352     CFI: Do not use uninitialized cmd_reset
28353
28354     Do not use uninitialized cmd_reset; issue both AMD and Intel reset
28355     commands instead
28356
28357     From a short test, it looks like AMD-style flash roms treat *any* unknown
28358     command write as a reset, at least when in CFI Query mode, so issuing the
28359     Intel reset command to AMD-style flashs seems safe (from the small sample I
28360     have), plus the 3-cycle magic sequence should kick the state machine into
28361     the right state even without a reset command. Since the AMD-style flashs
28362     require the unlock sequence for real operation, I chose to try the AMD reset
28363     command first, so that Intel flashs do no see an invalid command prior to
28364     the CFI query.
28365
28366     I have tested the patch on AM29LV320-style flashs from Fujitsu and Macronix,
28367     plus Intel StrataFlash.
28368
28369     Signed-off-by: Michael Schwingen <michael@schwingen.org>
28370     Signed-off-by: Stefan Roese <sr@denx.de>
28371
28372 commit e7a85f26830c9f2e78506421c2d519a2965bc7a1
28373 Author: Rafal Jaworowski <raj@semihalf.com>
28374 Date:   Thu Feb 21 11:56:44 2008 +0100
28375
28376     API: Add (c) and licensing notice to the public API header.
28377
28378     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
28379
28380 commit 928d1d77f8623c120d8763e20e1ca58df9c5c4c6
28381 Author: Yuri Tikhonov <yur@emcraft.com>
28382 Date:   Thu Feb 21 11:06:07 2008 +0100
28383
28384     Fix CPU POST test failure
28385
28386     The CPU POST test code (run from cpu_post_exec_31()) doesn't follow the
28387     ABI carefully, at least the CR3, CR4, and CR5 fields of CR are clobbered
28388     by it. The gcc-4.2 with its more aggressive optimization exposes this fact.
28389     This patch just saves the CR value before running the test code, so allowing
28390     it to do anything it wants with CR.
28391
28392     Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
28393     Acked-by: Yuri Tikhonov <yur@emcraft.com>
28394     --
28395
28396 commit d5908b093955415f3d340706378b991f911af671
28397 Author: Jon Loeliger <jdl@freescale.com>
28398 Date:   Wed Feb 20 15:26:51 2008 -0600
28399
28400     8610HPCD: Document the flashbank selection switches.
28401
28402     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28403
28404 commit a551cee99ad1d1da20fd23ad265de47448852f56
28405 Author: Jon Loeliger <jdl@freescale.com>
28406 Date:   Wed Feb 20 14:22:26 2008 -0600
28407
28408     86xx: Fix GUR PCI config registers properly.
28409
28410     Back in commit 975a083a5ef785c414b35f9c5b8ae25b26b41524 where
28411     I tried to "8610HPCD: Fix typos in two PCI setup registers", I
28412     botched it due to not realizing that 8610 and 8641 had different
28413     Global Utility Register defintions, one of which was like 85xx,
28414     and the other wasn't.  Correct this problem by introducing two
28415     symbols, one for each 86xx SoC, but neither of which is named
28416     anything like 85xx.
28417
28418     My bad.  Lovely Wednesday with git bisect.  You know.
28419
28420     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28421
28422 commit cb06eb961bdffc8728b38c242473d802e83ab2b4
28423 Author: Jon Loeliger <jdl@freescale.com>
28424 Date:   Wed Feb 20 12:24:11 2008 -0600
28425
28426     8610HPCD: Don't use VIDEO/CFB_CONSOLE by default.
28427
28428     Without an actual supported video card hooked up, enabling
28429     the CONFIG_VIDEO by default just makes it look broken by
28430     routing all console output to the video card.   Don't.
28431
28432     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28433
28434 commit 4d264eff4312f230776b913edade7ceb75f1b1e0
28435 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28436 Date:   Wed Jan 30 15:08:15 2008 -0600
28437
28438     ColdFire: Fix missing code flash size for M5485EVB
28439
28440     Signed-off-by: James Mahan <kmahan@freescale.com>
28441     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28442
28443 commit c54f9263e4e11e34b1e70c160bc467ef1d8ec59d
28444 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28445 Date:   Wed Jan 30 15:04:42 2008 -0600
28446
28447     ColdFire: Fix 5282 and 5271 interrupt mask bit
28448
28449     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
28450
28451 commit 975a083a5ef785c414b35f9c5b8ae25b26b41524
28452 Author: Jon Loeliger <jdl@freescale.com>
28453 Date:   Tue Feb 19 12:31:08 2008 -0600
28454
28455     8610HPCD: Fix typos in two PCI setup registers.
28456
28457     The two symbols MPC86xx_PORDEVSR_IO_SEL and MPC86xx_PORBMSR_HA
28458     were erroneously present as 85xx names and values, leftover from
28459     the clone wars.  Fix this by removing the 85xx cruft from the
28460     86xx codebase.
28461
28462     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28463
28464 commit 13f5433f700d4da9f6fdf2a4bb80310133a7c170
28465 Author: Jon Loeliger <jdl@freescale.com>
28466 Date:   Mon Feb 18 14:01:56 2008 -0600
28467
28468     86xx: Convert sbc8641d to use libfdt.
28469
28470     This is the proper fix for a missing closing brace in the function
28471     ft_cpu_setup() noticed by joe.hamman <at> embeddedspecialties.com.
28472     The ft_cpu_setup() function in mpc8641hpcn.c should have been
28473     removed earlier as it was under the obsolete CONFIG_OF_FLAT_TREE,
28474     but was missed.  Only, the sbc8641d was nominally still using it.
28475     It all got ripped out, and the funcality that was in ft_board_setup()
28476     was refactored to remove the CPU portions into the new file
28477     cpu/mpc86xx/fdt.c instead.  Make sbc8641d use this now.
28478
28479     Based loosely on an original patch from joe.hamman@embeddedspecialties.com
28480
28481     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28482
28483 commit 04efddc87c50c84f85dad5c331c634a6ce830a83
28484 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28485 Date:   Sun Feb 17 23:35:31 2008 +0100
28486
28487     mpc86xx: Fix unused variable 'config' and 'immap'
28488
28489     and remove useless CONFIG_DDR_INTERLEAVE
28490
28491     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28492
28493 commit 83d1b3876695c4f21faff2b731d9ef83f38ed208
28494 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28495 Date:   Sun Feb 17 23:03:36 2008 +0100
28496
28497     mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
28498
28499     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28500
28501 commit b6f29c84c208a091f95a10cbc9852d729659ba20
28502 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28503 Date:   Sun Feb 17 14:15:31 2008 +0100
28504
28505     s3c24x0: Fix unused variable 'i' in function 'serial_init_dev'
28506
28507     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28508
28509 commit 0937b8d869fdb42d6ad4fe312958639bd62c973f
28510 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28511 Date:   Sun Feb 17 14:15:32 2008 +0100
28512
28513     pxa: fix assignment from incompatible pointer type
28514
28515     fix mmc_bread function prototype
28516
28517     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28518
28519 commit 64d792063fff90b8118179b092feee09fe5cae13
28520 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28521 Date:   Sun Feb 17 14:15:30 2008 +0100
28522
28523     at91cap9adk: fix implicit declaration of function 'eth_init'
28524
28525     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28526
28527 commit 375c4353db8f900f7ec772e26fab116ec00f7d3a
28528 Author: Wolfgang Denk <wd@denx.de>
28529 Date:   Sun Feb 17 15:43:44 2008 +0100
28530
28531     Remove files added by mistake, update CHANGELOG.
28532
28533     Signed-off-by: Wolfgang Denk <wd@denx.de>
28534
28535 commit b738654d3c84a30f2bfd9a8d7652ff20807c890c
28536 Author: Mike Nuss <mike@terascala.com>
28537 Date:   Wed Feb 6 11:10:11 2008 -0500
28538
28539     PPC440EPx: Optionally enable second I2C bus
28540
28541     The option CONFIG_I2C_MULTI_BUS does not have any effect on Sequoia, the
28542     PPC440EPx reference platform, because IIC1 is never enabled. Add Sequoia board
28543     code to turn on IIC1 if CONFIG_I2C_MULTI_BUS is selected.
28544
28545     Signed-off-by: Mike Nuss <mike@terascala.com>
28546     Cc: Stefan Roese <sr@denx.de>
28547
28548 commit ef5b4f221c22d05770878513951745f236b5b43f
28549 Author: Niklaus Giger <niklaus.giger@netstal.com>
28550 Date:   Tue Feb 5 10:26:44 2008 +0100
28551
28552     ppc4xx: HCU4/5. Cleanup configs
28553
28554     - hcu4.h: Removed define of CONFIG_PPC405GPr
28555     - Corrected phy addresses
28556     - Fix boot variables
28557     - Respect line length of 80 chars
28558
28559     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
28560
28561 commit 74973126d1be63ac75bdc192f46234dca3a7c421
28562 Author: Niklaus Giger <niklaus.giger@netstal.com>
28563 Date:   Tue Feb 5 11:31:28 2008 +0100
28564
28565     ppc4xx: HCU4/5. Cleanups
28566
28567     - Fix some coding style violations.
28568     - Use in/out_u16/32 where appropriate.
28569     - Use register names from ppc405.h.
28570     - Fix trace useage for Lauterbach.
28571     - Remove obsolete generation HCU2.
28572     - Renamed fixed_hcu4_sdram to init_ppc405_sdram.
28573
28574     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
28575
28576 commit 8cc10d06b833ed917a19ad358c8ebbed8bc19555
28577 Author: Niklaus Giger <niklaus.giger@netstal.com>
28578 Date:   Tue Feb 5 10:26:41 2008 +0100
28579
28580     ppc4xx: PPC405GPr fix missing register definitions
28581
28582     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
28583
28584 commit 214398d9cb22268d9d4f7563359edca0f78297a2
28585 Author: Larry Johnson <lrj@acm.org>
28586 Date:   Fri Jan 18 21:49:05 2008 -0500
28587
28588     ppc4xx: Beautify configuration files for Sequoia and Korat boards
28589
28590     Signed-off-by: Larry Johnson <lrj@acm.org>
28591
28592 commit 30c6a241e88499f536e86d325759e29ba00ff67f
28593 Author: Anatolij Gustschin <agust@denx.de>
28594 Date:   Fri Feb 15 20:09:01 2008 +0100
28595
28596     Wipe out assembler warnings while compiling x86 biosemu
28597
28598     This patch tries to get rid of some assembler warnings about
28599     changed .got2 section type while compiling x86 bios emulator
28600     code.
28601
28602     Signed-off-by: Anatolij Gustschin <agust@denx.de>
28603
28604 commit 67a4389e39ad853d65b72e2b7cad15c7e8291147
28605 Author: Wolfgang Denk <wd@denx.de>
28606 Date:   Fri Feb 15 00:57:09 2008 +0100
28607
28608     Prepare v1.3.2-rc1 release candidate
28609
28610 commit f33e9653c9c09868995d788511d573771c209fe5
28611 Author: Anatolij Gustschin <agust@denx.de>
28612 Date:   Fri Feb 15 00:13:20 2008 +0100
28613
28614     Fix compile warning on lib_ppc/board.c
28615
28616     Signed-off-by: Anatolij Gustschin <agust@denx.de>
28617
28618 commit e5c6f9f8bec4dff9603419161e3a15cc8ad5d5f4
28619 Author: Anatolij Gustschin <agust@denx.de>
28620 Date:   Thu Feb 14 18:22:04 2008 +0100
28621
28622     Add Radeon Mobility 9200 pci device id to the radeon driver
28623
28624     This patch extends PCI device id table of the
28625     radeon driver so that the driver will also support
28626     Radeon Mobility 9200 (M9+) based boards.
28627
28628     Signed-off-by: Anatolij Gustschin <agust@denx.de>
28629
28630 commit 1b8607e1f7143548c6062c28371449ec69588c00
28631 Author: Anatolij Gustschin <agust@denx.de>
28632 Date:   Thu Feb 14 18:19:50 2008 +0100
28633
28634     Extend ATI Radeon driver to support more video modes
28635
28636     Adds ATI Radeon 9200 support for 1280x1024, 1024x768,
28637     800x600, 640x480 at 24, 16 and 8 bpp.
28638
28639     Signed-off-by: Anatolij Gustschin <agust@denx.de>
28640
28641 commit 4124382de029d361162a4b8cecc773eb8f26e2a8
28642 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28643 Date:   Sun Feb 10 17:05:20 2008 +0100
28644
28645     xsengine: fix typo and few coding style
28646
28647     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28648
28649 commit 6f4abee789b6d9be3ec4b97ad48f509355559e9e
28650 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
28651 Date:   Fri Feb 8 21:25:58 2008 +0100
28652
28653     Fix wrong memory limit calculation in memory-test
28654
28655     If the length of the memory address range passed to the "mtest" command is
28656     not of the form 2^x - 1, not all address lines are tested. This bug is
28657     inherited from the original software at
28658     http://www.netrino.com/Embedded-Systems/How-To/Memory-Test-Suite-C. Fix
28659     this.
28660
28661     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
28662
28663 commit 7e30f5eac7f07082a7ca77b7d91b944a8d0af6db
28664 Author: Wolfgang Denk <wd@denx.de>
28665 Date:   Fri Feb 15 00:11:39 2008 +0100
28666
28667     Coding STyle cleanup.
28668
28669     Signed-off-by: Wolfgang Denk <wd@denx.de>
28670
28671 commit f6921e3dc331293c873ec4d109fd5517a42a90b3
28672 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28673 Date:   Tue Feb 5 13:30:43 2008 +0900
28674
28675     sh: Fix register address of SH7722
28676
28677     The address of SH7722 is wrong by old document.
28678     This patch fixes this problem.
28679
28680     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28681
28682 commit 0ec7a061fb1c277f6afd73d61dd71bd21e7ef7b2
28683 Author: Mike Frysinger <vapier@gentoo.org>
28684 Date:   Mon Feb 4 17:44:23 2008 -0500
28685
28686     only update version header as needed
28687
28688     Constantly rebuilding the version header will force useless relinking, so we
28689     simply need to compare the new header with the existing one before updating
28690     it.
28691
28692     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28693
28694 commit 208447f8e953f347425eb92c8e28d59e6d911363
28695 Author: Mike Frysinger <vapier@gentoo.org>
28696 Date:   Mon Jan 28 05:56:19 2008 -0500
28697
28698     Do not specify a CROSS_COMPILE default when executing size
28699
28700     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28701
28702 commit 1f780aa6f17a5d79791d69ec1d2f66d76ac45d8e
28703 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
28704 Date:   Wed Feb 13 11:19:19 2008 +0100
28705
28706     Fix return value of mtest when CFG_ALT_MEMTEST set
28707
28708     Fix a missing return statement from a non-void function.
28709
28710     Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
28711
28712 commit 943afa229cf5bf70ef917c7eb6bd0db59a1ba602
28713 Author: Timur Tabi <timur@freescale.com>
28714 Date:   Wed Jan 9 14:35:26 2008 -0600
28715
28716     85xx, 86xx: Determine I2C clock frequencies and store in global_data
28717
28718     Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
28719
28720     Update the get_clocks() function in 85xx and 86xx to determine the I2C
28721     clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
28722
28723     Signed-off-by: Timur Tabi <timur@freescale.com>
28724
28725 commit b931b3a9c3bdfaaeaa71e57a6026eec726005b08
28726 Author: Wolfgang Denk <wd@denx.de>
28727 Date:   Thu Feb 14 23:18:01 2008 +0100
28728
28729     TQM834x: clean up configuration
28730
28731     Get board name consistent with Linux and elsewhere;
28732     get rid of local network definitions etc.
28733
28734     Signed-off-by: Wolfgang Denk <wd@denx.de>
28735
28736 commit 38cc09c55b1d7f233789052c6fc462e5377669a9
28737 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28738 Date:   Thu Feb 14 08:02:12 2008 +0100
28739
28740     TFTP: fix search of ':' in BootFile
28741
28742     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28743
28744 commit 0bc9efada170096c6b273f19165e32936d330d80
28745 Author: Wolfgang Denk <wd@denx.de>
28746 Date:   Thu Feb 14 22:46:55 2008 +0100
28747
28748     Coding style cleanup; update CHANGELOG.
28749
28750     Signed-off-by: Wolfgang Denk <wd@denx.de>
28751
28752 commit e7670f6c1e52ae6d2a43ff75a8bcfa7a5c86e47b
28753 Author: Wolfgang Denk <wd@denx.de>
28754 Date:   Thu Feb 14 22:43:22 2008 +0100
28755
28756     PPC: Use r2 instead of r29 as global data pointer
28757
28758     R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc
28759     will refuse to use load/store multiple insns; instead, it issues a
28760     list of simple load/store instructions upon function entry and exit,
28761     resulting in bigger code size, which in turn makes the build for a
28762     few boards fail.
28763
28764     Use r2 instead.
28765
28766     Signed-off-by: Wolfgang Denk <wd@denx.de>
28767
28768 commit 3c234efa693bc59906c2be55c7918ecbb55392ea
28769 Author: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
28770 Date:   Wed Jan 30 09:08:49 2008 +0100
28771
28772     ARM: make the machid configurable via the environment
28773
28774     If the variable "machid" exists, let do_bootm_linux use that instead
28775     of bd->bi_arch_number.
28776
28777     Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
28778
28779 commit dd24058407c5add45cc60aec6c757ddc1a17e1b0
28780 Author: Vlad Lungu <vlad@comsys.ro>
28781 Date:   Wed Jan 23 16:34:46 2008 +0200
28782
28783     Use #ifdef CONFIG_FSLDMAFEC
28784
28785     MCD_tasks.c lacks [subject] so compilation of mips targets (and more, probably)
28786     fails
28787
28788     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
28789
28790 commit 26c7bab81e08dc7bd696c48f753428a829629bd8
28791 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28792 Date:   Sat Jan 19 10:25:59 2008 +0900
28793
28794     common/miiphyutil.c: Cleanup MII_DEBUG and debug()
28795
28796     Current MII_DEBUG is confusing in two ways. One is useless define-then-
28797     undef at the top of the file. The other is there is only one debug() in
28798     this file, and that doesn't seem worthwhile to bother having MII_DEBUG.
28799     While there are many useful printf()/puts() debug codes, but they are for
28800     DEBUG, not for MII_DEBUG.
28801
28802     This patch tries to put them all together into MII_DEBUG and debug().
28803
28804     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28805
28806 commit 751b9b5189f3274b03c809172631316d6b002c82
28807 Author: Kyungmin Park <kmpark@infradead.org>
28808 Date:   Thu Jan 17 16:43:25 2008 +0900
28809
28810     OneNAND Initial Program Loader (IPL) support
28811
28812     This patch enables the OneNAND boot within U-Boot.
28813     Before this work, we used another OneNAND IPL called X-Loader based
28814     on open source. With this work, we can build the oneboot.bin image
28815     without other program.
28816
28817     The build sequence is simple.
28818     First, it compiles the u-boot.bin
28819     Second, it compiles OneNAND IPL
28820     Finally, it becomes the oneboot.bin from OneNAND IPL and u-boot.bin
28821     The mechanism is similar with NAND boot except it boots from itself.
28822
28823     Another thing is that you can only use the OneNAND IPL only to work
28824     other bootloader such as RedBoot and so on.
28825
28826     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
28827
28828 commit 21f6f9636f0e978397548751347425fbf8d42bb3
28829 Author: Andy Fleming <afleming@freescale.com>
28830 Date:   Wed Jan 16 13:06:59 2008 -0600
28831
28832     Fix CONFIG_MMC usage in fat code
28833
28834     A #if statement in fat.c depended on CONFIG_MMC, instead of
28835     defined(CONFIG_MMC).  This meant CONFIG_MMC needed to be defined
28836     as "1" rather than just defined.  Now it's better.
28837
28838     Signed-off-by: Andy Fleming <afleming@freescale.com>
28839
28840 commit f57d7d364ce189e39b0a64338d2f8012c074a2bd
28841 Author: Rafal Jaworowski <raj@semihalf.com>
28842 Date:   Tue Jan 15 12:52:31 2008 +0100
28843
28844     ppc: Refactor cache routines, so there is only one common set.
28845
28846     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
28847
28848 commit 3f2ac8f928c76cbd2374437b2d079f8b4324aaba
28849 Author: Jon Loeliger <jdl@jdl.com>
28850 Date:   Wed Jan 23 15:55:02 2008 -0600
28851
28852     86xx: Fix compilation warning in sys_eprom.c
28853
28854     sys_eeprom.c:82:9: warning: unknown escape sequence '\/'
28855
28856     Signed-off-by: Jon Loeliger <jdl@freescale.com>
28857
28858 commit 65230107025733e89e28fd5e5cfd916d4953c28a
28859 Author: Haavard Skinnemoen <hskinnemoen at>
28860 Date:   Fri Feb 22 11:40:50 2008 +0000
28861
28862     Move AT91RM9200DK board support under board/atmel
28863
28864     We already have a vendor subdir for Atmel, so we should use it.
28865
28866     Signed-off-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
28867
28868 commit 6d0943a6be99977d6d853d51749e9963d68eb192
28869 Author: Andreas Engel <andreas.engel@ericsson.com>
28870 Date:   Mon Jan 14 09:06:52 2008 +0000
28871
28872     ARM: cleanup duplicated exception handlingcode
28873
28874     Move duplicated exception handling code into lib_arm.
28875
28876     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
28877
28878 commit ea8d989f4ef8203e1c0291e62435a8c62e3cfb29
28879 Author: Timo Tuunainen <timo.tuunainen@sysart.fi>
28880 Date:   Fri Feb 1 10:09:03 2008 +0000
28881
28882     Support for Artila M-501 starter kit
28883
28884     Kimmo Leppala / Sysart and
28885     Timo Tuunainen / Sysart
28886
28887 commit 9604b6e53ddae4fe00a488cbcd6b0e6cb344bccc
28888 Author: Stelian Pop <stelian@popies.net>
28889 Date:   Mon Feb 11 10:50:19 2008 +0000
28890
28891     AT91CAP9 support
28892
28893     ---------------------------------
28894
28895     read_dataflash() takes a signed char pointer as a parameter. Silence a
28896     few warnings dues to incorrect parameter types in env_dataflash.c.
28897
28898     Signed-off-by: Stelian Pop <stelian@popies.net>
28899
28900 commit 64e8a06af68cda174a8a06d0a61fce5e5bb189d7
28901 Author: Stelian Pop <stelian@popies.net>
28902 Date:   Thu Feb 7 09:42:57 2008 +0000
28903
28904     AT91CAP9 support : move board files to Atmel vendor directory.
28905
28906     AT91CAP9 support : move at91cap9adk board files to Atmel vendor directory.
28907
28908     Signed-off-by: Stelian Pop <stelian@popies.net>
28909
28910 commit 7263ef191b87da94768f762c7093bedeb70db98f
28911 Author: Stelian Pop <stelian at>
28912 Date:   Thu Jan 3 21:15:56 2008 +0000
28913
28914     AT91CAP9 support : MACB changes
28915
28916     Signed-off-by: Stelian Pop <stelian <at> popies.net>
28917     Acked-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
28918
28919 commit 6afcabf11d7321850f4feaadfee841488ace54c5
28920 Author: Stelian Pop <stelian@popies.net>
28921 Date:   Thu Feb 7 16:37:54 2008 +0000
28922
28923     AT91CAP9 support : board/ files
28924
28925     Signed-off-by: Stelian Pop <stelian@popies.net>
28926
28927 commit fefb6c10928caa9e71335cad64dcb65c83fce8ab
28928 Author: Stelian Pop <stelian at>
28929 Date:   Wed Jan 30 21:15:54 2008 +0000
28930
28931     AT91CAP9 support : cpu/ files
28932
28933     Signed-off-by: Stelian Pop <stelian <at> popies.net>
28934
28935 commit fa506a926cec348805143576c941f8e61b333cc0
28936 Author: Stelian Pop <stelian@popies.net>
28937 Date:   Thu Jan 31 21:15:53 2008 +0000
28938
28939     AT91CAP9 support : include/ files
28940
28941     Signed-off-by: Stelian Pop <stelian@popies.net>
28942
28943 commit 20b197c6f2799af399a68f96a1aff543a75621b8
28944 Author: Stelian Pop <stelian@popies.net>
28945 Date:   Sun Jan 20 19:49:21 2008 +0000
28946
28947     AT91CAP9 support : build integration
28948
28949     Signed-off-by: Stelian Pop <stelian@popies.net>
28950
28951 commit d49fe4bed5b69ec910909d1bd62da23ecd8801fd
28952 Author: Stelian Pop <stelian@popies.net>
28953 Date:   Sun Jan 20 21:07:00 2008 +0000
28954
28955     Improve DataFlash CS definition.
28956
28957     Use a structure instead of the error prone unnamed array to
28958     define the possible dataflash banks.
28959
28960     Signed-off-by: Stelian Pop <stelian@popies.net>
28961
28962 commit a6cdd21b56014208706238712a853a9e9a0a2290
28963 Author: Stelian Pop <stelian@popies.net>
28964 Date:   Sat Jan 19 21:09:35 2008 +0000
28965
28966     Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on
28967
28968     Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on.
28969
28970     cpu/arm926ejs/start.o: In function `cpu_init_crit':
28971     .../cpu/arm926ejs/start.S:227: undefined reference to `lowlevel_init'
28972
28973     Signed-off-by: Stelian Pop <stelian@popies.net>
28974
28975 commit ea686f52e45b3df2938866d3f5a98bb2556dfe2b
28976 Author: Peter Pearse <peter.pearse@arm.com>
28977 Date:   Fri Feb 1 16:50:24 2008 +0000
28978
28979     Fix timer overflow in DaVinci
28980     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
28981
28982 commit f4e7cbfcb0fcbc325a2bcfea7e00e3dd37f93846
28983 Author: Peter Pearse <peter.pearse@arm.com>
28984 Date:   Fri Feb 1 16:49:08 2008 +0000
28985
28986     Update board NetStar
28987     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
28988
28989 commit b7f6193e76651e1fd606e46eb11915b53cb6618b
28990 Author: Niklaus Giger <niklaus.giger@netstal.com>
28991 Date:   Tue Feb 5 10:26:42 2008 +0100
28992
28993     ppc4xx: HCU4/5. Fix make O=../xx
28994
28995     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
28996
28997 commit 29e3500cbc43c89eff6e720ca83e375deeecd9b3
28998 Author: Larry Johnson <lrj@acm.org>
28999 Date:   Tue Jan 22 08:51:59 2008 -0500
29000
29001     ppc4xx: Add CONFIG_4xx_DCACHE compile switch to Denali-core SPD code
29002
29003     Signed-off-by: Larry Johnson <lrj@acm.org>
29004
29005 commit fe891ecf4d187e9d11dde869ed4623af52b54451
29006 Author: Hiroshi Ito <ito@mlb.co.jp>
29007 Date:   Thu Jan 31 18:35:04 2008 +0900
29008
29009     NFS Timeout with large files.
29010
29011     Retry to send NFS packet before reaching timeout.
29012
29013     Signed-off-by: Hiroshi Ito <ito@mlb.co.jp>
29014
29015 commit 88f72527f5b89c0905ad5c36cc2ef8d29dd6bbf0
29016 Author: Johannes Stezenbach <js@sig21.net>
29017 Date:   Tue Jan 29 00:11:25 2008 +0100
29018
29019     Add dependencies to avoid race conditions with parallel make.
29020
29021     Signed-off-by: Johannes Stezenbach <js@sig21.net>
29022
29023 commit 6d1b6f9f89c815eaca44acff8e73ece7181f61b6
29024 Author: Mike Frysinger <vapier@gentoo.org>
29025 Date:   Mon Jan 28 05:46:01 2008 -0500
29026
29027     Mark board_init_[fr] as noreturn
29028
29029     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29030
29031 commit 161b2af4d7b48fd602ce333c355a4df0337892bb
29032 Author: Mike Frysinger <vapier@gentoo.org>
29033 Date:   Mon Jan 28 05:28:50 2008 -0500
29034
29035     Only use TEXT_BASE if defined by the board
29036
29037     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29038
29039 commit 1b769881750030f10743808b9d6013e11f559350
29040 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29041 Date:   Fri Jan 25 07:54:47 2008 +0100
29042
29043     Fix remaining CONFIG_COMMANDS
29044
29045     update comments
29046     Fix coding style
29047
29048     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29049
29050 commit 0c9d42e6b0b83d507335a291e3ea99240038f4b9
29051 Author: Niklaus Giger <niklaus.giger@netstal.com>
29052 Date:   Mon Jan 21 16:46:00 2008 +0100
29053
29054     Add *~ to .gitignore
29055
29056     One should never add a backup file ending in with ~ to the git repository.
29057
29058     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
29059
29060 commit 3cfb0c51b2bb5ede54eca85ace5b1ba12be314b0
29061 Author: Kumar Gala <galak@kernel.crashing.org>
29062 Date:   Thu Jan 17 00:02:10 2008 -0600
29063
29064     Remove duplicate defines for ARRAY_SIZE
29065
29066     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29067
29068 commit c77ce474b1c57b13e9d36d9830f147966c143694
29069 Author: Stelian Pop <stelian@popies.net>
29070 Date:   Mon Jan 14 22:08:14 2008 +0100
29071
29072     Fix incorrect address test in AT91F_DataflashSelect().
29073
29074     Signed-off-by: Stelian Pop <stelian@popies.net>
29075
29076 commit d9ad115bbf7bb0842de7dbd2502b7e430f83cc3d
29077 Author: Kumar Gala <galak@kernel.crashing.org>
29078 Date:   Wed Feb 13 15:09:58 2008 -0600
29079
29080     Fix building of fdt_support.c if DEBUG set
29081
29082     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29083
29084 commit ccd6e1464e5396bc1a9aebf7077ddf4342eafe03
29085 Author: Jon Loeliger <jdl@freescale.com>
29086 Date:   Tue Feb 12 14:53:28 2008 -0600
29087
29088     Add CFG_MPC86xx_DDR_ADDR and CFG_MPC86xx_DDR2_ADDR symbols
29089
29090     These replace direct structure references for IMMR sections.
29091
29092     Signed-off-by: Jon Loeliger <jdl@freescale.com>
29093
29094 commit c62776be8dca4097ca03d4f9415f08d4887b45d0
29095 Author: Wolfgang Denk <wd@denx.de>
29096 Date:   Tue Feb 12 00:45:06 2008 +0100
29097
29098     Get rid of "#undef DEBUG" from board config files.
29099
29100     Signed-off-by: Wolfgang Denk <wd@denx.de>
29101
29102 commit 73bf1e2de7862bcdbd5a9f993b3e84b67c8ea9c8
29103 Author: Timur Tabi <timur@freescale.com>
29104 Date:   Tue Jan 15 17:09:41 2008 -0600
29105
29106     Remove #undef DEBUG from MPC83xx board header files
29107
29108     Remove the "#undef DEBUG" line from all Freescale 83xx board header files.
29109     The inclusion of this line makes it impossible to enable debug code in
29110     other source files, because "#define DEBUG" typically needs to be defined
29111     before any header files are included.
29112
29113     Signed-off-by: Timur Tabi <timur@freescale.com>
29114
29115 commit 69018ce2e086e9caf35b914d675b82bc4888f077
29116 Author: Kumar Gala <galak@kernel.crashing.org>
29117 Date:   Thu Jan 17 08:25:45 2008 -0600
29118
29119     QE: Move FDT support into a common file
29120
29121     Move the flat device tree setup for QE related devices into
29122     a common file shared between 83xx & 85xx platforms that have QE's.
29123
29124     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29125
29126 commit 5cf746c303710329f8040d9c62ee354313e3e91f
29127 Author: Marian Balakowicz <m8@semihalf.com>
29128 Date:   Thu Jan 31 13:59:09 2008 +0100
29129
29130     [new uImage] Move kernel data find code to get_kernel() routine
29131
29132     Verification of the kernel image (in old format) and finding kernel
29133     data is moved to a dedicated routine. The routine will also hold
29134     support for, to be added, new image format.
29135
29136     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29137
29138 commit 7b325454fd231d4273de3fe373850f777fb086bf
29139 Author: Marian Balakowicz <m8@semihalf.com>
29140 Date:   Thu Jan 31 13:58:20 2008 +0100
29141
29142     [new uImage] Cleanup FDT handling in PPC do_boot_linux()
29143
29144     Move FDT blob finding and relocation to a dedicated
29145     get_fdt() routine. It increases code readability and
29146     will make adding support for new uImage format easier.
29147
29148     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29149
29150 commit b6b0fe6460b7063ac60b9a3531ef210aedb31451
29151 Author: Marian Balakowicz <m8@semihalf.com>
29152 Date:   Thu Jan 31 13:58:13 2008 +0100
29153
29154     [new uImage] Cleanup do_botm_linux() boot allocations
29155
29156     This patch moves common pre-boot allocation steps shared between PPC
29157     and M68K to a helper routines:
29158
29159     common:
29160     - get_boot_sp_limit()
29161     - get_boot_cmline()
29162     - get_boot_kbd()
29163
29164     platform:
29165     - set_clocks_in_mhz()
29166
29167     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29168
29169 commit ceaed2b1e54ebf14d600e02fef016c8df5cc4d40
29170 Author: Marian Balakowicz <m8@semihalf.com>
29171 Date:   Thu Jan 31 13:57:17 2008 +0100
29172
29173     [new uImage] Move ramdisk loading to a common routine
29174
29175     Ramdisk loading code, including initrd_high variable handling,
29176     was duplicated for PPC and M68K platforms. This patch creates
29177     common helper routine that is being called from both platform
29178     do_bootm_linux() routines.
29179
29180     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29181
29182 commit 68d4f05e6b2383a442fb71f80f2a9fbb3d8def68
29183 Author: Marian Balakowicz <m8@semihalf.com>
29184 Date:   Thu Jan 31 13:55:53 2008 +0100
29185
29186     [new uImage] Removed dead ramdisk code on microblaze architectures
29187
29188     Microblaze do_bootm_linux() includes ramdisk processing code but
29189     the ramdisk does not get used anywhere later on.
29190
29191     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29192
29193 commit 5ad03eb3854c162684222a718b44c0716ea0db03
29194 Author: Marian Balakowicz <m8@semihalf.com>
29195 Date:   Thu Jan 31 13:55:39 2008 +0100
29196
29197     [new uImage] Factor out common image_get_ramdisk() routine
29198
29199     Architecture specific do_bootm_linux() routines share common
29200     ramdisk image processing code. Move this code to a common
29201     helper routine.
29202
29203     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29204
29205 commit d3c5eb6dd1f4ed3c3388386cf1d1bf82aa51d56b
29206 Author: Marian Balakowicz <m8@semihalf.com>
29207 Date:   Thu Jan 31 13:20:08 2008 +0100
29208
29209     [new uImage] Move FDT error printing to common fdt_error() routine
29210
29211     FDT error handling in PPC do_bootm_linux() shares the same message format.
29212     This patch moves error message printing to a helper fdt_error() routine.
29213
29214     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29215     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
29216
29217 commit 42b73e8ee00d48004791dea64b8093fb974c57e1
29218 Author: Marian Balakowicz <m8@semihalf.com>
29219 Date:   Thu Jan 31 13:20:07 2008 +0100
29220
29221     [new uImage] Factor out common routines for getting os/arch/type/comp names
29222
29223     Move numeric-id to name translation for image os/arch/type/comp header
29224     fields to a helper routines: image_get_os_name(), image_get_arch_name(),
29225     image_get_type_name(), image_get_comp_name().
29226
29227     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29228
29229 commit e99c26694a384221d336f6448c06a57479c0baa4
29230 Author: Marian Balakowicz <m8@semihalf.com>
29231 Date:   Thu Jan 31 13:20:07 2008 +0100
29232
29233     [new uImage] Remove standalone applications handling from boootm
29234
29235     Standalone applications are supposed to be run using the "go" command.
29236     This patch removes standalone images handling from the do_bootm().
29237
29238     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29239
29240 commit 4a2ad5ff6400698433dd7203d34939c3c9cc9bff
29241 Author: Marian Balakowicz <m8@semihalf.com>
29242 Date:   Thu Jan 31 13:20:07 2008 +0100
29243
29244     [new uImage] Remove OF_FLAT_TREE support from PPC bootm code
29245
29246     Support for OF_FLAT_TREE is to be obsoleted in the near future,
29247     remove related code from the bootm routines.
29248
29249     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29250
29251 commit 82850f3d32a2661868ec6876bed7a22c55cef718
29252 Author: Marian Balakowicz <m8@semihalf.com>
29253 Date:   Thu Jan 31 13:20:06 2008 +0100
29254
29255     [new uImage] Use image API in SH do_bootm_linux() routine
29256
29257     Introduce image handling API for lately added Hitachi SH architecture.
29258
29259     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29260
29261 commit 4a995edec1ac163d9326d143ffe2b47e7543407f
29262 Author: Marian Balakowicz <m8@semihalf.com>
29263 Date:   Thu Jan 31 13:20:06 2008 +0100
29264
29265     [new uImage] Rename architecture specific bootm code files
29266
29267     Implementation of the do_bootm_linux() and other bootm helper routines is
29268     architecture specific code. As such it resides in lib_<arch> directories
29269     in files named <arch>_linux.c
29270
29271     This patch renames those files to a more clear and accurate
29272     lib_<arch>/bootm.c form.
29273
29274     List of the renamed files:
29275        lib_arm/armlinux.c -> lib_arm/bootm.c
29276        lib_avr32/avr32_linux.c -> lib_avr32/bootm.c
29277        lib_blackfin/bf533_linux.c -> lib_blackfin/bootm.c
29278        lib_i386/i386_linux.c -> lib_i386/bootm.c
29279        lib_m68k/m68k_linux.c -> lib_m68k/bootm.c
29280        lib_microblaze/microblaze_linux.c -> lib_microblaze/bootm.c
29281        lib_mips/mips_linux.c -> lib_mips/bootm.c
29282        lib_nios/nios_linux.c -> lib_nios/bootm.c
29283        lib_nios2/nios_linux.c -> lib_nios2/bootm.c
29284        lib_ppc/ppc_linux.c -> lib_ppc/bootm.c
29285        lib_sh/sh_linux.c -> lib_sh/bootm.c
29286
29287     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29288
29289 commit 7582438c285bf0cef82909d0f232de64ec567a8a
29290 Author: Marian Balakowicz <m8@semihalf.com>
29291 Date:   Thu Jan 31 13:20:06 2008 +0100
29292
29293     [new uImage] Return error on image move/uncompress overwrites
29294
29295     Check for overwrites during image move/uncompress, return with error
29296     when the original image gets corrupted. Report clear message to the user
29297     and prevent further troubles when pointer to the corrupted images is passed
29298     to do_bootm_linux routine.
29299
29300     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29301
29302 commit f13e7b2e993c61fed1f607962501e051940d6e80
29303 Author: Marian Balakowicz <m8@semihalf.com>
29304 Date:   Tue Jan 8 18:12:17 2008 +0100
29305
29306     [new uImage] Cleanup image header pointer use in bootm code
29307
29308     - use single image header pointer instead of a set of auxilliary variables.
29309     - add multi component image helper routines: get component size/data address
29310
29311     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29312
29313 commit 1ee1180b6e93e56d0282ac8d943e448e9d0eab20
29314 Author: Marian Balakowicz <m8@semihalf.com>
29315 Date:   Tue Jan 8 18:17:10 2008 +0100
29316
29317     [new uImage] Cleanup cmd_bootm.c
29318
29319     - sort and cleanup headers, declarations, etc.
29320     - group related routines
29321     - cleanup indentation, white spaces
29322
29323     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29324
29325 commit af13cdbc01eaf88880978bfb4f603e012818ba24
29326 Author: Marian Balakowicz <m8@semihalf.com>
29327 Date:   Tue Jan 8 18:11:45 2008 +0100
29328
29329     [new uImage] Add memmove_wd() common routine
29330
29331     Move common, watchdog sensible memmove code to a helper memmmove_wd() routine.
29332
29333     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29334
29335 commit 958fc48abddeab513ea4847e34f22a2e9fe67fe1
29336 Author: Marian Balakowicz <m8@semihalf.com>
29337 Date:   Tue Jan 8 18:11:44 2008 +0100
29338
29339     [new uImage] Fix FDT header verification in PPC do_boot_linux() routine
29340
29341     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29342
29343 commit 15158971f49255ccef54f0979a942cfd3de2ae52
29344 Author: Marian Balakowicz <m8@semihalf.com>
29345 Date:   Tue Jan 8 18:11:44 2008 +0100
29346
29347     [new uImage] Fix uImage header pointer use in i386 do_bootm_linux()
29348
29349     Use image header copy instead of a (possibly corrupted) pointer to
29350     a initial image location.
29351
29352     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29353
29354 commit 261dcf4624b25f3c551efcf8634e9194fabba9c3
29355 Author: Marian Balakowicz <m8@semihalf.com>
29356 Date:   Tue Jan 8 18:11:44 2008 +0100
29357
29358     [new uImage] Remove I386 uImage fake_header() routine
29359
29360     I386 targets are not using a uImage format, instead fake header
29361     is added to ram image before it is further processed by bootm.
29362
29363     Remove this fixup and force proper uImage use for I386.
29364
29365     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29366
29367 commit 559316faf7eae0614c91d77f509b57d6c4c091ba
29368 Author: Marian Balakowicz <m8@semihalf.com>
29369 Date:   Tue Jan 8 18:11:44 2008 +0100
29370
29371     [new uImage] Move CHUNKSZ definition to image.h
29372
29373     CHUNKSZ defined for PPC and M68K is set to the same value of 64K,
29374     move this definition to a common header.
29375
29376     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29377
29378 commit 321359f20823e0b8c5ad38b64d007a6c48cda16e
29379 Author: Marian Balakowicz <m8@semihalf.com>
29380 Date:   Tue Jan 8 18:11:43 2008 +0100
29381
29382     [new uImage] Move gunzip() common code to common/gunzip.c
29383
29384     Move gunzip(), zalloc() and zfree() to a separate file.
29385     Share zalloc() and zfree() with cramfs uncompress routine.
29386
29387     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29388
29389 commit d45d5a18b6b36688f2365623f9d550566c664b5b
29390 Author: Marian Balakowicz <m8@semihalf.com>
29391 Date:   Tue Jan 8 18:11:43 2008 +0100
29392
29393     [new uImage] Cleanup OF/FDT #if/#elif/#endif use in do_bootm_linux()
29394
29395     Make CONFIG_OF_LIBFDT and CONFIG_OF_FLAT_TREE use more
29396     readable in PPC variant of do_bootm_linux() routine.
29397
29398     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29399
29400 commit 5d3cc55ecbae277e08f5ff771da20b1d6a36ec36
29401 Author: Marian Balakowicz <m8@semihalf.com>
29402 Date:   Tue Jan 8 18:11:43 2008 +0100
29403
29404     [new uImage] Move PPC do_bootm_linux() to lib_ppc/ppc_linux.c
29405
29406     PPC implementation of do_bootm_linux() routine is moved to
29407     a dedicated file lib_ppc/ppc_linux.c
29408
29409     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29410
29411 commit b97a2a0a21f279d66de8a9bdbfe21920968bcb1c
29412 Author: Marian Balakowicz <m8@semihalf.com>
29413 Date:   Tue Jan 8 18:14:09 2008 +0100
29414
29415     [new uImage] Define a API for image handling operations
29416
29417     - Add inline helper macros for basic header processing
29418     - Move common non inline code common/image.c
29419     - Replace direct header access with the API routines
29420     - Rename IH_CPU_* to IH_ARCH_*
29421
29422     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29423
29424 commit ed29bc4e8142b46b626f67524207b36e43d9aad6
29425 Author: Marian Balakowicz <m8@semihalf.com>
29426 Date:   Thu Jan 31 13:19:58 2008 +0100
29427
29428     Add missing cmd_ximg.o to common/Makefile
29429
29430     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29431
29432 commit 37e3c62fa07a823e7569c872e3a9395d227ed8e3
29433 Author: Grzegorz Bernacki <gjb@semihalf.com>
29434 Date:   Mon Jan 28 10:15:02 2008 +0100
29435
29436     ADS5121e: DDR2 init/timing update.
29437
29438     Signed-off-by: John Rigby <jrigby@freescale.com>
29439     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
29440
29441 commit ac9152830d7fdebace8a260b7737ef2870c21ca0
29442 Author: John Rigby <jrigby@freescale.com>
29443 Date:   Wed Jan 30 13:36:57 2008 -0700
29444
29445     Device tree updates
29446
29447     Changes to match 5121 device tree going mainline in 2.6.25.
29448
29449     Change OF_SOC from "soc5121" to plain "soc".
29450     Remove unneeded "ref-frequency" fixups.
29451     Remove "address" enetaddr fixup.
29452
29453     Add bus-frequency fixup for old OF_SOC so old
29454     kernels with old device trees will work with new
29455     u-boot with 66MHz IPS clock
29456
29457     Signed-off-by: John Rigby <jrigby@freescale.com>
29458
29459 commit de55d18df3ff2ea614624e74793de7c43520e0e7
29460 Author: John Rigby <jrigby@freescale.com>
29461 Date:   Wed Jan 30 13:36:56 2008 -0700
29462
29463     Change IPS freq to 66MHz
29464
29465     Recommended frequency is 66MHz
29466     Change divider from 4 to 3.
29467
29468     Signed-off-by: John Rigby <jrigby@freescale.com>
29469
29470 commit cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974
29471 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29472 Date:   Mon Jan 14 22:38:55 2008 +0100
29473
29474     xsengine: rename board_post_init to board_late_init
29475
29476     missing migration from "Cleanup of some init functions"
29477     in c837dcb1a316745092567bfe4fb266d0941884ff
29478
29479     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29480
29481 commit 8dafa87476b0d7170e219c2f5e3842c833a91807
29482 Author: Larry Johnson <lrj@acm.org>
29483 Date:   Sat Jan 12 23:35:33 2008 -0500
29484
29485     Add attribute POST_PREREL to ECC memory POST
29486
29487     Signed-off-by: Larry Johnson <lrj@acm.org>
29488
29489 commit ed2cf548cac80cd3cf8154dcfe7b2685bef45938
29490 Author: Kumar Gala <galak@kernel.crashing.org>
29491 Date:   Thu Jan 17 08:25:45 2008 -0600
29492
29493     QE: Move FDT support into a common file
29494
29495     Move the flat device tree setup for QE related devices into
29496     a common file shared between 83xx & 85xx platforms that have QE's.
29497
29498     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29499
29500 commit d38da537943cd36356b9d3d9d9b60533554b81d8
29501 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29502 Date:   Wed Jan 23 17:20:14 2008 +0100
29503
29504     AVR32: Make SDRAM refresh rate configurable
29505
29506     The existing code assumes the SDRAM row refresh period should always
29507     be 15.6 us. This is not always true, and indeed on the ATNGW100, the
29508     refresh rate should really be 7.81 us.
29509
29510     Add a refresh_period member to struct sdram_info and initialize it
29511     properly for both ATSTK1000 and ATNGW100. Out-of-tree boards will
29512     panic() until the refresh_period member is updated properly.
29513
29514     Big thanks to Gerhard Berghofer for pointing out this issue.
29515
29516     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29517
29518 commit 61151cccb660cdb06a07fb283de6089913d7bde0
29519 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29520 Date:   Thu Apr 19 10:10:11 2007 +0200
29521
29522     ATSTK1000: Fix potential flash programming bug
29523
29524     The (now obsolete) atngw100 flash programming code was having problems
29525     programming the onboard at49bv642 chip. The atstk1000 flash
29526     programming code may have the same bug, so import fix for this problem
29527     from the AVR32 Linux BSP.
29528
29529     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29530
29531 commit b2e1d5b64469f10dfcce27f7b0afd935684a8e11
29532 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29533 Date:   Thu Nov 22 17:04:13 2007 +0100
29534
29535     ATSTK1004: Fix comment about default load address
29536
29537     The default load address is SDRAM + 2MB, not SDRAM + 4MB. The latter
29538     wouldn't have worked anyway since the board can only access 4MB of
29539     SDRAM.
29540
29541     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29542
29543 commit 8269ab53608d8db2aa06969c337ab0b0518211e5
29544 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29545 Date:   Thu Nov 22 17:01:24 2007 +0100
29546
29547     ATSTK1002: Use SDRAM + 4MB as default load address
29548
29549     Many people run into problems when they compile a big kernel and load
29550     the uImage at the default SDRAM + 2MB address as the kernel will
29551     overwrite the uImage as it is being unpacked. Increase the default
29552     load address so that we can load a 4MB kernel image without any
29553     problems.
29554
29555     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29556
29557 commit 2bcacc2d841b77f3d2d3910db722003742727e9f
29558 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29559 Date:   Thu Nov 22 16:51:39 2007 +0100
29560
29561     ATNGW100: Fix default mtest range
29562
29563     Let mtest cover the whole SDRAM except the last megabyte, which is
29564     where u-boot lives.
29565
29566     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29567
29568 commit 9856a6b3104e0bc210b0868dfe691c52bf03c227
29569 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29570 Date:   Tue Jan 22 15:31:56 2008 +0900
29571
29572     sh: Fix register address of SH7722.
29573
29574     The address of SH7722 is wrong by old document.
29575     This patch fixes this problem.
29576
29577     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29578
29579 commit 30942b18b66f35f2ceedab39af10e9eccaa943cc
29580 Author: Mike Frysinger <vapier@gentoo.org>
29581 Date:   Mon Feb 4 19:26:57 2008 -0500
29582
29583     new command for displaying strings at specified memory locations
29584
29585     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29586
29587 commit b58d8b48e25b0c866d167cc577f118f528cd9e0a
29588 Author: Mike Frysinger <vapier@gentoo.org>
29589 Date:   Mon Feb 4 19:26:57 2008 -0500
29590
29591     rewrite/cleanup Blackfin RTC driver
29592
29593     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29594
29595 commit 94a91e248b71c3ff951fc27cff6909e82ca37d15
29596 Author: Mike Frysinger <vapier@gentoo.org>
29597 Date:   Mon Feb 4 19:26:57 2008 -0500
29598
29599     generate u-boot.ldr for Blackfin targets
29600
29601     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29602
29603 commit b779f7a59530436040f157f7841db7ab796542df
29604 Author: Mike Frysinger <vapier@gentoo.org>
29605 Date:   Mon Feb 4 19:26:57 2008 -0500
29606
29607     scrub unused symbols
29608
29609     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29610
29611 commit cc2977acc3bbbb7850f16645dd1081f95335868d
29612 Author: Mike Frysinger <vapier@gentoo.org>
29613 Date:   Mon Feb 4 19:26:57 2008 -0500
29614
29615     move Blackfin cpu object list to respective cpu directories
29616
29617     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29618
29619 commit d0b01a246d0a351bc7dce1d0c9cf6aebdf6d7505
29620 Author: Mike Frysinger <vapier@gentoo.org>
29621 Date:   Mon Feb 4 19:26:57 2008 -0500
29622
29623     interface to Blackfin on-chip One-Time-Programmable memory
29624
29625     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29626
29627 commit 4c727c77e43872d3a1d1f76a949fcb3f26a38788
29628 Author: Mike Frysinger <vapier@gentoo.org>
29629 Date:   Mon Feb 4 19:26:56 2008 -0500
29630
29631     add support for memory commands with Blackfin L1 instruction memory
29632
29633     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29634
29635 commit 6b9097e5e7490aa7b828c6f1a1c7a0e875df8464
29636 Author: Mike Frysinger <vapier@gentoo.org>
29637 Date:   Mon Feb 4 19:26:56 2008 -0500
29638
29639     use C code rather than inline assembly
29640
29641     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29642
29643 commit 97c26e006d2fa6d4e1560933ee6f385d8b8908b9
29644 Author: Mike Frysinger <vapier@gentoo.org>
29645 Date:   Mon Feb 4 19:26:56 2008 -0500
29646
29647     add Blackfin-specific reginfo command
29648
29649     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29650
29651 commit 0858b835e7ea501ea084d34cef75932f098342bb
29652 Author: Mike Frysinger <vapier@gentoo.org>
29653 Date:   Mon Feb 4 19:26:55 2008 -0500
29654
29655     add support for Blackfin symbol prefixes to examples
29656
29657     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29658
29659 commit 8dc48d71a4be753ea9f84956cd33600de35fad04
29660 Author: Mike Frysinger <vapier@gentoo.org>
29661 Date:   Mon Feb 4 19:26:55 2008 -0500
29662
29663     add Blackfin-specific bdinfo command
29664
29665     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29666
29667 commit 0003613e3c7df3b84b2cb92e797d77f46f15a43a
29668 Author: Mike Frysinger <vapier@gentoo.org>
29669 Date:   Mon Feb 4 19:26:55 2008 -0500
29670
29671     move -ffixed-P5 to blackfin_config.mk and drop unused -D__BLACKFIN__
29672
29673     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29674
29675 commit 60fa72d65610c7ef33e1d6db858979d05ff0df58
29676 Author: Mike Frysinger <vapier@gentoo.org>
29677 Date:   Mon Feb 4 19:26:55 2008 -0500
29678
29679     unify the Blackfin board targets
29680
29681     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29682
29683 commit d4d7730853e5d675f76ec666807da3028c91d592
29684 Author: Mike Frysinger <vapier@gentoo.org>
29685 Date:   Mon Feb 4 19:26:55 2008 -0500
29686
29687     punt Blackfin VDSP headers and import sanitized/auto-generated ones
29688
29689     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29690
29691 commit 6cfcce67671a3425229d66203386fa3cbd0cc3bd
29692 Author: Mike Frysinger <vapier@gentoo.org>
29693 Date:   Mon Feb 4 19:26:54 2008 -0500
29694
29695     always pull in asm/blackfin.h for Blackfin ports
29696
29697     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29698
29699 commit bf53974c2ddae678d7660f2b5ccfeb0732b6f5dc
29700 Author: Mike Frysinger <vapier@gentoo.org>
29701 Date:   Mon Feb 4 19:26:54 2008 -0500
29702
29703     add missing __raw versions of Blackfin read/write io functions
29704
29705     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29706
29707 commit 24e02d0fd3acc50e73e1a3cdd567f0a77946f15d
29708 Author: Mike Frysinger <vapier@gentoo.org>
29709 Date:   Mon Feb 4 19:26:54 2008 -0500
29710
29711     add the default Blackfin logo used by Blackfin boards with splash screens
29712
29713     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29714
29715 commit 4c58eb5552220e425c8af6ac8d2839244a2f57b1
29716 Author: Mike Frysinger <vapier@gentoo.org>
29717 Date:   Mon Feb 4 19:26:54 2008 -0500
29718
29719     add some more Blackfin docs
29720
29721     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29722
29723 commit 32a9f5f2160a034ea87ea651b233ef7c635e55cf
29724 Author: Mike Frysinger <vapier@gentoo.org>
29725 Date:   Mon Feb 4 19:26:54 2008 -0500
29726
29727     make smc91111_eeprom managment simpler by depending on the board configuration file rather than a hardcoded list of boards
29728
29729     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29730
29731 commit 4087bc88cebec75c432a7fe9f6afb545b0919831
29732 Author: Mike Frysinger <vapier@gentoo.org>
29733 Date:   Mon Feb 4 19:26:54 2008 -0500
29734
29735     fix building on Blackfin as the assembler supports the .set syntax, not the = syntax, for assigning symbols
29736
29737     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29738
29739 commit b45264ee85cbd92020640a32e02fb434fd557108
29740 Author: Mike Frysinger <vapier@gentoo.org>
29741 Date:   Mon Feb 4 19:26:53 2008 -0500
29742
29743     add gitignores for Blackfin pieces
29744
29745     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29746
29747 commit a93907c43f847f076dd0e34ee3b69b5e8e6d0d29
29748 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29749 Date:   Fri Jan 18 01:14:03 2008 +0100
29750
29751     TFTP: add host ip addr support
29752
29753     allow to use a different server as set in serverip
29754     add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length
29755     if not defined the max length will be at 128
29756
29757     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29758
29759 commit e56b4b494cd92def577969f9678395aa22d34c9f
29760 Author: Timur Tabi <timur@freescale.com>
29761 Date:   Wed Jan 9 14:35:26 2008 -0600
29762
29763     85xx,86xx: Determine I2C clock frequencies and store in global_data
29764
29765     Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
29766
29767     Update the get_clocks() function in 85xx and 86xx to determine the I2C
29768     clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
29769
29770     Signed-off-by: Timur Tabi <timur@freescale.com>
29771
29772 commit 7ec8bb15ee368ea54d48d64867767a704d9ab4c2
29773 Author: Wolfgang Denk <wd@denx.de>
29774 Date:   Thu Dec 27 10:56:54 2007 +0100
29775
29776     OMAP5912: fix FIFO handling in UART driver
29777
29778     According to the OMAP5912 Serial Interfaces Reference Guide (see
29779     http://focus.ti.com/lit/ug/spru760c/spru760c.pdf, page 150), the
29780     FIFO_EN enable bit in the FIFO Control Register (FCR) can only be
29781     changed when the baud clock is not running, i. e. when both DLL and
29782     DLH are set to 0.
29783
29784     Thus make sure that DLL and DLH are 0 when writing the FCR.
29785
29786     Signed-off-by: Wolfgang Denk <wd@denx.de>
29787
29788 commit 16158778b5f52f201e95ded2d2d9084b0ed5670d
29789 Author: Harald Welte <laforge@openmoko.org>
29790 Date:   Wed Dec 19 15:10:52 2007 +0100
29791
29792     ARM: S3C24x0 SoC NAND controller support
29793
29794     This patch adds NAND support to the S3C24x0 SoC code in u-boot
29795
29796     Signed-off-by: Harald Welte <laforge@openmoko.org>
29797
29798 commit a7c185ed3d9f8ebd85cfc286e1ffee72e4803163
29799 Author: Harald Welte <laforge@openmoko.org>
29800 Date:   Wed Dec 19 14:24:40 2007 +0100
29801
29802     ARM: s3c24xx: Multiple serial port support
29803
29804     This patch adds support for CONFIG_SERIAL_MULTI on s3c24x0 CPU's
29805
29806     Signed-off-by: Harald Welte <laforge@openmoko.org>
29807
29808 commit a25f72f1f73a11de68251fb88c89991e202e68fa
29809 Author: Harald Welte <laforge@openmoko.org>
29810 Date:   Wed Dec 19 14:16:57 2007 +0100
29811
29812     ARM: arm920t: Allow use of 'gd' pointer from IRQ
29813
29814     This patch allows us to use the 'gd' pointer (and thus environment
29815     and everything else associated with it) from interrupt context on
29816     arm920t.
29817
29818     Signed-off-by: Harald Welte <laforge@openmoko.org>
29819
29820 commit be19bd5cd0f454b63298844a0b5377e029b2caad
29821 Author: Harald Welte <laforge@openmoko.org>
29822 Date:   Wed Dec 19 14:19:38 2007 +0100
29823
29824     ARM: arm920/s3c24xx: IRQ demulitplexer callback
29825
29826     This patch adds a IRQ demultiplexer callback to the arm920 cpu core code,
29827     plus a stub implementation of it for the S3C2410.
29828
29829     The purpose is to allow arm920t implementations such as the s3c24x0 to
29830     implement interrupt handlers in u-boot without having to touch core
29831     arm920t code.
29832
29833     Signed-off-by: Harald Welte <laforge@openmoko.org>
29834
29835 commit a41dbbd98d201d8aea31b5d21df4742c20cd7eda
29836 Author: Hebbar <gururajakr@sanyo.co.in>
29837 Date:   Tue Dec 18 16:03:07 2007 -0800
29838
29839     ARM: Display Ethernet info in do_bdinfo only if CONFIG_CMD_NET is defined
29840
29841     Add ifdef to bdinfo command to display ethernet information
29842     only if CONFIG_CMD_NET is defined for arm modules.
29843
29844     Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
29845
29846 commit f7ad79b6f9f0f45437b62e19b45356cc2aaf4884
29847 Author: Hebbar <gururajakr@sanyo.co.in>
29848 Date:   Tue Dec 18 16:00:54 2007 -0800
29849
29850     ARM: add I2C init function call in lib_arm/board.c
29851
29852     Adds I2C init func call to init sequence for ARM boards. This is
29853     present in ppc,blackfin and other processor init sequence.
29854
29855     Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
29856
29857 commit ff02f139804f3cb61414f7bbcbfdaa0279e3efae
29858 Author: Stefan Roese <sr@denx.de>
29859 Date:   Fri Feb 1 09:38:29 2008 +0100
29860
29861     ppc4xx: Fix ndfc HW ECC byte order
29862
29863     The current ndfc HW ECC implementation swaps the first two ECC bytes.
29864     But the 4xx NDFC already uses the SMC (Smart Media Card) ECC ordering,
29865     so this swapping in the HW ECC driver is bogus. This patch fixes this
29866     problem and now really uses the SMC ECC byte order.
29867
29868     Thanks to Sean MacLennan for pointing this out.
29869
29870     Signed-off-by: Stefan Roese <sr@denx.de>
29871
29872 commit e1d1429b49b0ee58c80f8c7b29c1ebaf8be7f5f1
29873 Author: Stefan Roese <sr@denx.de>
29874 Date:   Wed Jan 30 15:35:50 2008 +0100
29875
29876     ppc4xx: Fix GPIO configuration for pcs440ep
29877
29878     The SRD0_PFC0 register was not configured correctly to enable the GPIO's
29879     49-63 for GPIO. They have been configured as trace signals. This patch
29880     fixes this by clearing the corresponding bit.
29881
29882     Signed-off-by: Stefan Roese <sr@denx.de>
29883
29884 commit 28d77d968bfe0316deb5bf15c17f57d5ff2c8821
29885 Author: Stefan Roese <sr@denx.de>
29886 Date:   Wed Jan 30 14:48:28 2008 +0100
29887
29888     ppc4xx: Fix problem with init-ram bigger than 4k on 440 platforms
29889
29890     Signed-off-by: Stefan Roese <sr@denx.de>
29891
29892 commit 4fedfddf97461b88668b9aec774dfb7a0c6dc368
29893 Author: Ladislav Michl <ladis@linux-mips.org>
29894 Date:   Fri Dec 7 00:42:32 2007 +0100
29895
29896     ARM: Board voiceblue update
29897
29898     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
29899
29900 commit 2c5260f711168d5ee91c70ddbb7d897013eefc46
29901 Author: Ladislav Michl <ladis@linux-mips.org>
29902 Date:   Thu Dec 6 23:24:57 2007 +0100
29903
29904     ARM: AT91RM9200 based boards config cleanup
29905
29906     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
29907
29908     Remove nowhere used struct bd_info_ext, remove trailing whitespaces, fix
29909     indentation.
29910
29911 commit 481f28b1db5cd21deb55f69399ba240e107af4c7
29912 Author: Ladislav Michl <ladis@linux-mips.org>
29913 Date:   Thu Dec 6 22:59:16 2007 +0100
29914
29915     ARM: Fix at91rm9200dk base address
29916
29917     Somewhere during development of U-Boot-1.1.3 CONFIG_BOOTBINFUNC was
29918     renamed into CONFIG_INIT_CRITICAL which was 04 Apr 2005 replaced
29919     with CONFIG_SKIP_LOWLEVEL_INIT and CONFIG_SKIP_RELOCATE_UBOOT.
29920     However CONFIG_SKIP_LOWLEVEL_INIT has oposite meaning to
29921     CONFIG_BOOTBINFUNC, so fix configuration to reflect this fact.
29922     I'm sending this patch 4th (!) time in hope it produces at least some
29923     reaction.
29924
29925     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
29926
29927     Fix at91rm9200dk base and environment address.
29928
29929 commit c95219fae2a7add7daa2f91aedca65b1698465c7
29930 Author: stefano babic <sbabic@denx.de>
29931 Date:   Tue Nov 20 10:40:24 2007 +0100
29932
29933     MMC for PXA 27X (resubmit)
29934
29935     MMC support for X_Scale PXA is broken and does not work.
29936     Mainly, the mmc_init() function cannot recognize current SD/MMC cards.
29937     There were already some patches around the world but none of them was
29938     merged into the official u-boot tree.
29939
29940     This patch makes order fixing this issue. Resubmit after code cleanup.
29941
29942     Applied and tested on PXA 270 (TrizepsIV module).
29943
29944     Signed-off-by: Stefano Babic <sbabic@denx.de>
29945
29946 commit 96bbfa1e6625ce23a150936863b3ecf4c853eb33
29947 Author: stefano babic <sbabic@denx.de>
29948 Date:   Tue Nov 20 10:37:04 2007 +0100
29949
29950     Fix gcc issues in pxa-regs.h
29951
29952     Fix gcc4 issue. With some toolchain, a previous patch that fixes gcc4
29953     issues generates wrong code.
29954     (Problem was reported with gcc-4.0.2-glibc-2.3.6/arm-softfloat-linux-gnu).
29955     This patch fixes the problem and solves the gcc-4 issues as the linux
29956     kernel does.
29957
29958     Signed-off-by: Stefano Babic <sbabic@denx.de>
29959     Signed-off-by: Dmitry Ivanov <ivadmitry@gmail.com>
29960
29961 commit 7047b388876e7b905b2ec4edb8010543e3641b85
29962 Author: Jens Gehrlein <sew_s@tqs.de>
29963 Date:   Tue Jan 29 08:45:03 2008 +0100
29964
29965     TQM834x: enable DHCP
29966
29967     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
29968     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29969
29970 commit a877004d44ca7dbc1e618add3eeb1da7c84e4bec
29971 Author: Jens Gehrlein <sew_s@tqs.de>
29972 Date:   Tue Jan 29 08:45:02 2008 +0100
29973
29974     TQM834x: support for Spansion N-type Flashes (sector size = 256 KiB at 2x16 Bit).
29975
29976     Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
29977     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29978
29979 commit 8931ab176025b03cfc320b3fd1eca432a88ed560
29980 Author: Ben Warren <biggerbadderben@gmail.com>
29981 Date:   Sat Jan 26 23:41:19 2008 -0500
29982
29983     Fix conditional compilation of mpx8xxx_spi driver
29984
29985     This driver should only compile if CONFIG_MPC8XXX_SPI is set
29986
29987     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29988     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29989
29990 commit 63f732d3d3880feb531f48af247c025bf01462b0
29991 Author: Rafal Jaworowski <raj@semihalf.com>
29992 Date:   Tue Jan 29 17:00:34 2008 +0100
29993
29994     API: Provide dummy halt() in the glue layer.
29995
29996     This fixes a demo app link failure on platforms configured with CONFIG_PANIC_HANG.
29997
29998     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
29999
30000 commit 0dc1fc22af86d16993388d9ed9630dbaa2d51826
30001 Author: Rafal Jaworowski <raj@semihalf.com>
30002 Date:   Tue Jan 29 16:57:38 2008 +0100
30003
30004     API: Convert conditional building to the new scheme.
30005
30006     This fixes a build breakage with CONFIG_API enabled, which appeared after
30007     the recent changes in the U-Boot build system.
30008
30009     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
30010
30011 commit 98b742489c09780be6a832eeaa4e5eff824792bb
30012 Author: Wolfgang Denk <wd@denx.de>
30013 Date:   Fri Jan 25 09:56:17 2008 +0100
30014
30015     inka4x0: remove dead code
30016
30017     Signed-off-by: Wolfgang Denk <wd@denx.de>
30018
30019 commit 4f93f8b1a4d35b6d302842132edba920ef8f62aa
30020 Author: Becky Bruce <becky.bruce@freescale.com>
30021 Date:   Wed Jan 23 16:31:06 2008 -0600
30022
30023     86xx: Add reginfo command
30024
30025     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30026
30027 commit ddcebcb638715a6278da93b553d5016f99823816
30028 Author: Becky Bruce <becky.bruce@freescale.com>
30029 Date:   Wed Jan 23 16:31:05 2008 -0600
30030
30031     86xx: Add print_laws function to fsl_law.c
30032
30033     This can be used for debug, and will be used by board code
30034     to help implement reginfo.
30035
30036     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30037
30038 commit 9cd32426f26a0567bb61f339edd83c6a2ce9bfc3
30039 Author: Becky Bruce <becky.bruce@freescale.com>
30040 Date:   Wed Jan 23 16:31:04 2008 -0600
30041
30042     86xx: Remove old-style law setup code
30043
30044     This includes mpc8610hpcd, mpc8641hpcn, and sbc8641d.
30045
30046     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30047
30048 commit 713d8186649dae874613d495b0cecaa039a98b30
30049 Author: Becky Bruce <becky.bruce@freescale.com>
30050 Date:   Wed Jan 23 16:31:03 2008 -0600
30051
30052     86xx: Convert sbc8641d to use new law setup code.
30053
30054     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30055
30056 commit 031976f6364b93833e989f57e9f1e023e0be8c4c
30057 Author: Becky Bruce <becky.bruce@freescale.com>
30058 Date:   Wed Jan 23 16:31:02 2008 -0600
30059
30060     86xx: Convert mpc8610hpcd to new law setup method.
30061
30062     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30063
30064 commit 4933b91f8a49e436681f163df3173beb91cac44a
30065 Author: Becky Bruce <becky.bruce@freescale.com>
30066 Date:   Wed Jan 23 16:31:01 2008 -0600
30067
30068     86xx: Support new law setup method and convert mpc8641
30069
30070     Adds the support code in cpu/mpc86xx for the new law setup code
30071     recently created fsl_law.c, and changes the MPC8641HPCN config
30072     to use this code.
30073
30074     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30075
30076 commit 1a41f7ce9c086e208c0eabf52565a237af2a2bd1
30077 Author: Becky Bruce <becky.bruce@freescale.com>
30078 Date:   Wed Jan 23 16:31:00 2008 -0600
30079
30080     86xx: Rearrange the sequence in start.S
30081
30082     * split the BAT initialization so that only 2 BATs (for the boot page
30083     and stack) are programmed very early on.  The rest are initialized later.
30084     * Move other BAT setup,  ccsrbar setup, and law setup later in the code
30085     after translation has been enabled.
30086
30087     These changes will facilitate the moving of law and BAT initialization
30088     to C code, and will aid with 36-bit physical addressing support.
30089
30090     Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30091
30092 commit 33dac03b1b5d61e4fed7bad445ba40b4c97feba0
30093 Author: Wolfgang Denk <wd@denx.de>
30094 Date:   Wed Jan 23 14:41:37 2008 +0100
30095
30096     Coding Style Cleanup; update CHANGELOG
30097
30098     Signed-off-by: Wolfgang Denk <wd@denx.de>
30099
30100 commit 865f0f9754b95183cad395de7e8cb85df0c6ea1f
30101 Author: Wolfgang Denk <wd@denx.de>
30102 Date:   Wed Jan 23 14:31:17 2008 +0100
30103
30104     Coding Style Cleanup; update CHANGELOG
30105
30106     Signed-off-by: Wolfgang Denk <wd@denx.de>
30107
30108 commit cfe5ca77976afdbe7ecb86e39fd7505bde636ace
30109 Author: Dave Liu <r63238@freescale.com>
30110 Date:   Fri Jan 18 10:07:04 2008 +0800
30111
30112     mpc83xx: Correct the struct spi8xxx in mpc8xxx_spi.h
30113
30114     The commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
30115     cause the 83xx immap broken, so the DMA and PCI will
30116     be failed.
30117
30118     The patch fix the struct spi8xxx and rm struct spi83xx.
30119
30120     Signed-off-by: Dave Liu <daveliu@freescale.com>
30121     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30122
30123 commit 6b4439444286e0fcd01596df504e6ca897ad3e5a
30124 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
30125 Date:   Sat Apr 14 17:11:49 2007 +0200
30126
30127     AVR32: ATNGW100 board support
30128
30129     Add support for the ATNGW100 Network Gateway reference design,
30130     including flash, ethernet and MMC support.
30131
30132     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
30133
30134 commit e006927a0b9a54e8ee7685d8ac748aaad6801862
30135 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
30136 Date:   Sat Nov 24 18:15:31 2007 +0100
30137
30138     AVR32: Initialize ipaddr, loadaddr and bootfile at startup
30139
30140     I don't know why the relevant layers can't do this by itself, but this
30141     is what ppc does.
30142
30143     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
30144
30145 commit 799891ef7b1b3432032ec23466df6b665a797fa4
30146 Author: Michael Schwingen <michael@schwingen.org>
30147 Date:   Fri Jan 18 00:04:28 2008 +0100
30148
30149     Add AcTux board support
30150
30151     Hi,
30152
30153     The patch adds 4 boards, called AcTux-1 .. AcTux-4. This patch contains the
30154     files that
30155     contain changes for multiple boards, the board-specific files follow as
30156     separate patches.
30157
30158     Signed-off-by: Michael Schwingen <michael@schwingen.org>
30159
30160 commit 66a4344a4d910a11125df7768899ad529719855e
30161 Author: Michael Schwingen <michael@schwingen.org>
30162 Date:   Wed Jan 16 19:53:23 2008 +0100
30163
30164     add AcTux-4 board support
30165
30166     Signed-off-by: Michael Schwingen <michael@schwingen.org>
30167
30168 commit bc24345e4101a5c996d6b48ce497b09c53025dc6
30169 Author: Michael Schwingen <michael@schwingen.org>
30170 Date:   Wed Jan 16 19:51:55 2008 +0100
30171
30172     add AcTux-3 board support
30173
30174     Signed-off-by: Michael Schwingen <michael@schwingen.org>
30175
30176 commit aebf00fc4d1343b24715373893f7b20bf462d1e9
30177 Author: Michael Schwingen <michael@schwingen.org>
30178 Date:   Wed Jan 16 19:51:14 2008 +0100
30179
30180     add AcTux-2 board support
30181
30182     Signed-off-by: Michael Schwingen <michael@schwingen.org>
30183
30184 commit ea99e8f05b7240fd657739e286664664ae160abe
30185 Author: Michael Schwingen <michael@schwingen.org>
30186 Date:   Wed Jan 16 19:50:37 2008 +0100
30187
30188     add AcTux-1 board support
30189
30190     Signed-off-by: Michael Schwingen <michael@schwingen.org>
30191
30192 commit 3d9f3bfb7a33efe8e41e01b025563cd712c57d64
30193 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30194 Date:   Mon Jan 14 19:20:08 2008 +0100
30195
30196     ARM: remove useless function board_post_init
30197
30198     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30199
30200 commit 96bd462942022e4569b582c072a0ed26de1cd19b
30201 Author: Michael Schwingen <michael@schwingen.org>
30202 Date:   Thu Jan 10 14:59:46 2008 +0100
30203
30204     IXP: enable RTS
30205
30206     enables the RTS signal with CONFIG_SERIAL_RTS_ACTIVE.
30207     No handshaking is done, but the active RTS signal allows to
30208     connect to the target using a PC which is using RTS/CTS
30209     handshake, and does no harm if the PC is set to ignore RTS.
30210
30211     Signed-off-by: Michael Schwingen <michael@schwingen.org>
30212
30213 commit a1cf027a08f9dc1c0e769499e6f4fbddcf9cab93
30214 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30215 Date:   Mon Jan 7 08:41:34 2008 +0100
30216
30217     IXP: add dynamic microcode addr
30218
30219     allow to load the microde from flash or ram by download it through
30220     the serial or other.
30221
30222     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30223     Acked-by: Stefan Roese <sr@denx.de>
30224
30225 commit 63ebcc4615dd39926ccf61f1d5f3510262ef6564
30226 Author: Michael Schwingen <michael@schwingen.org>
30227 Date:   Sat Nov 10 15:44:12 2007 +0100
30228
30229     load ixp42x NPE firmware from separate flash block, remove dead code
30230
30231     Hi,
30232
30233     the following patch adds support to move the IXP42X NPE firmware to a
30234     separate flash block, whose start address is defined in
30235     CONFIG_IXP4XX_NPE_EXT_UCODE_BASE. Using that, it is possible to build
30236     NPE-enabled u-boot without copyright problems due to the NPE firmware.
30237
30238     I hope the patch applies, I get whitespace-related differences in the NPE
30239     files due to trailing whitespace in the original versions.
30240
30241     Signed-off-by: Michael Schwingen <michael@schwingen.org>
30242     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30243
30244 commit 57a127201eb3d8cc19170a008e0bd7af608bd72f
30245 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30246 Date:   Tue Jan 15 14:15:46 2008 -0600
30247
30248     ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB support
30249
30250     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30251     Signed-off by: John Rigby <jrigby@freescale.com>
30252
30253 commit 1aee111135d8660a164d4f6bf7d66b032ea535cf
30254 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30255 Date:   Tue Jan 15 14:02:49 2008 -0600
30256
30257     ColdFire: MCF547x_8x - Add M547xEVB and M548xEVB board
30258
30259     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30260     Signed-off by: John Rigby <jrigby@freescale.com>
30261
30262 commit 777d1abd9796f1c2e148417cc10657e847d318ce
30263 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30264 Date:   Tue Jan 15 14:00:25 2008 -0600
30265
30266     ColdFire: Add MCF547x_8x FEC driver
30267
30268     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30269     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30270     Signed-off by: John Rigby <jrigby@freescale.com>
30271
30272 commit 72f56adc0b25d43875ad067bae6be1bcea86b79f
30273 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30274 Date:   Tue Jan 15 13:54:09 2008 -0600
30275
30276     ColdFire: Add MCF547x_8x dma code and header files
30277
30278     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30279     Signed-off by: John Rigby <jrigby@freescale.com>
30280
30281 commit ce09fc49b56ea3c442794b6be9b7db4b99dfdc87
30282 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30283 Date:   Tue Jan 15 13:52:03 2008 -0600
30284
30285     ColdFire: Add MCF547x_8x dma code - 2
30286
30287     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30288     Signed-off by: John Rigby <jrigby@freescale.com>
30289
30290 commit 11865ea844e7154fd30c7e2860da4eed4a12ad1f
30291 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30292 Date:   Tue Jan 15 13:48:52 2008 -0600
30293
30294     ColdFire: Add MCF547x_8x dma code - 1
30295
30296     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30297     Signed-off by: John Rigby <jrigby@freescale.com>
30298
30299 commit 4621fc3fe7cd65b78b3cbd31f65c9f7f72b22bd3
30300 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30301 Date:   Tue Jan 15 13:39:44 2008 -0600
30302
30303     ColdFire: Add MCF547x_8x related header files
30304
30305     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30306     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30307     Signed-off by: John Rigby <jrigby@freescale.com>
30308
30309 commit 570c0186aecab1b747b2d44d0e1d3c1ac4cb27f5
30310 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30311 Date:   Tue Jan 15 13:37:34 2008 -0600
30312
30313     ColdFire: Add MCF547x_8x cpu arch
30314
30315     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30316     Signed-off by: John Rigby <jrigby@freescale.com>
30317
30318 commit e2756f4b54aba0e0523b81dd145666829cf7fd59
30319 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30320 Date:   Mon Jan 14 17:47:23 2008 -0600
30321
30322     ColdFire: Add MCF5227x cpu and M52277EVB support-3
30323
30324     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30325     Signed-off by: John Rigby <jrigby@freescale.com>
30326
30327 commit c87581027994c148131b2f11aa75501f782ec19a
30328 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30329 Date:   Mon Jan 14 17:46:19 2008 -0600
30330
30331     ColdFire: Add MCF5227x cpu and MCF52277EVB support-2
30332
30333     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30334     Signed-off by: John Rigby <jrigby@freescale.com>
30335
30336 commit 1552af70ecab11b9f3dceff7528ed15faf678b9d
30337 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30338 Date:   Mon Jan 14 17:43:33 2008 -0600
30339
30340     ColdFire: Add MCF5227x cpu and M52277EVB support-1
30341
30342     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30343     Signed-off by: John Rigby <jrigby@freescale.com>
30344
30345 commit 397b7b81a1f1008798ae1206913508cc89cb3a7d
30346 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30347 Date:   Mon Jan 14 17:35:44 2008 -0600
30348
30349     ColdFire: Fix CFI Flash low level Read/Write macro
30350
30351     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30352     Signed-off by: John Rigby <jrigby@freescale.com>
30353
30354 commit aa5f1f9dc815a76f6dffb580798599c028fe7feb
30355 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30356 Date:   Mon Jan 14 17:23:08 2008 -0600
30357
30358     ColdFire: Add M5373EVB platform support - 2
30359
30360     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30361     Signed-off by: John Rigby <jrigby@freescale.com>
30362
30363 commit 1ac559d4aa358f63b48c62b564224c06feeb4e36
30364 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30365 Date:   Mon Jan 14 17:19:54 2008 -0600
30366
30367     ColdFire: Add M5373EVB platform support - 1
30368
30369     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30370     Signed-off by: John Rigby <jrigby@freescale.com>
30371
30372 commit 320d61991fa3190ee41765601ed017b6b5ff7b2b
30373 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30374 Date:   Mon Jan 14 17:17:03 2008 -0600
30375
30376     ColdFire: Update FlexBus CS for MCF532x
30377
30378     Definition update and change from 16bit to 32bit
30379
30380     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30381     Signed-off by: John Rigby <jrigby@freescale.com>
30382
30383 commit 2e72ad0644b940817a89a3590ce0d7b99c05c396
30384 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30385 Date:   Mon Jan 14 17:11:47 2008 -0600
30386
30387     ColdFire: PCI and misc updates for MCF5445x
30388
30389     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30390     Signed-off by: John Rigby <jrigby@freescale.com>
30391
30392 commit d2b16493480ac3d4a60ad7d835b0dc27d2e99cee
30393 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30394 Date:   Mon Jan 14 17:06:55 2008 -0600
30395
30396     ColdFire: MCF5445x header files cleanup
30397
30398     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30399     Signed-off by: John Rigby <jrigby@freescale.com>
30400
30401 commit d9aae6260993a93f7fcf13abff85a601f4f50ea7
30402 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30403 Date:   Mon Jan 14 16:59:42 2008 -0600
30404
30405     ColdFire: MCF532x header files cleanup
30406
30407     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30408     Signed-off by: John Rigby <jrigby@freescale.com>
30409
30410 commit 7af7751d047e74b2ec58400f97b879c56446b3e8
30411 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30412 Date:   Mon Jan 14 15:30:15 2008 -0600
30413
30414     ColdFire: Add modules header files
30415
30416     Add CF specific modules header files
30417
30418     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30419     Signed-off-by: John Rigby <jrigby@freescale.com>
30420
30421 commit 2956acd5ef93a498337f8ac2ec6ae6a77d491dc5
30422 Author: Kim Phillips <kim.phillips@freescale.com>
30423 Date:   Thu Jan 17 12:48:00 2008 -0600
30424
30425     codingstyle cleanup for spi driver
30426
30427     ..and rm unused CONFIG_FSL_SPI define
30428
30429     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30430
30431 commit d59feffb42c9f174116db7a82a311df98983dfce
30432 Author: Haiying Wang <Haiying.Wang@freescale.com>
30433 Date:   Wed Jan 16 17:12:12 2008 -0500
30434
30435     FSL: Fix common EEPROM_data structure definition
30436
30437     - Fix EEPROM_data structure definition according to System EEPROM Data Format.
30438     - Read MAC addresses from EEPROM to ethXaddr before saving ethXaddr to
30439       bd->bi_ethaddr.
30440
30441     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
30442
30443 commit 6bee764bd6da510a4aad614880300c968bc7318d
30444 Author: Timur Tabi <timur@freescale.com>
30445 Date:   Wed Jan 16 15:48:12 2008 -0600
30446
30447     86xx: enable command-line editing
30448
30449     Enable command-line editing for all MPC86xx boards.
30450
30451     Signed-off-by: Timur Tabi <timur@freescale.com>
30452
30453 commit 80ddd22626d321a772ebfba304eb7830cb4f6bac
30454 Author: Ben Warren <biggerbadderben@gmail.com>
30455 Date:   Wed Jan 16 22:37:42 2008 -0500
30456
30457     Implement hard SPI driver on MPC8349EMDS
30458
30459     This patch implements the fsl_spi driver on the MPC8349EMDS evaluation board.
30460     This board has an ST M25P40 4Mbit EEPROM on its SPI bus
30461
30462     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30463     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30464
30465 commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
30466 Author: Ben Warren <biggerbadderben@gmail.com>
30467 Date:   Wed Jan 16 22:37:35 2008 -0500
30468
30469     Add support for a Freescale non-CPM SPI controller
30470
30471     This patch adds support for the SPI controller found on Freescale PowerPC
30472     processors such as the MCP834x family.  Additionally, a new config option,
30473     CONFIG_HARD_SPI, is added for general purpose SPI controller use.
30474
30475     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30476     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30477
30478 commit a8cb43a89be6cfd283257a603dd9841503ccce0f
30479 Author: Dave Liu <r63238@freescale.com>
30480 Date:   Thu Jan 17 18:23:19 2008 +0800
30481
30482     mpc83xx: Fix the fatal conflict of merge
30483
30484     The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
30485     will cause the mpc8315erdb board can't boot up.
30486
30487     The patch fix that bug, and remove the duplicated #ifdef
30488     CFG_SPCR_TSECEP code and clean the SCCR_TSEC2 for
30489     MPC8313E processor.
30490
30491     Signed-off-by: Dave Liu <daveliu@freescale.com>
30492     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30493
30494 commit 3259eeaa4148125a81417477f62c05bd67f60587
30495 Author: Larry Johnson <lrj@acm.org>
30496 Date:   Thu Jan 17 08:50:09 2008 -0500
30497
30498     Merge Sequoia beautification into Korat code
30499
30500     Signed-off-by: Larry Johnson <lrj@acm.org>
30501
30502 commit e16925773211291b562e77187061e9dd1d757217
30503 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30504 Date:   Thu Jan 17 07:45:05 2008 +0100
30505
30506     net: add 'ethrotate' environment variable
30507
30508     [PATCH] net: add 'ethrotate' environment variable
30509
30510     This patch replaces the buildtime configuration option
30511     CONFIG_NET_DO_NOT_TRY_ANOTHER through the 'ethrotate' runtime
30512     configuration veriable. See README.
30513
30514     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30515     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30516
30517 commit ba52be3d0e618c26070e93aaf3c1f2d2adf5571f
30518 Author: Stefan Roese <sr@denx.de>
30519 Date:   Thu Jan 17 14:29:04 2008 +0100
30520
30521     ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5
30522
30523     Signed-off-by: Stefan Roese <sr@denx.de>
30524
30525 commit 55ed1516cbc1dad3ae277c67ee06fc4a46eaac7d
30526 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30527 Date:   Thu Jan 17 18:07:32 2008 +0900
30528
30529     sh: Remove CONFIG_COMMANDS from MS7720SE config file
30530
30531     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30532
30533 commit 055606bd25e88c0cd04ad348a679a04b1b616bee
30534 Author: Niklaus Giger <niklaus.giger@netstal.com>
30535 Date:   Wed Jan 16 18:39:20 2008 +0100
30536
30537     ppc4xx: Netstal HCU4 board: added various fixes and POST
30538
30539     - Moved some common code to netstal/common/nm_bsp.c.
30540     - sdram initialisation goes go netstal/common/fixed_sdram.c.
30541     - Added support for POST.
30542     - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
30543
30544     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
30545
30546 commit 69b0634a4ee98c9791815600d43b99f626a952f3
30547 Author: Niklaus Giger <niklaus.giger@netstal.com>
30548 Date:   Thu Jan 17 12:53:56 2008 +0100
30549
30550     ppc4xx: netstal/common define routines used by all boards
30551
30552     Added some routines used by all Netstal boards:
30553     - nm_bsp.c: - nm_show_print and
30554             -  common_misc_init_r
30555             - set_params_for_sw_install. Very specific code to handle our SW
30556               installation procedure
30557     - fixed_sdram.c: Common routines for HCU4 (and upcoming) MCU25 boards
30558       to handle sdram initialization.
30559     - nm.h: Common header
30560
30561     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
30562
30563 commit efeff5382b7a91b48a1aa68b2b75f92ad1d33ff8
30564 Author: Niklaus Giger <niklaus.giger@netstal.com>
30565 Date:   Wed Jan 16 18:39:18 2008 +0100
30566
30567     ppc4xx: Netstal HCU5 board: added various fixes and POST
30568
30569     - Moved some common code to nestal/common/nm_bsp.c.
30570     - Added support for the vxWorks EDR.
30571     - Enable trace for Lauterbach, if present.
30572     - Added support for POST.
30573     - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
30574
30575     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
30576
30577 commit 4371090e5da77edc7bf9f296364db4801639d9c4
30578 Author: Niklaus Giger <niklaus.giger@netstal.com>
30579 Date:   Wed Jan 16 18:39:08 2008 +0100
30580
30581     ppc4xx: Netstal HCU5 board. Added POST. Various fixes
30582
30583     - Various fixes
30584     - Reduced rom_size from 384 to 320 kB
30585     - Environment is now in flash
30586     - Added POST
30587     - Support for OF
30588
30589     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
30590
30591 commit 4bd5036e60afac37e484c2d35cbbe7f6cc1623e7
30592 Author: Niklaus Giger <niklaus.giger@netstal.com>
30593 Date:   Wed Jan 16 18:37:50 2008 +0100
30594
30595     ppc4xx: Netstal HCU4 board. Added POST. Various fixes
30596
30597     - Various fixes
30598     - Reduced rom_size from 384 to 320 kB
30599     - Environment is now in flash
30600     - Added POST
30601     - Support for OF
30602
30603     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
30604
30605 commit 1a3ac86b79fcb690275c85861c8efa6a3899060a
30606 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30607 Date:   Thu Jan 17 10:53:08 2008 +0100
30608
30609     ppc4xx: Complete DU440 board support
30610
30611     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30612
30613 commit 15a08bc2bef91e5f1ea4b9cf60e46832d86bcc1f
30614 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30615 Date:   Thu Jan 17 10:52:30 2008 +0100
30616
30617     ppc4xx: Add DU440 board support
30618
30619     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30620
30621 commit ac331da07db3860f11fa1d0fd3db7c810bce1198
30622 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30623 Date:   Thu Jan 17 15:53:52 2008 +0900
30624
30625     sh: Update SuperH SCIF driver
30626
30627     This patch fixed wrong SH7720 CPU macro and changed macro that
30628     calculated value of SCBRR register.
30629
30630     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30631
30632 commit 334e442e6fac59be91244063e9b3f6ca25e8daf8
30633 Author: Grzegorz Bernacki <gjb@semihalf.com>
30634 Date:   Wed Jan 16 15:12:47 2008 +0100
30635
30636     Set ips dividor to 1/4 of csb clock.
30637
30638     Previous setting cause ips clock to be out of spec. This bug was found by John
30639     Rigby from Freescale.
30640
30641     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
30642
30643 commit 7dc358bb0de9e2fa341f3b4c914466b1f34b2d89
30644 Author: Kumar Gala <galak@kernel.crashing.org>
30645 Date:   Thu Jan 17 02:19:18 2008 -0600
30646
30647     85xx: Get ride of old TLB setup code
30648
30649     Now that all boards have been converted, remove old config code and the
30650     config option for the new style.
30651
30652     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30653
30654 commit 3b558e26a5ef31635787d6d6e97d70939d4f892d
30655 Author: Kumar Gala <galak@kernel.crashing.org>
30656 Date:   Thu Jan 17 02:02:10 2008 -0600
30657
30658     85xx: Convert TQM85xx to new TLB setup
30659
30660     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30661
30662 commit 74121b470c14f7eaf284ee838bffca6f9521069e
30663 Author: Kumar Gala <galak@kernel.crashing.org>
30664 Date:   Thu Jan 17 01:56:32 2008 -0600
30665
30666     85xx: Convert STXGP3 & STXSSA to new TLB setup
30667
30668     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30669
30670 commit 143b518d9125b54f96f1d7f1afc640b8aae81ff0
30671 Author: Kumar Gala <galak@kernel.crashing.org>
30672 Date:   Thu Jan 17 01:44:34 2008 -0600
30673
30674     85xx: Convert SBC8540/SBC8560/SBC8548 to new TLB setup
30675
30676     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30677
30678 commit 818218bac6a11591e2542c344d2330e0f4e1968b
30679 Author: Kumar Gala <galak@kernel.crashing.org>
30680 Date:   Thu Jan 17 01:31:34 2008 -0600
30681
30682     85xx: Convert PM854/PM856 to new TLB setup
30683
30684     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30685
30686 commit ff4681c9285b2b4d24552a19cacc1769fe2fc7e0
30687 Author: Kumar Gala <galak@kernel.crashing.org>
30688 Date:   Thu Jan 17 01:25:33 2008 -0600
30689
30690     85xx: Convert MPC8540EVAL to new TLB setup
30691
30692     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30693
30694 commit 73aa9ac2b46f1cfd039106ebd6b9865016005234
30695 Author: Kumar Gala <galak@kernel.crashing.org>
30696 Date:   Thu Jan 17 01:12:22 2008 -0600
30697
30698     85xx: Convert MPC8568 MDS to new TLB setup
30699
30700     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30701
30702 commit 0db37dc2eed30884db2daa24dbd9a113b5d00610
30703 Author: Kumar Gala <galak@kernel.crashing.org>
30704 Date:   Thu Jan 17 01:01:09 2008 -0600
30705
30706     85xx: Convert MPC8541/MPC8555/MPC8548 CDS to new TLB setup
30707
30708     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30709
30710 commit 219a81b98d834f9071b6f7c3bdc6b7ec39cc46cc
30711 Author: Kumar Gala <galak@kernel.crashing.org>
30712 Date:   Thu Jan 17 00:52:29 2008 -0600
30713
30714     85xx: Convert MPC8540/MPC8560 ADS to new TLB setup
30715
30716     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30717
30718 commit 80d0b6a1498761c4355b2db9c8001b04c295e7b8
30719 Author: Kumar Gala <galak@kernel.crashing.org>
30720 Date:   Thu Jan 17 00:32:17 2008 -0600
30721
30722     85xx: Convert ATUM8548 to new TLB setup
30723
30724     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30725
30726 commit 0f7a3dc95cbff3c21bd6dbc639313796412bbbab
30727 Author: Kumar Gala <galak@kernel.crashing.org>
30728 Date:   Wed Jan 16 23:11:57 2008 -0600
30729
30730     85xx: Convert MPC8544 DS to new TLB setup
30731
30732     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30733
30734 commit 8716318057a5f60ab1ba081ece2dbe82ae00e1ee
30735 Author: Kumar Gala <galak@kernel.crashing.org>
30736 Date:   Wed Jan 16 22:38:34 2008 -0600
30737
30738     85xx: Reworked initial processor init
30739
30740     Reworked the initial processor initialzation sequence:
30741     * introduced cpu_early_init_f that is run in address space 1 (AS=1)
30742     * Moved TLB/LAW and CCSR init into cpu_early_init_f()
30743     * Reworked initial asm code to do most of the core init before TLBs
30744
30745     The main reasons for these changes are to allow handling of 36-bit phys
30746     addresses in the future and some of the issues that will exist when we
30747     do that.
30748
30749     There are a few caveats on what can be initialized via the LAW and TLB
30750     static tables:
30751     * TLB entry 14/15 can't be initialized via the TLB table
30752     * any LAW that covers the implicit boot window (4G-8M to 4G) must map to
30753       the code that is currently executing.
30754
30755     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30756
30757 commit 44a23cfd6360a68eaa41f945190618a55519eac3
30758 Author: Kumar Gala <galak@kernel.crashing.org>
30759 Date:   Wed Jan 16 22:33:22 2008 -0600
30760
30761     85xx: Introduce new tlb API
30762
30763     Add a set of functions to manipulate TLB entries:
30764      * set_tlb() - write a tlb entry
30765      * invalidate_tlb() - invalidate a tlb array
30766      * disable_tlb() - disable a variable size tlb entry
30767      * init_tlbs() - setup initial tlbs based on static table
30768
30769     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30770
30771 commit be88b1699863c262818f3af7f60173b4d48df8fc
30772 Author: Stefan Roese <sr@denx.de>
30773 Date:   Thu Jan 17 07:50:17 2008 +0100
30774
30775     ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files
30776
30777     Signed-off-by: Stefan Roese <sr@denx.de>
30778
30779 commit c8c41d4a80b1a8ad5984a287d81ea780496259f8
30780 Author: Kumar Gala <galak@kernel.crashing.org>
30781 Date:   Wed Jan 16 10:04:42 2008 -0600
30782
30783     85xx: Use proper defines for PCI addresses
30784
30785     We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE.
30786     While _MEM_BASE & _MEM_PHYS are normally the same, _MEM_BASE should only
30787     be used for configuring the PCI ATMU.
30788
30789     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30790
30791 commit 54a5070115eff38e9b324b78abdfa0b4520580b9
30792 Author: Kumar Gala <galak@kernel.crashing.org>
30793 Date:   Wed Jan 16 09:22:29 2008 -0600
30794
30795     85xx: Remove old style of LAW init
30796
30797     All boards are now using the new fsl_law code so we can drop the old version.
30798
30799     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30800
30801 commit 4d3521cc79cabc61edf12c48c0ce318d4efb712f
30802 Author: Kumar Gala <galak@kernel.crashing.org>
30803 Date:   Wed Jan 16 09:15:29 2008 -0600
30804
30805     85xx: convert remaining 85xx boards over to use new LAW init code
30806
30807     Converted ATUM8548, MPC8568 MDS, MPC8540 EVAL, and TQM85xx boards over
30808     to use new LAW init code.
30809
30810     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30811
30812 commit 572b13afc42710f2957c382a710360429c0e099b
30813 Author: Kumar Gala <galak@kernel.crashing.org>
30814 Date:   Wed Jan 16 09:11:53 2008 -0600
30815
30816     85xx: convert STXGP3/STXSSA over to use new LAW init code
30817
30818     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30819
30820 commit 45f2166ac0233a9263058378f39612bd11f61196
30821 Author: Kumar Gala <galak@kernel.crashing.org>
30822 Date:   Wed Jan 16 09:06:48 2008 -0600
30823
30824     85xx: convert PM854/PM856 over to use new LAW init code
30825
30826     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30827
30828 commit e2b159d0070ee06e4ac7e2f9381d3e8e542e614a
30829 Author: Kumar Gala <galak@kernel.crashing.org>
30830 Date:   Wed Jan 16 09:05:27 2008 -0600
30831
30832     85xx: convert SBC8540/SBC8560/SBC8548 over to use new LAW init code
30833
30834     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30835
30836 commit 2cfaa1aa1aac39a81006b7b27e0e431bf21f6dfa
30837 Author: Kumar Gala <galak@kernel.crashing.org>
30838 Date:   Wed Jan 16 01:45:10 2008 -0600
30839
30840     85xx: convert MPC8541/MPC8555/MPC8548 CDS over to use new LAW init code
30841
30842     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30843
30844 commit 7232a2724ccc9dcbc3ec4ef84ada02f13ccd1238
30845 Author: Kumar Gala <galak@kernel.crashing.org>
30846 Date:   Wed Jan 16 01:32:06 2008 -0600
30847
30848     85xx: convert MPC8540/MPC8560 ADS over to use new LAW init code
30849
30850     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30851
30852 commit 4bcae9c92aee0d72a2f19b81cab27ef38107ce75
30853 Author: Kumar Gala <galak@kernel.crashing.org>
30854 Date:   Wed Jan 16 01:16:16 2008 -0600
30855
30856     85xx: convert MPC8544 DS over to use new LAW init code
30857
30858     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30859
30860 commit 83d40dfd79fe868796275802f60116d84b9e4395
30861 Author: Kumar Gala <galak@kernel.crashing.org>
30862 Date:   Wed Jan 16 01:13:58 2008 -0600
30863
30864     85xx: Move LAW init code into C
30865
30866     Move the initialization of the LAWs into C code and provide an API
30867     to allow modification of LAWs after init.
30868
30869     Board code is responsible to provide a law_table and num_law_entries.
30870
30871     We should be able to use the same code on 86xx as well.
30872
30873     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30874
30875 commit bed8ce838a609aaab136d43b25e6df2a520bc854
30876 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30877 Date:   Sat Dec 22 15:03:12 2007 +0100
30878
30879     qemu-mips: active HUSH PARSER, AUTO_COMPLETE and CMDLINE_EDITING
30880
30881     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30882
30883 commit 0764c164fed6277d359cf132d55187ea34290114
30884 Author: Vlad Lungu <vlad@comsys.ro>
30885 Date:   Wed Jan 16 19:27:51 2008 +0200
30886
30887     MIPS:Target support for qemu -M mips
30888
30889     With serial, NE2000, IDE support. Tested in big-endian mode.
30890     Memory size hard-coded to 128M for now, so don't play with
30891     the -m option.
30892
30893     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
30894
30895 commit 7f52fa3c2df59e49dc2badd7c084cf2d007c438f
30896 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30897 Date:   Fri Jan 11 00:01:37 2008 +0100
30898
30899     Fix nfs command help to reflect that the serverip is optional
30900
30901     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30902     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30903
30904 commit b8f4162a4f7a9bee5e9d0305c17f2d34de466a9b
30905 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30906 Date:   Mon Dec 10 22:32:14 2007 +0100
30907
30908     bf537-stamp: remove already defined is_zero_ether_addr and is_multicast_ether_addr
30909
30910     and move is_valid_ether_addr board file
30911
30912     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30913     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30914
30915 commit c2f896b8fc4722e36915903e1942e138e68ce804
30916 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30917 Date:   Wed Jan 16 16:13:31 2008 +0900
30918
30919     drivers/net/rtl8139.c: rx_status should be le32_to_cpu(rx_status).
30920
30921     rx_status on the memory is basically in LE, but needs to be handled in CPU
30922     endian. le32_to_cpu() takes up this mission. Even if on the sane hardware,
30923     it'll work fine.
30924
30925     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30926     Cc: Masami Komiya <mkomiya@sonare.it>
30927     Cc: Lucas Jin <lucasjin@gmail.com>
30928     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30929
30930 commit 96a236746fe6a7b84802afb4ed31536696d34812
30931 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30932 Date:   Wed Jan 16 16:12:26 2008 +0900
30933
30934     drivers/net/rtl8139.c: Fix cache coherency issues
30935
30936     Current driver is meant for cache coherent systems. This patch adds
30937     flush_cache() routines to support cache non-coherent systems.
30938
30939     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30940     Cc: Masami Komiya <mkomiya@sonare.it>
30941     Cc: Lucas Jin <lucasjin@gmail.com>
30942     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30943
30944 commit d1276c76c1e2b5035296689280ba1acb2c425104
30945 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30946 Date:   Wed Jan 16 16:11:14 2008 +0900
30947
30948     drivers/net/rtl8139.c: Fix tx timeout
30949
30950     "to = (currticks() + RTL_TIMEOUT)" has possibilities to wrap around. If it
30951     does, the condition "(currticks() < to)" becomes invalid and immediately
30952     leads to tx timeout error. This patch introduces the fine-graded udely(10)
30953     loops to ease the impact of wrapping around.
30954
30955     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30956     Cc: Masami Komiya <mkomiya@sonare.it>
30957     Cc: Lucas Jin <lucasjin@gmail.com>
30958     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30959
30960 commit 18ee320ff63edbf7b27bbeb05f0e12a52302c68a
30961 Author: Dave Liu <r63238@freescale.com>
30962 Date:   Fri Jan 11 18:45:28 2008 +0800
30963
30964     TSEC: Add the support for RealTek RTL8211B PHY
30965
30966     Add the support of RealTek RTL8211B PHY, the RTL8211B
30967     PHY only supports RGMII and MII mode.
30968
30969     Signed-off-by: Dave Liu <daveliu@freescale.com>
30970     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30971
30972 commit 84a3047b72b70e862b0b7a8e2058077457f89a32
30973 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
30974 Date:   Wed Jan 16 09:40:41 2008 +0100
30975
30976     Remove annoying debug printout for PHY less boards.
30977
30978     PHY less board prints out lots of "read wrong ...":
30979     read wrong value : mii_id 3,mii_reg 2, base e0102320
30980     read wrong value : mii_id 3,mii_reg 3, base e0102320
30981     UEC: PHY is Generic MII (ffffffff)
30982     read wrong value : mii_id 3,mii_reg 4, base e0102320
30983     read wrong value : mii_id 3,mii_reg 0, base e0102320
30984     read wrong value : mii_id 3,mii_reg 1, base e0102320
30985     read wrong value : mii_id 3,mii_reg 1, base e0102320
30986     read wrong value : mii_id 3,mii_reg 5, base e0102320
30987     read wrong value : mii_id 3,mii_reg 1, base e0102320
30988     read wrong value : mii_id 3,mii_reg 1, base e0102320
30989     read wrong value : mii_id 3,mii_reg 5, base e0102320
30990     FSL UEC0: Full Duplex
30991     FSL UEC0: Speed 100BT
30992     FSL UEC0: Link is up
30993     Using FSL UEC0 device
30994
30995     Make this printout depend on UEC_VERBOSE_DEBUG and
30996     remove its definition in uec_phy.c
30997
30998     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
30999     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31000
31001 commit ee62ed3286f83b98b7785e0318dc6379e78f7ff6
31002 Author: Kim Phillips <kim.phillips@freescale.com>
31003 Date:   Tue Jan 15 14:11:00 2008 -0600
31004
31005     net: reduce boot latency on QE UEC based boards
31006
31007     actually polling for PHY autonegotiation to finish enables us to remove the
31008     5 second boot prompt latency present on QE based boards.
31009
31010     call to qe_set_mii_clk_src in init_phy, and mv call to init_phy from
31011     uec_initialize to uec_init by Joakim Tjernlund; autonegotiation wait
31012     code shamelessly stolen from tsec driver.
31013
31014     also rm unused CONFIG_RMII_MODE code.
31015
31016     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31017     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
31018     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31019
31020 commit 55fe7c57a8b99a130925052dcdbb77f053dc50e3
31021 Author: michael.firth@bt.com <michael.firth@bt.com>
31022 Date:   Wed Jan 16 11:40:51 2008 +0000
31023
31024     TSEC driver: Change MDIO support to allow access to any PHYs on the MDIO bus
31025
31026     The current TSEC driver limits MDIO access to the devices that have been configured as attached
31027     to a TSEC MAC. This patch allows access to any PHY device on the MDIO bus through the 'mii' commands.
31028
31029     Signed-off-by: Michael Firth <michael.firth@bt.com>
31030     Acked-by: Andy Fleming <afleming@freescale.com>
31031     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31032
31033 commit 5e918a98c26e8ab9b5d2d48d998a2ced2b5b85b3
31034 Author: Kim Phillips <kim.phillips@freescale.com>
31035 Date:   Wed Jan 16 00:38:05 2008 -0600
31036
31037     Add support for the MPC837xERDB
31038
31039     MPC837xERDB board support includes:
31040     * DDR2 330MHz hardcoded (soldered on the board)
31041     * Local Bus NOR Flash
31042     * I2C, UART and RTC
31043     * eTSEC RGMII (TSEC0 - RTL8211B with MII;
31044     *          TSEC1 - VSC7385 local bus, hardcoded, requires seperate firmware
31045     *                  load)
31046
31047     Signed-off-by: Kevin Lam <kevin.lam@freescale.com>
31048     Signed-off-by: Joe D'Abbraccio <joe.d'abbraccio@freescale.com>
31049     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31050
31051 commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
31052 Author: Kim Phillips <kim.phillips@freescale.com>
31053 Date:   Wed Jan 16 12:06:16 2008 -0600
31054
31055     mpc83xx: add support for more system clock performance controls
31056
31057     System registers that are modified are the Arbiter Configuration
31058     Register (ACR), the System Priority Control Register (SPCR), and the
31059     System Clock Configuration Register (SCCR).
31060
31061     Signed-off by: Michael F. Reiss <Michael.F.Reiss@freescale.com>
31062     Signed-off by: Joe D'Abbraccio <ljd015@freescale.com>
31063     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31064
31065 commit 16c3cde050e2d243e62b37486f1558570787beb8
31066 Author: James Yang <james.yang@freescale.com>
31067 Date:   Wed Jan 16 11:58:08 2008 -0600
31068
31069     FSL: Generalize PIXIS reset command parsing.
31070
31071     Before, the order of arguments to the pixis_reset
31072     command needed to be supplied in a hard-coded order.
31073     Generalize the command parsing to allow any order.
31074
31075     Signed-off-by: James Yang <james.yang@freescale.com>
31076     Acked-by: Jon Loeliger <jdl@freescale.com>
31077
31078 commit ad8f8687b78c3e917b173f038926695383c55555
31079 Author: Jon Loeliger <jdl@freescale.com>
31080 Date:   Tue Jan 15 13:42:41 2008 -0600
31081
31082     FSL: Convert board/freescale/common/Makefile to use CONFIG_
31083
31084     Convert the board/freescale/common/Makefile to use
31085     CONFIG_* options to select which files to conditionally
31086     compile into the board/freescale/common library rather
31087     than conditionally compiling entire files.
31088
31089     Now handles::
31090         CONFIG_FSL_PIXIS
31091         CONFIG_FSL_DIU_FB
31092         CONFIG_PQ_MDS_PIB
31093
31094     CONFIG_ID_EEPROM is introduced until CFG_ID_EEPROM is gone.
31095
31096     Signed-off-by: Jon Loeliger <jdl@freescale.com>
31097
31098 commit 7c2221eb230372a9e537c4f6636b147b0909325f
31099 Author: Roy Zang <tie-fei.zang@freescale.com>
31100 Date:   Tue Jan 15 16:38:38 2008 +0800
31101
31102     Use CONFIG_ULI526X as MPC8610HPCD default Ethernet driver
31103
31104     Use driver/net/uli526x.c as MPC8610HPCD default Ethernet driver.
31105     Remove unused ethernet CONFIG_ options.
31106
31107     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
31108     Acked-by: Jon Loeliger <jdl@freescale.com>
31109
31110 commit 711a7946277d2e29af481011e8635e9975c54e45
31111 Author: Kim Phillips <kim.phillips@freescale.com>
31112 Date:   Tue Jan 15 14:05:14 2008 -0600
31113
31114     mpc83xx: fix QE ETHPRIMEs to correct 'FSL UEC0' value
31115
31116     continuation of commit b96c83d4ae475a70ef2635cd0e748174c44c8601
31117
31118     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31119
31120 commit 363eea9ff7f19a2cba17f262bd17559f166e134e
31121 Author: Kim Phillips <kim.phillips@freescale.com>
31122 Date:   Tue Jan 15 09:51:12 2008 -0600
31123
31124     mpc83xx: clean up mpc8360emds.c warnings
31125
31126     mpc8360emds.c: In function 'ft_board_setup':
31127     mpc8360emds.c:327: warning: assignment makes pointer from integer without a cast
31128     mpc8360emds.c:329: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
31129     mpc8360emds.c:334: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
31130     mpc8360emds.c:341: warning: assignment makes pointer from integer without a cast
31131     mpc8360emds.c:343: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
31132     mpc8360emds.c:348: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
31133
31134     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31135
31136 commit f09880ea72a1c806db223ce594c5fb1b6542ff6a
31137 Author: Kim Phillips <kim.phillips@freescale.com>
31138 Date:   Mon Jan 14 16:14:46 2008 -0600
31139
31140     mpc83xx: fix phy-connection-type fixup code
31141
31142     use tree passed to us in local blob, not global fdt.
31143
31144     Also use fdt_path_offset to convert to relative offset, since absolute
31145     reference is needed to check for rgmii-id mode string value.
31146
31147     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31148
31149 commit 2b4c952be7c4357a13e839d48df80853820c33eb
31150 Author: Kumar Gala <galak@kernel.crashing.org>
31151 Date:   Mon Jan 14 09:01:40 2008 -0600
31152
31153     mpc83xx: fix mpc8313/mpc8315/mpc8349itx Makefiles for silent build (with -s)
31154
31155     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31156     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31157
31158 commit e1d8ed2c08da14b168658cc5fa78529d461aea70
31159 Author: Poonam Aggrwal <b10812@freescale.com>
31160 Date:   Mon Jan 14 09:41:14 2008 +0530
31161
31162     Changes in uboot DDR configuration for MPC8313eRDB
31163
31164     These changes were identified by HighSmith Bill ,Mazzyar and Joseph for
31165     DDR configuration in u-boot code. Some are related to performance, some
31166     affect stability and some correct few basic errors in the current
31167     configuration.
31168
31169     The changes have been tested and found to give better memory latency
31170     figures on MPC8313eRDB.LMBench figures prove it.
31171
31172     The changes are:
31173
31174     - CS0_CONFIG[ AP_n_EN] is changed from 1 to 0
31175       (this may improve performance for application with many read
31176       or write to open pages).
31177     - CS0_CONFIG[ODT_WR_CFG] is currently changed from 100 to
31178       001 (activating all the CS when only one is used may cause
31179       unwanted noise on the system)
31180
31181     - TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 8clks (based on
31182       Tras=45ns)
31183     - TIMING_CFG_1[REFREC] changed from 21 clks to 18clks.
31184
31185     - TIMING_CFG_2[AL] value changed from 0 setting to 1 clk to
31186       comply with the 3 ODT clk requirements)
31187     - TIMING_CFG_2[CPO] was set to a reserved value, changed to RL+3/4.
31188     - TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 6clks.
31189
31190     - DDR_SDRAM_MODE[AL]changed from 0 to 1.
31191     - DDR_SDRAM_MODE[WRREC] changed from 1 clk to 3 clks.
31192
31193     - DDR_SDRAM_INTERVAL[REFINT] is changed from 0x0320 to 0x0510.
31194     - DDR_SDRAM_INTERVAL[BSTOPRE] is changed from 0x64 to 0x0500.
31195
31196     The patch is based of git://www.denx.de/git/u-boot-mpc83xx.git
31197     The last commit on this tree was 6775c68683a53c7abc778774641aac6f833a2cbf
31198
31199     Signed-off-by: Poonam Aggrwal-b10812 <b10812@freescale.com>
31200     Cc: Bill HighSmith <Bill.Highsmith@freescale.com>
31201     Cc: Razzaz Mazyar <MRazzaz@freescale.com>
31202     Cc: Josep P J <PJ.Joseph@freescale.com>
31203     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31204
31205 commit b5cdd7df4a06edb91539c9a2ea7c178a870c3a95
31206 Author: Jerry Van Baren <gvb.uboot@gmail.com>
31207 Date:   Sat Jan 12 13:24:14 2008 -0500
31208
31209     Enable the isdram command on the MPC8360EMDS board
31210
31211     The isdram command prints out decoded information the "serial presence
31212     detect" (SPD) chip on the SDRAM SIMMs.  This can be very helpful when
31213     debugging memory configuration problems.
31214
31215     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
31216     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31217
31218 commit 8bd522ce4afda3d4868ee8c913f5394094326be1
31219 Author: Dave Liu <r63238@freescale.com>
31220 Date:   Fri Jan 11 18:48:24 2008 +0800
31221
31222     mpc83xx: Add the support for MPC8315ERDB board
31223
31224     The features list:
31225     - Boot from NOR Flash
31226     - DDR2 266MHz hardcoded configuration
31227     - Local bus NOR Flash R/W operation
31228     - I2C, UART, MII and RTC
31229     - eTSEC0/1 support
31230     - PCI host
31231
31232     Signed-off-by: Dave Liu <daveliu@freescale.com>
31233     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31234
31235 commit b05884efa614e4d8a9413158fc228e0dc02ab704
31236 Author: Dave Liu <r63238@freescale.com>
31237 Date:   Fri Jan 11 18:46:50 2008 +0800
31238
31239     mpc83xx: Add config of eTSEC emergency priority in SPCR
31240
31241     The TSEC emergency priority definition of 831x/837x
31242     is different than the definition of 834x in SPCR register.
31243
31244     Add the other config of TSEC emergency priority into
31245     cpu_init.c
31246
31247     Signed-off-by: Dave Liu <daveliu@freescale.com>
31248     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31249
31250 commit 9b958234b0783f13d92f007f753fd2c3ae2c8680
31251 Author: Dave Liu <r63238@freescale.com>
31252 Date:   Fri Jan 11 18:42:19 2008 +0800
31253
31254     mpc83xx: Remove cache config from MPC8360ERDK.h
31255
31256     The MPC8360ERDK board support patch is added before
31257     the commit 2c5b48fc205c3e2752910da8f39209ed075929e5
31258     so, miss clean up it.
31259
31260     The patch clean up the miss cache config.
31261
31262     Signed-off-by: Dave Liu <daveliu@freescale.com>
31263     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31264
31265 commit cd9d23053d435c08fc8695017b5cb9003fcda786
31266 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
31267 Date:   Mon Jan 14 23:09:32 2008 +0300
31268
31269     nand: FSL UPM NAND driver
31270
31271     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
31272
31273 commit 6cb2239ae76faee64434286c4f8fc71374702dd2
31274 Author: Kyungmin Park <kmpark@infradead.org>
31275 Date:   Tue Jan 15 08:59:44 2008 +0900
31276
31277     OneNAND: Separate U-Boot dependent code from OneNAND
31278
31279     OneNAND: Separate U-Boot dependent code from OneNAND
31280
31281     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
31282
31283 commit 83a49c8dd7998be2d1f0d420597a36bbf0bf4164
31284 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31285 Date:   Wed Jan 16 10:33:46 2008 +0100
31286
31287     ppc4xx: Sequoia coding style cleanup and beautification
31288
31289     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31290
31291 commit 4b3cc6ece9c455504cf12909fae38d085d848ac0
31292 Author: Larry Johnson <lrj@acm.org>
31293 Date:   Tue Jan 15 14:35:58 2008 -0500
31294
31295     ppc4xx: Refactor ECC POST for AMCC Denali core
31296
31297     The ECC POST reported intermittent failures running after power-up on
31298     the Korat PPC440EPx board.  Even when the test passed, the debugging
31299     output occasionally reported additional unexpected ECC errors.
31300
31301     This refactoring has three main objectives: (1) minimize the code
31302     executed with ECC enabled during the tests, (2) add more checking of the
31303     results so any unexpected ECC errors would cause the test to fail, and
31304     (3) use synchronization (only) where required by the processor.
31305
31306     Signed-off-by: Larry Johnson <lrj@acm.org>
31307
31308 commit 2465665b73ac2f688af945b1ed510752afa816a4
31309 Author: David Saada <David.Saada@ecitele.com>
31310 Date:   Tue Jan 15 10:40:24 2008 +0200
31311
31312     QE UEC: Extend number of supported UECs to 4
31313
31314     This patch extends the number of supported UECs to 4. Note that the
31315     problem of QE thread resources exhaustion is resolved by setting the
31316     correct number of QE threads according to Ethernet type (GBE or FE).
31317
31318     Signed-off-by: David Saada <david.saada@ecitele.com>
31319     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31320
31321 commit 58d204256cb1ce1bd323847d9f644acf70a72e6a
31322 Author: Wolfgang Denk <wd@denx.de>
31323 Date:   Wed Jan 16 00:01:01 2008 +0100
31324
31325     LWMON5: enable hush shell as command line parser
31326
31327     Signed-off-by: Wolfgang Denk <wd@denx.de>
31328
31329 commit 66ffb1883feedddc813d8a507d060f2a940eb2b2
31330 Author: Wolfgang Denk <wd@denx.de>
31331 Date:   Tue Jan 15 17:22:28 2008 +0100
31332
31333     ADS5121: disable watchdog; enable image timestamps
31334
31335     Signed-off-by: Wolfgang Denk <wd@denx.de>
31336
31337 commit 2b4f778fe9d1de61d7445bae7b325340aba6968d
31338 Author: Wolfgang Denk <wd@denx.de>
31339 Date:   Tue Jan 15 17:21:28 2008 +0100
31340
31341     TK885D: fixes for bigger flash sector sizes on new modules;
31342     adjust default environment;
31343     disable SCC ethernet (not used on this board).
31344
31345     Signed-off-by: Wolfgang Denk <wd@denx.de>
31346
31347 commit f91d7ae5ca89acf9fa1ed1015dc078cf29581607
31348 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31349 Date:   Tue Jan 15 17:48:13 2008 +0900
31350
31351     pcmcia: Remove CONFIG_COMMANDS from marubun pcmcia driver
31352
31353     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31354
31355 commit 76e49aa7fb8e76cc49092c1acd53fff921e26360
31356 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31357 Date:   Tue Jan 15 23:25:25 2008 +0900
31358
31359     sh: Add support SH7710/SH7712
31360
31361     SH7710/SH7712 of SH3 CPU are supported.
31362     SH771X is called SH-Ether, and has the Ether controller in CPU.
31363     The driver of Ether is not included in this patch.
31364
31365     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31366
31367 commit 63a11be68306870e04d3851ed9fa41955cdf4894
31368 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31369 Date:   Tue Jan 15 23:06:17 2008 +0900
31370
31371     sh: Add support of map_physmem() and unmap_physmem() to SuperH
31372
31373     This patch add the support of map_physmem() and unmap_physmem()
31374     used with Common Flash Interface(CFI) driver.
31375
31376     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31377
31378 commit db3995fe5164ac5d630b7ecb96286a9828dfbb54
31379 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31380 Date:   Wed Jan 9 14:42:27 2008 +0900
31381
31382     sh: Add maintainer of MS7720SE to the MAINTAINER file
31383
31384     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31385
31386 commit dcd99e88e03d56a0aeecd42b507d2d29d20ab0e3
31387 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31388 Date:   Wed Jan 9 14:39:58 2008 +0900
31389
31390     sh: Fix board name in MS7720SE's config.mk
31391
31392     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31393
31394 commit c0a04d93734d768b39dbb72fb501b65614c8615d
31395 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31396 Date:   Wed Jan 9 14:37:36 2008 +0900
31397
31398     sh: Add MS7720SE to MAKEALL
31399
31400     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31401
31402 commit b2b5e2bb78a1ef4ae8504f5a26bfdc3293ea74ae
31403 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
31404 Date:   Mon Dec 3 22:58:50 2007 +0900
31405
31406     sh: Add support for MS7720RP02 board
31407
31408     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
31409     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31410     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31411
31412 commit 7c10c57275901939a8ece4a9ef3e7ccb7c12a0ed
31413 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
31414 Date:   Wed Jan 9 14:30:02 2008 +0900
31415
31416     sh: Add support for SH7720 in serial_sh driver.
31417
31418     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
31419     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31420     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31421
31422 commit f9913a8ee71ff14fcfc1c7fd0e6912f897e69403
31423 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
31424 Date:   Mon Dec 3 22:58:45 2007 +0900
31425
31426     sh: Add support SH3 and SH7720
31427
31428     Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
31429     CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31430     Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31431
31432 commit 9adfc9fb9ade64cdf1ed9ff842e4f900cbda78bd
31433 Author: Stefan Roese <sr@denx.de>
31434 Date:   Tue Jan 15 10:11:02 2008 +0100
31435
31436     ppc4xx: Remove compiler warning in cpu/ppc4xx/44x_spd_ddr2.c
31437
31438     Signed-off-by: Stefan Roese <sr@denx.de>
31439
31440 commit 17bef68097ab3692500a36fb31115bff7910aa99
31441 Author: Niklaus Giger <niklausgiger@gmx.ch>
31442 Date:   Mon Jan 14 14:04:42 2008 +0100
31443
31444     ppc_4xx: Fix post spr.c for PPC405
31445
31446     post/cpu/ppc4xx/spr.c contained a few checks for registers only present
31447     for PPC440 and derivates processor.
31448
31449     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
31450
31451 commit 06c428bcd4413014b43236e77765022071424fa6
31452 Author: Dave Liu <r63238@freescale.com>
31453 Date:   Mon Jan 14 11:12:01 2008 +0800
31454
31455     QE: fix compile warning
31456
31457     qe.c: In function 'qe_upload_firmware':
31458     qe.c:390: warning: pointer targets in passing argument 2
31459     uec.c: In function 'uec_initialize':
31460     uec.c:1236: warning: 'uec_info' may be used uninitialized
31461
31462     Signed-off-by: Dave Liu <daveliu@freescale.com>
31463
31464 commit a0dd99d51efa55fe023e19c97ead92683725eb11
31465 Author: Stefan Roese <sr@denx.de>
31466 Date:   Mon Jan 14 10:05:05 2008 +0100
31467
31468     ppc4xx: Update Kilauea CPLD configuration with USB PHY reset bit
31469
31470     Now that bit 29 is the USB PHY reset bit, update the Kilauea port
31471     to remove the USB PHY reset after powerup. The CPLD will keep the
31472     USB PHY in reset (active low) until the bit is set to 1 in
31473     board_early_init_f().
31474
31475     Signed-off-by: Stefan Roese <sr@denx.de>
31476
31477 commit f43ad53908f1ea83a7c26c3505bbe84382e47aad
31478 Author: Wolfgang Denk <wd@denx.de>
31479 Date:   Sun Jan 13 23:26:45 2008 +0100
31480
31481     ARM: update mach-types.h from 2.6.24-rc7 Linux kernel tree
31482
31483     Signed-off-by: Wolfgang Denk <wd@denx.de>
31484
31485 commit 8d103071b7b0e3ec888859bfcb9d422565e6d750
31486 Author: Wolfgang Denk <wd@denx.de>
31487 Date:   Sun Jan 13 23:37:50 2008 +0100
31488
31489     ADS5121: Fix typo in ads5121.c, adjust default environment
31490
31491     Signed-off-by: Wolfgang Denk <wd@denx.de>
31492
31493 commit 51b67d06faa670c65de6f29ec5b5aace74b2a047
31494 Author: John Rigby <jrigby@freescale.com>
31495 Date:   Fri Aug 24 18:18:43 2007 -0600
31496
31497     ADS5121: MAX slew rate for PATA pins
31498
31499     Signed-off-by: John Rigby <jrigby@freescale.com>
31500
31501 commit dd531aac34aaad138f16cacdb51d61908d59c0e2
31502 Author: Wolfgang Denk <wd@denx.de>
31503 Date:   Sun Jan 13 21:05:52 2008 +0100
31504
31505     Fix Makefile dependency problem with parallel builds.
31506
31507     Signed-off-by: Wolfgang Denk <wd@denx.de>
31508
31509 commit 89967841e3ea02e3d0e5e1295ab687576e5b1089
31510 Author: Wolfgang Denk <wd@denx.de>
31511 Date:   Sun Jan 13 19:51:39 2008 +0100
31512
31513     MPC8544DS: fix board Makefile for silent build (with -s)
31514
31515     Signed-off-by: Wolfgang Denk <wd@denx.de>
31516
31517 commit 6d714f82fb4b8bb7e267e9c71b8009bc670bfe88
31518 Author: Wolfgang Denk <wd@denx.de>
31519 Date:   Sun Jan 13 16:44:08 2008 +0100
31520
31521     PMC440 board: fix board Makefile for out-of-tree building
31522
31523     Signed-off-by: Wolfgang Denk <wd@denx.de>
31524
31525 commit 6eb3fb15588d319bd3099d5f9b910051dfeab6b2
31526 Author: Wolfgang Denk <wd@denx.de>
31527 Date:   Sun Jan 13 16:07:44 2008 +0100
31528
31529     Makalu: fix compile warning
31530
31531     Signed-off-by: Wolfgang Denk <wd@denx.de>
31532
31533 commit 0a1e03bcadc7734688a21e8dd2e46a4f608193c0
31534 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31535 Date:   Sun Jan 13 12:36:12 2008 +0100
31536
31537     cmd_nand : fix compiler warning.
31538
31539     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31540
31541 commit 8225d1e3ac0ab147cdde4b0042812583380afb8a
31542 Author: Michael Schwingen <rincewind@discworld.dascon.de>
31543 Date:   Sat Jan 12 20:29:47 2008 +0100
31544
31545     CFI: Fix CONFIG_FLASH_CFI_LEGACY compilation
31546
31547     Signed-off-by: Michael Schwingen <michael@schwingen.org>
31548     Acked-by: Stefan Roese <sr@denx.de>
31549
31550 commit 2b2f43ed6a30ece77f76191c845ac95267daa31a
31551 Author: Wolfgang Denk <wd@denx.de>
31552 Date:   Sun Jan 13 02:19:44 2008 +0100
31553
31554     MPC8360ERDK: fix incorrect initialization of CFG_I2C_NOPROBES
31555
31556     Signed-off-by: Wolfgang Denk <wd@denx.de>
31557
31558 commit 08e99e1dd01a3e0e3dc3a7138eb827c997e2b74d
31559 Author: Wolfgang Denk <wd@denx.de>
31560 Date:   Sun Jan 13 02:19:13 2008 +0100
31561
31562     MPC8xx FEC driver: fix compiler warning.
31563
31564     Signed-off-by: Wolfgang Denk <wd@denx.de>
31565
31566 commit ae6d1056d2c2e4d1266413c0ae8a6d5529ecde4b
31567 Author: Wolfgang Denk <wd@denx.de>
31568 Date:   Sun Jan 13 00:59:21 2008 +0100
31569
31570     Fix Makefile dependencies issues; allow silent build
31571
31572     - get rid of "version" target whichdidn't really work
31573     - make autoconf.mk depend on version_autogenerated.h to make sure
31574       to rebuild files as needed
31575     - add XECHO macro to allow for silent build using "make -s"
31576
31577     Signed-off-by: Wolfgang Denk <wd@denx.de>
31578
31579 commit e343ab83d5135b558aa58db9be8fc7faa68d77ed
31580 Author: Wolfgang Denk <wd@denx.de>
31581 Date:   Sun Jan 13 00:55:47 2008 +0100
31582
31583     ADS5121e: fix compile warning
31584
31585     Signed-off-by: Wolfgang Denk <wd@denx.de>
31586
31587 commit f2b6f4610627fe3d607620e25082916a01538875
31588 Author: Wolfgang Denk <wd@denx.de>
31589 Date:   Sun Jan 13 00:55:18 2008 +0100
31590
31591     MUNICes: fix board Makefile for remote build directory
31592
31593     Signed-off-by: Wolfgang Denk <wd@denx.de>
31594
31595 commit 2ad4d3999fe801aa716221d7d9a4c5bdad74783a
31596 Author: Oliver Weber <almoeli@gmx.de>
31597 Date:   Wed Jan 9 17:04:38 2008 +0100
31598
31599     MPC5200: don't use hardcoded MBAR address in Bestcomm firmware
31600
31601     Signed-off-by: Oliver Weber <almoeli@gmx.de>
31602
31603 commit 00ac50e348d1bace27a174b7f528d113bc7cdf7f
31604 Author: Andreas Engel <andreas.engel@ericsson.com>
31605 Date:   Wed Jan 9 17:10:56 2008 +0100
31606
31607     Make bootretry work when command line editing is enabled
31608
31609     Currently, when CONFIG_CMDLINE_EDITING is set, bootretry doesn't work.
31610     This patch fixes the problem.
31611
31612     Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
31613
31614 commit 632de0672d3c3ab53ad798c47f5f1eb26008a0e4
31615 Author: Larry Johnson <lrj@acm.org>
31616 Date:   Fri Jan 11 23:26:18 2008 -0500
31617
31618     Refactor code for "i2c sdram" command
31619
31620     Signed-off-by: Larry Johnson <lrj@acm.org>
31621
31622 commit 0df6b8446c4721b91ce311548114891130371083
31623 Author: Larry Johnson <lrj@acm.org>
31624 Date:   Thu Jan 10 22:23:39 2008 -0500
31625
31626     Fix "i2c sdram" command for DDR2 DIMMs
31627
31628     Many of the SPD bytes for DDR2 SDRAM are not interpreted correctly by the
31629     "i2c sdram" command.  This patch provides correct alternative
31630     interpretations when DDR2 memory is detected.
31631
31632     Signed-off-by: Larry Johnson <lrj@acm.org>
31633
31634 commit 64134f011254123618798ff77c42ba196b2ec485
31635 Author: Wolfgang Denk <wd@denx.de>
31636 Date:   Sat Jan 12 20:31:39 2008 +0100
31637
31638     Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections
31639
31640     With recent toolchain versions, some boards would not build because
31641     or errors like this one (here for ocotea board when building with
31642     ELDK 4.2 beta):
31643     ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab]
31644
31645     For many boards, the .bss section is big enough that it wraps around
31646     at the end of the address space (0xFFFFFFFF), so the problem will not
31647     be visible unless you use a 64 bit tool chain for development. On
31648     some boards however, changes to the code size (due to different
31649     optimizations) we bail out with section overlaps like above.
31650
31651     The fix is to add the NOLOAD attribute to the .bss and .sbss
31652     sections, telling the linker that .bss does not consume any space in
31653     the image.
31654
31655     Signed-off-by: Wolfgang Denk <wd@denx.de>
31656
31657 commit 3afac79ec27b91df185f090b31dad9620779f440
31658 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31659 Date:   Fri Jan 11 20:42:58 2008 -0600
31660
31661     USB: Add Philips 1561 PCI-OHCI ids
31662     (needed for M5475EVB)
31663
31664     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31665
31666 commit 5e8def6731cd7bec74bff42a16b139de04010353
31667 Author: Wolfgang Denk <wd@denx.de>
31668 Date:   Sat Jan 12 15:51:34 2008 +0100
31669
31670     Add MAINTAINERS entries for ids8247, jupiter, municse, sc3 and uc101
31671     boards.
31672
31673     Signed-off-by: Heiko Schocher <hs@denx.de>
31674     Signed-off-by: Wolfgang Denk <wd@denx.de>
31675
31676 commit 5d49e0e152a8b81cc0602271e8fd259371f559b7
31677 Author: Grzegorz Bernacki <gjb@semihalf.com>
31678 Date:   Fri Jan 11 12:03:43 2008 +0100
31679
31680     MPC512X: Cleanup bus clock names.
31681
31682     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
31683
31684 commit 66a9455b6bf46d69cec5c88d1a600d1d9a10670d
31685 Author: Grzegorz Bernacki <gjb@semihalf.com>
31686 Date:   Tue Jan 8 17:16:59 2008 +0100
31687
31688     MPC512X: Fixed typo in macro name.
31689
31690     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
31691
31692 commit 281ff9a45cf9eb17b8a9afc436cb783cf1f62363
31693 Author: Grzegorz Bernacki <gjb@semihalf.com>
31694 Date:   Tue Jan 8 17:16:15 2008 +0100
31695
31696     ads5121: Added support for FDT.
31697
31698     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
31699
31700 commit a10ff9196183e7e5f2ae3c4f5f3cbe92ae9cb719
31701 Author: Wolfgang Denk <wd@denx.de>
31702 Date:   Sat Jan 12 01:05:50 2008 +0100
31703
31704     Coding Style cleanup; update CHANGELOG.
31705
31706     Signed-off-by: Wolfgang Denk <wd@denx.de>
31707
31708 commit f6db945649e5e9d0c7efe33b507d243cdc86cf03
31709 Author: Heiko Schocher <hs@denx.de>
31710 Date:   Fri Jan 11 15:15:17 2008 +0100
31711
31712     Fixed syntax error in function init_e300_core() of mpc83xx/start.S if
31713
31714     Signed-off-by: Timur Tabi <timur@freescale.com>
31715     Signed-off-by: Heiko Schocher <hs@denx.de>
31716
31717 commit fa05664cd8c7ab1ecf062aa73b992b7b58bba49c
31718 Author: Heiko Schocher <hs@denx.de>
31719 Date:   Fri Jan 11 15:15:16 2008 +0100
31720
31721     MUNICes: Set the right CFG_DEFAULT_MBAR value.
31722
31723     Signed-off-by: Heiko Schocher <hs@denx.de>
31724
31725 commit 5fb2b2342ece8d786c6f7fdba1bc273febd3b3d2
31726 Author: Heiko Schocher <hs@denx.de>
31727 Date:   Fri Jan 11 15:15:15 2008 +0100
31728
31729     added the config File for the MUNICes board.
31730
31731     Signed-off-by: Heiko Schocher <hs@denx.de>
31732
31733 commit 6341d9d723b71b4c0bf86f979e4cb228c02fd09d
31734 Author: Heiko Schocher <hs@denx.de>
31735 Date:   Fri Jan 11 15:15:14 2008 +0100
31736
31737     added basic support for the MUNICes board.
31738
31739     Signed-off-by: Heiko Schocher <hs@denx.de>
31740
31741 commit 3bb77fb09a1caabf5a292cc5b486a78b977fbe19
31742 Author: Wolfgang Denk <wd@denx.de>
31743 Date:   Sat Jan 12 00:39:37 2008 +0100
31744
31745     Update CHANGELOG and MAINTAINERS files.
31746
31747     Signed-off-by: Wolfgang Denk <wd@denx.de>
31748
31749 commit 5ba7390c3cb579172be66888a371707b47b5be4e
31750 Author: Anatolij Gustschin <agust@denx.de>
31751 Date:   Fri Jan 11 02:15:02 2008 +0100
31752
31753     Fix compilation problem in common/cmd_bmp.c
31754
31755     common/cmd_bmp.c fails to compile if CONFIG_VIDEO_BMP_GZIP
31756     isn't defined. This patch fix this.
31757
31758     Signed-off-by: Anatolij Gustschin <agust@denx.de>
31759
31760 commit 5aa437baae5fe629abeab99bef793a2a1fc71b58
31761 Author: Heiko Schocher <hs@denx.de>
31762 Date:   Fri Jan 11 01:12:09 2008 +0100
31763
31764     Fix defaultconfig for the mgcoge board.
31765
31766     Signed-off-by: Heiko Schocher <hs@denx.de>
31767
31768 commit ac9db066b26935f31bff15c98168b19faeb603f3
31769 Author: Heiko Schocher <hs@denx.de>
31770 Date:   Fri Jan 11 01:12:08 2008 +0100
31771
31772     Added support for the mgcoge board from keymile.
31773
31774     Signed-off-by: Heiko Schocher <hs@denx.de>
31775
31776 commit b423d055cc2e13c4ef1f0389c3fa2988d0eed818
31777 Author: Heiko Schocher <hs@denx.de>
31778 Date:   Fri Jan 11 01:12:07 2008 +0100
31779
31780     Enable SMC microcode relocation patch for SMC1.
31781
31782     Signed-off-by: Heiko Schocher <hs@denx.de>
31783
31784 commit 381e4e639720d8d2efb8066c7c48ec9588cb28c7
31785 Author: Heiko Schocher <hs@denx.de>
31786 Date:   Fri Jan 11 01:12:06 2008 +0100
31787
31788     Added support for the mgsuvd board from keymile.
31789
31790     Signed-off-by: Heiko Schocher <hs@denx.de>
31791
31792 commit bf05293973b348f6946c9df92cd3c65ece42d0be
31793 Author: James Yang <james.yang@freescale.com>
31794 Date:   Thu Jan 10 16:02:07 2008 -0600
31795
31796     Fix 64-bit vsprintf.
31797
31798     There were some size and unsigned problems.
31799     Also add support for "ll" size modifier in format string like glibc
31800
31801     Signed-off-by: James Yang <James.Yang@freescale.com>
31802     Acked-by: Jon Loeliger <jdl@freescale.com>
31803
31804 commit 92fa37eac530860643afa26ae347af3d23d67309
31805 Author: Larry Johnson <lrj@acm.org>
31806 Date:   Wed Jan 9 12:42:35 2008 -0500
31807
31808     Remove superfluous preprocessor conditionals from LM73 driver
31809
31810     (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
31811
31812     (2) Use conditional Makefile.o.
31813
31814     Signed-off-by: Larry Johnson <lrj@acm.org>
31815
31816 commit efc6f447c1b940d1650c4b854c5598a595ddc3da
31817 Author: Guennadi Liakhovetski <lg@denx.de>
31818 Date:   Thu Jan 10 17:59:07 2008 +0100
31819
31820     Add support for the TK885D baseboard from TELE-DATA
31821
31822     The TK885D board uses a TQM885D module from TQ, this port adds an
31823     own configuration file and adds a last_stage_init() method to
31824     configure the two PHYs, depending on the phy_auto_nego environment
31825     variable.
31826
31827     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31828
31829 commit 0ec595243dc99edcd248bbcfbfd5a1dc860bde89
31830 Author: Kumar Gala <galak@kernel.crashing.org>
31831 Date:   Thu Jan 10 02:22:05 2008 -0600
31832
31833     Fix compiler warning
31834
31835     main.c: In function 'readline_into_buffer':
31836     main.c:927: warning: unused variable 'p_buf'
31837
31838     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31839
31840 commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
31841 Author: Anatolij Gustschin <agust@denx.de>
31842 Date:   Fri Jan 11 14:30:01 2008 +0100
31843
31844     Add Fujitsu CoralP/Lime video driver
31845
31846     Signed-off-by: Anatolij Gustschin <agust@denx.de>
31847     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
31848
31849 commit 20c450ef61ef2eb1c96f9b59ba0eb8d849bba058
31850 Author: Anatolij Gustschin <agust@denx.de>
31851 Date:   Fri Jan 11 02:39:47 2008 +0100
31852
31853     Fix video console newline and carriage return handling
31854
31855     Lines of the lenght CONSOLE_COLS or greater than CONSOLE_COLS
31856     are not displayed correctly. This is an attempt to fix
31857     this issue. Also add carriage return handling.
31858
31859     Signed-off-by: Anatolij Gustschin <agust@denx.de>
31860     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
31861
31862 commit d5a163d6baa04f5a8edcc10ebc6fad08657d3093
31863 Author: Stefan Roese <sr@denx.de>
31864 Date:   Fri Jan 11 15:53:58 2008 +0100
31865
31866     ppc4xx: Fix sdram init on Sequoia boards
31867
31868     Clear possible errors in MCSR resulting from data-eye-search.
31869     If not done, then we could get an interrupt later on when
31870     exceptions are enabled.
31871
31872     Signed-off-by: Stefan Roese <sr@denx.de>
31873
31874 commit d610a60730b7464f6f659db49d264d89a7c71061
31875 Author: Anatolij Gustschin <agust@denx.de>
31876 Date:   Fri Jan 11 15:31:09 2008 +0100
31877
31878     ppc4xx: Rework Lime support for lwmon5
31879
31880     Rework Lime support for lwmon5 using new video driver
31881
31882     Signed-off-by: Anatolij Gustschin <agust@denx.de>
31883
31884 commit ff41ffc93c1592e77a44bdbebd5d781739f3aae0
31885 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31886 Date:   Fri Jan 11 14:55:16 2008 +0100
31887
31888     ppc4xx: Update PMC440 config file
31889
31890     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31891
31892 commit e3edcb36f14f0aabb6f50e96014d6877f73d64ea
31893 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31894 Date:   Fri Jan 11 14:55:08 2008 +0100
31895
31896     ppx4xx: Fix sdram init on PMC440 boards
31897
31898     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31899
31900 commit 061aad4d320dddce26247699dcf2875ee2ea1366
31901 Author: Dave Liu <r63238@freescale.com>
31902 Date:   Thu Jan 10 23:09:33 2008 +0800
31903
31904     mpc83xx: Fix the bug of 266MHz data rate DDR
31905
31906     The DDR doesn't work on the 266MHz data rate,
31907     the patch fix the bug.
31908
31909     Signed-off-by: Dave Liu <daveliu@freescale.com>
31910     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31911
31912 commit ded08317ad9e340b887bf2eb46e9565a0f610a93
31913 Author: Dave Liu <r63238@freescale.com>
31914 Date:   Thu Jan 10 23:08:26 2008 +0800
31915
31916     mpc83xx: Make the code more readable
31917
31918     Format the code, make it more readable
31919
31920     Signed-off-by: Dave Liu <daveliu@freescale.com>
31921     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31922
31923 commit 7e74d63d1a211fbc34ec424e2dc6726601f323d0
31924 Author: Dave Liu <r63238@freescale.com>
31925 Date:   Thu Jan 10 23:07:23 2008 +0800
31926
31927     mpc83xx: Reduce the latency of DDR
31928
31929     Reduce the AL from 2 to 1 clock to improve the performance.
31930
31931     Signed-off-by: Dave Liu <daveliu@freescale.com>
31932     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31933
31934 commit 6f3931a2bed5412c20d5e5536c865fbd657f7d28
31935 Author: Dave Liu <r63238@freescale.com>
31936 Date:   Thu Jan 10 23:06:05 2008 +0800
31937
31938     mpc83xx: Fix the wrong definition of MPC8315E
31939
31940     According to the latest user manual of MPC8315E,
31941     1) The SVCOD of HRCWL is different than 837x
31942     2) The SCCR has changes
31943
31944     Signed-off-by: Dave Liu <daveliu@freescale.com>
31945     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31946
31947 commit ec2638ea08a537a1bd409db873aaaa33a053ebae
31948 Author: Dave Liu <r63238@freescale.com>
31949 Date:   Thu Jan 10 23:05:00 2008 +0800
31950
31951     mpc83xx: Fix the typo in mpc83xx.h
31952
31953     The SPCR about TSEC priority is wrong.
31954
31955     Signed-off-by: Michael Barkowski <Michael.Barkowski@freescale.com>
31956     Signed-off-by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
31957     Signed-off-by: Dave Liu <daveliu@freescale.com>
31958     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31959
31960 commit c86ef2cd9ef81935049231fa89f36c7b793f2d4b
31961 Author: Dave Liu <r63238@freescale.com>
31962 Date:   Thu Jan 10 23:04:13 2008 +0800
31963
31964     mpc83xx: Fix the typo in global data struct
31965
31966     Fix the typo in global_data.h
31967
31968     Signed-off-by: Dave Liu <daveliu@freescale.com>
31969     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31970
31971 commit 2c5b48fc205c3e2752910da8f39209ed075929e5
31972 Author: Dave Liu <r63238@freescale.com>
31973 Date:   Thu Jan 10 23:03:03 2008 +0800
31974
31975     mpc83xx: Remove cache config from config.h
31976
31977     clean up the cache config from configs.h of board
31978
31979     Signed-off-by: Dave Liu <daveliu@freescale.com>
31980     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31981
31982 commit fab6f556bbbbd1bb35a5433161f7f173c18df559
31983 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
31984 Date:   Wed Jan 9 20:57:47 2008 +0300
31985
31986     mpc83xx: add support for the MPC8360E-RDK
31987
31988     This is MPC8360E based board with:
31989     - 256MB fixed SDRAM;
31990     - 8MB Intel Strata NOR flash;
31991     - StMICRO 64MiB NAND flash;
31992     - two 10/100/1000 ethernet ports connected via Broadcom
31993       BCM5481 PHYs;
31994     - two 10/100 ethernet ports connected via National
31995       DP83848 PHYs;
31996     - one PCI and one miniPCI slots;
31997     - four serial ports (two NS16550-compatible, two UCCs);
31998     - four USB ports working through MPC8360E "FHCI" USB controller;
31999     - Fujitsu MB86277 graphics controller;
32000     - Analog to Digital Converter/Touchscreen controller, AD7843
32001       connected to SPI.
32002
32003     Features not supported in this patch are:
32004     - StMICRO 64MiB NAND flash (patch sent);
32005     - MINT framebuffer initialization (patch is pending);
32006     - Fetching production information from the EEPROM via I2C;
32007     - FHCI USB;
32008     - Two slow UCCs used as RS-485 UARTs.
32009
32010     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32011     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32012
32013 commit b3d2cde7a3aa1e83b7968cdff929e52c8cc617bb
32014 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32015 Date:   Wed Jan 9 20:57:40 2008 +0300
32016
32017     mpc83xx: add "fsl, qe" compatible fixups
32018
32019     New device trees will use "fsl,qe" compatible properties.
32020
32021     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32022     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32023
32024 commit 977b57583a7c34010e566a09a679ec3c1836f996
32025 Author: Kim Phillips <kim.phillips@freescale.com>
32026 Date:   Wed Jan 9 15:24:06 2008 -0600
32027
32028     mpc83xx: add missing CONFIG_HAS_ETH0 defines
32029
32030     the new libfdt code only updates eth0 if CONFIG_HAS_ETH0
32031     is defined; add the define to the missing board configs.
32032
32033     Thanks to Emilian Medve for finding this.
32034
32035     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32036
32037 commit b830b7f1635984ba607219fcbd78597c28eeb529
32038 Author: Becky Bruce <bgill@freescale.com>
32039 Date:   Thu Jan 10 14:00:28 2008 -0600
32040
32041     86xx: Support 2GB DIMMs
32042
32043     Configure the number of bits used to address the banks inside the SDRAM
32044     device.  The default register value of 0 means 2 bits to address 4 banks.
32045     Higher capacity devices like a 2GB DIMM require 3 bits to address 8 banks.
32046
32047     Signed-off-by: Becky Bruce <bgill@freescale.com>
32048
32049 commit 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
32050 Author: Niklaus Giger <niklausgiger@gmx.ch>
32051 Date:   Thu Jan 10 18:50:33 2008 +0100
32052
32053     ppc4xx: Make Sequoia boot vxWorks
32054
32055     vxWorks expects in
32056     TLB 0 a entry for the Machine Check interrupt
32057     TLB 1 a entry for the RAM
32058     TLB 2 a entry for the EBC
32059     TLB 3 a entry for the boot flash
32060
32061     After changing the baudrate to 9600 I had no problems to boot the
32062     vxWorks image as distributed by WindRiver (Revision 2.0/1 from
32063     June 18, 2007)
32064
32065     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
32066
32067 commit 6d8184b00c0d1d7090e4a2f514e310d98a394f8d
32068 Author: Larry Johnson <lrj@arlinx.com>
32069 Date:   Wed Jan 9 23:10:27 2008 -0500
32070
32071     ppc4xx: Fix dflush() to restore DVLIM register
32072
32073     Signed-off-by: Larry Johnson <lrj@acm.org>
32074
32075 commit 252f60b068d1f94190b5bcfda169db582387e15e
32076 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32077 Date:   Thu Jan 10 03:52:44 2008 -0500
32078
32079     Nios2: remove common/cmd_bdinfo.c unused variable.
32080
32081     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32082     Signed-off-by: Scott McNutt <smcnutt@psyent.com>
32083
32084 commit 422b1a01602b6e2fbf8444a1192c7ba31461fd4c
32085 Author: Ben Warren <biggerbadderben@gmail.com>
32086 Date:   Wed Jan 9 18:15:53 2008 -0500
32087
32088     Fix Ethernet init() return codes
32089
32090     Change return values of init() functions in all Ethernet drivers to conform
32091     to the following:
32092
32093         >=0: Success
32094         <0:  Failure
32095
32096     All drivers going forward should return 0 on success.  Current drivers that
32097     return 1 on success were left as-is to minimize changes.
32098
32099     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
32100     Acked-by: Stefan Roese <sr@denx.de>
32101     Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32102     Acked-by: Kim Phillips <kim.phillips@freescale.com>
32103     Acked-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32104     Acked-By: Timur Tabi <timur@freescale.com>
32105
32106 commit d3a6532cbe263d992f49e86ac95bede28e96f9c8
32107 Author: Wolfgang Denk <wd@denx.de>
32108 Date:   Thu Jan 10 00:55:14 2008 +0100
32109
32110     Coding Style cleanup; update CHANGELOG
32111
32112     Signed-off-by: Wolfgang Denk <wd@denx.de>
32113
32114 commit 17a41e4492121ccf9fa2c10c2cb1a6d1c18d74f7
32115 Author: Kim Phillips <kim.phillips@freescale.com>
32116 Date:   Wed Jan 9 16:56:54 2008 -0600
32117
32118     Add QE brg freq and correct qe bus freq fdt update code
32119
32120     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32121     Signed-off-by: Andy Fleming <afleming@freescale.com>
32122
32123 commit 890dfef06c2d169a3356359596890754dfb8ee1c
32124 Author: Andy Fleming <afleming@freescale.com>
32125 Date:   Wed Jan 9 16:34:51 2008 -0600
32126
32127     Remove cache config from ATUM8548 and sbc8548 configs
32128
32129     These boards weren't updated by Kumar's config patch because they
32130     weren't in the tree, yet.
32131
32132     Signed-off-by: Andy Fleming <afleming@freescale.com>
32133
32134 commit b8ec2385038c094b07ec5b49336289a46b6e9cc6
32135 Author: Timur Tabi <timur@freescale.com>
32136 Date:   Mon Jan 7 13:31:19 2008 -0600
32137
32138     85xx: add ability to upload QE firmware
32139
32140     Define the layout of a binary blob that contains a QE firmware and instructions
32141     on how to upload it.  Add function qe_upload_firmware() to parse the blob and
32142     perform the actual upload.  Add command-line command "qe fw" to take a firmware
32143     blob in memory and upload it.  Update ft_cpu_setup() on 85xx to create the
32144     'firmware' device tree node if U-Boot has uploaded a firmware.  Fully define
32145     'struct rsp' in immap_qe.h to include the actual RISC Special Registers.
32146
32147     Signed-off-by: Timur Tabi <timur@freescale.com>
32148
32149 commit b009f3eca99bb7b9e6ba6639a8909a138dd5e9fe
32150 Author: Kumar Gala <galak@kernel.crashing.org>
32151 Date:   Tue Jan 8 01:22:21 2008 -0600
32152
32153     85xx: Remove cache config from configs.h
32154
32155     Either use the standard defines in asm/cache.h or grab the information
32156     at runtime from the L1CFG SPR.
32157
32158     Also, minor cleanup in cache.h to make the code a bit more readable.
32159
32160     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32161
32162 commit b964e9368f45372aaf1da0c13fe56f6d81ae8e96
32163 Author: robert lazarski <robertlazarski@gmail.com>
32164 Date:   Fri Dec 21 10:39:27 2007 -0500
32165
32166     mpc85xx: Add support for ATUM8548 (updated)
32167
32168     Add support for Instituto Atlantico's ATUM8548 board
32169
32170     Signed-off-by: robert lazarski <robertlazarski@gmail.com>
32171     Signed-off-by: Andy Fleming <afleming@freescale.com>
32172
32173 commit 7bd6104b71de9bca80ac8e0936003443bb42f2fc
32174 Author: robert lazarski <robertlazarski@gmail.com>
32175 Date:   Fri Dec 21 10:36:37 2007 -0500
32176
32177     mpc85xx: Add support for ATUM8548 (updated)
32178
32179     Add support for Instituto Atlantico's ATUM8548 board
32180
32181     Signed-off-by: robert lazarski <robertlazarski@gmail.com>
32182
32183 commit 9e3ed392d2c8965e24c942b58796c31c644c2f70
32184 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
32185 Date:   Thu Dec 13 06:45:14 2007 -0600
32186
32187     mpc85xx: Add support for SBC8548 (updated)
32188
32189     Add support for Wind River's SBC8548 reference board.
32190
32191     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
32192
32193 commit 11c45ebd46d6517b51b7a92dd52a618b2f4e5586
32194 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
32195 Date:   Thu Dec 13 06:45:08 2007 -0600
32196
32197     mpc85xx: Add support for SBC8548 (updated)
32198
32199     Add support for Wind River's SBC8548 reference board.
32200
32201     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
32202     Signed-off by: Andy Fleming <afleming@freescale.com>
32203
32204 commit 64d4bcb087c2ece1c4d0de8efe85e0075e5b1594
32205 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32206 Date:   Mon Oct 22 19:58:19 2007 +0400
32207
32208     MPC8568E-MDS: set up QE pario for UART1
32209
32210     To use UART1 on the MPC8568E-MDS, QE pario pins PC[0:3] should
32211     be set up appropriately.
32212
32213     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32214
32215 commit ad162249cb371e9e38971676f09be791e5f3cf4a
32216 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32217 Date:   Mon Oct 22 18:12:46 2007 +0400
32218
32219     MPC8568E-MDS: reset UCCs to use them reliably
32220
32221     In order to use GETH1 and GETH2 on the MPC8568E-MDS, we should reset
32222     UCCs.
32223
32224     p.s Similar code exists in the Linux kernel board file (for capability
32225     reasons with older U-Boots), but should be removed some day.
32226
32227     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32228
32229 commit 2146cf56821c3364786ca94a7306008c5824b238
32230 Author: Kumar Gala <galak@kernel.crashing.org>
32231 Date:   Wed Dec 19 01:18:15 2007 -0600
32232
32233     Reworked FSL Book-E TLB macros to be more readable
32234
32235     The old macros made it difficult to know what WIMGE and perm bits
32236     were set for a TLB entry.  Actually use the bit masks for these items
32237     since they are only a single bit.
32238
32239     Also moved the macros into mmu.h out of e500.h since they aren't specific
32240     to e500.
32241
32242     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32243
32244 commit 1d47273d46925929f8f2c1913cd96d7257aade88
32245 Author: Kumar Gala <galak@kernel.crashing.org>
32246 Date:   Tue Dec 18 23:21:51 2007 -0600
32247
32248     Use FSL Book-E MMU macros from Linux Kernel
32249
32250     Grab the FSL Book-E MAS register macros from Linux.  Also added
32251     defines for page sizes up to 4TB and removed SHAREN since it doesnt
32252     really exist.
32253
32254     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32255
32256 commit 02df4a270f817ef6ec39047a01b55fecdc5f3b37
32257 Author: Andy Fleming <afleming@freescale.com>
32258 Date:   Wed Jan 9 13:51:32 2008 -0600
32259
32260     Fix my own merge stupidity
32261
32262     Way back in August I merged Heiko's patch:
32263     566a494f592: [PCS440EP] upgrade the PCS440EP board
32264
32265     with Jon's CONFIG_COMMANDS patches.
32266
32267     This was done in commit: 6bf6f114dcdd97ec3f80c2761ed40e31229d6b78
32268
32269     However, in the process, I left out some of Heiko's good changes.
32270
32271     Now Heiko's and Jon's patches are properly merged in fat_register_device()
32272
32273     Signed-off-by: Andy Fleming <afleming@freescale.com>
32274
32275 commit 6636b62a6efc7f14e6e788788631ae7a7fca4537
32276 Author: James Yang <James.Yang@freescale.com>
32277 Date:   Wed Jan 9 11:17:49 2008 -0600
32278
32279     Expose parse_line() globally.
32280
32281     Add new function readline_into_buffer() that allows the
32282     output of readline to be put into a pointer to char buffer.
32283
32284     This refactoring allows other functions besides the
32285     main command loop to also use the same input mechanism.
32286
32287     Signed-off-by: James Yang <James.Yang@freescale.com>
32288     Acked-by: Jon Loeliger <jdl@freescale.com>
32289
32290 commit 7ca90513486abd4ae50bd1b7403f47cc58c5ad25
32291 Author: Guennadi Liakhovetski <lg@denx.de>
32292 Date:   Wed Jan 9 01:15:25 2008 +0100
32293
32294     trivial: fix consequences of a bad merge
32295
32296     Fix what looks like a merge artifact.
32297
32298     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32299
32300 commit 4785a694c0045996ccf0ac5b8edf531efc1b730e
32301 Author: Zhang Wei <wei.zhang@freescale.com>
32302 Date:   Thu Jan 3 10:51:15 2008 +0800
32303
32304     Add Ctrl combo key support to usb keyboard driver.
32305
32306     Ctrl combo key support is added, which is very useful to input Ctrl-C
32307     for interrupt current job.
32308     Also add usb_event_poll() calling to usb_kbd_testc(), which can get
32309     key input when tstc() is called.
32310
32311     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
32312
32313 commit 10c7382bc5d5e64c47f94ac2ca78cc574442e82d
32314 Author: Marcel Ziswiler <marcel@ziswiler.com>
32315 Date:   Sun Dec 30 03:30:56 2007 +0100
32316
32317     fix various comments
32318
32319     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
32320
32321 commit 7817cb2083d982923752fe0f12b67c0e7c09a027
32322 Author: Marcel Ziswiler <marcel@ziswiler.com>
32323 Date:   Sun Dec 30 03:30:46 2007 +0100
32324
32325     fix comments with new drivers organization
32326
32327     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
32328
32329 commit a9b410dc7d2a4721c408b13abfc037988150f145
32330 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
32331 Date:   Fri Dec 28 12:50:59 2007 +0900
32332
32333     Remove the obsolete terse version of do_mii()
32334
32335     We now have more useful version of do_mii() and everybody use it.
32336     Gerald Van Baren says:
32337
32338     > When I originally wrote the mii command 6(!) years ago, I wrote a
32339     > verbose version that printed human readable decomposition of the flags,
32340     > etc., and a terse one that didn't print as much stuff and thus had a
32341     > smaller memory footprint.
32342     >
32343     > It sounds like the terse version has withered and died, apparently
32344     > people are only using the verbose version (which is very understandable,
32345     > I do myself).
32346
32347     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
32348     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
32349
32350 commit 01c687aa6e065bd4faf80f723361e798941dd6b0
32351 Author: Mike Frysinger <vapier@gentoo.org>
32352 Date:   Thu Dec 27 13:42:56 2007 -0500
32353
32354     Do not reference sha1.c when building mkimage.
32355
32356     remove sha1.o from mkimage linking since it isn't actually used.
32357
32358     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
32359
32360 commit b9173af73e524d37c812f210173cf83385c5171a
32361 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
32362 Date:   Thu Dec 27 15:39:54 2007 +0900
32363
32364     common/cmd_mii.c: Add sanity argc check
32365
32366     If type mii command without arguments, we suffer from uninitialized argv[]
32367     entries; for example we MIPS get stuck by TLB error.
32368
32369     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
32370
32371 commit 500856eb1707ed17d9204baa61dd59948d3b2899
32372 Author: Rafal Jaworowski <raj@semihalf.com>
32373 Date:   Wed Jan 9 19:39:36 2008 +0100
32374
32375     API for external applications.
32376
32377     This is an API for external (standalone) applications running on top of
32378     U-Boot, and is meant to be more extensible and robust than the existing
32379     jumptable mechanism. It is similar to UNIX syscall approach. See api/README
32380     for more details.
32381
32382     Included is the demo application using this new framework (api_examples).
32383
32384     Please note this is still an experimental feature, and is turned off by
32385     default.
32386
32387     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
32388
32389 commit fe8dd0b2220b7c02b0d4c9c4f9967879970477b1
32390 Author: Jon Loeliger <jdl@freescale.com>
32391 Date:   Wed Jan 9 12:14:55 2008 -0600
32392
32393     86xx: Remove cache config from configs.h
32394
32395     Just use the standard defines in asm/cache.h.
32396
32397     Signed-off-by: Jon Loeliger <jdl@freescale.com>
32398
32399 commit 26a41790f8eba19ad450e18ae91351daf485b3e2
32400 Author: Rafal Jaworowski <raj@semihalf.com>
32401 Date:   Wed Jan 9 18:05:27 2008 +0100
32402
32403     Globalize envmatch()
32404
32405     The newly introduced API (routines related to env vars) will need to call
32406     it.
32407
32408     Signed-off-by: Rafal Zabdyr <armo@semihalf.com>
32409
32410 commit 1df170f8b2a99e1e2f940f9f0b56511e1e4c9e1f
32411 Author: Jon Loeliger <jdl@freescale.com>
32412 Date:   Fri Jan 4 12:07:27 2008 -0600
32413
32414     Convert MPC8610HPCD to use libfdt.
32415
32416     Assumes the presence of the aliases node in the DTS to
32417     locate the pci and serial nodes for fixups.
32418
32419     Use consistent fdtaddr and fdtfile in environment variables.
32420
32421     Signed-off-by: Jon Loeliger <jdl@freescale.com>
32422
32423 commit c9974ab0a4d3731cdb76a7599d9fe9445d764d60
32424 Author: Jon Loeliger <jdl@freescale.com>
32425 Date:   Fri Jan 4 11:58:23 2008 -0600
32426
32427     8610: Fix lingering compile warnings.
32428
32429     Turn off DEBUG.
32430
32431     Signed-off-by: Jon Loeliger <jdl@freescale.com>
32432
32433 commit 6007f3251c0967adc13f2ed8be1b924ddc30124d
32434 Author: Wolfgang Denk <wd@denx.de>
32435 Date:   Wed Jan 9 15:14:46 2008 +0100
32436
32437     Coding Style cleanup, update CHANGELOG
32438
32439     Signed-off-by: Wolfgang Denk <wd@denx.de>
32440
32441 commit fc6414eca55f1fc108fb12fc8cdc43bd8b4463f9
32442 Author: Mike Frysinger <vapier@gentoo.org>
32443 Date:   Tue Dec 18 04:29:55 2007 -0500
32444
32445     fix easylogo on big endian dev systems
32446
32447     didnt realize how out of shape easylogo actually was until i tried using it.
32448     this patch does byte swapping as need be on the input tga header since the tga
32449     is in little endian but the host could just as well be big endian.  i didnt
32450     bother using bswap macros or such stuff from system headers as nothing in
32451     POSIX dictates byte swapping functionality.
32452
32453     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
32454
32455 commit 38d299c2db81bd889c601b5dfc12c4e83ef83333
32456 Author: Mike Frysinger <vapier@gentoo.org>
32457 Date:   Tue Dec 18 03:23:25 2007 -0500
32458
32459     cleanup easylogo
32460
32461     - make the Makefile not suck
32462     - include proper headers for prototypes
32463     - fix obvious broken handling of strchr() when handling '.' in filenames
32464
32465     Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
32466
32467 commit 883e3925d99a8dd69c5b0201cba5b1887f88f95c
32468 Author: raptorbrino@aim.com <raptorbrino@aim.com>
32469 Date:   Thu Dec 13 21:23:28 2007 -0500
32470
32471     Fix build problems under Cygwin
32472
32473     This patch allows u-boot to build without error in a cygwin
32474     environment.  Cygwin does not define __u64 in it's
32475     include/asm/types.h file.  The -idirafter flag in the u-boot
32476     build causes the inclusion of the cygwin types.h file as opposed
32477     to u-bot/include/asm/types.h file which does define __u64.
32478     Subsequently, sha1.c compile fails due to unknown symbol.
32479
32480     Signed-off-by: Brian Miller <raptorbrino@netscape.net>
32481
32482 commit 43ef1c381f9195504a2488f5cb909227eb97d475
32483 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
32484 Date:   Fri Nov 30 17:29:59 2007 +0100
32485
32486     cmd_bmp: Add support for displaying gzip compressed bmps
32487
32488     The existing code can show information about a gzip compressed BMP
32489     image, but can't actually display it.
32490
32491     Therefore, move the decompression code out of bmp_info() and use it in
32492     bmp_display() as well in order to display a compressed BMP image.
32493
32494     Also, clean things up a bit and fix a memory leak while we're at it.
32495
32496     [hskinnemoen@atmel.com: a bit of refactoring]
32497     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32498
32499 commit d197ffd8172c6fdef38733424640a9a47295d6e9
32500 Author: Guennadi Liakhovetski <lg@denx.de>
32501 Date:   Thu Nov 29 21:15:56 2007 +0100
32502
32503     Fix and optimize MII operations on FEC (MPC8xx) controllers
32504
32505     This patch fixes several issues at least on a MPC885 based system with two
32506     FEC interfaces used in MII mode.
32507
32508     1. PHY discovery should first read PHY_PHYIDR2 register and only then
32509        PHY_PHYIDR1 like cpu/mpc8xx/fec.c::mii_discover_phy() does it,
32510        otherwise the values read are wrong. Also notice, that PHY discovery
32511        cannot work on MPC88x / MPC87x in setups with both FECs active at all
32512        in its present form, because for both interfaces the registers from FEC
32513        1 are used to communicate over MII.
32514
32515     2. Remove code duplication for resetting the FEC by isolating it into a
32516        separate function.
32517
32518     3. Initialize MII on FEC 1 when communicating over FEC 2 in fec_init().
32519
32520     4. Optimize mii_init() to only reset the FEC 1 controller once.
32521
32522     5. Fix a typo in mii_init() using index i instead of j thus potentially
32523        leading to unpredictable results.
32524
32525     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32526
32527 commit 6a5e1d75bf106fa157e9ce68bcaf4b13e8a1d214
32528 Author: Guennadi Liakhovetski <lg@denx.de>
32529 Date:   Tue Nov 20 13:14:20 2007 +0100
32530
32531     Fix endianness conversions in rtl8169 driver
32532
32533     It is unclear on what platforms this driver has been tested, since
32534     noone up to now defines CONFIG_RTL8169 in the board configuration
32535     header. Now it has been fixed for a big-endian mpc8241 based
32536     linkstation platform. This patch presents the necessary endianness
32537     conversion fixes.
32538
32539     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
32540
32541 commit 58694f9709c0c3e3178e349ae748d98cfb0c639a
32542 Author: Zhang Wei <wei.zhang@freescale.com>
32543 Date:   Thu Jan 3 10:51:15 2008 +0800
32544
32545     Add Ctrl combo key support to usb keyboard driver.
32546
32547     Ctrl combo key support is added, which is very useful to input Ctrl-C
32548     for interrupt current job.
32549     Also add usb_event_poll() calling to usb_kbd_testc(), which can get
32550     key input when tstc() is called.
32551
32552     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
32553     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
32554
32555 commit 07eb02687f008721974a2fb54cd7fdc28033ab3c
32556 Author: Wolfgang Denk <wd@denx.de>
32557 Date:   Wed Jan 9 13:43:38 2008 +0100
32558
32559     Coding Style clenaup; update CHANGELOG
32560
32561     Signed-off-by: Wolfgang Denk <wd@denx.de>
32562
32563 commit c26acc1a43b31ddca5add42fd0360ff0eee90c80
32564 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32565 Date:   Thu Dec 27 17:13:11 2007 +0100
32566
32567     Remove bit swapping in Xilinx Spartan bitfile loading
32568
32569     This patch removes the unnecessary bit swapping when
32570     booting .bit files with the 'fpga loadb' command.
32571
32572     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32573
32574 commit 437fc7327f0611f82937858f2d80e4cd61b40984
32575 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32576 Date:   Thu Dec 27 17:13:05 2007 +0100
32577
32578     Fix MSB check in Xilinx Spartan slave serial mode
32579
32580     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32581
32582 commit 3bff4ffa33729a42645e328a21e8d16488872958
32583 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32584 Date:   Thu Dec 27 17:12:56 2007 +0100
32585
32586     Add new Xilinx Spartan FPGA types
32587
32588     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32589
32590 commit 21d39d598c4e74d4e7761608c79dba2715d40a4c
32591 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32592 Date:   Thu Dec 27 17:12:43 2007 +0100
32593
32594     Add pre and post configuration callbacks for Spartan FPGAs
32595
32596     This patch adds a post configuration callback for Spartan2/3 FPGAs.
32597     pre and post configuration callback are now optional and
32598     not called when the function pointer is set to NULL.
32599
32600     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32601
32602 commit 0133502e39ff89b67c26cb4015e0e7e8d9571184
32603 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32604 Date:   Thu Dec 27 17:12:34 2007 +0100
32605
32606     Improve configuration of FPGA subsystem
32607
32608     This patch removes the FPGA subsystem configuration through
32609     the CONFIG_FPGA bitmask configuration option.
32610
32611     See README for the new options:
32612
32613         CONFIG_FPGA,
32614         CONFIG_FPGA_<vendor>,
32615         CONFIG_FPGA_<family>
32616
32617     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32618
32619 commit 95c6bc7d4a3588b452baca610f8c795a83630477
32620 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32621 Date:   Thu Dec 27 16:55:17 2007 +0100
32622
32623     Add Epson RX8025 RTC support
32624
32625     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32626
32627 commit 1208a2dfde02bedd3c5bda29a606632b8e0be058
32628 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32629 Date:   Thu Dec 27 16:57:23 2007 +0100
32630
32631     serial: Make default_serial_console() a weak function
32632
32633     With this patch it is possible to reimplement default_serial_console()
32634     in board specific code. This will be done in the upcomming PMC440
32635     U-Boot port. This also allows the lwmon board maintainer to
32636     remove the '#if !defined(CONFIG_LWMON) ...' from common/serial.c.
32637
32638     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32639
32640 commit d16471ee05ce7ac5392bc0e9fe3ff4b58a768f33
32641 Author: Harald Welte <laforge@openmoko.org>
32642 Date:   Wed Dec 19 14:14:47 2007 +0100
32643
32644     add 'terminal program' functionality
32645
32646     This patch adds a 'cu' like serial terminal command to u-boot
32647     using which you can access other serial ports from the system console.
32648
32649     OpenMoko uses this in their Neo1973 phones to get access to the GSM
32650     Modem and GPS chip from the bootloader.
32651
32652     Signed-off-by: Harald Welte <laforge@openmoko.org>
32653
32654 commit 62d4f4365341576f5a5307b2b205a5aa2e3c6be6
32655 Author: Harald Welte <laforge@openmoko.org>
32656 Date:   Wed Dec 19 14:12:53 2007 +0100
32657
32658     Re-introduce the 'nand read.oob' and 'nand write.oob' commands
32659     that used to exist with the legacy NAND code
32660
32661     Signed-off-by: Harald Welte <laforge@openmoko.org>
32662
32663 commit f540c42d9564854b19ce9bbb70affe172529fe70
32664 Author: Harald Welte <laforge@openmoko.org>
32665 Date:   Wed Dec 19 14:09:58 2007 +0100
32666
32667     Fix building with CRAMFS but not JFFS2 support
32668
32669     Signed-off-by: Harald Welte <laforge@openmoko.org>
32670
32671 commit 23d0baf967fecdaf1804f045f6339337c5607eec
32672 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32673 Date:   Sat Dec 22 15:52:58 2007 +0100
32674
32675     Allow CONFIG_AUTO_COMPLETE and command history CONFIG_CMDLINE_EDITING at the sametime
32676
32677     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32678     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32679
32680 commit 23776ff292966a85d811126933830bed48211826
32681 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32682 Date:   Tue Dec 11 10:53:12 2007 +0100
32683
32684     ARM: support board-specific ethernet PHY init
32685
32686     Add until the new phylib will be arrived
32687
32688     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32689
32690 commit 7b74ebe723e576baedf5a8b6240589b19b845a1b
32691 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32692 Date:   Sat Dec 8 16:34:08 2007 +0100
32693
32694     IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x
32695
32696     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32697
32698 commit a2df4da31b1a1e41e3e9e1358cfc52b806046ce1
32699 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32700 Date:   Sun Dec 9 11:01:10 2007 +0100
32701
32702     Add missing file in gitignore and comments
32703
32704     based on Linux source tree's .gitignore files
32705
32706     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32707
32708 commit 435dc8fcdb3bc61d3d490773a8f369f98a20c868
32709 Author: Wolfgang Denk <wd@denx.de>
32710 Date:   Wed Jan 9 11:36:21 2008 +0100
32711
32712     Coding Style cleanup, update CHANGELOG
32713
32714     Signed-off-by: Wolfgang Denk <wd@denx.de>
32715
32716 commit b2e2142c500c48a57f18f9dd30e66c13caea0971
32717 Author: Stefan Roese <sr@denx.de>
32718 Date:   Wed Jan 9 10:38:58 2008 +0100
32719
32720     POST: Execute SPR test after relocation
32721
32722     On LWMON5 we now use d-cache as init-ram and stack. The SPR POST test uses
32723     self modifying code and this doesn't work with stack in d-cache, since
32724     I can't move the code from d-cache to i-cache. We move the SPR test to
32725     be executed a little later, after relocation. Then stack is located in
32726     SDRAM and this self-modifying code is no problem anymore.
32727
32728     Signed-off-by: Stefan Roese <sr@denx.de>
32729
32730 commit 8f24e0637ae113500d8bd60d80d57afcc0aa8bde
32731 Author: Stefan Roese <sr@denx.de>
32732 Date:   Wed Jan 9 10:28:20 2008 +0100
32733
32734     ppc4xx: Change LWMON5 to not use OCM for init-ram and POST anymore
32735
32736     This patch configures the LWMON5 port to use d-cache as init-ram and
32737     the unused GPT0_COMP6 as POST WORD storage.
32738
32739     Signed-off-by: Stefan Roese <sr@denx.de>
32740
32741 commit 1754f50b710194f886b6f2831803d8960171a14d
32742 Author: Stefan Roese <sr@denx.de>
32743 Date:   Wed Jan 9 10:25:46 2008 +0100
32744
32745     ppc4xx: Add CFG_POST_ALT_WORD_ADDR to support non OCM POST WORD storage
32746
32747     The privious 4xx POST implementation only supported storing the POST
32748     WORD in OCM. Since we need to reserve the OCM on LWMON5 for the logbuffer
32749     we need to store the POST WORD in some other non volatile location.
32750     This patch adds CFG_POST_ALT_WORD_ADDR to specify an address for such
32751     a location.
32752
32753     Signed-off-by: Stefan Roese <sr@denx.de>
32754
32755 commit e02c521d94b45d7b05aa522e4ccde6b74bf5fe57
32756 Author: Stefan Roese <sr@denx.de>
32757 Date:   Wed Jan 9 10:23:16 2008 +0100
32758
32759     ppc4xx: Add 44x cache locking to better support init-ram in d-cache
32760
32761     This patch adds support for locking the init-ram/stack in d-cache,
32762     so that other regions may use d-cache as well
32763
32764     Note, that this current implementation locks exactly 4k of d-cache,
32765     so please make sure that you don't define a bigger init-ram area. Take
32766     a look at the lwmon5 440EPx implementation as a reference.
32767
32768     Signed-off-by: Stefan Roese <sr@denx.de>
32769
32770 commit 0ddb89601a8d29e808db450366752ffdc6267c53
32771 Author: Wolfgang Denk <wd@denx.de>
32772 Date:   Wed Jan 9 10:16:33 2008 +0100
32773
32774     Fix memset bug in ext2fs_read_file()
32775
32776     ext2fs_read_file() had the function arguments swapped.
32777
32778     Pointed out by Mike Montour, 19 Dec 2007 22:34:25 -0800
32779
32780     Signed-off-by: Wolfgang Denk <wd@denx.de>
32781
32782 commit 32d6f1bc09175f3b77469771e839bc7255a9f22e
32783 Author: Markus Klotzbücher <mk@denx.de>
32784 Date:   Tue Jan 5 08:17:15 1988 +0100
32785
32786     Fix problems with usb storage devices on MPC5200 /TQM5200
32787
32788     The MPC5200 OHCI controller operates in big endian, so
32789     CFG_OHCI_BE_CONTROLLER must be defined for it to work properly.
32790
32791     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
32792
32793 commit 46f6e5019048b103d7693d5310de0f1cfbaf4c19
32794 Author: Wolfgang Denk <wd@denx.de>
32795 Date:   Tue Jan 8 22:58:27 2008 +0100
32796
32797     Fix compile problem with new env code.
32798
32799     Signed-off-by: Wolfgang Denk <wd@denx.de>
32800
32801 commit 64b3727b9779d86127cd576e392a987de5ebb9fd
32802 Author: Markus Klotzbücher <mk@denx.de>
32803 Date:   Tue Nov 27 10:23:20 2007 +0100
32804
32805     tools: fix fw_printenv tool to compile again
32806
32807     This patch updates the fw_printenv/fw_setenv userspace tool to include
32808     the correct MTD header in order to compile against current kernel
32809     headers. Backward compatibility is preserved by introducing an option
32810     MTD_VERSION which can be set to "old" for compilation using the old MTD
32811     headers. Along with this a number of warnings are fixed.
32812
32813     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
32814
32815 commit 1f84021a85abeb837d2ce0dc84297b4f1d45d516
32816 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32817 Date:   Tue Jan 8 15:40:09 2008 +0100
32818
32819     ppc4xx: assign PCI interrupts on seuqoia boards
32820
32821     Some operating systems rely on assigned PCI interrupts.
32822
32823     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32824
32825 commit 6e9233d30afe57cb6e148fbfa4895e7810196fac
32826 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32827 Date:   Tue Jan 8 15:50:49 2008 +0100
32828
32829     ppc4xx: Move cpu/ppc4xx/vecnum.h into include path
32830
32831     This patch allows the use of 4xx interrupt vector number defines
32832     in board specific code outside cpu/ppc4xx.
32833
32834     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32835
32836 commit 580d1d3186a2bc6dbdb626941b716dae1788e51e
32837 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32838 Date:   Tue Jan 8 15:39:01 2008 +0100
32839
32840     ppc4xx: Fix UIC2 vector number base
32841
32842     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32843
32844 commit ff5fb8a6ccba56e3482d0e297d8cfb7faa040811
32845 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32846 Date:   Tue Jan 8 12:49:58 2008 +0100
32847
32848     ppc4xx: Update PLB/PCI divider for PMC440 board
32849
32850     This patch updates the PLB/PCI divider when running at
32851     400MHz CPU frequency from 4 to 3 which results in 44MHz PCI sync clock.
32852
32853     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32854
32855 commit 7d5d75633174867316a0c0f2fca5ceb2cf312cde
32856 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32857 Date:   Tue Jan 8 11:13:09 2008 +0100
32858
32859     ppc4xx: Disable error message when no NAND chip is installed on PMC440
32860
32861     Add CFG_NAND_QUIET_TEST option to disable error message when
32862     no NAND chip is installed on PMC440 boards.
32863
32864     Disable a couple of config defines that are only used for NAND_U_BOOT.
32865
32866     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32867
32868 commit c83d7ca4dadd44ae430235077f63b64a11f36f6e
32869 Author: Wolfgang Denk <wd@denx.de>
32870 Date:   Tue Jan 8 22:58:27 2008 +0100
32871
32872     Fix compile problem with new env code.
32873
32874     Signed-off-by: Wolfgang Denk <wd@denx.de>
32875
32876 commit 6de66b35426312a21174a9bf0576a094e2904bea
32877 Author: Markus Klotzbücher <mk@denx.de>
32878 Date:   Tue Nov 27 10:23:20 2007 +0100
32879
32880     tools: fix fw_printenv tool to compile again
32881
32882     This patch updates the fw_printenv/fw_setenv userspace tool to include
32883     the correct MTD header in order to compile against current kernel
32884     headers. Backward compatibility is preserved by introducing an option
32885     MTD_VERSION which can be set to "old" for compilation using the old MTD
32886     headers. Along with this a number of warnings are fixed.
32887
32888     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
32889
32890 commit ad3006fe7e84667021753b74247b0bafd97ba35f
32891 Author: Gerald Van Baren <vanbaren@cideas.com>
32892 Date:   Mon Jan 7 23:47:32 2008 -0500
32893
32894     LIBFDT: use memmove() instead of memcpy()
32895
32896     This is partial patch from the DTC/libfdt
32897     commit  67b6b33b9b413a450a72135b5dc59c0a1e33e647
32898     Author: David Gibson <david@gibson.dropbear.id.au>
32899     Date:   Wed Nov 21 11:56:14 2007 +1100
32900
32901         The patch also fixes one genuine bug caught by valgrind -
32902         _packblocks() in fdt_rw.c was using memcpy() where it should have been
32903         using memmove().
32904
32905     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
32906
32907 commit aec7135bc300e3340d18f203347ee00c5b5f68c0
32908 Author: David Gibson <david@gibson.dropbear.id.au>
32909 Date:   Mon Dec 17 14:42:07 2007 +1100
32910
32911     libfdt: Add more documentation (patch the seventh)
32912
32913     This patch adds more documenting comments to libfdt.h.  Specifically,
32914     these document the read/write functions (not including fdt_open_into()
32915     and fdt_pack(), for now).
32916
32917     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
32918
32919 commit 9d4450b5adc36623e9c1de1f92539db77ad0c57e
32920 Author: David Gibson <david@gibson.dropbear.id.au>
32921 Date:   Mon Dec 17 14:41:52 2007 +1100
32922
32923     libfdt: Add more documentation (patch the sixth)
32924
32925     This patch adds some more documenting comments to libfdt.h.
32926     Specifically this documents all the write-in-place functions.
32927
32928     Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
32929
32930 commit b60af3d4c1680487ee37e11aa1b3db6dec04d8f0
32931 Author: Gerald Van Baren <vanbaren@cideas.com>
32932 Date:   Sat Dec 29 22:45:27 2007 -0500
32933
32934     Fine grained per property /chosen updating.
32935
32936     Implement a suggestion by Scott Wood to make the /chosen handling fine
32937     grained.  Don't overwrite pre-existing properties on a per-property basis,
32938     so if /chosen exists but a necessary /chosen/property doesn't, it gets
32939     created.  If a /chosen property exists, it is NOT overwritten unless the
32940     "force" flag is true.
32941
32942     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
32943
32944 commit 238cb7a423c6eaa36496efb788cfb9798cea7f95
32945 Author: Gerald Van Baren <vanbaren@cideas.com>
32946 Date:   Sat Jan 5 15:33:29 2008 -0500
32947
32948     Improve the FDT help message.
32949
32950     Add a note that "fdt copy" makes the new address active.
32951     Remove most of the extra hints at the end of the fdt help.
32952
32953     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
32954
32955 commit ea6d8be153ceaf16958f8009cea6d75f3ff58d92
32956 Author: Gerald Van Baren <vanbaren@cideas.com>
32957 Date:   Sat Jan 5 14:52:04 2008 -0500
32958
32959     Support setting FDT properties with optional values.
32960
32961     Fix a bug found and documented by Bartlomiej Sieka where the optional
32962     value on "fdt set <path> <prop> [<val>]" wasn't optional.
32963
32964     => fdt mknode / testnode
32965     => fdt print /testnode
32966     testnode {
32967     };
32968     => fdt set /testnode testprop
32969     => fdt print /testnode
32970     testnode {
32971             testprop;
32972     };
32973
32974     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
32975
32976 commit 22fb2246df91bfc840d87f0c5910818bad55577a
32977 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32978 Date:   Fri Dec 28 11:56:30 2007 +0100
32979
32980     Add fdt_find_and_setprop() to fdt_support.h
32981
32982     fdt_find_and_setprop() is used by several 4xx boards and it's
32983     missing in the appropriate header. This patch eliminates a
32984     warning when building U-Boot for such boards.
32985
32986     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
32987     Acked-by: Stefan Roese <sr@denx.de>
32988
32989 commit 802b769bac17b0560d3535a42c502469ee190cd1
32990 Author: Stefan Roese <sr@denx.de>
32991 Date:   Tue Jan 8 18:39:30 2008 +0100
32992
32993     ppc4xx: Return 0 on success in 4xx ethernet driver
32994
32995     Signed-off-by: Stefan Roese <sr@denx.de>
32996
32997 commit 6775c68683a53c7abc778774641aac6f833a2cbf
32998 Author: Kim Phillips <kim.phillips@freescale.com>
32999 Date:   Tue Jan 8 09:59:49 2008 -0600
33000
33001     mpc83xx: fix missed pci_hose -> hose conversion for new libfdt code
33002
33003     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33004
33005 commit 94fab25f5f1a7d1c0cc63c17e813ea8943fe49c7
33006 Author: Kim Phillips <kim.phillips@freescale.com>
33007 Date:   Thu Dec 20 16:28:34 2007 -0600
33008
33009     mpc83xx: rm remaining FLAT_TREE code
33010
33011     ..in board pci.c files
33012
33013     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33014
33015 commit b3458d2cd55d01732e30a76d898afd99e871cd67
33016 Author: Kim Phillips <kim.phillips@freescale.com>
33017 Date:   Thu Dec 20 15:57:28 2007 -0600
33018
33019     mpc83xx: remove FLAT_TREE code
33020
33021     need to rm it from pci code, too!
33022
33023     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33024
33025 commit 5b8bc606c61456566af6912f818a153b6b06f242
33026 Author: Kim Phillips <kim.phillips@freescale.com>
33027 Date:   Thu Dec 20 14:09:22 2007 -0600
33028
33029     mpc83xx: convert to using do_fixup_*()
33030
33031     convert to using simpler mpc85xx style fdt update code; streamline by
33032     eliminating macros OF_SOC, OF_CPU, etc. which allows us to rm
33033     the old school FLAT_TREE code from 83xx (since the sbc8349 was just
33034     converted over to using libfdt).
33035
33036     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33037
33038 commit e496865ecc31a2fe2f9abfe798334bb02aaf05ab
33039 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
33040 Date:   Thu Dec 20 12:58:51 2007 -0500
33041
33042     sbc8349: enable libfdt by default on WRS SBC8349 board.
33043
33044     Make libfdt the default for the WRS SBC8349 board.
33045     Parallel of commit 35cc4e4823668e8745854899cfaedd4489beb0ef
33046     done for the other 83xx based boards.  Also fix a typo in CONFIG_PCI.
33047
33048     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
33049
33050 commit 2408b3f20bcbdd9c6c397cd03ab0d71d54680a40
33051 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
33052 Date:   Thu Dec 20 12:58:16 2007 -0500
33053
33054     sbc8349: migrate board to libfdt
33055
33056     This adds libfdt support code for the Wind River sbc8349 board.
33057
33058     Parallel of commit 3fde9e8b22cfbd7af489214758f9839a206576cb for
33059     the other Freescale 83xx boards.
33060
33061     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
33062
33063 commit 27a256a90cc86392ac9bf0039a3afe638ec2c18d
33064 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
33065 Date:   Thu Dec 20 12:56:19 2007 -0500
33066
33067     sbc8349: Remove board specific ECC code
33068
33069     ECC code is now shared for all 83xx boards, so remove board specific one.
33070     See commit daab8c67d2defef73dc26ab07f0c3afd1b05d019 for reference.
33071
33072     Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
33073
33074 commit a1e1ac849249310e5e2e5c7148e9fb353a8317a7
33075 Author: Kim Phillips <kim.phillips@freescale.com>
33076 Date:   Thu Dec 20 01:30:48 2007 -0600
33077
33078     mpc83xx: Remove CONFIG options related to OF that we dont use (on 837x)
33079
33080     continuation of commit 37395fa2b0d9d617f28d44ca11592260ef16105a to 837x
33081
33082     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33083
33084 commit ccf21c311e68d48399eff1e72936052885f6e3f7
33085 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
33086 Date:   Thu Dec 6 16:43:40 2007 +0100
33087
33088     Add support CONFIG_UEC_ETH3 in MPC83xx
33089
33090     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
33091
33092 commit e6af9932d31171e35db880e7b2f29f903b1b7660
33093 Author: Kumar Gala <galak@kernel.crashing.org>
33094 Date:   Mon Nov 26 11:00:54 2007 -0600
33095
33096     Remove CONFIG options related to OF that we dont use
33097
33098     The MPC8360E MDS config defined:
33099         CONFIG_OF_HAS_BD_T
33100         CONFIG_OF_HAS_UBOOT_ENV
33101
33102     Which we don't use or ever needed.  This seems like copy-paste feature creep.
33103
33104     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33105
33106 commit f602082b4b7ed4ee16432067cc67a0a24fedc715
33107 Author: Kim Phillips <kim.phillips@freescale.com>
33108 Date:   Mon Dec 10 14:16:22 2007 -0600
33109
33110     mpc83xx: supress compiler warning
33111
33112     mpc8360emds.c: In function â€˜ft_board_setup’:
33113     mpc8360emds.c:335: warning: assignment discards qualifiers from pointer target type
33114     mpc8360emds.c:345: warning: assignment discards qualifiers from pointer target type
33115
33116     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33117
33118 commit c16e44fa835fb9eec982d919863a04e2f78e5ce7
33119 Author: Kim Phillips <kim.phillips@freescale.com>
33120 Date:   Tue Nov 27 14:17:29 2007 -0600
33121
33122     mpc83xx: fix remaining fdt_find_node_by_path references
33123
33124     rename to fdt_path_offset
33125
33126     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33127
33128 commit 921d4b19ad1be704df58725485d9292dc0414adf
33129 Author: Kim Phillips <kim.phillips@freescale.com>
33130 Date:   Mon Nov 19 12:30:09 2007 -0600
33131
33132     mpc83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions for 837x
33133
33134     Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for 837x.
33135     This change guarantees that the environment will be located on the
33136     first flash sector after the U-Boot image.
33137
33138     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33139
33140 commit 24f868433b50ecbaa88e118aadc7bd254013c6ae
33141 Author: Kim Phillips <kim.phillips@freescale.com>
33142 Date:   Fri Nov 9 14:28:08 2007 -0600
33143
33144     mpc83xx: mpc8360 rev.2.1 erratum 2: replace rgmii-id with rgmii-rxid
33145
33146     u-boot itself uses GMII mode on the 8360.  Fix up UCC phy-connection-type
33147     properties in the device tree so the PHY gets configured for internal delay on
33148     RX only by the OS, as prescribed by mpc8360 rev. 2.1 pb mds erratum #2.
33149
33150     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33151
33152 commit 22b448dbfbe2a98f01ff4adc3c3979f8c541ad7b
33153 Author: Dave Liu <r63238@freescale.com>
33154 Date:   Tue Sep 18 12:41:15 2007 +0800
33155
33156     mpc83xx: update the CREDITS and MAINTAINERS
33157
33158     update the CREDITS and MAINTAINERS.
33159
33160     Signed-off-by: Dave Liu <daveliu@freescale.com>
33161
33162 commit b21add4b42af7b767448251b599b91066a160e0d
33163 Author: Dave Liu <r63238@freescale.com>
33164 Date:   Tue Sep 18 12:40:21 2007 +0800
33165
33166     mpc83xx: add MAINTAINER and MAKEALL entries for the mpc837xemds
33167
33168     Add the MAINTAINER and MAKEALL entries for mpc837xemds
33169
33170     Signed-off-by: Dave Liu <daveliu@freescale.com>
33171
33172 commit f8900ce9094c462355eb792eea264ff16ac8fd16
33173 Author: Dave Liu <r63238@freescale.com>
33174 Date:   Tue Sep 18 12:38:53 2007 +0800
33175
33176     mpc83xx: Add the MPC837xEMDS board readme
33177
33178     Add the README.mpc837xemds to /doc
33179
33180     Signed-off-by: Dave Liu <daveliu@freescale.com>
33181
33182 commit 19580e660cc8da49f16536a8bd78c047c7bc12e5
33183 Author: Dave Liu <r63238@freescale.com>
33184 Date:   Tue Sep 18 12:37:57 2007 +0800
33185
33186     mpc83xx: Add the support of MPC837xEMDS board
33187
33188     The MPC837xEMDS board support:
33189     * DDR2 400MHz hardcoded and SPD init
33190     * Local bus NOR Flash
33191     * I2C, UART, MII and RTC
33192     * eTSEC RGMII
33193     * PCI host
33194
33195     Signed-off-by: Dave Liu <daveliu@freescale.com>
33196
33197 commit 555da61702771fe0f76f3de23b4e7590f3704161
33198 Author: Dave Liu <r63238@freescale.com>
33199 Date:   Tue Sep 18 12:36:58 2007 +0800
33200
33201     mpc83xx: Add the support of MPC8315E SoC
33202
33203     The MPC8315E SoC including e300c3 core and new IP blocks,
33204     such as TDM, PCI Express and SATA controller.
33205
33206     Signed-off-by: Dave Liu <daveliu@freescale.com>
33207
33208 commit 03051c3d35c9981ceaa059005660e699f3eacf1c
33209 Author: Dave Liu <r63238@freescale.com>
33210 Date:   Tue Sep 18 12:36:11 2007 +0800
33211
33212     mpc83xx: Add the support of MPC837x SoC
33213
33214     The MPC837x SoC including e300c4 core and new IP blocks,
33215     such as SDHC, PCI Express and SATA controller.
33216
33217     Signed-off-by: Dave Liu <daveliu@freescale.com>
33218
33219 commit 651d96f7e4c84adcdb98ef07ec878c20326e3359
33220 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
33221 Date:   Wed Nov 14 18:54:53 2007 +0300
33222
33223     MPC8360E-MDS: configure and enable second UART
33224
33225     Despite user manual, BCSR9.7 is negated (high) on HRST, so
33226     UART2 is disabled. Fix that and configure QE pins properly.
33227
33228     Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
33229
33230 commit b2893e1fcb28fad8c8b317104df8cee0142c7631
33231 Author: Timur Tabi <timur@freescale.com>
33232 Date:   Mon Nov 5 09:34:06 2007 -0600
33233
33234     83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions
33235
33236     Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for all of the
33237     currently-defined 83xx boards.  This change guarantees that the environment
33238     will be located on the first flash sector after the U-Boot image.
33239
33240     Signed-off-by: Timur Tabi <timur@freescale.com>
33241     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33242
33243 commit e05329516a13616b53240cd85b739217c2bf87f1
33244 Author: Larry Johnson <lrj@acm.org>
33245 Date:   Fri Jan 4 13:27:02 2008 -0500
33246
33247     ppc4xx: Remove weak binding from common Denali data-eye search code
33248
33249     Now that there are no board-specific versions of
33250     "denali_core_search_data_eye()", the weak binding on the common version
33251     can be removed.
33252
33253     Signed-off-by: Larry Johnson <lrj@acm.org>
33254
33255 commit 5ba576c01602fd328800a427964c36a0a05c5dce
33256 Author: Stefan Roese <sr@denx.de>
33257 Date:   Sat Jan 5 09:13:46 2008 +0100
33258
33259     ppc4xx: Remove unused CONFIG_ECC_ERROR_RESET from 44x_spd_ddr2.c
33260
33261     Signed-off-by: Stefan Roese <sr@denx.de>
33262
33263 commit 845c6c95dbfe6c915ce68a0a115852fa17932fb4
33264 Author: Stefan Roese <sr@denx.de>
33265 Date:   Sat Jan 5 09:12:41 2008 +0100
33266
33267     ppc4xx: Update Katmai/44x_spd_ddr2.c code for optimal DDR2 setup
33268
33269     On Katmai the complete auto-calibration somehow doesn't seem to
33270     produce the best results, meaning optimal values for RQFD/RFFD.
33271     This was discovered by GDA using a high bandwidth scope,
33272     analyzing the DDR2 signals. GDA provided a fixed value for RQFD,
33273     so now on Katmai "only" RFFD is auto-calibrated.
33274
33275     This patch also adds RDCC calibration as mentioned on page 7 of
33276     the AMCC PowerPC440SP/SPe DDR2 application note:
33277     "DDR1/DDR2 Initialization Sequence and Dynamic Tuning"
33278
33279     Signed-off-by: Stefan Roese <sr@denx.de>
33280
33281 commit 49db47b8ae6afff2b898be312948ff501357dc80
33282 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33283 Date:   Wed Jan 2 16:48:42 2008 +0100
33284
33285     ppc4xx: Remove sdram.h from PMC440 board
33286
33287     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33288
33289 commit 34065a2ce0d8972f2ec6652076014ab243d2ce8a
33290 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33291 Date:   Wed Jan 2 16:48:34 2008 +0100
33292
33293     ppc4xx: use common denali core defines and data eye search code for PMC440
33294
33295     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33296
33297 commit 9ac6b6f3d3f1b072d89268b2efe47e95e6659489
33298 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33299 Date:   Wed Jan 2 12:05:14 2008 +0100
33300
33301     ppc4xx: More cleanup for esd's LCD code
33302
33303     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33304
33305 commit fe9c26b330a21ce73e52b5bd347d725cb81e3cfb
33306 Author: Stefan Roese <sr@denx.de>
33307 Date:   Fri Jan 4 12:00:01 2008 +0100
33308
33309     ppc4xx: Fix Sequoia NAND booting target
33310
33311     The Sequoia NAND booting target now uses the recently extracted
33312     cpu/ppc4xx/denali_data_eye.c file too.
33313
33314     Signed-off-by: Stefan Roese <sr@denx.de>
33315
33316 commit 0ddd969aec532bd7eae30fc09590488a3aaa629a
33317 Author: Lawrence R. Johnson <lrj@acm.org>
33318 Date:   Thu Jan 3 15:02:02 2008 -0500
33319
33320     ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Korat board
33321
33322     Signed-off-by: Larry Johnson <lrj@acm.org>
33323
33324 commit b05e8bf58be9d8956fdfde3d8c8e87c140414663
33325 Author: Lawrence R. Johnson <lrj@acm.org>
33326 Date:   Fri Jan 4 02:11:56 2008 -0500
33327
33328     ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Sequoia board
33329
33330     Note: this patch changes the configuration of some GPIO registers:
33331
33332        Register      Old Value   New Value
33333     ---------------  ----------  ----------
33334     DCR GPIO0_TCR    0x0000000F  0x0000F0CF
33335     DCR GPIO0_TSRH   0x55005000  0x00000000
33336     DCR GPIO1_TCR    0xC2000000  0xE2000000
33337     DCR GPIO1_TSRL   0x0C000000  0x00200000
33338     DCR GPIO1_ISR2L  0x00050000  0x00110000
33339
33340     Signed-off-by: Larry Johnson <lrj@acm.org>
33341
33342 commit 5ab884b254ca2e707ab50545cd705f30108cf491
33343 Author: Lawrence R. Johnson <lrj@acm.org>
33344 Date:   Thu Jan 3 18:54:00 2008 -0500
33345
33346     ppc4xx: Add functionality to GPIO support
33347
33348     This patch makes two additions to GPIO support:
33349
33350     First, it adds function gpio_read_in_bit() to read the a bit from the
33351     GPIO Input Register (GPIOx_IR) in the same way that function
33352     gpio_read_out_bit() reads a bit from the GPIO Output Register
33353     (GPIOx_OR).
33354
33355     Second, it modifies function gpio_set_chip_configuration() to provide
33356     an additional option for configuring the GPIO from the
33357     "CFG_4xx_GPIO_TABLE".
33358
33359     According to the 440EPx User's Manual, when an alternate output is used,
33360     the three-state control is configured in one of two ways, depending on
33361     the particular output.  The first option is to select the corresponding
33362     alternate three-state control in the GPIOx_TRSH/L registers.  The second
33363     option is to select the GPIO Three-State Control Register (GPIOx_TCR) in
33364     the GPIOx_TRSH/L registers, and set the corresponding bit in the
33365     GPIOx_TCR register to enable the output.  For example, the Manual
33366     specifies configuring the GPIO00 Alternate 1 Signal (PreAddr07) to use
33367     the alternate three-state control (first option), and specifies
33368     configuring the GPIO32 Alternate 1 Signal (USB2OM0) with the output
33369     enabled in the GPIOx_TCR register (second option).
33370
33371     Currently, gpio_set_chip_configuration() configures all alternate signal
33372     outputs to use the first option.  This patch allow the second option to
33373     be selected by setting the "out_val" element in the table entry to
33374     "GPIO_OUT_1".  The first option is used when the "out_val" element is
33375     set to "GPIO_OUT_0".  Because "out_val" is not currently used when an
33376     alternate signal is selected, and because all current GPIO tables set
33377     "out_val" to "GPIO_OUT_0" for all alternate signals, this patch should
33378     not change any existing configurations.
33379
33380     Signed-off-by: Larry Johnson <lrj@acm.org>
33381
33382 commit 196404cdc1de495d6182e84731c200fc5748df15
33383 Author: Larry Johnson <lrj@arlinx.com>
33384 Date:   Sun Dec 30 01:01:54 2007 -0500
33385
33386     PPC4xx: Remove sdram.h from board/lwmon5
33387
33388     These definitions are now in "include/ppc440.h".
33389
33390     Signed-off-by: Larry Johnson <lrj@acm.org>
33391
33392 commit ef16fccf96e55eab93fe25d03ebe2e9b56e5332b
33393 Author: Larry Johnson <lrj@arlinx.com>
33394 Date:   Sun Dec 30 01:01:32 2007 -0500
33395
33396     PPC4xx: Use common code for LWMON5 board SDRAM support
33397
33398     This patch also modifies the functionality of the code so that the data-eye
33399     search is now done with with the cache disabled.
33400
33401     Signed-off-by: Larry Johnson <lrj@acm.org>
33402
33403 commit 62cc3951ab72135d9c101f1845b794e63a0fa189
33404 Author: Larry Johnson <lrj@arlinx.com>
33405 Date:   Sun Dec 30 01:01:14 2007 -0500
33406
33407     PPC4xx: Remove sdram.h from board/amcc/sequoia
33408
33409     These definitions are now in "include/ppc440.h".
33410
33411     Signed-off-by: Larry Johnson <lrj@acm.org>
33412
33413 commit ce3902e1765bbfb07cf5bbe98be9a68e3009996a
33414 Author: Larry Johnson <lrj@arlinx.com>
33415 Date:   Sun Dec 30 01:00:50 2007 -0500
33416
33417     PPC4xx: Use common code for Sequoia board SDRAM support
33418
33419     Signed-off-by: Larry Johnson <lrj@acm.org>
33420
33421 commit 8b0c5c127690335758100c25eaec2b84db97c101
33422 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33423 Date:   Thu Dec 27 16:58:41 2007 +0100
33424
33425     net: Add CONFIG_NET_DO_NOT_TRY_ANOTHER option
33426
33427     When CONFIG_NET_DO_NOT_TRY_ANOTHER is defined U-Boot's
33428     networking stack does not automatically switch to
33429     another interface. This patch does not touch the default
33430     behavior.
33431
33432     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33433     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33434
33435 commit 505be87a65e4f87ad7d8da1d57ea4dcd487d7e32
33436 Author: Upakul Barkakaty <upakul@gmail.com>
33437 Date:   Thu Nov 29 12:16:13 2007 +0530
33438
33439     NET: Proper return code handling in eth_init() function in file eth.c
33440
33441     This patch modifies the return code handling in the eth_init()
33442     function, to be compatible with the handling of the return codes in
33443     the other network stack files. It now returns a 0 on Success and -1 on
33444     error.
33445
33446     Signed-off-by: Upakul Barkakaty <upakul.barkakaty@conexant.com>
33447     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33448
33449 commit 5ca2d0953e4579a80810966cca2077e20d912c97
33450 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
33451 Date:   Mon Nov 19 20:27:04 2007 +0900
33452
33453     net/eth.c: Fix env_enetaddr signed overflow
33454
33455     Assigning the output of simple_strtoul(CB:A9:87:65:43:21) to `char', we are
33456     warned as below:
33457
33458       U-Boot 1.2.0 (Aug 30 2007 - 08:27:37)
33459
33460       DRAM:  256 MB
33461       Flash: 32 MB
33462       In:    serial
33463       Out:   serial
33464       Err:   serial
33465       Net:   NEC-Candy
33466       Warning: NEC-Candy MAC addresses don't match:
33467       Address in SROM is         00:00:4C:80:92:A2
33468       Address in environment is  FFFFFFCB:FFFFFFA9:FFFFFF87:65:43:21
33469
33470     This patch changes env_enetaddr type from `char' to `unsigned char'.
33471
33472     Cc: Masaki Ishikawa <ishikawa-masaki@cnt.mxe.nes.nec.co.jp>
33473     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
33474     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33475
33476 commit f85b60710571b37293d2233933b76e2aa3db5635
33477 Author: Rafal Jaworowski <raj@semihalf.com>
33478 Date:   Thu Dec 27 18:19:02 2007 +0100
33479
33480     Introduce new eth_receive routine
33481
33482     The purpose of this routine is receiving a single network frame, outside of
33483     U-Boot's NetLoop(). Exporting it to standalone programs that run on top of
33484     U-Boot will let them utilise networking facilities. For sending a raw frame
33485     the already existing eth_send() can be used.
33486
33487     The direct consumer of this routine is the newly introduced API layer for
33488     external applications (enabled with CONFIG_API).
33489
33490     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
33491     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
33492     Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33493
33494 commit 5c740711f0ea5b51414b341b71597c4a0751be74
33495 Author: Jon Loeliger <jdl@freescale.com>
33496 Date:   Thu Jan 3 10:41:04 2008 -0600
33497
33498     8610: Move include of config.h earlier.
33499
33500     Include config.h earlier in the set of #includes
33501     so as to avoid a incidental and duplicate definition
33502     of CFG_CACHELINE_SIZE.
33503
33504     Signed-off-by: Jon Loeliger
33505
33506 commit 61d3421bdea090bd0399b14c3e10a3bebcc8d5ff
33507 Author: Jon Loeliger <jdl@freescale.com>
33508 Date:   Tue Dec 4 10:53:34 2007 -0600
33509
33510     Don't slam #undef DEBUG in the 8641HPCN config file.
33511
33512     Doing so prevents it from being individually set
33513     and useful in other files.
33514
33515     Signed-off-by: Jon Loeliger <jdl@freescale.com>
33516
33517 commit ea9f7395ec362584e5e4f266bd0b0c4422cf6a4c
33518 Author: Jon Loeliger <jdl@freescale.com>
33519 Date:   Wed Nov 28 14:47:18 2007 -0600
33520
33521     Convert MPC8641HPCN to use libfdt.
33522
33523     Assumes the presence of the aliases node in the DTS to
33524     locate the ethernet, pci and serial nodes for fixups.
33525
33526     Use consistent fdtaddr and fdtfile in environment variables.
33527
33528     Signed-off-by: Jon Loeliger <jdl@freescale.com>
33529
33530 commit ce37422d0002e10490e268392e0c4e3028e52cec
33531 Author: Stefan Roese <sr@denx.de>
33532 Date:   Wed Jan 2 14:06:26 2008 +0100
33533
33534     cfi_flash: Fix bug in flash_isset() to use correct 32bit function
33535
33536     This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
33537     flash chips connected to a 32bit wide port.
33538
33539     Signed-off-by: Stefan Roese <sr@denx.de>
33540
33541 commit 1182e9f8e3b92fc372d64943293de53daa2e26cf
33542 Author: Wolfgang Denk <wd@denx.de>
33543 Date:   Wed Jan 2 15:58:44 2008 +0100
33544
33545     Fix compile problem introduced by "cleanup" commit 3dfd708c
33546
33547     Signed-off-by: Wolfgang Denk <wd@denx.de>
33548
33549 commit 1aaab9bfae0b3b2ee2b418c22c651280ee7b65c7
33550 Author: Wolfgang Denk <wd@denx.de>
33551 Date:   Wed Jan 2 15:54:45 2008 +0100
33552
33553     Make scripts and Makefiles POSIX compliant
33554
33555     The bash builtin versions of the "test" (resp. "[") command allow
33556     using "==" for string comparisons, but POSIX compatible implemen-
33557     tations (like /usr/bin/test) insist on using "=" only. On such systems
33558     you will see:
33559
33560         $ /usr/bin/test a == a && echo OK
33561         /usr/bin/test: ==: binary operator expected
33562
33563     This patch fixes Makefiles and scripts to use POSIX style.
33564
33565     Signed-off-by: Wolfgang Denk <wd@denx.de>
33566
33567 commit 47cc23cbe9a669c510183f4f049bf703ef445f3b
33568 Author: Stefan Roese <sr@denx.de>
33569 Date:   Wed Jan 2 14:05:37 2008 +0100
33570
33571     cfi_flash: Fix bug in flash_isset() to use correct 32bit function
33572
33573     This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
33574     flash chips connected to a 32bit wide port.
33575
33576     Signed-off-by: Stefan Roese <sr@denx.de>
33577
33578 commit 3dfd708cc1b2a966ad454ca9ed125dd17dbadbcc
33579 Author: Wolfgang Denk <wd@denx.de>
33580 Date:   Wed Jan 2 12:38:43 2008 +0100
33581
33582     Minor coding style cleanup.
33583
33584     Signed-off-by: Wolfgang Denk <wd@denx.de>
33585
33586 commit e174ac34adf5d5653df12bc3cf19c52063a71269
33587 Author: Stefan Roese <sr@denx.de>
33588 Date:   Fri Dec 28 17:29:56 2007 +0100
33589
33590     ppc4xx: Coding style cleanup
33591
33592     Signed-off-by: Stefan Roese <sr@denx.de>
33593
33594 commit 8ba132cab18ae438b6dd5b0214c28a8fc0d976e5
33595 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33596 Date:   Fri Dec 28 17:07:24 2007 +0100
33597
33598     ppc4xx: Complete PMC440 board support
33599
33600     This patch brings the PMC440 board configuration file.
33601     Finally it enables the PMC440 board support.
33602
33603     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33604
33605 commit 407843a582560fc5231299561ab3c2b6b6cd3397
33606 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33607 Date:   Fri Dec 28 17:07:18 2007 +0100
33608
33609     ppc4xx: Add FPGA support and BSP commands for PMC440 boards
33610
33611     This patch adds some BSP commands and FPGA booting support
33612     for esd's PMC440 boards.
33613
33614     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33615
33616 commit 72c5d52aedcce35e4b4fa5895605554825b6a76f
33617 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33618 Date:   Fri Dec 28 17:07:14 2007 +0100
33619
33620     ppc4xx: Add initial esd PMC440 board files
33621
33622     This patch adds the first files for the new esd PMC440 boards.
33623     The next two patches will complete the PMC440 board support.
33624
33625     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33626
33627 commit f6e0f1f61896ce7729ba1bcea2ffbd138d3947f5
33628 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33629 Date:   Fri Dec 28 17:10:36 2007 +0100
33630
33631     ppc4xx: Add EEPROM write protection for PLU405 boards + misc. updates
33632
33633     - add EEPROM write protection for esd PLU405 boards.
33634     - initialize NAND GPIOs
33635     - use correct io accessors
33636     - cleanup
33637
33638     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33639
33640 commit 77660c4b59055d621d2a8595bd4c18bb277268fc
33641 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33642 Date:   Fri Dec 28 17:10:44 2007 +0100
33643
33644     ppc4xx: use correct io accessors for esd's LCD code
33645
33646     This patch fixes esd's LCD dectection code to work correctly with
33647     newer gcc versions.
33648
33649     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33650
33651 commit b56bd0fcfc1c73db722e3462c8a9bf607ba7775e
33652 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33653 Date:   Fri Dec 28 17:10:42 2007 +0100
33654
33655     ppc4xx: Maintenance patch for VOH405 boards
33656
33657     - add EEPROM write protection
33658     - initialize NAND GPIOs
33659     - use correct io accessors
33660     - slow down I2C clock to 100kHz
33661     - enable ext. I2C bus
33662     - cleanup
33663
33664     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33665
33666 commit c05569066dbcba3fdf36d4d1943df265dc316a86
33667 Author: Stefan Roese <sr@denx.de>
33668 Date:   Fri Dec 28 16:08:08 2007 +0100
33669
33670     ppc4xx: Enable 405EP PCI arbiter per default on all boards
33671
33672     In an attmemt to clean up the 4xx start.S file, I removed the enabling
33673     of the internal 405EP PCI arbiter. This is needed for multiple other
33674     405EP platforms, like most of the esd 405EP. Now the internal PCI
33675     arbiter is enabled again per default as it has been before.
33676
33677     Signed-off-by: Stefan Roese <sr@denx.de>
33678     Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33679
33680 commit bec9264616fb78273a1d93e87ff4b0b67c7bec1b
33681 Author: Stefan Roese <sr@denx.de>
33682 Date:   Fri Dec 28 15:53:46 2007 +0100
33683
33684     ppc4xx: Fix bug in cpu_init.c (405EP instead of 450EP)
33685
33686     Signed-off-by: Stefan Roese <sr@denx.de>
33687     Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33688
33689 commit fb83a65c60ab5ca12358b75f1257e5eee6cdbf79
33690 Author: Stefan Roese <sr@denx.de>
33691 Date:   Fri Dec 28 06:06:04 2007 +0100
33692
33693     ppc4xx: Fix compilation problem of kilauea/haleakala nand booting target
33694
33695     Use correct link to nand_ecc now located in drivers/mtd/nand/ for the
33696     platforms mentioned above.
33697
33698     Signed-off-by: Stefan Roese <sr@denx.de>
33699
33700 commit b568fd25574181a3b12ae3d66b2913903442cb83
33701 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33702 Date:   Thu Dec 27 17:03:46 2007 +0100
33703
33704     Remove CPCI440 board
33705
33706     This board never left prototyping state and it
33707     became a millstone round my neck. So remove it.
33708
33709     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33710
33711 commit c591dffe0cbacd896ccbad06011fe6d6afa080da
33712 Author: Larry Johnson <lrj@arlinx.com>
33713 Date:   Thu Dec 27 11:28:51 2007 -0500
33714
33715     Add support for Korat PPC440EPx board
33716
33717     These patches add support for the PPC440EPx-based "Korat" board to
33718     U-Boot.  They are based primarily on support for the Sequoia board.
33719
33720     Signed-off-by: Larry Johnson <lrj@acm.org>
33721
33722 commit 87dc096829e6a6363f4fdd73653b0093a85adbe0
33723 Author: Larry Johnson <lrj@arlinx.com>
33724 Date:   Sat Dec 22 15:16:25 2007 -0500
33725
33726     Add configuration file for Korat board
33727
33728     This patch supplies the configuration file for the Korat PPC440EPx-
33729     processor board.
33730
33731     Signed-off-by: Larry Johnson <lrj@acm.org>
33732
33733 commit 8eb52d5d982b764b39c88d9d1064d56c5397bfa5
33734 Author: Larry Johnson <lrj@arlinx.com>
33735 Date:   Sat Dec 22 15:16:11 2007 -0500
33736
33737     Add denali_data_eye.o and denali_spd_ddr2.o to PPC4xx Makefile
33738
33739     Signed-off-by: Larry Johnson <lrj@acm.org>
33740
33741 commit aba19604d848b2838cfb9ebe818909e6a216058e
33742 Author: Larry Johnson <lrj@arlinx.com>
33743 Date:   Thu Dec 27 10:54:48 2007 -0500
33744
33745     Add 440EPx DDR2 SPD DIMM support
33746
33747     This patch adds SPD DDR2 support for the 440EPx ("Denali") SDRAM
33748     controller.  It should also work on the 440GRx.  It is based on the DDR2
33749     SPD code for the 440EP/440EPx, but makes no provision for DDR1 support.
33750
33751     This code has been tested on prototype Korat boards with three Kingston
33752     DIMMS: 512 MiB ECC (one rank), 512 MiB non-ECC (one rank) and 1 GiB ECC
33753     (two ranks).  The Korat board has a single DIMM socket, but support has
33754     been provided (though not tested) for boards with two DIMM sockets.
33755
33756     Signed-off-by: Larry Johnson <lrj@acm.org>
33757
33758 commit 8a24a6963002cb867d5a6b70e3560f0b1467f55f
33759 Author: Larry Johnson <lrj@arlinx.com>
33760 Date:   Sat Dec 22 15:15:30 2007 -0500
33761
33762     Copy 440EPx/GRx SDRAM data-eye search to common directory
33763
33764     This patch creates a non-board-specific file for performing the SDRAM
33765     data-eye search.  It also adds ECC error checking to the test of valid
33766     data on readback when ECC is enabled.
33767
33768     Signed-off-by: Larry Johnson <lrj@acm.org>
33769
33770 commit c46f53333b22b1f9098676bea8884fc7db820cf3
33771 Author: Larry Johnson <lrj@arlinx.com>
33772 Date:   Sat Dec 22 15:15:13 2007 -0500
33773
33774     Add definitions for 440EPx/GRx SDRAM controller to ppc440.h
33775
33776     This patch adds the Denali SDRAM controller definitions to "ppc440.h".
33777     It also fixes two typos in the definitions, so the board-specific
33778     "sdram.h" files containing these definitions are also fixed to avoid
33779     compiler warnings.
33780
33781     Signed-off-by: Larry Johnson <lrj@acm.org>
33782
33783 commit c348578bf612d0c56d8d376d23cae16defbd86af
33784 Author: Larry Johnson <lrj@arlinx.com>
33785 Date:   Thu Dec 27 10:50:55 2007 -0500
33786
33787     Add Ethernet 1000BASE-X support for PPC4xx
33788
33789     This patch adds a new switch: "CONFIG_PHY_DYNAMIC_ANEG".  When this symbol
33790     is defined, the PHY will advertise it's capabilities for autonegotiation
33791     based on the capabilities shown in the PHY's status registers, including
33792     1000BASE-X.  When "CONFIG_PHY_DYNAMIC_ANEG" is not defined, the PHY will
33793     advertise hard-coded capabilities, as before.
33794
33795     Signed-off-by: Larry Johnson <lrj@acm.org>
33796
33797 commit 9e2c347151db5ae8acf5f18b99493cd53e6637e3
33798 Author: Larry Johnson <lrj@arlinx.com>
33799 Date:   Thu Dec 27 09:52:17 2007 -0500
33800
33801     Add driver for National Semiconductor LM73 temperature sensor
33802
33803     This driver is based on the driver for the LM75.
33804
33805     Signed-off-by: Larry Johnson <lrj@acm.org>
33806
33807 commit 12618278688ea9b3d76536960a5ad2e3790fac40
33808 Author: Larry Johnson <lrj@arlinx.com>
33809 Date:   Sat Dec 22 15:14:00 2007 -0500
33810
33811     Add driver for STMicroelectronics M41T60 RTC
33812
33813     This driver is based on the driver for the M41T11.  In the intended
33814     application, the RTC will be powered by a large capacitor, rather than a
33815     battery.  The driver therefore checks to see whether the RTC has lost
33816     power.  The chip's OUT bit is normally reset from its power-up state.  If
33817     the OUT bit is read as set, or if the date and time are not valid, then the
33818     RTC is assumed to have lost power, and its date and time are reset to
33819     1900-01-01 00:00:00.
33820
33821     Support for adjusting the speed of the clock to improve accuracy is
33822     provided through an environment variable.
33823
33824     Signed-off-by: Larry Johnson <lrj@acm.org>
33825
33826 commit d3471173e14b7544bb60339eda8d3d3906694b0a
33827 Author: Larry Johnson <lrj@arlinx.com>
33828 Date:   Sat Dec 22 15:34:39 2007 -0500
33829
33830     Use out_be32() and friends to access memory-mapped registers in sequoia.c
33831
33832     Signed-off-by: Larry Johnson <lrj@acm.org>
33833
33834 commit c68f59fe3ec16769f82b5fca7421983c336d3aac
33835 Author: Larry Johnson <lrj@arlinx.com>
33836 Date:   Sat Dec 22 15:34:20 2007 -0500
33837
33838     Use definitions from "asm-ppc/mmu.h" in init.S for Sequoia
33839
33840     Signed-off-by: Larry Johnson <lrj@acm.org>
33841
33842 commit 0d9cdeac1d3fa8d62ed7d883acc950c364f5bda8
33843 Author: Larry Johnson <lrj@arlinx.com>
33844 Date:   Sat Dec 22 15:23:50 2007 -0500
33845
33846     Cosmetic changes to ECC POST for AMCC Denali core
33847
33848     Signed-off-by: Larry Johnson <lrj@acm.org>
33849
33850 commit 2e583d6c81034f80a267b89fa55498ae063ccef1
33851 Author: Stefan Roese <sr@denx.de>
33852 Date:   Wed Dec 26 20:20:19 2007 +0100
33853
33854     ppc4xx: Fix compilation problem in 405 cache POST test
33855
33856     Signed-off-by: Stefan Roese <sr@denx.de>
33857
33858 commit 42d55ea0bde06e47d5a3b49b0d91002acd8e5708
33859 Author: Stefan Roese <sr@denx.de>
33860 Date:   Sat Dec 22 12:20:09 2007 +0100
33861
33862     ppc4xx: Move virtual address of POST cache test to bigger address
33863
33864     On Sequoia & LWMON5 the virtual address of the POST cache test is now
33865     moved to a bigger address. This enables usage of more memory on those
33866     boards.
33867
33868     Signed-off-by: Stefan Roese <sr@denx.de>
33869
33870 commit d91722102cf63f77a0148ed3f3d54a26d87575e9
33871 Author: Stefan Roese <sr@denx.de>
33872 Date:   Sat Dec 22 12:18:26 2007 +0100
33873
33874     ppc4xx: Fix problem in 44x cache POST routine
33875
33876     As repoted by Larry Johnson, running "diag run cache" caused a crash
33877     in U-Boot. This problem was introduced by a patch that removed the
33878     TLB entry for the cache test after the test has completed. Since this
33879     TLB was only setup once, a 2nd attempt to run this cache test
33880     failed with a crash. Now this TLB entry is created every time the
33881     routine is called.
33882
33883     Signed-off-by: Stefan Roese <sr@denx.de>
33884
33885 commit b0265b576bb8fa9465f99e99c323768b562fadc2
33886 Author: Stefan Roese <sr@denx.de>
33887 Date:   Fri Dec 21 07:51:29 2007 +0100
33888
33889     ppc4xx: Update Makalu fdt support
33890
33891     Signed-off-by: Stefan Roese <sr@denx.de>
33892
33893 commit bf8324e4a50758daff8cddd04c6a2ff8ed775bea
33894 Author: Stefan Roese <sr@denx.de>
33895 Date:   Wed Dec 19 09:05:40 2007 +0100
33896
33897     ppc4xx: Add fdt support to AMCC Katmai eval board
33898
33899     Signed-off-by: Stefan Roese <sr@denx.de>
33900
33901 commit 328a340392a5df9aaf00792be989df73e750859e
33902 Author: Stefan Roese <sr@denx.de>
33903 Date:   Tue Dec 18 08:44:51 2007 +0100
33904
33905     ppc4xx: fdt: Cleanup setup of cpu node setup
33906
33907     Now the cpu node setup ("timebase-frequency" and "clock-frequency") is
33908     without using the absolute path to the cpu node. This makes it possible
33909     to use this U-Boot version with both versions of cpu-node naming
33910     "cpu@0" and the former "PowerPC,440EPx@0".
33911
33912     Signed-off-by: Stefan Roese <sr@denx.de>
33913
33914 commit 7812bc4a2e2436ebbc0ce5b4e99c1dfc2e77eb5b
33915 Author: Stefan Roese <sr@denx.de>
33916 Date:   Mon Dec 17 17:26:21 2007 +0100
33917
33918     ppc4xx: Fix lwmon5 compilation problem
33919
33920     Now that the 440EPx ECC test is not board specific anymore
33921     remove this Makefile.
33922
33923     Signed-off-by: Stefan Roese <sr@denx.de>
33924
33925 commit 42ed33ffe135f618680f9d6e9712eb35a85bcb62
33926 Author: Anatolij Gustschin <agustschin@t-online.de>
33927 Date:   Wed Dec 5 17:43:20 2007 +0100
33928
33929     Fix ppc4xx clear_bss() code
33930
33931     ppc4xx clear_bss() fails if BSS segment size is not
33932     divisible by 4 without remainder. This patch provides
33933     fix for this problem.
33934
33935     Signed-off-by: Anatolij Gustschin <agust@denx.de>
33936
33937 commit 85dc2a7f82d11e17f0ca2a448118aed7f7a4b85d
33938 Author: Niklaus Giger <niklausgiger@gmx.ch>
33939 Date:   Fri Nov 30 18:35:11 2007 +0100
33940
33941     PPC4xx: Minimal changes to add vxWorks support
33942
33943     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
33944
33945 commit 052440b022ca8981d39b6f8c10d1aa6326f47480
33946 Author: Markus Klotzbücher <mk@denx.de>
33947 Date:   Fri Nov 23 13:09:18 2007 +0100
33948
33949     ppc4xx: Add CONFIG_BOOTP_SUBNETMASK to Sequoia board config
33950
33951     When using dhcp/bootp the "netmask" environment variable is not
33952     set because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
33953     desireable, so the following patch adds this this option to the board
33954     config.
33955
33956     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
33957     Signed-off-by: Stefan Roese <sr@denx.de>
33958
33959 commit a724a9b40c7fbeb6ade193ca52321b441eaecb4e
33960 Author: Larry Johnson <lrj@arlinx.com>
33961 Date:   Sat Oct 27 12:48:15 2007 -0400
33962
33963     Fix/enhance ECC POST for 440EPx/GRx
33964
33965     This patch allows the ECC POST to be used for different boards with the
33966     PPC440 Denali SDRAM controller.  Modifications include skipping the test
33967     if ECC is not enabled (as for non-ECC DIMMs) and adding synchronization
33968     to prevent timing errors.
33969
33970     Signed-off-by: Larry Johnson <lrj@acm.org>
33971
33972 commit 454a6cf8d498f70d2b3e18f07837603eb24b12d4
33973 Author: Larry Johnson <lrj@arlinx.com>
33974 Date:   Sat Oct 27 12:48:05 2007 -0400
33975
33976     PPC4xx: Move/rename ECC POST for 440EPx/GRx
33977
33978     Signed-off-by: Larry Johnson <lrj@acm.org>
33979
33980 commit c29d2d3680046d430022c55e50fcb27f5866517e
33981 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33982 Date:   Fri Dec 14 11:20:33 2007 +0100
33983
33984     ppc4xx: use correct io accessors for 4xx ethernet POST
33985
33986     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33987
33988 commit ba79fde58a48c0a6ff8e2a96caba951594142203
33989 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33990 Date:   Fri Dec 14 11:19:56 2007 +0100
33991
33992     ppc4xx: fix flush + invalidate_dcache_range arguments
33993
33994     flush + invalidate_dcache_range() expect the start and stop+1 address.
33995     So the stop address is the first address behind (!) the range.
33996
33997     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33998
33999 commit 871e6ce188a7c6bc7321bcf8372857035d20f1cd
34000 Author: Stefan Roese <sr@denx.de>
34001 Date:   Fri Dec 14 08:41:29 2007 +0100
34002
34003     ppc4xx: fdt: use fdt_fixup_ethernet()
34004
34005     By using aliases in the dts file, the ethernet node fixup is
34006     much easier with the recently added functions.
34007
34008     Please note that the dts file needs the aliases for this to work.
34009
34010     Signed-off-by: Stefan Roese <sr@denx.de>
34011
34012 commit 136288847e3b04f2ff357a067ad45e10afa0a24c
34013 Author: Stefan Roese <sr@denx.de>
34014 Date:   Thu Dec 13 14:52:53 2007 +0100
34015
34016     ppc4xx: Bring 4xx fdt support up-to-date
34017
34018     This patch update the 4xx fdt support. It enabled fdt booting
34019     on the AMCC Kilauea and Sequoia for now. More can follow later
34020     quite easily.
34021
34022     Signed-off-by: Stefan Roese <sr@denx.de>
34023
34024 commit 0dc80e2759fba859ccc4cdadc633577ca2971f3e
34025 Author: Stefan Roese <sr@denx.de>
34026 Date:   Thu Dec 27 07:50:54 2007 +0100
34027
34028     cfi_flash: Add missing check for erased dest to flash_write_cfibuffer()
34029
34030     The check for an sufficiently erased destination was missing in the
34031     buffered write function of the cfi flash driver (when
34032     CFG_FLASH_USE_BUFFER_WRITE is defined). This patch adds this check to that
34033     writing to such a region will fail with the currect error message.
34034
34035     Signed-off-by: Stefan Roese <sr@denx.de>
34036
34037 commit 33ed73bc0e38d0f2b5c183d4629d8f207e5b9994
34038 Author: Martin Krause <martin.krause@tqs.de>
34039 Date:   Mon Nov 12 10:56:17 2007 +0100
34040
34041     Some configuration updates for the TQM5200 based TB5200 board:
34042
34043     - enable command line history
34044     - increase malloc space (because of bigger flash sectors)
34045
34046     Signed-off-by: Martin Krause <martin.krause@tqs.de>
34047
34048 commit e318d9e9021a0af7508171f84ed09d0e79f0284e
34049 Author: Martin Krause <martin.krause@tqs.de>
34050 Date:   Thu Sep 27 11:10:08 2007 +0200
34051
34052     TQM8xx: use the CFI flash driver on all TQM8xx boards
34053
34054     Signed-off-by: Martin Krause <martin.krause@tqs.de>
34055
34056 commit 11d9eec479b470eab9242ab937fca70a876d9376
34057 Author: Martin Krause <martin.krause@tqs.de>
34058 Date:   Wed Sep 26 17:55:56 2007 +0200
34059
34060     TQM885D: adjust for doubled flash sector size + some minor fixes
34061
34062     Signed-off-by: Martin Krause <martin.krause@tqs.de>
34063
34064 commit 22d1a56cbfb0bff34f477b4db6a55d076d829b83
34065 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
34066 Date:   Wed Sep 26 17:55:54 2007 +0200
34067
34068     TQM885D: Exchanged SDRAM timing by a more relaxed timing.
34069
34070     CAS-Latency=2, Write Recovery Time tWR=2
34071     The max. supported bus frequency is 66 MHz. Therefore, changed
34072     threshold to switch from 1:1 mode to 2:1 from 80 MHz to 66 MHz.
34073
34074     Signed-off-by: Martin Krause <martin.krause@tqs.de>
34075
34076 commit b988b8cd443989be65161888eea0127ad03f846f
34077 Author: Martin Krause <martin.krause@tqs.de>
34078 Date:   Wed Sep 26 17:55:56 2007 +0200
34079
34080     TQM885D: use calculated cpuclk instead of measuring it
34081
34082     On the TQM885D the measurement of cpuclk with the PIT reference
34083     timer ist not necessary. Since all module variants use the same
34084     external 10 MHz oscillator, the cpuclk only depends on the PLL
34085     configuration - which is readable by software.
34086
34087     Signed-off-by: Martin Krause <martin.krause@tqs.de>
34088
34089 commit 492c7049869348d31168de8dad89651315e468e0
34090 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
34091 Date:   Thu Sep 27 14:54:46 2007 +0200
34092
34093     TQM885D: fix SDRAM refresh
34094
34095     At 133 MHz the current SDRAM refresh rate is too fast
34096     (measured 4 * 1.17 us).
34097     CFG_MAMR_PTA changes from 39 to 128. This result
34098     in a refresh rate of 4 * 7.8 us at the default clock
34099     66 MHz. At 133 MHz the value will be then 4 * 3.8 us.
34100     This is a compromise until a new method is found to
34101     adjust the refresh rate.
34102
34103     Signed-off-by: Martin Krause <martin.krause@tqs.de>
34104
34105 commit dabad4b9bc46908e301f73ce76b38b23626a96e9
34106 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
34107 Date:   Thu Sep 27 14:54:46 2007 +0200
34108
34109     TQM860M: Support for 10col SDRAMs, max. 128 MiB
34110
34111     Signed-off-by: Martin Krause <martin.krause@tqs.de>
34112
34113 commit 61fb15c516fef5631e305f1976d7b3a679725856
34114 Author: Wolfgang Denk <wd@denx.de>
34115 Date:   Thu Dec 27 01:52:50 2007 +0100
34116
34117     Fix coding style issues; update CHANGELOG.
34118
34119     Signed-off-by: Wolfgang Denk <wd@denx.de>
34120
34121 commit 467bcee11fe26ad422f2de971aa70866079870f2
34122 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34123 Date:   Fri Dec 14 15:36:18 2007 +0100
34124
34125     cfi_flash: Add manufacturer-specific fixups
34126
34127     Run fixups based on the JEDEC manufacturer ID independent of the
34128     command set ID.
34129
34130     This changes current behaviour: Previously, geometry reversal for AMD
34131     chips were done based on the command set ID, while they are now done
34132     based on the JEDEC manufacturer and device ID.
34133
34134     Also add fixup for top-boot Atmel chips. A fixup is needed for
34135     AT49BV6416(T) too, but since u-boot currently only reads the low byte
34136     of the device ID, there's no way to tell it apart from AT49BV642D,
34137     which should not have this fixup. Since AT49BV642D support is
34138     necessary to get ATNGW100 board support into mainline, I've commented
34139     out the fixup for now.
34140
34141     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34142
34143 commit 0ddf06ddf6b4bd057ad4c5f0dffea7870ba06a2a
34144 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34145 Date:   Fri Dec 14 15:36:17 2007 +0100
34146
34147     cfi_flash: Add cmdset-specific init functions
34148
34149     Move things like reading JEDEC IDs and fixing up geometry reversal
34150     into separate functions. The geometry reversal fixup is now performed
34151     by altering the qry structure directly, which makes the sector init
34152     code slightly cleaner.
34153
34154     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34155
34156 commit e23741f4a6d8047520ef0d4971762749b3587d32
34157 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34158 Date:   Fri Dec 14 15:36:16 2007 +0100
34159
34160     cfi_flash: Read whole QRY structure in one go
34161
34162     Read out the whole CFI Standard Query structure after successful cfi
34163     identification. This allows subsequent code to access this information
34164     directly without having to go through flash_read_uchar() and friends.
34165
34166     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34167
34168 commit df9c25ea04b38a0e05d4f8c73c5cc144cdafa7db
34169 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34170 Date:   Mon Dec 17 11:02:44 2007 +0100
34171
34172     AVR32: Fix logic inversion in disable_interrupts()
34173
34174     disable_interrupts() should return nonzero if interrupts were
34175     _enabled_ before, not disabled.
34176
34177     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34178
34179 commit acac475212cbedb17b321a363a1c878e2b47b37f
34180 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34181 Date:   Fri Dec 14 16:51:22 2007 +0100
34182
34183     AVR32: Enable interrupts at bootup
34184
34185     The timer code depends on the timer interrupt to keep track of the
34186     upper 32 bits of the cycle counter. This obviously doesn't work when
34187     interrupts are disabled the whole time.
34188
34189     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34190
34191 commit 9570bcd87f4db255514f43b6701746c412f8fef0
34192 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34193 Date:   Thu Nov 15 10:03:45 2007 +0100
34194
34195     AVR32: Fix wrong pin setup for USART3
34196
34197     As reported by Gerhard Berghofer:
34198
34199     in "gpio_enable_usart3" the correct pins for USART 3 are PB17 and PB18
34200     instead of PB18 and PB19.
34201
34202     which is obviously correct. There's currently no code that uses
34203     USART3, but custom boards may run into problems.
34204
34205     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34206
34207 commit 09ea0de03dcc3ee7af045b0b572227bda2c1c918
34208 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34209 Date:   Thu Nov 1 12:44:20 2007 +0100
34210
34211     README: Remove ATSTK1000 daughterboard list
34212
34213     As noted by Kim Phillips, these lists tend to become out of date.
34214
34215     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34216
34217 commit c81cbbad21cb0ae983e2e796211202234cdc8be2
34218 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34219 Date:   Tue Oct 30 14:56:36 2007 +0100
34220
34221     Add ATSTK100[234] to MAINTAINERS
34222
34223     Add all the ATSTK1000 daughterboards to MAINTAINERS along with their
34224     "mother". Also update the entry for ATSTK1000 to be not only about the
34225     AP7000 CPU; it's intended to handle all CPUs in the AT32AP family.
34226
34227     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34228
34229 commit 64ff2357b1727213803591813dbc779c924bf772
34230 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34231 Date:   Mon Oct 29 13:02:54 2007 +0100
34232
34233     AVR32: Add support for the ATSTK1004 board
34234
34235     ATSTK1004 is a daughterboard for ATSTK1000 with the AT32AP7002 CPU,
34236     which is a derivative of AT32AP7000.
34237
34238     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34239
34240 commit 667568db157f374b85abd7e03596ddd1f0b25681
34241 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34242 Date:   Mon Oct 29 13:02:54 2007 +0100
34243
34244     AVR32: Add support for the ATSTK1003 board
34245
34246     ATSTK1003 is a daughterboard for ATSTK1000 with the AT32AP7001 CPU,
34247     which is a derivative of AT32AP7000.
34248
34249     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34250
34251 commit 5fee84a794a51ec830548cda485a770efb018b92
34252 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34253 Date:   Mon Oct 29 13:23:33 2007 +0100
34254
34255     AVR32: Make some AT32AP700x peripherals optional
34256
34257     Add a chip-features file providing definitions of the form
34258
34259     AT32AP700x_CHIP_HAS_<peripheral>
34260
34261     to indicate the availability of the given peripheral on the currently
34262     selected chip.
34263
34264     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34265
34266 commit 36f28f8a9605ee5dcfa330482cfc62171261af97
34267 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34268 Date:   Mon Oct 29 13:09:56 2007 +0100
34269
34270     AVR32: Rename at32ap7000 -> at32ap700x
34271
34272     The SoC-specific code for all the AT32AP700x CPUs is practically
34273     identical; the only difference is that some chips have less features
34274     than others. By doing this rename, we can add support for the AP7000
34275     derivatives simply by making some features conditional.
34276
34277     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34278
34279 commit 4d5fa99c73f354e7cf985efcf417ea55ca2f6a5e
34280 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34281 Date:   Fri Jun 29 18:22:34 2007 +0200
34282
34283     atmel_mci: Show SR when block read fails
34284
34285     Show controller status as well as card status when an error occurs
34286     during block read.
34287
34288     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34289
34290 commit 8697e6a19b10f514511b6a9c86de88bd108c4f8d
34291 Author: Stefan Roese <sr@denx.de>
34292 Date:   Thu Dec 13 14:52:53 2007 +0100
34293
34294     ppc4xx: Bring 4xx fdt support up-to-date
34295
34296     This patch update the 4xx fdt support. It enabled fdt booting
34297     on the AMCC Kilauea and Sequoia for now. More can follow later
34298     quite easily.
34299
34300     Signed-off-by: Stefan Roese <sr@denx.de>
34301
34302 commit 12d30aa79779c2aa7a998bbae4c075f822a53004
34303 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34304 Date:   Thu Dec 13 12:56:34 2007 +0100
34305
34306     cfi_flash: Use map_physmem() and unmap_physmem()
34307
34308     Use map_physmem() and unmap_physmem() to convert from physical to
34309     virtual addresses. This gives the arch a chance to provide an uncached
34310     mapping for flash accesses.
34311
34312     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34313
34314 commit 4d7d6936eb29af7cca330937808312aa5f61454d
34315 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34316 Date:   Thu Dec 13 12:56:33 2007 +0100
34317
34318     Introduce map_physmem() and unmap_physmem()
34319
34320     map_physmem() returns a virtual address which can be used to access a
34321     given physical address without involving the cache. unmap_physmem()
34322     should be called when the virtual address returned by map_physmem() is
34323     no longer needed.
34324
34325     This patch adds a stub implementation which simply returns the
34326     physical address cast to a uchar * for all architectures except AVR32,
34327     which converts the physical address to an uncached virtual mapping.
34328     unmap_physmem() is a no-op on all architectures, but if any
34329     architecture needs to do such mappings through the TLB, this is the
34330     hook where those TLB entries can be invalidated.
34331
34332     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34333
34334 commit cdbaefb5f5f03e54455d0439dcf6dbd97ead1f9d
34335 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34336 Date:   Thu Dec 13 12:56:32 2007 +0100
34337
34338     cfi_flash: Introduce read and write accessors
34339
34340     Introduce flash_read{8,16,32,64) and flash_write{8,16,32,64} and use
34341     them to access the flash memory. This makes it clearer when the flash
34342     is actually being accessed; merely dereferencing a volatile pointer
34343     looks just like any other kind of access.
34344
34345     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34346
34347 commit 812711ce6b3a386125dcf0d6a59588e461abbb87
34348 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34349 Date:   Thu Dec 13 12:56:31 2007 +0100
34350
34351     Implement __raw_{read,write}[bwl] on all architectures
34352
34353     This adds implementations of __raw_read[bwl] and __raw_write[bwl] to
34354     m68k, ppc, nios and nios2. The m68k and ppc implementations were taken
34355     from Linux.
34356
34357     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34358
34359 commit be60a9021c82fc5aecd5b2b1fc96f70a9c81bbcd
34360 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34361 Date:   Sat Oct 6 18:55:36 2007 +0200
34362
34363     cfi_flash: Reorder functions and eliminate extra prototypes
34364
34365     Reorder the functions in cfi_flash.c so that each function only uses
34366     functions that have been defined before it. This allows the static
34367     prototype declarations near the top to be eliminated and might allow
34368     gcc to do a better job inlining functions.
34369
34370     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34371
34372 commit 3055793bcbdf24b1f8117f606ffb766d32eb766f
34373 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34374 Date:   Thu Dec 13 12:56:29 2007 +0100
34375
34376     cfi_flash: Make some needlessly global functions static
34377
34378     Make functions not declared in any header file static.
34379
34380     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34381
34382 commit 7e5b9b471518c5652febc68ba62b432193d6abf4
34383 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
34384 Date:   Thu Dec 13 12:56:28 2007 +0100
34385
34386     cfi_flash: Break long lines
34387
34388     This patch tries to keep all lines in the cfi_flash driver below 80
34389     columns. There are a few lines left which don't fit this requirement
34390     because I couldn't find any trivial way to break them (i.e. it would
34391     take some restructuring, which I intend to do in a later patch.)
34392
34393     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34394
34395 commit 42026c9cb3a76849b41e6e24abfb7b56807a5c1a
34396 Author: Bartlomiej Sieka <tur@semihalf.com>
34397 Date:   Tue Dec 11 13:59:57 2007 +0100
34398
34399     CFI: synchronize command offsets with Linux CFI driver
34400
34401     Fixes non-working CFI Flash on the Inka4x0 board.
34402
34403     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
34404
34405 commit 8ff3de61fc5f9b3b21647bce081a3b7f710f0d4d
34406 Author: Kumar Gala <galak@kernel.crashing.org>
34407 Date:   Fri Dec 7 12:17:34 2007 -0600
34408
34409     Handle MPC85xx PCIe reset errata (PCI-Ex 38)
34410
34411     On the MPC85xx boards that have PCIe enable the PCIe errata fix.
34412     (MPC8544DS, MPC8548CDS, MPC8568MDS).
34413
34414     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34415
34416 commit 82ac8c97145a4c3bf8b3dbfad00fa96e920f9b9c
34417 Author: Kumar Gala <galak@kernel.crashing.org>
34418 Date:   Fri Dec 7 12:04:30 2007 -0600
34419
34420     Update Freescale MPC85xx ADS/CDS/MDS board config
34421
34422     * Enabled CONFIG_CMD_ELF
34423
34424     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34425
34426 commit d435793229ce29a42797c1edc39f5b34f987f91a
34427 Author: Kumar Gala <galak@kernel.crashing.org>
34428 Date:   Fri Dec 7 04:59:26 2007 -0600
34429
34430     Handle Asynchronous DDR clock on 85xx
34431
34432     The MPC8572 introduces the concept of an asynchronous DDR clock with
34433     regards to the platform clock.
34434
34435     Introduce get_ddr_freq() to report the DDR freq regardless of sync/async
34436     mode.
34437
34438     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34439
34440 commit 22abb2d2eaf7b795a6923c6273ec9cb53fda9a10
34441 Author: Kumar Gala <galak@kernel.crashing.org>
34442 Date:   Thu Nov 29 10:34:28 2007 -0600
34443
34444     Update Freescale MPC85xx ADS/CDS/MDS board config
34445
34446     * Removed some misc environment setup
34447     * Enabled CONFIG_CMDLINE_EDITING
34448
34449     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34450
34451 commit 415a613babb84d5e5d5b42e8e553868c71fc3a64
34452 Author: Kumar Gala <galak@kernel.crashing.org>
34453 Date:   Thu Nov 29 10:47:44 2007 -0600
34454
34455     Move the MPC8541/MPC8555/MPC8548 CDS board under board/freescale.
34456
34457     Minor path corrections needed to ensure buildability.
34458
34459     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34460
34461 commit c2d943ffbfd3359b3b45d177b437379d2cb86fbf
34462 Author: Kumar Gala <galak@kernel.crashing.org>
34463 Date:   Thu Nov 29 10:16:18 2007 -0600
34464
34465     Move the MPC8540 ADS board under board/freescale.
34466
34467     Minor path corrections needed to ensure buildability.
34468
34469     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34470
34471 commit 870ceac5b3a3486c109396e005af81ae762b5710
34472 Author: Kumar Gala <galak@kernel.crashing.org>
34473 Date:   Thu Nov 29 10:14:50 2007 -0600
34474
34475     Move the MPC8560 ADS board under board/freescale.
34476
34477     Minor path corrections needed to ensure buildability.
34478
34479     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34480
34481 commit acbca876fb3fec25cd9c55b0efc81ff618ff5262
34482 Author: Kumar Gala <galak@kernel.crashing.org>
34483 Date:   Thu Nov 29 10:13:47 2007 -0600
34484
34485     Move the MPC8568 MDS board under board/freescale.
34486
34487     Minor path corrections needed to ensure buildability.
34488
34489     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34490
34491 commit a853d56c59b33415304531443633808736acfc6e
34492 Author: Kumar Gala <galak@kernel.crashing.org>
34493 Date:   Thu Nov 29 02:18:59 2007 -0600
34494
34495     Use standard LAWAR_TRGT_IF_* defines for LAW setup on 85xx
34496
34497     We already had defines for LAWAR_TRGT_IF_* that we should use
34498     rather than creating new ones.  Also, added some missing defines for
34499     PCIE targets.
34500
34501     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34502
34503 commit 04db400892da37b76a585e332a0c137954ad2015
34504 Author: Kumar Gala <galak@kernel.crashing.org>
34505 Date:   Thu Nov 29 02:10:09 2007 -0600
34506
34507     Stop using immap_t on 85xx
34508
34509     In the future the offsets to various blocks may not be in same location.
34510     Move to using CFG_MPC85xx_*_ADDR as the base of the registers
34511     instead of getting it via &immap.
34512
34513     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34514
34515 commit 2714223f8e04ab3e4133ff65872eef366d90bfea
34516 Author: Kumar Gala <galak@kernel.crashing.org>
34517 Date:   Thu Nov 29 01:23:09 2007 -0600
34518
34519     Remove CONFIG_OF_FLAT_TREE related code from mpc85xx since we now use libfdt
34520
34521     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34522
34523 commit c480861bf000156e6a3e932c258db59ff2212dd3
34524 Author: Kumar Gala <galak@kernel.crashing.org>
34525 Date:   Thu Nov 29 01:06:19 2007 -0600
34526
34527     Update MPC8568 MDS to use libfdt
34528
34529     Updated the MPC8568 MDS config to use libfdt and assume use of aliases for
34530     ethernet, pci, and serial for the various fixups that are done.
34531
34532     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34533
34534 commit 1563f56e0c68f6920f956382d6d13bee3f01c0f7
34535 Author: Haiying Wang <Haiying.Wang@freescale.com>
34536 Date:   Wed Nov 14 15:52:06 2007 -0500
34537
34538     Add PCI Express support on MPC8568MDS
34539
34540     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
34541     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34542
34543 commit b90d25497625b90ffa3f2911a0895ca237556ff5
34544 Author: Kumar Gala <galak@kernel.crashing.org>
34545 Date:   Thu Nov 29 00:11:44 2007 -0600
34546
34547     Update MPC85xx CDS to use libfdt
34548
34549     Updated the MPC85xx CDS config to use libfdt and assume use of aliases for
34550     ethernet, pci, and serial for the various fixups that are done.
34551
34552     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34553
34554 commit 0fd5ec66b10521a057ad73e69ab5f0f9eafba255
34555 Author: Kumar Gala <galak@kernel.crashing.org>
34556 Date:   Wed Nov 28 22:54:27 2007 -0600
34557
34558     Update MPC8540 ADS to use libfdt
34559
34560     Updated the MPC8540 ADS config to use libfdt and assume use of aliases for
34561     ethernet, pci, and serial for the various fixups that are done.
34562
34563     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34564
34565 commit 5ce715802f6c50dc78b3405b92f184b1e3710519
34566 Author: Kumar Gala <galak@kernel.crashing.org>
34567 Date:   Wed Nov 28 22:40:31 2007 -0600
34568
34569     Update MPC8560 ADS to use libfdt
34570
34571     Updated the MPC8560 ADS config to use libfdt and assume use of aliases for
34572     ethernet, pci, and serial for the various fixups that are done.
34573
34574     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34575
34576 commit aafeefbdb8b029f5ca2a195598d0a501a606eea9
34577 Author: Kumar Gala <galak@kernel.crashing.org>
34578 Date:   Wed Nov 28 00:36:33 2007 -0600
34579
34580     Stop using immap_t for cpm offset on 85xx
34581
34582     In the future the offsets to various blocks may not be in same location.
34583     Move to using CFG_MPC85xx_CPM_ADDR as the base of the CPM registers
34584     instead of getting it via &immap->im_cpm.
34585
34586     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34587
34588 commit f59b55a5b8fcadaa99781ba48e7a38e956afa527
34589 Author: Kumar Gala <galak@kernel.crashing.org>
34590 Date:   Tue Nov 27 23:25:02 2007 -0600
34591
34592     Stop using immap_t for guts offset on 85xx
34593
34594     In the future the offsets to various blocks may not be in same location.
34595     Move to using CFG_MPC85xx_GUTS_ADDR as the base of the guts registers
34596     instead of getting it via &immap->im_gur.
34597
34598     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34599
34600 commit 50c03c8cf494d91cdec39670d95337c743e16ec9
34601 Author: Kumar Gala <galak@kernel.crashing.org>
34602 Date:   Tue Nov 27 22:42:34 2007 -0600
34603
34604     Update MPC8544 DS config
34605
34606     * Removed HAS_ETH2/HAS_ETH3 - MPC8544 only has TSEC1/2
34607     * Removed some misc environment setup
34608     * Moved to using fdtfile & fdtaddr as fdt env var names
34609     * Enabled CONFIG_CMDLINE_EDITING
34610
34611     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34612
34613 commit addce57e2e4c49e77ffb2020a84690713bb18b47
34614 Author: Kumar Gala <galak@kernel.crashing.org>
34615 Date:   Mon Nov 26 17:12:24 2007 -0600
34616
34617     Update MPC8544DS to use libfdt
34618
34619     Updated the MPC8544DS config to use libfdt and assume use of aliases for
34620     ethernet, pci, and serial for the various fixups that are done.
34621
34622     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34623
34624 commit f852ce72f100cabd1f11c21c085a0ad8eca9fb65
34625 Author: Kumar Gala <galak@kernel.crashing.org>
34626 Date:   Thu Nov 29 00:15:30 2007 -0600
34627
34628     Add libfdt based ft_cpu_setup for mpc85xx
34629
34630     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34631
34632 commit 3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9
34633 Author: Stefan Roese <sr@denx.de>
34634 Date:   Tue Dec 11 13:38:19 2007 +0100
34635
34636     ppc4xx: Correct GPIO offset in gpio_config()
34637
34638     Thanks to Gary Jennejohn for pointing this out.
34639
34640     Signed-off-by: Stefan Roese <sr@denx.de>
34641
34642 commit 8809a2713b1ceaf3da55d9d785470294f15de06a
34643 Author: Stefan Roese <sr@denx.de>
34644 Date:   Tue Dec 11 11:46:01 2007 +0100
34645
34646     rtc: Fix merging problem
34647
34648     Signed-off-by: Stefan Roese <sr@denx.de>
34649
34650 commit 7cfc12a7dcfdb350e2ab76db4dafcc30f7e77c2b
34651 Author: Stefan Roese <sr@denx.de>
34652 Date:   Sat Dec 8 14:47:34 2007 +0100
34653
34654     ppc4xx: 405EX: Correctly enable USB pins
34655
34656     This patch selects the USB data pins in the 405EX GPIO and MFC (multi
34657     function control) registers. This is done for the AMCC Kilauea and
34658     Makalu eval boards.
34659
34660     Signed-off-by: Stefan Roese <sr@denx.de>
34661
34662 commit 9692c2734a47f23b44a0f68042a3e2ca8d1bfb39
34663 Author: Stefan Roese <sr@denx.de>
34664 Date:   Sat Dec 8 08:25:09 2007 +0100
34665
34666     CFI: Coding style cleanup
34667
34668     Signed-off-by: Stefan Roese <sr@denx.de>
34669
34670 commit 81b20ccc2d795ae9a1199db5a50ad9c28d1e4d22
34671 Author: Michael Schwingen <michael@schwingen.org>
34672 Date:   Fri Dec 7 23:35:02 2007 +0100
34673
34674     CFI: support JEDEC flash roms in CFI-flash framework
34675
34676     The following patch adds support for non-CFI flash ROMS, by hooking into the
34677     CFI flash code and using most of its code, as recently discussed here in the
34678     thread "Mixing CFI and non-CFI flashs".
34679
34680     Signed-off-by: Michael Schwingen <michael@schwingen.org>
34681     Signed-off-by: Stefan Roese <sr@denx.de>
34682
34683 commit c01b17dd856fa120b2970f50d9598546a4927ec3
34684 Author: Gerald Van Baren <vanbaren@cideas.com>
34685 Date:   Wed Nov 28 21:24:50 2007 -0500
34686
34687     Conditionally compile fdt_fixup_ethernet()
34688
34689     Fix compiler warnings: On boards that don't have ethernets defined,
34690     don't compile fdt_fixup_ethernet().
34691
34692 commit 246d4ae6bc282bc1841224e1c5fc49dc925e0bf7
34693 Author: Kumar Gala <galak@kernel.crashing.org>
34694 Date:   Tue Nov 27 21:59:46 2007 -0600
34695
34696     Convert boards that set memory node to use fdt_fixup_memory()
34697
34698     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34699
34700 commit 151c8b09b35eebe8fd9139cb6c1d91c27b22f058
34701 Author: Kumar Gala <galak@kernel.crashing.org>
34702 Date:   Mon Nov 26 17:06:15 2007 -0600
34703
34704     Added fdt_fixup_stdout that uses aliases to set linux,stdout-path
34705
34706     We use a combination of the serialN alias and CONFIG_CONS_INDEX to
34707     determine which serial alias we should set linux,stdout-path to.
34708
34709     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34710
34711 commit 3c9272813fad84c691d0e4989bb18a3ffebdebfc
34712 Author: Kumar Gala <galak@kernel.crashing.org>
34713 Date:   Mon Nov 26 14:57:45 2007 -0600
34714
34715     Add common memory fixup function
34716
34717     Add the function fdt_fixup_memory() to fixup the /memory node of the fdt
34718
34719     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34720
34721 commit 9c9109e7fcf7ac2ca19c95b8ac54b8d1c773b157
34722 Author: Kumar Gala <galak@kernel.crashing.org>
34723 Date:   Mon Nov 26 11:19:12 2007 -0600
34724
34725     Conditionally compile fdt_support.c
34726
34727     Modify common/Makefile to conditionally compile fdt_support.c based
34728     on CONFIG_OF_LIBFDT.
34729
34730     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34731
34732 commit d88e7ba0980773479e1a64badb293116071b7ef0
34733 Author: Kumar Gala <galak@kernel.crashing.org>
34734 Date:   Mon Nov 26 10:41:40 2007 -0600
34735
34736     Fix build breakage due to libfdt import
34737
34738     The IDS8247 got lost in the update and need an API update
34739     do to rename of functions in libfdt.
34740
34741     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34742
34743 commit 28f384b171bbf1fb2dafb1046e6d259a6b2f8714
34744 Author: Gerald Van Baren <vanbaren@cideas.com>
34745 Date:   Fri Nov 23 19:43:20 2007 -0500
34746
34747     Add spaces around the = in the fdt print format.
34748
34749     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
34750
34751 commit 29592ecba3b932b9b152bcec6c0c0806412db4a3
34752 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34753 Date:   Fri Dec 7 01:25:38 2007 +0900
34754
34755     sh: Moved driver of the SuperH dependence
34756
34757     The composition of the directory in the drivers/ changed.
34758     I moved SuperH serial driver and marubun PCMCIA driver.
34759
34760     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34761
34762 commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2
34763 Author: Wolfgang Denk <wd@denx.de>
34764 Date:   Thu Dec 6 10:21:19 2007 +0100
34765
34766     Release v1.3.1
34767
34768     Signed-off-by: Wolfgang Denk <wd@denx.de>
34769
34770 commit cf5933ba1e97a1cd8f5f24070e820f21d976eaeb
34771 Author: Wolfgang Denk <wd@denx.de>
34772 Date:   Thu Dec 6 10:21:03 2007 +0100
34773
34774     ADS5121 Board: fix compile problem.
34775
34776     Signed-off-by: Wolfgang Denk <wd@denx.de>
34777
34778 commit a27044b14a9e93678a82d7b35f202b93e7687abc
34779 Author: Stefan Roese <sr@denx.de>
34780 Date:   Thu Dec 6 05:58:43 2007 +0100
34781
34782     ppc4xx: Enable hardware-fix for PCI/DMA errata on AMCC 440SP/SPe boards
34783
34784     This patch enables the hardware-fix for the PCI/DMA errata's 19+22 by
34785     setting the FIXD bit in the SDR0_MFR register. Here a description of the
34786     symptoms:
34787
34788     Problem Description
34789     ------------------------------
34790     If a DMA is performed between memory and PCI with the DMA 1 Controller
34791     using prefetch, and as a result uses a special purpose buffer selected by
34792     the PCIXn Bridge Options 1 Register (PCIXn_BRDGOPT1[RBP7] - bits 31-29),
34793     the first part of the transfer sequence is performed twice. The
34794     PPC440SPe PCI Controller requests more data than was needed such that in
34795     the case of enforce memory protection, a host CPU  exception can occur.
34796     No data is corrupted, because data transfer is stopped in the PCI
34797     Controller. Prefetch enable is specified by setting DMA Configuration
34798     Register (I2O0_DMAx_CFG[DXEPD] - bit 31) to 0.
34799
34800     Behavior that may be observed in a running system
34801     ---------------------------------------------------------------------------
34802
34803     1. DMA performance is decreased because of the double access on the PCI bus
34804     interface.
34805     2. If an illegal access to some address on the PCI bus is detected at the
34806     system level, a machine check or similar system error may occur.
34807
34808     Workarounds Available
34809     ----------------------------------
34810
34811     1. Do not program prefetch. Note that a prefetch command cannot be programmed
34812     without selecting a special purpose buffer.
34813     2. To avoid crossing a physical boundary of the PCI slave device, add 512
34814     bytes of address to the PCI address range.
34815
34816     This patch was originally provided by Pravin M. Bathija <pbathija@amcc.com>
34817     from AMCC and slighly changed.
34818
34819     Signed-off-by: Pravin M. Bathija <pbathija@amcc.com>
34820     Signed-off-by: Stefan Roese <sr@denx.de>
34821
34822 commit a90921f71d225bf9e0f0fc7b8beadeb8001bf78a
34823 Author: Stefan Roese <sr@denx.de>
34824 Date:   Tue Dec 4 16:29:48 2007 +0100
34825
34826     ppc4xx: Yosemite/Yellowstone: Add DTT AD7414 support
34827
34828     Signed-off-by: Stefan Roese <sr@denx.de>
34829
34830 commit 8d4f040a3c15036a6ea25a9c39e7d89fefa8440d
34831 Author: Wolfgang Denk <wd@denx.de>
34832 Date:   Mon Dec 3 00:15:28 2007 +0100
34833
34834     Prepare for 1.3.1-rc1
34835
34836     Signed-off-by: Wolfgang Denk <wd@denx.de>
34837
34838 commit e15e33433e7c05111968dc9b434a52fd42cbd221
34839 Author: Stefan Roese <sr@denx.de>
34840 Date:   Fri Nov 30 07:15:41 2007 +0100
34841
34842     ppc4xx: Kilauea: Add PCIe reset assertion upon power-up
34843
34844     This manual PCIe reset triggering solves the problem seen with the
34845     Intel EPRO/1000 card, which was not detected (link not established)
34846     upon power-up reset.
34847
34848     Signed-off-by: Stefan Roese <sr@denx.de>
34849
34850 commit 260eea5676ca46903a335686cc020b29c4ca46fe
34851 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34852 Date:   Thu Nov 29 01:21:54 2007 +0900
34853
34854     sh: Add SuperH boards maintainer to MAINTAINERS file
34855
34856     Add MS7750SE and MS7722SE's board maintainer to MAINTAINERS file.
34857
34858     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34859
34860 commit aa9c4f1d22701a92347c1c81f34d12c8ad3a3747
34861 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34862 Date:   Thu Nov 29 00:13:04 2007 +0900
34863
34864     sh: Add ms7750se support in MAKEALL
34865
34866     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34867
34868 commit c7144373427a178332bf9754131c8c34c52c200a
34869 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34870 Date:   Tue Nov 27 09:44:53 2007 +0100
34871
34872     sh: Add sh3 and sh4 support in MAKEALL
34873
34874     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34875     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34876
34877 commit 130080874a3d28450098481a262c5f7c855e908d
34878 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34879 Date:   Sun Nov 25 02:51:17 2007 +0900
34880
34881     sh: Add document for SuperH.
34882
34883     This document is a summary of information concerning SuperH of U-Boot.
34884
34885     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34886
34887 commit 33ecdc2f9d64926e1a6067b28f3a0aefc3b6d23d
34888 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34889 Date:   Sun Nov 25 02:39:31 2007 +0900
34890
34891     sh: Add marubun's pcmcia driver
34892
34893     Marubun pcmcia is a chip for PCMCIA used with SuperH.
34894     Of course, this can be used even by other architectures.
34895     When use this driver, came to be able to use CompactFlash
34896     and Ethernet.
34897
34898     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34899
34900 commit febd86b969b975289ed948f1ac0eb9722da41ced
34901 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34902 Date:   Sun Nov 25 02:32:13 2007 +0900
34903
34904     sh: Update SuperH SCIF driver
34905
34906     - Changed volatile unsigned to vu_.
34907     - Changed Makefile for kconfig.
34908
34909     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34910
34911 commit 8be760903645af09871be50ad0a6f9ebb62b311d
34912 Author: Stefan Roese <sr@denx.de>
34913 Date:   Tue Nov 27 11:57:35 2007 +0100
34914
34915     ppc4xx: Kilauea & Makalu: Fix ext IRQ pin multiplexing
34916
34917     After an error in the AMCC 405EX users manual now correctly configure
34918     IRQ2 (Kilauea)/IRQ0 (Makalu) as alternate 2 signal for external IRQ
34919     usage.
34920
34921     Signed-off-by: Stefan Roese <sr@denx.de>
34922
34923 commit a5f601fd1b1278deae5aa9fc27a232b0d1c1c788
34924 Author: Wolfgang Denk <wd@denx.de>
34925 Date:   Mon Nov 26 19:18:21 2007 +0100
34926
34927     Cleanup coding style; update CHANGELOG
34928
34929     Signed-off-by: Wolfgang Denk <wd@denx.de>
34930
34931 commit 3deca9d44767efd1b83f4b701f0dbf21a7595f7b
34932 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34933 Date:   Sun Nov 25 22:39:25 2007 +0100
34934
34935     MAKEALL: add missing 512x boards in ppc
34936
34937     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34938
34939 commit a340c325e668ca7386c2276387681720be9c3757
34940 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34941 Date:   Sun Nov 25 18:45:47 2007 +0100
34942
34943     Makefile : fix tags ctags etags with new drivers organization
34944
34945     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34946
34947 commit 63362cfc6baa97ae0e37ba2c6ece530fcac9f79e
34948 Author: Stefan Roese <sr@denx.de>
34949 Date:   Mon Nov 26 15:06:14 2007 +0100
34950
34951     ppc4xx: Makalu: Change EBC setup for CS0 to enable 400MHz usage
34952
34953     As suggested by Senao, use a different EBC_PB0AP setup for 400MHz
34954     operation.
34955
34956     Signed-off-by: Stefan Roese <sr@denx.de>
34957
34958 commit ca1ce226287270bb01e25b8e3674c701f12edf19
34959 Author: Stefan Roese <sr@denx.de>
34960 Date:   Mon Nov 26 15:01:45 2007 +0100
34961
34962     ppc4xx: Kilauea: Configure pin mux to use ext IRQ2 as interrupt
34963
34964     Signed-off-by: Stefan Roese <sr@denx.de>
34965
34966 commit 87ddedd6ad804427ce125ceaa076d7a4f74e9d5d
34967 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34968 Date:   Sun Nov 25 18:45:47 2007 +0100
34969
34970     Makefile : fix tags ctags etags with new drivers organization
34971
34972     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34973
34974 commit 59829cc189378c142c13d2aa8d9a897d8bef3961
34975 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34976 Date:   Sat Nov 24 21:26:56 2007 +0100
34977
34978     drivers/mtd : move mtd drivers to drivers/mtd
34979
34980     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34981
34982 commit 318c0b90431f2648552e5ade78833f42652ce859
34983 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34984 Date:   Sat Nov 24 21:17:55 2007 +0100
34985
34986     drivers/misc : move misc drivers to drivers/misc
34987
34988     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34989
34990 commit 33daf5b7858807cb4ce4158c2c56524671c14c08
34991 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34992 Date:   Sat Nov 24 21:13:59 2007 +0100
34993
34994     drivers/block : move block drivers to drivers/block
34995
34996     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34997
34998 commit 0c698dcaa70275eb8814f665b545547cee013892
34999 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35000 Date:   Sat Nov 24 20:59:50 2007 +0100
35001
35002     drivers/rtc : move rtc drivers to drivers/rtc
35003
35004     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35005
35006 commit f868cc5a50757d94f36c312395481cb0f187d9e6
35007 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35008 Date:   Sat Nov 24 20:14:44 2007 +0100
35009
35010     drivers/hwmon : move hardware monitor drviers to drivers/hwmon
35011
35012     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35013
35014 commit 16b195c82a18cbfd164800f17a1ef9db2e48331a
35015 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35016 Date:   Sat Nov 24 19:46:45 2007 +0100
35017
35018     drivers/input : move input drivers to drivers/input
35019
35020     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35021
35022 commit e4558666293364fc3af1c1d9381ca933fa0f1275
35023 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35024 Date:   Sat Nov 24 19:40:11 2007 +0100
35025
35026     drivers/usb : move usb drivers to drivers/usb
35027
35028     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35029
35030 commit 1378df792a7ff3abd1bf54a63f5475784f5b083c
35031 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35032 Date:   Sat Nov 24 19:33:38 2007 +0100
35033
35034     drivers/serial : move serial drivers to drivers/serial
35035
35036     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35037
35038 commit 2439e4bfa111babf4bc07ba20efbf3e36036813e
35039 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35040 Date:   Wed Nov 21 21:19:24 2007 +0100
35041
35042     drivers/net : move net drivers to drivers/net
35043
35044     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35045
35046 commit 352d259130b349fe9593b8dada641bd78a9659e5
35047 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35048 Date:   Tue Nov 20 20:41:48 2007 +0100
35049
35050     drivers/video : move video drivers to drivers/video
35051
35052     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35053
35054 commit 73646217186aa17afc8e305c5f06f06dd335eaad
35055 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35056 Date:   Tue Nov 20 20:33:09 2007 +0100
35057
35058     drivers/pcmcia : move pcmcia drivers to drivers/pcmcia
35059
35060     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35061
35062 commit 93a686ee9c5ddc6fa368c32cfbfde6f6724599fc
35063 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35064 Date:   Tue Nov 20 20:28:09 2007 +0100
35065
35066     drivers/pci : move pci drivers to drivers/pci
35067
35068     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35069
35070 commit 9162352817579840d7802da6d85872b3ca003c97
35071 Author: Gerald Van Baren <vanbaren@cideas.com>
35072 Date:   Thu Nov 22 17:23:23 2007 -0500
35073
35074     Fix fdt printing for updated libfdt
35075
35076     Also improve printing (adopt dtc v1 "c style" hex format), whitespace cleanup.
35077
35078     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35079
35080 commit 9eb77cea1fa12d5969eb26a1d1d81da381bd6b1c
35081 Author: Kumar Gala <galak@kernel.crashing.org>
35082 Date:   Wed Nov 21 13:30:15 2007 -0600
35083
35084     Add additional fdt fixup helper functions
35085
35086     Added the following fdt fixup helpers:
35087      * do_fixup_by_prop{_u32} - Find matching nodes by property name/value
35088      * do_fixup_by_compat{_u32} - Find matching nodes by compat
35089
35090     The _u32 variants work the same only the property they are setting
35091     is know to be a 32-bit integer instead of a byte buffer.
35092
35093     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35094
35095 commit ab544633abdd14f4dd5d92e500b73eb59ef57e67
35096 Author: Kumar Gala <galak@kernel.crashing.org>
35097 Date:   Wed Nov 21 11:11:03 2007 -0600
35098
35099     Add fdt_fixup_ethernet helper to set mac addresses
35100
35101     Added a fixup helper that uses aliases to set mac addresses
35102     in the device tree based on the bd_t
35103
35104     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35105
35106 commit dbaf07ce620aab249e3502b20a986234a6af1d3a
35107 Author: Kumar Gala <galak@kernel.crashing.org>
35108 Date:   Wed Nov 21 14:07:46 2007 -0600
35109
35110     Fix warnings from import of libfdt
35111
35112     cmd_fdt.c: In function fdt_print:
35113     cmd_fdt.c:586: warning: assignment discards qualifiers from pointer target type
35114     cmd_fdt.c:613: warning: assignment discards qualifiers from pointer target type
35115     cmd_fdt.c:635: warning: assignment discards qualifiers from pointer target type
35116     cmd_fdt.c:636: warning: assignment discards qualifiers from pointer target type
35117
35118     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35119
35120 commit 8d04f02f6224e6983f4812ea4da704950ec8539c
35121 Author: Kumar Gala <galak@kernel.crashing.org>
35122 Date:   Wed Oct 24 11:04:22 2007 -0500
35123
35124     Update libfdt from device tree compiler (dtc)
35125
35126     Update libfdt to commit 8eaf5e358366017aa2e846c5038d1aa19958314e from
35127     the device tree compiler (dtc) project.
35128
35129     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35130
35131 commit e93becf80d732b64aef81b23e8b6ece02c40533d
35132 Author: Kumar Gala <galak@kernel.crashing.org>
35133 Date:   Sat Nov 3 19:46:28 2007 -0500
35134
35135     Move do_fixup* for libfdt into common code
35136
35137     Moved the generic fixup handling code out of cpu/mpc5xxx and cpu/mpc8260
35138     into common/fdt_support.c and renamed:
35139
35140     do_fixup()  -> do_fixup_by_path()
35141     do_fixup_u32()      -> do_fixup_by_path_u32()
35142
35143     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35144
35145 commit f738b4a75998f42a7408defadc9baac7a31c92db
35146 Author: Kumar Gala <galak@kernel.crashing.org>
35147 Date:   Thu Oct 25 16:15:07 2007 -0500
35148
35149     Make no options to fdt print default to '/'
35150
35151     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35152
35153 commit a3c2933e02503fe36ade2c1b65af46f2b7a168e7
35154 Author: Kumar Gala <galak@kernel.crashing.org>
35155 Date:   Wed Oct 24 10:21:57 2007 -0500
35156
35157     Removed some nonused fdt functions and moved fdt_find_and_setprop out of libfdt
35158
35159     Removed:
35160         fdt_node_is_compatible
35161         fdt_find_node_by_type
35162         fdt_find_compatible_node
35163
35164     To ease merge of newer libfdt as we aren't using them anywhere at this time.
35165
35166     Also moved fdt_find_and_setprop out of libfdt into fdt_support.c for the same
35167     reason.
35168
35169     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35170
35171 commit 98e2867cc85409b919f862e6c16026461ec955df
35172 Author: Grant Likely <grant.likely@secretlab.ca>
35173 Date:   Wed Nov 21 09:19:37 2007 -0700
35174
35175     [BUILD] Remove libraries when updating autoconf.mk
35176
35177     Fix library problems caused by conditional compilation.  Using
35178     autoconf.mk to decide which files to compile has caused a problem when
35179     changing configuration from one board to another without clearing out
35180     the library (*.a) files.
35181
35182     It used to be that the linker was always passed the same list of .o
35183     files when building the .a files.  However, that is not longer true
35184     with conditional compilation.  Now, a different board config will have
35185     a different file list passed to the linker.  The problem occurs when
35186     a library has already been built and the board config is changed.
35187
35188     Since the linker will update instead of replace a preexisting library,
35189     then if the file list changes to remove some object files the old
35190     objects will still exist in the library.
35191
35192     The solution is to remove all old library files when autoconf.mk is
35193     made.
35194
35195     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35196
35197 commit ed1353d74b9ce8a7fcd660570b848a184d614b5f
35198 Author: Kumar Gala <galak@kernel.crashing.org>
35199 Date:   Wed Nov 21 08:49:50 2007 -0600
35200
35201     [BUILD] conditionally compile libfdt/*.c in libfdt/Makefile
35202
35203     Modify libfdt/Makefile to conditionally compile the *.c files based
35204     on the board config.
35205
35206     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35207
35208 commit 4a43719a7738712811d822ca8125427b27a55cdc
35209 Author: Grant Likely <grant.likely@secretlab.ca>
35210 Date:   Mon Sep 24 09:05:31 2007 -0600
35211
35212     [BUILD] conditionally compile common/cmd_*.c in common/Makefile
35213
35214     Modify common/Makefile to conditionally compile the cmd_*.c files based
35215     on the board config.
35216
35217     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35218
35219 commit 2f155f6c0a1f5e9a306a3f1f4fbe067db7ced3b1
35220 Author: Grant Likely <grant.likely@secretlab.ca>
35221 Date:   Mon Sep 24 09:05:31 2007 -0600
35222
35223     [BUILD] Generate include/autoconf.mk from board config files
35224
35225     Use cpp and sed to postprocess config.h and import the defined values
35226     into include/autoconf.mk.  autoconf.mk is then included by config.mk to
35227     give 'make' access to the board configuration.
35228
35229     Doing this enables conditional compilation at the Makefile level instead
35230     of by wrapping every .c file with #ifdef/#endif wrappers.
35231
35232     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35233
35234 commit 68b88999da87ab88e71e1306192905be3450198e
35235 Author: Jon Loeliger <jdl@freescale.com>
35236 Date:   Tue Nov 20 15:02:26 2007 -0600
35237
35238     8610HPCD: Enable the 8610 Display Interface Unit
35239
35240     Signed-off-by: Jon Loeliger <jdl@freescale.com>
35241
35242 commit 74f89faa9d1e77ed947e628d3effaa513fe05d05
35243 Author: Jon Loeliger <jdl@freescale.com>
35244 Date:   Tue Nov 20 15:00:53 2007 -0600
35245
35246     Move 8610 DIU interface structure definitions to header file.
35247
35248     These two structures are still needed during the
35249     initialization and setup of the DIU hardware.
35250     So move them to the fsl_diu_fb.h file for now.
35251     Official "blah".
35252
35253     Noticed-by: York Sun <yorksun@freescale.com>
35254     Signed-off-by: Jon Loeliger <jdl@freescale.com>
35255
35256 commit 080c646dbf474a109c3f85718fb01ce042a38c45
35257 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35258 Date:   Tue Nov 20 20:14:18 2007 +0100
35259
35260     drivers/i2c : move i2c drivers to drivers/i2c
35261
35262     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35263
35264 commit 9a337ddc154a10a26f117fd147b009abcdeba75a
35265 Author: Wolfgang Denk <wd@denx.de>
35266 Date:   Mon Nov 19 22:20:24 2007 +0100
35267
35268     Prepare for 1.3.0 release.
35269
35270     Signed-off-by: Wolfgang Denk <wd@denx.de>
35271
35272 commit f30ad49b16bf998b03c1a5228b6c86369d61c258
35273 Author: Haiying Wang <Haiying.Wang@freescale.com>
35274 Date:   Mon Nov 19 10:02:13 2007 -0500
35275
35276     Move CONFIG_QE out of CONFIG_PCI wrap for MPC8568MDS
35277
35278     CONFIG_QE shouldn't be in the wrap of CONFIG_PCI, fix it.
35279
35280     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
35281
35282 commit f8c320609366176b31104d9bf5e295232e1c7f1d
35283 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
35284 Date:   Mon Nov 19 11:14:16 2007 +0900
35285
35286     [MIPS] board/gth2/lowlevel_init.S: Fix a build warning
35287
35288     lowlevel_init.S: Assembler messages:
35289     lowlevel_init.S:413: Warning: Pretending global symbol used as branch target is local.
35290
35291     Looking at codes, the `memtest' and `clearmem' are intentional mixed
35292     use of `global symbols' and `label' for debugging purpose. To make it
35293     build, just disable global-symbols-use for now. As a result `memtest'
35294     still remains as unused, but leave it be...
35295
35296     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
35297
35298 commit e8da58f2bc092891e8cc92b927ed5c4bd0cb0cab
35299 Author: Wolfgang Denk <wd@denx.de>
35300 Date:   Mon Nov 19 12:59:14 2007 +0100
35301
35302     Fix build problems with mp2usb board
35303
35304     Signed-off-by: Wolfgang Denk <wd@denx.de>
35305
35306 commit 6bf4c686afca1e86e1c384d59218f914605713bf
35307 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35308 Date:   Sun Nov 18 18:36:11 2007 +0100
35309
35310     s3c24x0: Fix usb_ohci.c missing in Makefile
35311     and usb_ohci.c warning differ in signedness
35312
35313     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35314
35315 commit 6073f61e078da5ddb521b56256bcc36508589883
35316 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35317 Date:   Sun Nov 18 12:55:02 2007 +0100
35318
35319     pb1x00 board: Fix u16 status declaration when PCMCIA is defined
35320
35321     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35322
35323 commit 8412d814ce8bf5570a2b747f1e7fd321097fe987
35324 Author: Wolfgang Denk <wd@denx.de>
35325 Date:   Sun Nov 18 17:11:09 2007 +0100
35326
35327     Fix compiler warnings for ARM systems.
35328
35329     Signed-off-by: Wolfgang Denk <wd@denx.de>
35330
35331 commit 409ecdc0bb47dd28b0af6c25ffd658d22cc36b37
35332 Author: Wolfgang Denk <wd@denx.de>
35333 Date:   Sun Nov 18 16:36:27 2007 +0100
35334
35335     Fix compiler warnings for PPC systems. Update CHANGELOG.
35336
35337     Signed-off-by: Wolfgang Denk <wd@denx.de>
35338
35339 commit 653811a3c2b35856bf12e196dcc8c4694e28e420
35340 Author: Stefan Roese <sr@denx.de>
35341 Date:   Sun Nov 18 14:44:44 2007 +0100
35342
35343     ppc4xx: Correct 405EX PCIe UTL register mapping
35344
35345     Map 4k mem space for UTL registers for each port.
35346
35347     Signed-off-by: Stefan Roese <sr@denx.de>
35348
35349 commit 079c2c4fa71c0d1ebef394508df9088df8a308d3
35350 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35351 Date:   Sat Nov 17 11:31:10 2007 +0100
35352
35353     Fix warning differ in signedness in net/net.c and net/nfs.c
35354
35355 commit 7e14fc65368cbd2861b1207453da55a4fc7b3f81
35356 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35357 Date:   Sat Nov 17 20:42:45 2007 +0900
35358
35359     gth2.c: Fix a warning on gth2 build.
35360
35361     gth2.c: In function 'misc_init_r':
35362     gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
35363
35364     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35365
35366 commit 2309c130aa4c84b91bd874a41269c923eb61b555
35367 Author: Stefan Roese <sr@denx.de>
35368 Date:   Sat Nov 17 07:58:25 2007 +0100
35369
35370     Fix warning differ in signedness in common/cmd_scsi.c
35371
35372     Signed-off-by: Stefan Roese <sr@denx.de>
35373
35374 commit 9ea61b57968554eaf0f474ec7e088b17d367f474
35375 Author: Stefan Roese <sr@denx.de>
35376 Date:   Sat Nov 17 14:52:29 2007 +0100
35377
35378     ppc4xx: Update AMCC Kilauea config file
35379
35380     - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
35381
35382     Signed-off-by: Stefan Roese <sr@denx.de>
35383
35384 commit 7e1d884b7cb602007329c517ec1c453e3a6a5d9c
35385 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35386 Date:   Sat Nov 17 20:05:26 2007 +0900
35387
35388     [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
35389
35390     Current trick to pick up GNU assembler minor version does not work with the
35391     latest binutils (2007-03-01 or later) due to ${PKGVERSION} now default to
35392     "(GNU Binutils) ".
35393
35394       $ sde-as --version |grep "GNU assembler"
35395       GNU assembler 2.15.94 mipssde-6.02.02-20050602
35396       $ sde-as --version |grep "GNU assembler" |awk '{print $3}'
35397       2.15.94
35398       $ sde-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
35399       15
35400       $
35401
35402       $ mips-linux-as --version |grep "GNU assembler"
35403       GNU assembler (GNU Binutils) 2.18
35404       $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}'
35405       (GNU
35406       $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
35407       (no output)
35408       $
35409
35410     As a result of above, you'll see many noises with such binutils:
35411
35412       make -C cpu/mips/
35413       /bin/sh: line 0: [: : integer expression expected
35414       /bin/sh: line 0: [: : integer expression expected
35415       make[1]: Entering directory `/home/skuribay/devel/u-boot.git/cpu/mips'
35416       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
35417       /bin/sh: line 0: [: : integer expression expected
35418       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
35419       /bin/sh: line 0: [: : integer expression expected
35420       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
35421       /bin/sh: line 0: [: : integer expression expected
35422
35423     This patch simplifies the trick and makes it work with both versions of gas.
35424     I also replace an expensive `awk (or gawk)' with `cut'.
35425
35426     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35427
35428 commit 16664f72850846e645616da1c0fa5afcd6d15f15
35429 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35430 Date:   Sat Nov 17 20:05:26 2007 +0900
35431
35432     [MIPS] Remove useless instructions for initializing $gp.
35433
35434     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35435
35436 commit 03c031d5660ea946c39af6e2e16267da857c609f
35437 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35438 Date:   Sat Oct 27 15:27:06 2007 +0900
35439
35440     [MIPS] MIPS 4K core: Coding style cleanups
35441
35442     No logical changes.
35443
35444     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35445
35446 commit f5e429d3860bba4c6ae8bead8f78349fa24491b2
35447 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35448 Date:   Sat Nov 17 20:05:20 2007 +0900
35449
35450     [MIPS] gth2.c: Fix a warning on gth2 build.
35451
35452     gth2.c: In function 'misc_init_r':
35453     gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
35454
35455     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35456
35457 commit 4fbd0741b2b6441da10be93e10267122581b7079
35458 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35459 Date:   Sat Oct 27 15:22:33 2007 +0900
35460
35461     [MIPS] au1x00_eth.c: Fixed a warning on pb1000 build.
35462
35463     au1x00_eth.c: In function 'au1x00_miiphy_write':
35464     au1x00_eth.c:139: warning: 'return' with no value, in function returning non-void
35465
35466     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35467
35468 commit f01320459736f156707425cf8112f98606301aa4
35469 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35470 Date:   Sat Oct 27 15:00:25 2007 +0900
35471
35472     [MIPS] au1x00_eth.c: Fix au1x00_miiphy_{read,write} build error
35473
35474     au1x00_eth.c: In function 'au1x00_enet_initialize':
35475     au1x00_eth.c:246: error: 'au1x00_miiphy_read' undeclared (first use in this function)
35476     au1x00_eth.c:246: error: (Each undeclared identifier is reported only once
35477     au1x00_eth.c:246: error: for each function it appears in.)
35478     au1x00_eth.c:246: error: 'au1x00_miiphy_write' undeclared (first use in this function)
35479     au1x00_eth.c: In function 'au1x00_miiphy_write':
35480     au1x00_eth.c:298: warning: 'return' with no value, in function returning non-void
35481     make[1]: *** [au1x00_eth.o] Error 1
35482
35483     Fixed by moving these two functions forward.
35484
35485     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35486
35487 commit b09258c5393edd1087c5f39ae68338f16b49f8b3
35488 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35489 Date:   Sat Oct 27 15:00:25 2007 +0900
35490
35491     MAKEALL: Added missing pb1000 board
35492
35493     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35494
35495 commit 2e4a6e3667a1e39c0e6e99498686b15d2718b369
35496 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35497 Date:   Sat Oct 27 15:00:24 2007 +0900
35498
35499     [MIPS] pb1000: Replace obsolete memsetup.S with lowlevel_init.S
35500
35501     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35502
35503 commit 662e5cb397249c3ea88a4c3255e9ccfc40b98d82
35504 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35505 Date:   Sat Oct 27 15:00:24 2007 +0900
35506
35507     [MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end}
35508
35509     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35510
35511 commit 5947f6999aafa7c54c1390983d264a8463dfea8e
35512 Author: Wolfgang Denk <wd@denx.de>
35513 Date:   Sat Nov 17 02:34:38 2007 +0100
35514
35515     Update CHANGELOIG, prepare for -rc4
35516
35517     Signed-off-by: Wolfgang Denk <wd@denx.de>
35518
35519 commit fd329e6f05bbdfe6bd71b0e09f0c76d3b0a025a5
35520 Author: Luotao Fu <l.fu@pengutronix.de>
35521 Date:   Wed Nov 14 18:58:33 2007 +0100
35522
35523     Fix the i2c frequency and default address in rsdproto board
35524
35525     rsdproto board support has wrong I2C frequency and wrong return value
35526     handling.
35527
35528     Signed-off-by: Luotao Fu <l.fu@pengutronix.de>
35529
35530 commit 429c180edad038f91c989cb14b478228092e7054
35531 Author: Wolfgang Denk <wd@denx.de>
35532 Date:   Sat Nov 17 01:45:38 2007 +0100
35533
35534     powerpc: Backout relocation changes for MPC5121, too.
35535
35536     Apply Grant Likely's backout to MPC5121 code, too.
35537
35538     Pointed out by Rafal Jaworowski <raj@semihalf.com>
35539
35540     Signed-off-by: Wolfgang Denk <wd@denx.de>
35541
35542 commit 1c3dd43338a077165e7e0309cb3994e65d2bdbf8
35543 Author: Grant Likely <grant.likely@secretlab.ca>
35544 Date:   Tue Nov 13 22:18:33 2007 -0700
35545
35546     powerpc: Backout relocation changes.
35547
35548     Ugh.  I *hate* to back this change out, but these compiler flags don't
35549     work for relocation on all versions of GCC.  I've not been able to
35550     reproduce the environment in my setup (and hence, not been able to
35551     find a combination that *does* work), so I've got no choice but to go
35552     back to the old gcc flags and linker script.
35553
35554     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35555
35556 commit 5c15010efad980ad5498cc565fc1ed70df2f52b4
35557 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35558 Date:   Tue Nov 13 09:11:05 2007 +0100
35559
35560     Fixed mips_io_port_base build errors.
35561
35562     This patch has been sent on:
35563     - 29 Sep 2007
35564
35565     Although mips_io_port_base is currently a part of IDE command, it is quite
35566     fundamental for MIPS I/O port access such as in[bwl] and out[bwl]. So move
35567     it to MIPS general part, and introduce `set_io_port_base()' from Linux.
35568
35569     This patch is triggered by multiple definition of `mips_io_port_base' build
35570     error on gth2 (and tb0229 also needs this fix.)
35571
35572     board/gth2/libgth2.a(gth2.o): In function `log_serial_char':
35573     /home/skuribay/devel/u-boot.git/board/gth2/gth2.c:47: multiple definition of `mips_io_port_base'
35574     common/libcommon.a(cmd_ide.o):/home/skuribay/devel/u-boot.git/common/cmd_ide.c:712: first defined here
35575     make: *** [u-boot] Error 1
35576
35577     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35578     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35579
35580 commit 6ecbb7a3fa9b0940ed33e490d195d4b6830b2422
35581 Author: Wolfgang Denk <wd@denx.de>
35582 Date:   Sat Nov 17 01:30:40 2007 +0100
35583
35584     Fix a bug in the slave serial programming mode for the Xilinx
35585     Spartan2/3 FPGAs. The old code used "< 0" on a "char" type to test if
35586     the most significant bit was set, which did not work on any
35587     architecture where "char" defaulted to be an unsigned type.
35588
35589     Based on a patch by Angelos Manousaridis <amanous@inaccessnetworks.com>
35590
35591     Signed-off-by: Wolfgang Denk <wd@denx.de>
35592
35593 commit d08b7233bc252faad8339e7ca0ddfd62fa79903c
35594 Author: Jon Loeliger <jdl@freescale.com>
35595 Date:   Thu Nov 1 12:23:29 2007 -0500
35596
35597     86xx: Fix broken variable reference when #def DEBUGing.
35598
35599     Sometimes you can't reference the DDR2 controller variables.
35600
35601     Signed-off-by: Jon Loeliger <jdl@freescale.com>
35602
35603 commit f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19
35604 Author: Jason Jin <Jason.jin@freescale.com>
35605 Date:   Fri Oct 26 18:32:00 2007 +0800
35606
35607     make 8610 board use pixis reset
35608
35609     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
35610
35611 commit db74b3c1c9481a6bffbf8cd445e5bcbf6908e836
35612 Author: Jason Jin <Jason.jin@freescale.com>
35613 Date:   Mon Oct 29 19:26:21 2007 +0800
35614
35615     Unify pixis_reset altbank across board families
35616
35617     Basically, refactor the CFG_PIXIS_VBOOT_MASK values
35618     into the separate board config files.
35619
35620     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
35621     Signed-off-by: Jon Loeliger <jdl@freescale.com>
35622
35623 commit 64bf555465c7926be13e1046ac0d0f05ac72829c
35624 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35625 Date:   Wed Nov 7 08:19:21 2007 +0100
35626
35627     Fix warning: pointer targets in assignment differ in signedness
35628
35629     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35630
35631 commit 7a60ee7c6248a958c5757d3660a1702723a2786d
35632 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35633 Date:   Wed Nov 7 08:19:19 2007 +0100
35634
35635     Fix warning differ in signedness in common/cmd_ide.c
35636
35637     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35638
35639 commit f31d38b9eea9b32f6a1ac848a298cc71ca4c9a03
35640 Author: Stefan Roese <sr@denx.de>
35641 Date:   Fri Nov 16 14:16:54 2007 +0100
35642
35643     ppc4xx: Enable 405EX PCIe UTL register configuration
35644
35645     Till now the UTL registers on 405EX were not initialized but left with
35646     their default values. This patch new initializes some of the UTL
35647     registers on 405EX.
35648
35649     Signed-off-by: Stefan Roese <sr@denx.de>
35650
35651 commit ecdcbd4f8c1f8cefd785752f4e7536aae2a4ecf9
35652 Author: Stefan Roese <sr@denx.de>
35653 Date:   Fri Nov 16 14:00:59 2007 +0100
35654
35655     ppc4xx: Update AMCC Makalu for board rev 1.1
35656
35657     This patch adds changes needed for Makalu rev 1.1:
35658
35659     - Enable 2nd DDR2 bank resulting in 256MByte of SDRAM
35660     - Enable 2nd ethernet port EMAC1
35661     - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
35662     - Reset PCIe ports via GPIO upon bootup
35663
35664     Signed-off-by: Stefan Roese <sr@denx.de>
35665
35666 commit 4d4faae65e115e327425cd514c1a35146a85166b
35667 Author: Grant Likely <grant.likely@secretlab.ca>
35668 Date:   Mon Sep 24 09:05:31 2007 -0600
35669
35670     Group PCI and PCMCIA drivers in drivers/Makefile
35671
35672     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35673
35674 commit 5798f87dc10a496d79d3177b9f5a76488987fd35
35675 Author: Grant Likely <grant.likely@secretlab.ca>
35676 Date:   Mon Sep 24 09:05:31 2007 -0600
35677
35678     Group block/flash drivers in drivers/Makefile
35679
35680     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35681
35682 commit df58c81551700f058b44cacf55a7997fa63bfe0a
35683 Author: Grant Likely <grant.likely@secretlab.ca>
35684 Date:   Mon Sep 24 09:05:31 2007 -0600
35685
35686     Group USB drivers in drivers/Makefile
35687
35688     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35689
35690 commit 5dbb6ed622e539b0c8493ef7e578d3a533181d29
35691 Author: Grant Likely <grant.likely@secretlab.ca>
35692 Date:   Mon Sep 24 09:05:30 2007 -0600
35693
35694     Group i2c drivers in drivers/Makefile
35695
35696     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35697
35698 commit ec00c76de0e5971273905998d62d6bb119324218
35699 Author: Grant Likely <grant.likely@secretlab.ca>
35700 Date:   Mon Sep 24 09:05:30 2007 -0600
35701
35702     Group console drivers in drivers/Makefile
35703
35704     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35705
35706 commit 754f230aa01b8c789fc31f8013c2487954073300
35707 Author: Grant Likely <grant.likely@secretlab.ca>
35708 Date:   Mon Sep 24 09:05:30 2007 -0600
35709
35710     Group network drivers in drivers/Makefile
35711
35712     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35713
35714 commit f0037c56b0d12cd46215124667b9f83d60ef9391
35715 Author: Grant Likely <grant.likely@secretlab.ca>
35716 Date:   Mon Sep 24 09:05:30 2007 -0600
35717
35718     Build: split COBJS value into multiple lines
35719
35720     This change is in preparation for condtitionial compile support in the
35721     build system.  By spliting them all into seperate lines now, subsequent
35722     patches that change 'COBJS-y += ' into 'COBJS-$(CONFIG_<blah>) += ' will
35723     be less invasive and easier to review
35724
35725     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35726
35727 commit 1b4aaffe4fb2a5e95d9111a5d94fd1f89215dce4
35728 Author: Grant Likely <grant.likely@secretlab.ca>
35729 Date:   Mon Sep 24 09:05:30 2007 -0600
35730
35731     Add .gitignore files
35732
35733     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35734     Acked-by: Kim Phillips <kim.phillips@freescale.com>
35735
35736 commit 955413f35f054a82e40042f1dbcf501c6a05719b
35737 Author: Grant Likely <grant.likely@secretlab.ca>
35738 Date:   Thu Nov 15 08:27:52 2007 -0700
35739
35740     Revert "Correct relocation fixup for mpc5xx"
35741
35742     This reverts commit 3649cd99ba815b6601868735765602f00ef3692b.
35743     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35744
35745 commit e15633888a058aacb31a62d2cf1278e1e4c236ab
35746 Author: Grant Likely <grant.likely@secretlab.ca>
35747 Date:   Thu Nov 15 08:24:32 2007 -0700
35748
35749     Revert "Correct fixup relocation for MPC5xxx"
35750
35751     This reverts commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.
35752     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35753
35754 commit 139365fbe566d0fc619a1ed04452ec5388f0cef8
35755 Author: Grant Likely <grant.likely@secretlab.ca>
35756 Date:   Thu Nov 15 08:21:04 2007 -0700
35757
35758     Revert "Correct fixup relocation for mpc8220"
35759
35760     This reverts commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00.
35761     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35762
35763 commit 70922342369e5e39b286fe21e768a239ca07a514
35764 Author: Grant Likely <grant.likely@secretlab.ca>
35765 Date:   Thu Nov 15 08:20:57 2007 -0700
35766
35767     Revert "Correct fixup relocation for mpc824x"
35768
35769     This reverts commit f3a52fe05923935db86985daf9438e2f70ac39aa.
35770     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35771
35772 commit 96279ab4cad60cb5972aa934fbe4845ac02cc75a
35773 Author: Grant Likely <grant.likely@secretlab.ca>
35774 Date:   Thu Nov 15 08:20:50 2007 -0700
35775
35776     Revert "Correct fixup relocation for mpc8260"
35777
35778     This reverts commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96.
35779     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35780
35781 commit 928fe33b24cdf382a8dc8687fed24b1961cdb5d6
35782 Author: Grant Likely <grant.likely@secretlab.ca>
35783 Date:   Thu Nov 15 08:20:43 2007 -0700
35784
35785     Revert "Correct fixup relocation for mpc83xx"
35786
35787     This reverts commit 057004f4a4863554d56cc56268bfa7c7d9738e27.
35788     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35789
35790 commit c93945e8f9e300860d2bf73a2549ce5794f8bd00
35791 Author: Grant Likely <grant.likely@secretlab.ca>
35792 Date:   Thu Nov 15 08:20:25 2007 -0700
35793
35794     Revert "[MPC512x] Correct fixup relocation"
35795
35796     This reverts commit 8d17979d0359492a822a0a409d26e3a3549b4cd4.
35797     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35798
35799 commit c9672f81f1bdb4e8ddf62aa72ca0206e8b72aa1c
35800 Author: Stefan Roese <sr@denx.de>
35801 Date:   Thu Nov 15 14:25:09 2007 +0100
35802
35803     ppc4xx: Small AMCC Kilauea cleanup
35804
35805     Remove not needed pci_target_init() function.
35806
35807     Signed-off-by: Stefan Roese <sr@denx.de>
35808
35809 commit aee747f19b460a0e9da20ff21e90fdaac1cec359
35810 Author: Stefan Roese <sr@denx.de>
35811 Date:   Thu Nov 15 14:23:55 2007 +0100
35812
35813     ppc4xx: Enable 440 GPIO init table CFG_440_GPIO_TABLE for 405 platforms
35814
35815     - Rename CFG_440_GPIO_TABLE to CFG_4xx_GPIO_TABLE
35816     - Cleanup of the 4xx GPIO functions
35817     - Move some GPIO defines from the cpu headers ppc405.h/ppc440.h into gpio.h
35818
35819     Signed-off-by: Stefan Roese <sr@denx.de>
35820
35821 commit 8ada0ebf38e4073beea0309188b25d82a112a2ae
35822 Author: Stefan Roese <sr@denx.de>
35823 Date:   Thu Nov 15 14:20:08 2007 +0100
35824
35825     ppc4xx: AMCC Taihu board config file cleanup
35826
35827     This patch makes the AMCC Taihu a little more compatible to the other
35828     AMCC eval boards.
35829
35830     Signed-off-by: Stefan Roese <sr@denx.de>
35831
35832 commit 5e71c51d74c963d3174060c078dcacf13bdd02ef
35833 Author: Marian Balakowicz <m8@semihalf.com>
35834 Date:   Thu Nov 15 13:37:28 2007 +0100
35835
35836     [INKA4x0] NG hardware: flash support
35837
35838     Disabled and remove inka4x0 custom flash driver, use CFI flash
35839     driver instead.
35840
35841     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35842
35843 commit 5fb6d7191e206cdde0e23140fd8111caed93a595
35844 Author: Marian Balakowicz <m8@semihalf.com>
35845 Date:   Thu Nov 15 13:29:55 2007 +0100
35846
35847     [INKA4x0] NG hardware: SDRAM support
35848
35849     Add support for three new DDR chips that may  be present on a NG
35850     INKA4x0 hardware: HYB25D512160BF-5, K4H511638C-7CB3, T46V32M16BN-6IT.
35851
35852     Cleanup board/inka4x0/mt48lc16m16a2-75.h file.
35853
35854     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35855
35856 commit f23cb34c367bb27585a4fdb8a75277370e7d0596
35857 Author: Marian Balakowicz <m8@semihalf.com>
35858 Date:   Thu Nov 15 13:24:43 2007 +0100
35859
35860     [INKA4x0] NG hardware: platform code update
35861
35862     - Cleanup compile warnings.
35863     - Add missing '\0' in default environment.
35864     - Increase CFG_MONITOR_LEN to 256 KiB.
35865     - Add required CFG_USE_PPCENV.
35866
35867     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
35868
35869 commit 2ae64f5135e51bb18753884d1265b99e89b5aedd
35870 Author: Peter Pearse <peter.pearse@arm.com>
35871 Date:   Thu Nov 15 08:58:00 2007 +0000
35872
35873     Remove warnings re CONFIG_EXTRA_ENV_SETTINGS
35874     Remove warnings re onenand_read() & write()
35875
35876 commit 2db916e14410e3ec1738508c7bf4dfeb2b299ae7
35877 Author: Peter Pearse <peter.pearse@arm.com>
35878 Date:   Thu Nov 15 08:45:13 2007 +0000
35879
35880     Correction patch
35881
35882 commit 1d8a49eca1c7bdc8db1c47a92f9014a29ead03ae
35883 Author: Roy Zang <tie-fei.zang@freescale.com>
35884 Date:   Thu Sep 13 18:52:28 2007 +0800
35885
35886     Enable ULi1575 Ethernet support in 8610HPCD config
35887
35888     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
35889     Acked-by: Jon Loeliger <jdl@freescale.com>
35890
35891 commit 54fd6c93c28a0a45352fff5dd92673401ff563f2
35892 Author: Stefan Roese <sr@denx.de>
35893 Date:   Tue Nov 13 08:18:20 2007 +0100
35894
35895     ppc4xx: lwmon5: Change PHY reset sequence for PHY MDIO address latching
35896
35897     Signed-off-by: Stefan Roese <sr@denx.de>
35898
35899 commit 7d0a4066b5a6b698e5fc1b66cfe9705774bbce93
35900 Author: Stefan Roese <sr@denx.de>
35901 Date:   Tue Nov 13 08:06:11 2007 +0100
35902
35903     ppc4xx: Fix 405EX PCIe UTLSET register setup
35904
35905     Signed-off-by: Stefan Roese <sr@denx.de>
35906
35907 commit 1ce55151c85d068f70317a8d65c61058b891afb4
35908 Author: Heiko Schocher <hs@denx.de>
35909 Date:   Tue Nov 13 07:50:29 2007 +0100
35910
35911     [UC101] SRAM now with 2 MB working.
35912
35913     Signed-off-by: Heiko Schocher <hs@denx.de>
35914
35915 commit 2d14684341109a69616e4d6016cd61402d55086f
35916 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35917 Date:   Fri Nov 9 15:37:53 2007 +0100
35918
35919     ppc4xx: Use generic usb-ohci driver for sequoia board
35920
35921     This patch makes the sequoia board use the generic usb-ohci driver
35922     instead of cpu/ppc4xx/usb_ohci.c.
35923
35924     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35925     Signed-off-by: Stefan Roese <sr@denx.de>
35926
35927 commit 9be659ac0868dc367caa957c5c725e46b07f6a5f
35928 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35929 Date:   Fri Nov 9 15:37:23 2007 +0100
35930
35931     ppc4xx: Make USB working with CONFIG_4xx_DCACHE defined
35932
35933     This patch disables the 44x d-cache on 'usb start' and
35934     reenables it on 'usb stop'. This should be seen as a
35935     temporary fix until the generic usb-ohci driver can
35936     life with d-cache enabled.
35937
35938     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35939     Signed-off-by: Stefan Roese <sr@denx.de>
35940
35941 commit fbde2169d2c48fcc9ff03489534a78ffb0a8a0d4
35942 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35943 Date:   Fri Nov 9 15:36:44 2007 +0100
35944
35945     ppc4xx: Remove redundant code from 4xx network driver
35946
35947     This patch removes some redundant code and decrements the end
35948     address of cache flush and invalidate by 1.
35949
35950     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35951     Signed-off-by: Stefan Roese <sr@denx.de>
35952
35953 commit 5ca9881aad8c413ac2a82868a5e3719178254502
35954 Author: Peter Pearse <peter.pearse@arm.com>
35955 Date:   Fri Nov 9 15:24:26 2007 +0000
35956
35957     Add apollon board support
35958     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
35959
35960 commit b53313dbfc74525d85f1e7e0102f902d5c863beb
35961 Author: Stefan Roese <sr@denx.de>
35962 Date:   Fri Nov 9 12:19:58 2007 +0100
35963
35964     ppc4xx: Remove In:/Out:/Err: boot output for AMCC Kilauea
35965
35966     Signed-off-by: Stefan Roese <sr@denx.de>
35967
35968 commit c7f69c340277935a6c19a956421852da944a365f
35969 Author: Stefan Roese <sr@denx.de>
35970 Date:   Fri Nov 9 12:18:54 2007 +0100
35971
35972     ppc4xx: Make output a little shorter on I2C bootrom detection
35973
35974     Most 4xx PPC capable of using an I2C bootrom for bootstrap setting
35975     already print a line with the information which I2C bootrom is
35976     used for bootstrap configuration. So we don't need this extra line
35977     with "I2C boot EEPROM en-/dis-abled".
35978
35979     This patch also has a little code cleanup integrated.
35980
35981     Signed-off-by: Stefan Roese <sr@denx.de>
35982
35983 commit 8d737a28152ec12873f8544cca1fb39a49e5e693
35984 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
35985 Date:   Thu Nov 8 12:50:18 2007 -0600
35986
35987     ColdFire: MCF5329 - Remove reset registers from CCM
35988
35989     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
35990
35991 commit 7d7cdea769a60b0a6e4c18bef7f9d648fd14b8d7
35992 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
35993 Date:   Thu Nov 8 12:31:11 2007 -0600
35994
35995     ColdFire: MCF5329 - Add Reset structure to immap_5329.h
35996
35997     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
35998
35999 commit 09b26cf00d76d75fdf7fdc4b13e4dd929743bc21
36000 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36001 Date:   Thu Nov 8 12:19:01 2007 -0600
36002
36003     ColdFire: MCF5329 - revert include/asm-m68k/m5329.h file mode
36004
36005     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36006
36007 commit 225a24b5e062ad94627424508ae814f51dbe1a34
36008 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36009 Date:   Wed Nov 7 18:00:54 2007 -0600
36010
36011     ColdFire: MCF5445x - Update correct RAMBAR and missing linker files
36012
36013     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36014
36015 commit 248c7c14835f34d5d910b45e5600050e58ca6cab
36016 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36017 Date:   Wed Nov 7 17:56:15 2007 -0600
36018
36019     ColdFire: MCF532x - Update do_reset() using core reset
36020
36021     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36022
36023 commit d9240a5f827eb3b476a6ba2938d01f1a9e7688f4
36024 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36025 Date:   Wed Nov 7 17:51:00 2007 -0600
36026
36027     ColdFire: Update cpu flag for 4.2-xx compiler
36028
36029     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36030
36031 commit 070ba56115b4da63b46e974287fa4550d4023386
36032 Author: York Sun <yorksun@freescale.com>
36033 Date:   Wed Oct 31 14:59:04 2007 -0500
36034
36035     8610: Add console frame buffer support to FSL 8610 DIU driver.
36036
36037     Add cfb console support to FSL 8610 DIU driver.
36038     Inspect board version from PIXIS to obtain correct pixel format.
36039
36040     Use #define CONFIG_VIDEO in config file to enable fb console.
36041
36042     To switch monitor, set monitor variable to
36043     0 - DVI, 1 - Single link LVDS, 2 - Double link LVDS
36044     followed by "diufb init".
36045
36046     Preserve logo bitmap at the top of the fb console.
36047
36048     Signed-off-by: York Sun <yorksun@freescale.com>
36049     Signed-off-by: Jon Loeliger <jdl@freescale.com>
36050
36051 commit a877880c6949e948bd63cd6ea4e216573d2f53dd
36052 Author: York Sun <yorksun@freescale.com>
36053 Date:   Mon Oct 29 13:58:39 2007 -0500
36054
36055     8610: Add 8610 DIU display driver
36056
36057     1280x1024 and 1024x768 @ 32 bpp are supported now.
36058     DVI, Single-link LVDS, Double-link LVDS are all supported.
36059
36060     Environmental variable "monitor" is used to specify monitor port.
36061
36062     A new command "diufb" is introduced to reinitialize monitor
36063     and display a BMP file in the memory. So far, 1-bit, 4-bit,
36064     8-bit and 24-bit BMP formats are supported.
36065
36066         diufb init
36067             - initialize the diu driver
36068         Enable the port specified in the environmental variable "monitor"
36069
36070         diufb addr
36071             - display bmp file in memory.
36072         The bmp image should be no bigger than the resolution, 1280x1024
36073         for DVI and double-link LVDS, 1024x768 for single-link LVDS.
36074
36075     Note, this driver allocate memory but doesn't free it after use
36076     It is written on purpose -- to avoid a failure of reallocation
36077     due to memory fragement.
36078
36079     ECC of DDR is disabled for DIU performance. L2 data cache is also disabled.
36080
36081     Signed-off-by: York Sun <yorksun@freescale.com>
36082     Signed-off-by: Jon loeliger <jdl@freescale.com>
36083
36084 commit 52e5ddfecdda308f75782fae206b677b1810f5f9
36085 Author: York Sun <yorksun@freescale.com>
36086 Date:   Wed Oct 31 10:43:59 2007 -0500
36087
36088     FSL: Add a freescale bitmap logo.
36089
36090     This Freescale logo is a 340 x 128 x 4bpp BMP file
36091     that can be displayed by the DIU Framebuffer driver.
36092
36093     Signed-off-by: York Sun <yorksun@freescale.com>
36094     Signed-off-by: Jon Loeliger <jdl@freescale.com>
36095
36096 commit 1815338fbd1c0f94f8276d2891b99caa5a05f622
36097 Author: York Sun <yorksun@freescale.com>
36098 Date:   Mon Oct 29 13:57:53 2007 -0500
36099
36100     8610: Make some extra debug environment variables conditional.
36101
36102     One may #define ENV_DEBUG to get them back again.
36103
36104     Signed-off-by: York Sun <yorksun@freescale.com>
36105
36106 commit 761421ccca80a9fb37b19c37aa61d46ef75e0647
36107 Author: Jason Jin <Jason.jin@freescale.com>
36108 Date:   Mon Oct 29 19:26:21 2007 +0800
36109
36110     8610: Actually enable pixis_reset CONFIGs
36111
36112     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
36113
36114 commit f3bceaab230b4748d0afc4109b6837308f018b40
36115 Author: Jason Jin <Jason.jin@freescale.com>
36116 Date:   Fri Oct 26 18:31:59 2007 +0800
36117
36118     Fix the BAT definition of PCI IO on 8610 board
36119
36120     The address in the BAT register is aligned with the BAT size.
36121     The original definition actually did not define BAT for PCIE2 IO.
36122     This patch fix this.
36123
36124     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
36125
36126 commit 9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56
36127 Author: Jason Jin <Jason.jin@freescale.com>
36128 Date:   Mon Oct 29 19:26:21 2007 +0800
36129
36130     Unify pixis_reset altbank across board families
36131
36132     Basically, refactor the CFG_PIXIS_VBOOT_MASK values
36133     into the separate board config files.
36134
36135     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
36136     Signed-off-by: Jon Loeliger <jdl@freescale.com>
36137
36138 commit a8318ec205c8e8794b5f9f1b8584abadb440e8ba
36139 Author: Jason Jin <Jason.jin@freescale.com>
36140 Date:   Fri Oct 26 18:32:00 2007 +0800
36141
36142     make 8610 board use pixis reset
36143
36144     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
36145
36146 commit 9c84709eedce9c680dd695984ab7d2328f4f04f5
36147 Author: Jon Loeliger <jdl@freescale.com>
36148 Date:   Thu Nov 1 12:23:29 2007 -0500
36149
36150     86xx: Fix broken variable reference when #def DEBUGing.
36151
36152     Sometimes you can't reference the DDR2 controller variables.
36153
36154     Signed-off-by: Jon Loeliger <jdl@freescale.com>
36155
36156 commit 1f103105a3746ab12279b63b8c1d372c0ce2cc58
36157 Author: Roy Zang <tie-fei.zang@freescale.com>
36158 Date:   Mon Nov 5 17:39:24 2007 +0800
36159
36160     Implement general ULi 526x Ethernet driver support in U-boot
36161
36162     This patch implements general ULi 526x Ethernet driver.
36163     Until now, it is the only native Ethernet port on
36164     MPC8610HPCD board, but it could be used on other boards
36165     with ULi 526x Ethernet port as well.
36166
36167     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
36168     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
36169     Acked-by: Jon Loeliger <jdl@freescale.com>
36170     Signed-off-by: Ben Warren <bwarren@qstreams.com>
36171
36172 commit 71bc6e6474fea8ef481b9b45d1edd7ad1f6dfbbd
36173 Author: Larry Johnson <lrj@arlinx.com>
36174 Date:   Thu Nov 1 08:46:50 2007 -0500
36175
36176     NET: Add Ethernet 1000BASE-X support for PPC4xx
36177
36178     This patch adds support for 1000BASE-X to functions "miiphy_speed ()" and
36179     "miiphy_duplex()".  It also adds function "miiphy_is_1000base_x ()", which
36180     returns non-zero iff the PHY registers are configured for 1000BASE-X.  The
36181     "mii info" command is modified to distinguish between 1000BASE-T and -X.
36182
36183     Signed-off-by: Larry Johnson <lrj@acm.org>
36184     Signed-off-by: Ben Warren <bwarren@qstreams.com>
36185
36186 commit 298035df4948b113d29ac0e694717d34b95bc5dc
36187 Author: Larry Johnson <lrj@arlinx.com>
36188 Date:   Wed Oct 31 11:21:29 2007 -0500
36189
36190     NET: Cosmetic changes
36191
36192     Signed-off-by: Larry Johnson <lrj@acm.org>
36193     Signed-off-by: Ben Warren <bwarren@qstreams.com>
36194
36195 commit 654f38b3a387886996a5a75771fbfc29cb4f225e
36196 Author: Stefan Roese <sr@denx.de>
36197 Date:   Mon Nov 5 07:43:05 2007 +0100
36198
36199     ppc4xx: Make output a little shorter on PCIe detection
36200
36201     Now not max 3 lines but 2 lines are printed per PCIe port.
36202
36203     Signed-off-by: Stefan Roese <sr@denx.de>
36204
36205 commit 992742a5b09d9040adbd156fb90756af66ade310
36206 Author: Wolfgang Denk <wd@denx.de>
36207 Date:   Sat Nov 3 23:09:27 2007 +0100
36208
36209     Cleanup coding style; update CHANGELOG
36210
36211     Signed-off-by: Wolfgang Denk <wd@denx.de>
36212
36213 commit e881cb563e32f45832b7b6db77bdcd017adcbb41
36214 Author: Bruce Adler <bruce.adler@ccpu.com>
36215 Date:   Fri Nov 2 13:15:42 2007 -0700
36216
36217     fix wording in README
36218
36219     Changed the wording to properly describe the shadowing
36220     of the environment from ROM to RAM
36221
36222     Signed-off-by: Bruce Adler <bruce.adler@acm.org>
36223
36224 commit ad845beef06245426c57b53dcdc01b7dc70e0d45
36225 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36226 Date:   Wed Oct 31 02:18:15 2007 +0900
36227
36228     blackfin: Move `-D__BLACKFIN__' to $(ARCH)_config.mk
36229
36230     Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36231
36232 commit ec22755799466c8a103664bb3a5e647bf9c238f4
36233 Author: Vlad Lungu <vlad@comsys.ro>
36234 Date:   Thu Oct 25 16:08:14 2007 +0300
36235
36236     Trimmed some variables in ne2000.c
36237
36238     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
36239
36240 commit eb6f214d3644b2a77968c176ed36dcf858cfe7e0
36241 Author: Zhang Wei <wei.zhang@freescale.com>
36242 Date:   Thu Oct 25 17:51:27 2007 +0800
36243
36244     Fix the issue of usb_kbd driver missing the scan code of key 'z'.
36245
36246     The scan code of the key 'z' is 0x1d, which should be handled.
36247
36248     The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
36249     controller.
36250
36251     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
36252
36253 commit bbf4796f6498fbade56d56eff3a0a49b299d93e5
36254 Author: Zhang Wei <wei.zhang@freescale.com>
36255 Date:   Thu Oct 25 17:30:04 2007 +0800
36256
36257     Fix USB support issue for MPC8641HPCN board.
36258
36259     The configuration file has already enabled USB, but it
36260     missed definition of CFG_OHCI_SWAP_REG_ACCESS, the USB
36261     on MPC8641HPCN can not work because of the wrong USB
36262     register endian.
36263
36264     And add the USB command to U-Boot commands list.
36265
36266     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
36267
36268 commit 4e62041023dc3de9d98d977bb080235bc6d035e0
36269 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36270 Date:   Wed Oct 24 18:16:01 2007 +0200
36271
36272     Use config_cmd_default.h instead of config_cmd_all.h
36273
36274     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36275
36276 commit 56622f87857439b1c221e9deef11a9d5bb5d4308
36277 Author: Marian Balakowicz <m8@semihalf.com>
36278 Date:   Wed Oct 24 01:37:36 2007 +0200
36279
36280     TQM5200: Call usb_cpu_init() during board init
36281
36282     usb_cpu_init() configures GPS USB pins, clocks, etc. and
36283     is required for proper operation of kernel USB subsystem.
36284     This setup was previously done in the kernel by the fixup
36285     code which is being removed, thus low level init must be
36286     done by U-boot now.
36287
36288     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
36289
36290 commit 29c29c0267fe857e72014ce90c5d35b2ef6302bd
36291 Author: Guennadi Liakhovetski <lg@denx.de>
36292 Date:   Tue Oct 23 16:25:50 2007 +0200
36293
36294     Fix typo in nfs.c
36295
36296     An obvious typo. Originally fixed in linkstation u-boot port.
36297
36298     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
36299
36300 commit 59543fe00a4ce720ef9f5aa7fb387c6daf1c7d78
36301 Author: Guennadi Liakhovetski <lg@denx.de>
36302 Date:   Tue Oct 23 14:35:05 2007 +0200
36303
36304     Fix a typo in cpu/mpc824x/interrupts.c
36305
36306     Since December 2003 the timer_interrupt_cpu() function in
36307     cpu/mpc824x/interrupts.c contains what seems to be a superfluous
36308     parameter. Remove it.
36309
36310     Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
36311
36312 commit c9e7b9b9a1700fe009678d1f9b41e6364ac5df2d
36313 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
36314 Date:   Wed Oct 17 11:13:51 2007 +0200
36315
36316     add ft_cpu_setup(..) on mpc8260
36317
36318     Add ft_cpu_setup(..)-function to adapt it for use with libfdt
36319     based on code from mpc5xxx
36320
36321     Sigend-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
36322     --
36323
36324 commit 6abd82e19ae93c0b4d104e50165e235915ec0875
36325 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
36326 Date:   Wed Oct 17 11:18:42 2007 +0200
36327
36328     changes for IDS8247 board support
36329
36330     To get the IDS8247 board working following are done:
36331      - FCC2 is deactivated
36332      - FCC1 is activated
36333      - I2C is activated
36334      - CFI driver is activated
36335      - Adapted for use with LIBFDT
36336
36337     Signed-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
36338     --
36339
36340 commit 3d6cb3b24add6415f86a0f013ea40f5639b90047
36341 Author: Stefan Roese <sr@denx.de>
36342 Date:   Sat Nov 3 12:08:28 2007 +0100
36343
36344     ppc4xx: Add AMCC Kilauea/Haleakala NAND booting support
36345
36346     This patch adds NAND booting support for the AMCC 405EX(r) eval boards.
36347     Again, only one image supports both targets.
36348
36349     Signed-off-by: Stefan Roese <sr@denx.de>
36350
36351 commit 8b6684a698500be9c142ec2c9f46cfc348e17f0c
36352 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
36353 Date:   Wed Oct 24 15:48:37 2007 +0200
36354
36355     ATSTK1002: Remove default ethernet addresses
36356
36357     Wolfgang is right: It's not a good idea to set up default initial
36358     ethernet addresses for a board, even though they belong to the local
36359     range.
36360
36361     This will change the failure mode from "IT manager screams at you for
36362     using duplicate ethernet addresses" to a nice error message explaining
36363     that the ethernet address hasn't been set properly.
36364
36365     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
36366
36367 commit e5c794e491a57d829b6d8733e2ed8368a2269abf
36368 Author: Justin Flammia <jflammia@savantav.com>
36369 Date:   Mon Oct 29 17:40:35 2007 -0400
36370
36371     DHCP Client Fix
36372
36373     This is a multi-part message in MIME format.
36374
36375     commit e6e505eae94ed721e123e177489291fc4544b7b8
36376     Author: Justin Flammia <jflammia@savantav.com>
36377     Date:   Mon Oct 29 17:19:03 2007 -0400
36378
36379         Found a bug in the way the DHCP Request packet is built, where the IP address
36380         that is offered by the server is bound to prematurely. This patch is a fix of
36381         that bug where the IP address offered by the DHCP server is not used until
36382         after the DHCP ACK from the server is received.
36383
36384     Signed-off-by: Justin Flammia <jflammia@savantav.com>
36385     Signed-off-by: Ben Warren <bwarren@qstreams.com>
36386
36387 commit 5d96d40d3f36da33348e68f9ea993f383e11f997
36388 Author: Stefan Roese <sr@denx.de>
36389 Date:   Wed Oct 31 20:58:34 2007 +0100
36390
36391     ppc4xx: Fix acadia_nand build problem
36392
36393     Since the cache handling functions were moved from start.S into cache.S
36394     the acadia NAND booting Makfile needs to be adapted accordingly.
36395
36396     Signed-off-by: Stefan Roese <sr@denx.de>
36397
36398 commit ea2e142843533ca593fcb5cb3e1daf1b7f5e5949
36399 Author: Stefan Roese <sr@denx.de>
36400 Date:   Wed Oct 31 20:57:11 2007 +0100
36401
36402     ppc4xx: Add CONFIG_4xx_DCACHE compile options to enable cached SDRAM
36403
36404     This patch adds the CONFIG_4xx_DCACHE options to some SDRAM init files
36405     and to the Sequoia TLB init code. Now the cache can be enabled on 44x
36406     boards by defining CONFIG_4xx_DCACHE in the board config file. This
36407     option will disappear, when more boards use is successfully and no
36408     more known problems exist.
36409
36410     This is tested successfully on Sequoia and Katmai. The only problem that
36411     needs to be fixed is, that USB is not working on Sequoia right now, since
36412     it will need some cache handling code too, similar to the 4xx EMAC driver.
36413
36414     Signed-off-by: Stefan Roese <sr@denx.de>
36415
36416 commit 3db93b8bedd32e914b38976141b3fdf4ea3ff738
36417 Author: Stefan Roese <sr@denx.de>
36418 Date:   Wed Oct 31 20:51:10 2007 +0100
36419
36420     ppc4xx: Enable CPU POST test for 4xx with dcache enabled
36421
36422     Now with caches enabled (i- and d-cache) on 44x, we need a chance to
36423     disable the cache for the CPU POST tests, since these tests consist
36424     of self modifying code. This is done via the new change_tlb() function.
36425
36426     Signed-off-by: Stefan Roese <sr@denx.de>
36427
36428 commit f71b2888b4b3c870909a0341427b2a914246f81f
36429 Author: Stefan Roese <sr@denx.de>
36430 Date:   Wed Oct 31 20:47:26 2007 +0100
36431
36432     ppc4xx: Change 4xx POST ethernet test to handle cached memory too
36433
36434     This patch enables the 4xx EMAC POST driver to work too, when dcache is
36435     enabled.
36436
36437     Signed-off-by: Stefan Roese <sr@denx.de>
36438
36439 commit a2685904061b35a17583d65fe47cdc2686a69eaa
36440 Author: Stefan Roese <sr@denx.de>
36441 Date:   Wed Oct 31 20:45:53 2007 +0100
36442
36443     ppc4xx: Remove temporary TLB entry in POST cache test only for 440
36444
36445     Signed-off-by: Stefan Roese <sr@denx.de>
36446
36447 commit ff768cb168d8157c24a25016dbfbeb465e47f420
36448 Author: Stefan Roese <sr@denx.de>
36449 Date:   Wed Oct 31 18:01:24 2007 +0100
36450
36451     ppc4xx: Change 4xx ethernet driver to handle cached memory too
36452
36453     This patch enables the 4xx EMAC driver to work too, when dcache is
36454     enabled.
36455
36456     Signed-off-by: Stefan Roese <sr@denx.de>
36457
36458 commit 483e09a223c666269ef81d3573a6591b1046b0ef
36459 Author: Stefan Roese <sr@denx.de>
36460 Date:   Wed Oct 31 17:59:22 2007 +0100
36461
36462     ppc4xx: Add change_tlb function to modify I attribute of TLB(s)
36463
36464     This function is used to either turn cache on or off in a specific
36465     memory area.
36466
36467     Signed-off-by: Stefan Roese <sr@denx.de>
36468
36469 commit d25dfe08fbd1220cb994e7e6b105049aa9aa8e79
36470 Author: Stefan Roese <sr@denx.de>
36471 Date:   Wed Oct 31 17:57:52 2007 +0100
36472
36473     ppc4xx: Remove cache definition from 4xx board config files
36474
36475     All 4xx board config files don't need the cache definitions anymore.
36476     These are now defined in common headers.
36477
36478     Signed-off-by: Stefan Roese <sr@denx.de>
36479
36480 commit 9b94ac61d2176185c30adf0793e079ec30e68687
36481 Author: Stefan Roese <sr@denx.de>
36482 Date:   Wed Oct 31 17:55:58 2007 +0100
36483
36484     ppc4xx: Rework 4xx cache support
36485
36486     New cache handling functions added and all existing functions
36487     moved from start.S into seperate cache.S.
36488
36489     Signed-off-by: Stefan Roese <sr@denx.de>
36490
36491 commit 06713773da4ac3d390c63d82641eb553224b27c2
36492 Author: Stefan Roese <sr@denx.de>
36493 Date:   Tue Oct 23 18:03:12 2007 +0200
36494
36495     ppc4xx: Remove compiler warning from previous commit
36496
36497     Signed-off-by: Stefan Roese <sr@denx.de>
36498
36499 commit 6fa397df67c0f269e4528bf181a6e8c88f9723f9
36500 Author: Stefan Roese <sr@denx.de>
36501 Date:   Tue Oct 23 14:40:30 2007 +0200
36502
36503     ppc4xx: Remove temporary TLB entry in POST cache test
36504
36505     Signed-off-by: Stefan Roese <sr@denx.de>
36506
36507 commit 1338e6a81834099ba19733b69aafd8ef5f098094
36508 Author: Stefan Roese <sr@denx.de>
36509 Date:   Tue Oct 23 14:05:08 2007 +0200
36510
36511     ppc4xx: Change autonegotiation timeout from 4 to 5 seconds
36512
36513     I lately noticed, that newer 4xx board with GBit support sometimes don't
36514     finish link autonegotiation in 4 seconds. Changing this timeout to 5
36515     seconds seems fine here.
36516
36517     Signed-off-by: Stefan Roese <sr@denx.de>
36518
36519 commit 2d83476a4c1c9911d158a3f8a4312d354bc1bdb7
36520 Author: Stefan Roese <sr@denx.de>
36521 Date:   Tue Oct 23 14:03:17 2007 +0200
36522
36523     ppc4xx: Change 4xx_enet & miiphy to use out_be32() and friends
36524
36525     This patch changes all in32/out32 calls to use the recommended in_be32/
36526     out_be32 macros instead.
36527
36528     Signed-off-by: Stefan Roese <sr@denx.de>
36529
36530 commit 7d47cee2cc57f907380f2c06f5b6c683d03e423a
36531 Author: Stefan Roese <sr@denx.de>
36532 Date:   Thu Oct 25 12:24:59 2007 +0200
36533
36534     ppc4xx: Fix POST ethernet test for Haleakala
36535
36536     The POST ethernet test needed to be changed to dynamically determine
36537     the count of ethernet devices. This code is cloned from the 4xx
36538     ethernet driver.
36539
36540     Signed-off-by: Stefan Roese <sr@denx.de>
36541
36542 commit f10493c6d77a1e07a6c2ff4d772937a5e7359d6a
36543 Author: Stefan Roese <sr@denx.de>
36544 Date:   Tue Oct 23 11:31:05 2007 +0200
36545
36546     ppc4xx: Correct UART input clock calculation and passing to fdt
36547
36548     We now use a value in the gd (global data) structure for the UART input
36549     frequency, since the PPC4xx_SYS_INFO struct is always rewritten completely
36550     in get_sys_info().
36551
36552     Signed-off-by: Stefan Roese <sr@denx.de>
36553
36554 commit 353f2688b4e0fc7b969bc70a02be4b40bf0dd124
36555 Author: Stefan Roese <sr@denx.de>
36556 Date:   Tue Oct 23 10:10:08 2007 +0200
36557
36558     ppc4xx: Add initial AMCC Haleakala PPC405EXr eval board support
36559
36560     The Haleakala is nearly identical with the Kilauea eval board. The only
36561     difference is that the 405EXr only supports one EMAC and one PCIe
36562     interface. This patch adds support for the Haleakala board by using
36563     the identical image for Kilauea and Haleakala. The distinction is done
36564     by comparing the PVR.
36565
36566     Signed-off-by: Stefan Roese <sr@denx.de>
36567
36568 commit 9f798766aa85e62eb8fa8c721e148df609b78137
36569 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
36570 Date:   Tue Oct 23 08:29:10 2007 +0200
36571
36572     ppc4xx: Fixed offset of refresh rate type for Bamboo on-board DDR SDRAM
36573
36574     This patch also adds a note to the fixed DDR setup for Bamboo NAND booting:
36575
36576     Note:
36577     As found out by Eugene O'Brien <eugene.obrien@advantechamt.com>, the fixed
36578     DDR setup has problems (U-Boot crashes randomly upon TFTP), when the DIMM
36579     modules are still plugged in. So it is recommended to remove the DIMM
36580     modules while using the NAND booting code with the fixed SDRAM setup!
36581
36582     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
36583     Signed-off-by: Stefan Roese <sr@denx.de>
36584
36585 commit afe9fa59cb63b4f9d16bf01c93eb212f25a38c2a
36586 Author: Stefan Roese <sr@denx.de>
36587 Date:   Mon Oct 22 16:24:44 2007 +0200
36588
36589     ppc4xx: Add SNTP support to AMCC Katmai, Kilauea & Makalu boards
36590
36591     Signed-off-by: Stefan Roese <sr@denx.de>
36592
36593 commit 3248f63ad89cb031491edb7016587fe6e9a238b9
36594 Author: Stefan Roese <sr@denx.de>
36595 Date:   Mon Oct 22 16:22:40 2007 +0200
36596
36597     ppc4xx: Rework of 4xx serial driver (4)
36598
36599     Change 4xx_uart.c:
36600
36601     - Use in_8/out_8 macros instead of in8/out8
36602     - No need for UART_BASE marco anymore, now really handled via function
36603       parameter
36604     - serial_init_common() introduced
36605     - Further coding style cleanup
36606
36607     Signed-off-by: Stefan Roese <sr@denx.de>
36608
36609 commit e61cb8163a66b8a135696ae232e2bead1ce0a049
36610 Author: Stefan Roese <sr@denx.de>
36611 Date:   Mon Oct 22 15:45:49 2007 +0200
36612
36613     ppc4xx: Rework of 4xx serial driver (3)
36614
36615     Change all linker scripts to reference the changed driver name iop480_uart.o.
36616
36617     Signed-off-by: Stefan Roese <sr@denx.de>
36618
36619 commit 882ae41274921f9016131806bdeb27e19606f47a
36620 Author: Stefan Roese <sr@denx.de>
36621 Date:   Mon Oct 22 15:44:39 2007 +0200
36622
36623     ppc4xx: Rework of 4xx serial driver (2)
36624
36625     Change all linker scripts to reference the changed driver name 4xx_uart.o.
36626
36627     Note: In most cased all these explicit referencing of these object files
36628     in the linker scripts is not neccessary. Only for manually embedded
36629     environment into the U-Boot image, which is not done is most cases.
36630
36631     Signed-off-by: Stefan Roese <sr@denx.de>
36632
36633 commit ad31e40bed042cb670d0036fea96435007afb838
36634 Author: Stefan Roese <sr@denx.de>
36635 Date:   Mon Oct 22 15:09:59 2007 +0200
36636
36637     ppc4xx: Rework of 4xx serial driver (1)
36638
36639     This patch starts the rework of the PPC4xx serial driver. First we split
36640     the file into two seperate files, one 4xx_uart.c with the 405/440 UART
36641     handling code and the other one iop480_uart.c with the UART code for the
36642     PLX-Tech IOP480 PPC (PPC403 based).
36643
36644     Signed-off-by: Stefan Roese <sr@denx.de>
36645
36646 commit 764e7417ee5f6e25b1715720e7d7dd3487109385
36647 Author: Stefan Roese <sr@denx.de>
36648 Date:   Mon Oct 22 10:30:38 2007 +0200
36649
36650     ppc4xx: Correct UART input clock calculation and passing to fdt
36651
36652     Signed-off-by: Stefan Roese <sr@denx.de>
36653
36654 commit 211ea91ac6c225bec7e668a03d0ba7d7310679fa
36655 Author: Stefan Roese <sr@denx.de>
36656 Date:   Mon Oct 22 07:34:34 2007 +0200
36657
36658     ppc4xx: Add initial AMCC Makalu 405EX support
36659
36660     Signed-off-by: Stefan Roese <sr@denx.de>
36661
36662 commit fa8aea20456e6f1dba43f46bcc72024dd9499998
36663 Author: Stefan Roese <sr@denx.de>
36664 Date:   Mon Oct 22 07:33:52 2007 +0200
36665
36666     ppc4xx: Add freqUART to CPU speed detection
36667
36668     This value is needed later for the device tree configuration of
36669     the uart clock.
36670
36671     Signed-off-by: Stefan Roese <sr@denx.de>
36672
36673 commit 837c730b4d7c6b1ddf3d1e247cb4445005d9bf0d
36674 Author: Stefan Roese <sr@denx.de>
36675 Date:   Sun Oct 21 14:26:29 2007 +0200
36676
36677     ppc: Small Kilauea cleanup of config file
36678
36679     Signed-off-by: Stefan Roese <sr@denx.de>
36680
36681 commit 758c037aeead34b49631b8da3a90b1bba14c0410
36682 Author: Stefan Roese <sr@denx.de>
36683 Date:   Sun Oct 21 08:16:12 2007 +0200
36684
36685     rtc: Add Xicor/Intersil X1205 RTC support
36686
36687     This patch adds support for the Xicor/Intersil X1205 RTC used on the
36688     AMCC Makalu eval board. This driver is basically cloned from the Linux
36689     driver version (2.6.23).
36690
36691     This patch also introduces the Linux bcd.h header for the BCD2BIN/
36692     BIN2BCD conversions. In the future some of the other U-Boot RTC driver
36693     should be converted to also use this header instead of implementing
36694     their own local copy of these functions/macros.
36695
36696     Signed-off-by: Stefan Roese <sr@denx.de>
36697
36698 commit 087dfdb79b5fd1ab99a26990c62a732c01a8c7f6
36699 Author: Stefan Roese <sr@denx.de>
36700 Date:   Sun Oct 21 08:12:41 2007 +0200
36701
36702     ppc4xx: Consolidate some of the 405 and 440 macros/structs into 4xx
36703
36704     This patch moves some common 4xx macros and the PPC405_SYS_INFO/
36705     PPC440_SYS_INFO structure into the common ppc4xx.h header.
36706
36707     Lot's of other macros are good candidates to be consolidated this way
36708     in the future.
36709
36710     Signed-off-by: Stefan Roese <sr@denx.de>
36711
36712 commit 770c7af5800f598d22730d1f4b70f16c9b33512e
36713 Author: Stefan Roese <sr@denx.de>
36714 Date:   Sun Oct 21 08:05:18 2007 +0200
36715
36716     ppc4xx: Fix size setup in Kilauea DDR2 init routine
36717
36718     The size was initilized wrong. Instead of 256MB, the DDR2 controller
36719     was setup to 512MB. Now the correct values is used.
36720
36721     This patch also does a little cleanup and adds a comment here.
36722
36723     Signed-off-by: Stefan Roese <sr@denx.de>
36724
36725 commit f6ba9b56607d4b27550301c7c7f6b55b654fd62a
36726 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
36727 Date:   Thu Oct 18 17:29:04 2007 +0200
36728
36729     ppc4xx: Define CONFIG_BOOKE for all PPC440 based processors
36730
36731     CONFIG_BOOKE must be defined for PPC440 processors so that the proper SPR
36732     number is used to access system registers.
36733
36734     Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
36735     Signed-off-by: Stefan Roese <sr@denx.de>
36736
36737 commit c36c68160333ac5fe41ec3db12a728b7075b3912
36738 Author: Stefan Roese <sr@denx.de>
36739 Date:   Thu Oct 18 07:42:27 2007 +0200
36740
36741     ppc4xx: Change inbound PCIe location for endpoint tests on Katmai
36742
36743     On Yucca & Katmai, the inbound memory map pointed to 0x4.0000.0000, which
36744     is the internal SRAM. Since I now ported and tested this endpoint mode
36745     on Kilauea successfully to map to 0 (SDRAM), I also changed this for
36746     Katmai.
36747
36748     Yucca will stay at internal SRAM for now. Not sure if somebody relies on
36749     this setup.
36750
36751     Signed-off-by: Stefan Roese <sr@denx.de>
36752
36753 commit 5cb4af4791f61843432155142b6cfac901f66c10
36754 Author: Stefan Roese <sr@denx.de>
36755 Date:   Thu Oct 18 07:39:38 2007 +0200
36756
36757     ppc4xx: Add PCIe endpoint support on Kilauea (405EX)
36758
36759     This patch adds endpoint support for the AMCC Kilauea eval board. It can
36760     be tested by connecting a reworked PCIe cable (only 1x lane singles
36761     connected) to another root-complex.
36762
36763     In this test setup, a 64MB inbound window is configured at BAR0 which maps
36764     to 0 on the PLB side. So accessing this BAR0 from the root-complex will
36765     access the first 64MB of the SDRAM on the PPC side.
36766
36767     Signed-off-by: Stefan Roese <sr@denx.de>
36768
36769 commit d4cb2d17946466740afeb195a57d6cb290bf4cc0
36770 Author: Stefan Roese <sr@denx.de>
36771 Date:   Sat Oct 13 16:43:23 2007 +0200
36772
36773     ppc4xx: Dynamic configuration of 4xx PCIe mode as root or endpoint mode
36774
36775     This patch adds support for dynamic configuration of PCIe ports for the
36776     AMCC PPC4xx boards equipped with PCIe interfaces. These are the PPC440SPe
36777     boards Yucca & Katmai and the 405EX board Kilauea.
36778
36779     This dynamic configuration is done via the "pcie_mode" environement
36780     variable. This variable can be set to "EP" or "RP" for endpoint or
36781     rootpoint mode. Multiple values can be joined via the ":" delimiter.
36782     Here an example:
36783
36784     pcie_mode=RP:EP:EP
36785
36786     This way, PCIe port 0 will be configured as rootpoint, PCIe port 1 and 2
36787     as endpoint.
36788
36789     Per default Yucca will be configured as:
36790     pcie_mode=RP:EP:EP
36791
36792     Per default Katmai will be configured as:
36793     pcie_mode=RP:RP:REP
36794
36795     Per default Kilauea will be configured as:
36796     pcie_mode=RP:RP
36797
36798     Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
36799     Signed-off-by: Stefan Roese <sr@denx.de>
36800
36801 commit fd671802b67a0ef37a06124fa2ce85f00aa22c6f
36802 Author: Stefan Roese <sr@denx.de>
36803 Date:   Thu Oct 11 11:15:59 2007 +0200
36804
36805     ppc4xx: Enable device tree support (fdt) on Kilauea per default
36806
36807     This patch enables the fdt support on the AMCC Kilauea eval board.
36808     Additionally now EBC ranges fdt fixup is included to support NOR
36809     FLASH mapping via the Linux physmap_of driver.
36810
36811     This Kilauea port now support booting arch/ppc and arch/powerpc
36812     Linux kernels. The default environment "net_nfs" is for arch/ppc
36813     and "net_nfs_fdt" is for arch/powerpc. In the long run, arch/ppc
36814     support will be removed.
36815
36816     Signed-off-by: Stefan Roese <sr@denx.de>
36817
36818 commit 4994ffd890b9d95d807387a9b7bd8a4803ee406e
36819 Author: Stefan Roese <sr@denx.de>
36820 Date:   Thu Oct 11 11:11:45 2007 +0200
36821
36822     ppc4xx: Add additional debug info to 4xx fdt support
36823
36824     Signed-off-by: Stefan Roese <sr@denx.de>
36825
36826 commit db3232ddb058d0ed0bc31f7c5c296748a1afac67
36827 Author: Stefan Roese <sr@denx.de>
36828 Date:   Fri Oct 5 21:28:58 2007 +0200
36829
36830     ppc4xx: Fix small merge problems with CPCI440 and Acadia boards
36831
36832     Signed-off-by: Stefan Roese <sr@denx.de>
36833
36834 commit 1941cce71b1ae975602854045061e82f94ecd012
36835 Author: Stefan Roese <sr@denx.de>
36836 Date:   Fri Oct 5 17:35:10 2007 +0200
36837
36838     ppc4xx: Fix small merge problem in 4xx_enet.c
36839
36840     Signed-off-by: Stefan Roese <sr@denx.de>
36841
36842 commit 566806ca1a1bf4d895daaf0b2ba5494abbffebaf
36843 Author: Stefan Roese <sr@denx.de>
36844 Date:   Fri Oct 5 17:11:30 2007 +0200
36845
36846     ppc4xx: Add initial AMCC Kilauea 405EX support
36847
36848     Signed-off-by: Stefan Roese <sr@denx.de>
36849
36850 commit dbbd125721aea6645fdb962f36bd41f59e272f9d
36851 Author: Stefan Roese <sr@denx.de>
36852 Date:   Fri Oct 5 17:10:59 2007 +0200
36853
36854     ppc4xx: Add PPC405EX support
36855
36856     Signed-off-by: Stefan Roese <sr@denx.de>
36857
36858 commit 1d7b874e9c9a7c66f5d8da9ec78a3733765d3e31
36859 Author: Stefan Roese <sr@denx.de>
36860 Date:   Fri Oct 5 17:09:36 2007 +0200
36861
36862     ppc4xx: Cleanup of 4xx PCI and PCIe support (renaming)
36863
36864     Signed-off-by: Stefan Roese <sr@denx.de>
36865
36866 commit 4f14ed6230b9c109aac9a6fb878497dabd44c2db
36867 Author: Stefan Roese <sr@denx.de>
36868 Date:   Fri Oct 5 17:07:50 2007 +0200
36869
36870     ppc4xx: Add initial fdt support to 4xx (first needed on 405EX)
36871
36872     Signed-off-by: Stefan Roese <sr@denx.de>
36873
36874 commit a424a8bb2924b90724b944165d3141f1fa8dfe5b
36875 Author: Stefan Roese <sr@denx.de>
36876 Date:   Fri Oct 5 17:04:57 2007 +0200
36877
36878     POST: Add 405EX support to 4xx UART POST test
36879
36880     Signed-off-by: Stefan Roese <sr@denx.de>
36881
36882 commit 4f2e92c11f6e2392fc8187829211a5ca7f0c1e12
36883 Author: Stefan Roese <sr@denx.de>
36884 Date:   Fri Oct 5 15:10:02 2007 +0200
36885
36886     DTT: Prepare DS1775 driver for use of different I2C addresses
36887
36888     Signed-off-by: Stefan Roese <sr@denx.de>
36889
36890 commit 19e93b1e16d267220440d827b920fbad8abfa70f
36891 Author: Stefan Roese <sr@denx.de>
36892 Date:   Fri Oct 5 14:23:43 2007 +0200
36893
36894     ppc4xx: 4xx_pcie: Change PCIe status output to match common style
36895
36896     Signed-off-by: Stefan Roese <sr@denx.de>
36897
36898 commit ff68f66bcb0da847845aa2fac11eba6c25938c99
36899 Author: Stefan Roese <sr@denx.de>
36900 Date:   Fri Oct 5 09:22:33 2007 +0200
36901
36902     ppc4xx: 4xx_pcie: Disable debug output as default
36903
36904     Signed-off-by: Stefan Roese <sr@denx.de>
36905
36906 commit 97923770cb52b64d69eec958a11b2eda8d46e0f7
36907 Author: Stefan Roese <sr@denx.de>
36908 Date:   Fri Oct 5 09:18:23 2007 +0200
36909
36910     ppc4xx: 4xx_pcie: More general cleanup and 405EX PCIe support added
36911
36912     Signed-off-by: Stefan Roese <sr@denx.de>
36913
36914 commit 4dbee8a90df613eb517aadbecebd70f168913d30
36915 Author: Stefan Roese <sr@denx.de>
36916 Date:   Fri Oct 5 07:57:20 2007 +0200
36917
36918     ppc4xx: 4xx_pcie: Change CFG_PCIE_MEMSIZE to 128MB on Yucca & Katmai
36919
36920     128MB seems to be the smallest possible value for the memory size
36921     for on PCIe port. With this change now the BAR's of the PCIe cards
36922     are accessible under U-Boot.
36923
36924     One big note: This only works for PCIe port 0 & 1. For port 2 this
36925     currently doesn't work, since the base address is now 0xc0000000
36926     (0xb0000000 + 2 * 0x08000000), and this is already occupied by
36927     CFG_PCIE0_CFGBASE. But solving this issue for port 2 would mean
36928     to change the base addresses completely and this change would have
36929     too much impact right now.
36930
36931     This patch adds debug output to the 4xx pcie driver too.
36932
36933     Signed-off-by: Stefan Roese <sr@denx.de>
36934
36935 commit 6d95289281ed2958ebf76d2b55f86bbd88591fd2
36936 Author: Stefan Roese <sr@denx.de>
36937 Date:   Wed Oct 3 21:16:32 2007 +0200
36938
36939     ppc4xx: 4xx_pcie: Fix problem with SDRN access using port number as idx
36940
36941     Signed-off-by: Stefan Roese <sr@denx.de>
36942
36943 commit 3048bcbf0bad262378c5af68f2bf6778fb7d829a
36944 Author: Stefan Roese <sr@denx.de>
36945 Date:   Wed Oct 3 15:01:02 2007 +0200
36946
36947     ppc4xx: Rename 405gp_pci to 4xx_pci since its used on all 4xx platforms
36948
36949     These files were introduced with the IBM 405GP but are currently used on all
36950     4xx PPC platforms. So the name doesn't match the content anymore. This patch
36951     renames the files to 4xx_pci.c/h.
36952
36953     Signed-off-by: Stefan Roese <sr@denx.de>
36954
36955 commit 94276eb0a7a35b9e8c053d589ae225b0f017a237
36956 Author: Stefan Roese <sr@denx.de>
36957 Date:   Wed Oct 3 14:14:58 2007 +0200
36958
36959     ppc4xx: Add a comment for 405EX PCIe endpoint configuration
36960
36961     Signed-off-by: Stefan Roese <sr@denx.de>
36962
36963 commit 03d344bb6a5f082ea10ec9d753558ea7dfd1c626
36964 Author: Stefan Roese <sr@denx.de>
36965 Date:   Wed Oct 3 10:38:09 2007 +0200
36966
36967     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (3)
36968
36969     (3) This patch introduces macros like SDRN_PESDR_DLPSET(port) to access
36970         the SDR registers of the PCIe ports. This makes the overall design
36971         clearer, since it removed a lot of switch statements which are not
36972         needed anymore.
36973
36974         Also, the functions ppc4xx_init_pcie_rootport() and
36975         ppc4xx_init_pcie_entport() are merged into a single function
36976         ppc4xx_init_pcie_port(), since most of the code was duplicated.
36977         This makes maintainance and porting to other 4xx platforms
36978         easier.
36979
36980     Signed-off-by: Stefan Roese <sr@denx.de>
36981
36982 commit 026f71106871f31d17d0ea0db9a7547ff92934bc
36983 Author: Stefan Roese <sr@denx.de>
36984 Date:   Wed Oct 3 07:48:09 2007 +0200
36985
36986     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (2)
36987
36988     This patch is the first patch of a series to make the 440SPe PCIe code
36989     usable on different 4xx PPC platforms. In preperation for the new 405EX
36990     which is also equipped with PCIe interfaces.
36991
36992     (2) This patch renames the functions from 440spe_ to 4xx_ with a
36993         little additional cleanup
36994
36995     Signed-off-by: Stefan Roese <sr@denx.de>
36996
36997 commit c7c6da23028f146d912514b95aefa3da7cf37699
36998 Author: Stefan Roese <sr@denx.de>
36999 Date:   Wed Oct 3 07:34:10 2007 +0200
37000
37001     ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (1)
37002
37003     This patch is the first patch of a series to make the 440SPe PCIe code
37004     usable on different 4xx PPC platforms. In preperation for the new 405EX
37005     which is also equipped with PCIe interfaces.
37006
37007     (1) This patch renames the files from 440spe_pcie to 4xx_pcie
37008
37009     Signed-off-by: Stefan Roese <sr@denx.de>
37010
37011 commit 245a362ad3c0c1b84fccc9fec7b623eb14f6e502
37012 Author: Marian Balakowicz <m8@semihalf.com>
37013 Date:   Wed Oct 24 01:37:36 2007 +0200
37014
37015     TQM5200: Call usb_cpu_init() during board init
37016
37017     usb_cpu_init() configures GPS USB pins, clocks, etc. and
37018     is required for proper operation of kernel USB subsystem.
37019     This setup was previously done in the kernel by the fixup
37020     code which is being removed, thus low level init must be
37021     done by U-boot now.
37022
37023     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37024     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
37025
37026 commit b5af773f8d92677e06f3295b45557c9d0a487c24
37027 Author: Zhang Wei <wei.zhang@freescale.com>
37028 Date:   Thu Oct 25 17:51:27 2007 +0800
37029
37030     Fix the issue of usb_kbd driver missing the scan code of key 'z'.
37031
37032     The scan code of the key 'z' is 0x1d, which should be handled.
37033
37034     The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
37035     controller.
37036
37037     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
37038     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
37039
37040 commit 85ac988e86f9414fa645b0148dc66c3520a1eb84
37041 Author: Rodolfo Giometti <giometti@enneenne.com>
37042 Date:   Mon Oct 15 11:59:17 2007 +0200
37043
37044     PXA USB OHCI: "usb stop" implementation.
37045
37046     Some USB keys need to be switched off before loading the kernel
37047     otherwise they can remain in an undefined status which prevents them
37048     to be correctly recognized by the kernel.
37049
37050     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
37051     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
37052
37053 commit 31548249decf18a6b877a18436b6139dd483fe4a
37054 Author: Justin Flammia <jflammia@savantav.com>
37055 Date:   Mon Oct 29 17:40:35 2007 -0400
37056
37057     DHCP Client Fix
37058
37059     This is a multi-part message in MIME format.
37060
37061     commit e6e505eae94ed721e123e177489291fc4544b7b8
37062     Author: Justin Flammia <jflammia@savantav.com>
37063     Date:   Mon Oct 29 17:19:03 2007 -0400
37064
37065         Found a bug in the way the DHCP Request packet is built, where the IP address
37066         that is offered by the server is bound to prematurely. This patch is a fix of
37067         that bug where the IP address offered by the DHCP server is not used until
37068         after the DHCP ACK from the server is received.
37069
37070     Signed-off-by: Justin Flammia <jflammia@savantav.com>
37071     Signed-off-by: Ben Warren <bwarren@qstreams.com>
37072
37073 commit e8ee8f3ade2a06c1893dd5e68f223070d650c7ed
37074 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37075 Date:   Thu Oct 25 17:16:22 2007 -0500
37076
37077     ColdFire 54455: Fix correct boot location for atmel and intel
37078
37079     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37080
37081 commit 688e8eb414ac111cca7ce60bdf30e805ab9a7bcb
37082 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37083 Date:   Thu Oct 25 17:14:00 2007 -0500
37084
37085     ColdFire: Fix build error when CONFIG_WATCHDOG is defined
37086
37087     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37088
37089 commit c67e12e705b204cfe914e3e3e693d69a445dcabf
37090 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37091 Date:   Thu Oct 25 17:12:36 2007 -0500
37092
37093     ColdFire 5329: Assign correct SDRAM size and fix cache
37094
37095     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37096
37097 commit 95e9f2c212a65610b2e59a5c00d0113383a4da0b
37098 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37099 Date:   Thu Oct 25 17:10:23 2007 -0500
37100
37101     ColdFire 5253: Assign correct SDRAM size
37102
37103     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37104
37105 commit 2acefa72ee0026f862ab65597ca687428f63a973
37106 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37107 Date:   Thu Oct 25 17:09:17 2007 -0500
37108
37109     ColdFire 5282: Fix external flash boot and return dramsize
37110
37111     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37112
37113 commit d78791ae914d4e7c5edca1cdad73b3dc81a4eb82
37114 Author: Bartlomiej Sieka <tur@semihalf.com>
37115 Date:   Thu Oct 25 17:20:01 2007 +0200
37116
37117     TQM5200: increase kernel_addr_r and fdt_addr_r (hinted by Wolfgang Denk).
37118
37119     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
37120
37121 commit 1a0ce20aa4cb4e3068da04e7290ee9986fd0b834
37122 Author: Martin Krause <martin.krause@tqs.de>
37123 Date:   Wed Oct 24 08:42:25 2007 +0200
37124
37125     TQM5200: fix spurious characters on second serial interface
37126
37127     With this patch PSC3 is configured as UART. This is done, because if
37128     the pins of PSC3 are not configured at all (-> all pins are GPI),
37129     due to crosstalk, spurious characters may be send over the RX232_2_TXD
37130     signal line.
37131
37132     Signed-off-by: Martin Krause <martin.krause@tqs.de>
37133     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
37134
37135 commit be4a87f11e297a5cededbf7dd71c0248f3874acd
37136 Author: Martin Krause <martin.krause@tqs.de>
37137 Date:   Wed Oct 24 08:41:27 2007 +0200
37138
37139     TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
37140
37141     Some commands for the STK52xx base board try to access the SM501 grafic
37142     controller. But the TQM5200S has no grafic controller (only the TQM5200
37143     and the TQM5200B have). This patch deactivates the commands accessing
37144     the SM501 for the TQM5200S.
37145
37146     Signed-off-by: Martin Krause <martin.krause@tqs.de>
37147     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
37148
37149 commit b31f64343ead9482cd439b1adbe4c34026a641b1
37150 Author: Martin Krause <martin.krause@tqs.de>
37151 Date:   Mon Oct 22 16:45:53 2007 +0200
37152
37153     TQM5200: fix spurious characters on second serial interface
37154
37155     With this patch PSC3 is configured as UART. This is done, because if
37156     the pins of PSC3 are not configured at all (-> all pins are GPI),
37157     due to crosstalk, spurious characters may be send over the RX232_2_TXD
37158     signal line.
37159
37160     Signed-off-by: Martin Krause <martin.krause@tqs.de>
37161
37162 commit 0fc0f91b20ffa802f5a66534ca5c2844910583f6
37163 Author: Martin Krause <martin.krause@tqs.de>
37164 Date:   Mon Oct 22 16:40:06 2007 +0200
37165
37166     TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
37167
37168     Some commands for the STK52xx base board try to access the SM501 grafic
37169     controller. But the TQM5200S has no grafic controller (only the TQM5200
37170     and the TQM5200B have). This patch deactivates the commands accessing
37171     the SM501 for the TQM5200S.
37172
37173     Signed-off-by: Martin Krause <martin.krause@tqs.de>
37174
37175 commit 7b0a42219f30277f71f4405cbaf8a269f6d2d227
37176 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37177 Date:   Sun Oct 21 09:14:28 2007 +0200
37178
37179     Mips: Fix string functions differ prototype declaration
37180
37181     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37182
37183 commit cb8250fe4b3c4ed549b270e8a20bc22060e7e1d2
37184 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
37185 Date:   Fri Oct 19 17:51:40 2007 -0500
37186
37187     fsl_pci_init enable COMMAND_MEMORY if inbound window
37188
37189     Patch 16e23c3f removed PCSRBAR allocation.  But passing zero windows
37190     to pciauto_setup_device has the side effect of not getting
37191     COMMAND_MEMORY set.
37192
37193     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
37194
37195 commit e9d0d527992566ebef9826962ff1745b2f082b92
37196 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37197 Date:   Fri Oct 19 10:55:24 2007 +0200
37198
37199     delta: Fix OHCI_REGS_BASE undeclared and wait_ms implicit declaration
37200
37201     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37202
37203 commit 9c4884f54da982ce990c7d1760ac81b0704d3c64
37204 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37205 Date:   Fri Oct 19 08:10:15 2007 +0200
37206
37207     fix warning: no return statement in function returning non-void
37208
37209     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37210
37211 commit e78220f6e514206757acfe247297fc9a328a881f
37212 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37213 Date:   Fri Oct 19 06:33:45 2007 +0200
37214
37215     xsengine: Fix no partition type specified, use DOS as default
37216
37217     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37218
37219 commit 10cdb8dbd67a818823ab9ec88b68fc348903db59
37220 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37221 Date:   Fri Oct 19 00:24:59 2007 +0200
37222
37223     lubbock: Fix no partition type specified, use DOS as default
37224
37225     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37226
37227 commit 41b4d282d38fa7231c315c5f6cfff5bdd24e0191
37228 Author: Wolfgang Denk <wd@denx.de>
37229 Date:   Tue Oct 23 16:50:03 2007 +0200
37230
37231     Coding style: keep lists sorted; update CHANGELOG
37232
37233     Signed-off-by: Wolfgang Denk <wd@denx.de>
37234
37235 commit 58b74b05c621e2835ecf4e2d3243042cf4186777
37236 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37237 Date:   Fri Oct 19 00:09:05 2007 +0200
37238
37239     Fix missing drivers makefile entries ds1722.c mw_eeprom.c
37240
37241     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37242
37243 commit 96455bfebc9887837095c9051d216f53c61b5f10
37244 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37245 Date:   Fri Oct 19 00:07:39 2007 +0200
37246
37247     Fix warning differ in signedness in board/innokom/innokom.c
37248
37249     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37250
37251 commit 2a4741d9a14ec475f50e9856d2c0a67e8b4271bd
37252 Author: Marcel Ziswiler <marcel@ziswiler.com>
37253 Date:   Fri Oct 19 00:25:33 2007 +0200
37254
37255     fix pxa255_idp board
37256
37257     The pxa255_idp being an old unmaintained board showed several issues:
37258     1. CONFIG_INIT_CRITICAL was still defined.
37259     2. Neither CONFIG_MAC_PARTITION nor CONFIG_DOS_PARTITION was defined.
37260     3. Symbol flash_addr was undeclared.
37261     4. The boards lowlevel_init function was still called memsetup.
37262     5. The TEXT_BASE was still 0xa3000000 rather than 0xa3080000.
37263     6. Using -march=armv5 instead of -march=armv5te resulted in lots of
37264     'target CPU does not support interworking' warnings on recent compilers.
37265     7. The PXA's serial driver redefined FFUART, BTUART and STUART used as
37266     indexes rather than the register definitions from the pxa-regs header
37267     file. Renamed them to FFUART_INDEX, BTUART_INDEX and STUART_INDEX to
37268     avoid any ambiguities.
37269     8. There were several redefinition warnings concerning ICMR, OSMR3,
37270     OSCR, OWER, OIER, RCSR and CCCR in the PXA's assembly start file.
37271     9. The board configuration file was rather outdated.
37272     10. The part header file defined the vendor, product and revision arrays
37273     as unsigned chars instead of just chars in the block_dev_desc_t
37274     structure.
37275
37276     Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
37277
37278 commit 298cd4cafe81ff8a6c87be8fbc440a20720d3ed6
37279 Author: Rune Torgersen <runet@innovsys.com>
37280 Date:   Wed Oct 17 11:56:31 2007 -0500
37281
37282     Make MPC8266ADS command selection more robust
37283
37284     Fix MPC8266 command line definition so it won't break when new commands
37285     are added to u-boot.
37286     Signed-off-by Rune Torgersen <runet@innovsys.com>
37287
37288 commit d3afa1ee19345a31fd1eaad3e98b97d13ca47315
37289 Author: Bartlomiej Sieka <tur@semihalf.com>
37290 Date:   Tue Oct 23 13:14:10 2007 +0200
37291
37292     Motion-PRO: Update configuration to accomodate next generation board.
37293
37294     New board has faster oscillator and a different Flash chip. This affects:
37295     - CFG_MPC5XXX_CLKIN
37296     - SDRAM timings
37297     - Flash CS configuration (timings)
37298     - Flash sector size, and thus MTD partition layout
37299     - malloc() arena size (due to bigger Flash sectors)
37300     - smaller memory test range (due to bigger malloc() arena)
37301
37302     This patch also enables more extensive memory testing via "mtest".
37303
37304     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
37305
37306 commit eff501904df2bf1724a750062628ba2c51dbb1f8
37307 Author: Bartlomiej Sieka <tur@semihalf.com>
37308 Date:   Tue Oct 23 11:36:07 2007 +0200
37309
37310     Motion-PRO: Add setting of SDelay reg. to SDRAM controller configuration.
37311
37312     Per AN3221 (MPC5200B SDRAM Initialization and Configuration), the SDelay
37313     register must be written a value of 0x00000004 as the first step of the
37314     SDRAM contorller configuration.
37315
37316     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
37317
37318 commit 7a9348728ebda63cdbaacffd83099aa71d9d4c54
37319 Author: Peter Pearse <peter.pearse@arm.com>
37320 Date:   Tue Oct 23 10:22:16 2007 +0100
37321
37322     Move PL01* serial drivers to drivers/serial and adjust Makefiles.
37323
37324 commit 20d500d531a6b971ce6cc1bf191cb0092cdc0afc
37325 Author: Stefan Roese <sr@denx.de>
37326 Date:   Tue Oct 23 10:17:42 2007 +0200
37327
37328     ppc4xx: lwmon5: Some further GPIO config changes
37329
37330     Signed-off-by: Stefan Roese <sr@denx.de>
37331
37332 commit de9a738faa7c2f47286119c3bfebc3dfbfe7d86d
37333 Author: Vlad Lungu <vlad@comsys.ro>
37334 Date:   Sun Oct 21 22:10:10 2007 +0900
37335
37336     [MIPS] Fix UNCACHED_SDRAM
37337
37338     PHYSADDR is for physical address, KSEG1ADDR is for uncached.
37339
37340     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
37341     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
37342
37343 commit 00101dd7a32d12f698150123e47e4b3420279f86
37344 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
37345 Date:   Sun Oct 21 21:30:42 2007 +0900
37346
37347     [MIPS] Add PIC-related switches to PLATFORM_{CPP,LD}FLAGS and cleanup
37348
37349     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
37350
37351 commit eb700636db017d310edaeb559b13d82588560674
37352 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
37353 Date:   Sun Oct 21 10:55:37 2007 +0900
37354
37355     [MIPS] u-boot.lds: Define _gp in a standard manner
37356
37357     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
37358
37359 commit 22069215eb7adf5a3888bf7c7784ea9d70a72cd0
37360 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
37361 Date:   Sun Oct 21 10:55:36 2007 +0900
37362
37363     [MIPS] Fix $gp usage
37364
37365     Now we load $gp with _GLOBAL_OFFSET_TABLE_, but this is incorrect use.
37366     As a general principle, we should use _gp for $gp.
37367
37368     Thanks to linker script's help we fortunately have _gp which equals to
37369     _GLOBAL_OFFSET_TABLE_. But once _gp gets out of alignment, we will not
37370     be able to access to GOT entires, global variables and procedure entry
37371     points. The right thing to do is to use _gp.
37372
37373     This patch also introduce a new symbol `.gpword _GLOBAL_OFFSET_TABLE_'
37374     which holds the offset from _gp. When updating GOT entries, we use this
37375     offset and _gp to calculate the final _GLOBAL_OFFSET_TABLE_.
37376
37377     This patch is originally submitted by Vlad Lungu <vlad@comsys.ro>, then
37378     I made some change to leave over num_got_entries.
37379
37380     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
37381     Cc: Vlad Lungu <vlad@comsys.ro>
37382
37383 commit cbf2323b5b8285ea01acba7bbb905a3162d9b021
37384 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
37385 Date:   Sun Oct 21 10:55:36 2007 +0900
37386
37387     [MIPS] u-boot.lds: Fix __got_start and __got_end
37388
37389     Ensure that __got_start points to top of the `.got', and __got_end points
37390     to bottom as well, so that we never fail to count num_got_entries.
37391
37392     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
37393
37394 commit e5f325fec5b48ae705c89522923ba5a2e37cd5c7
37395 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
37396 Date:   Sun Oct 21 10:55:36 2007 +0900
37397
37398     [MIPS] u-boot.lds: Remove duplicated .sdata section
37399
37400     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
37401
37402 commit 05bf4919c1ce49cdedadacd564d0786a8ed796a1
37403 Author: Wolfgang Denk <wd@denx.de>
37404 Date:   Sun Oct 21 01:01:17 2007 +0200
37405
37406     Minor coding style cleanup; update CHANGELOG
37407
37408     Signed-off-by: Wolfgang Denk <wd@denx.de>
37409
37410 commit ff285ca07eda1ea4a8909848cc1cc604ec8fec9c
37411 Author: Vlad Lungu <vlad@comsys.ro>
37412 Date:   Thu Oct 4 20:47:10 2007 +0300
37413
37414     Fix NE2000 driver:
37415
37416     Fixed typo in ne2000.h, thinko re n2k_inb() usage, don't try
37417     to do anything in eth_stop() if eth_init() was not called.
37418     Simplified RX path in order to avoid timeouts on really really
37419     fast NE2000 cards (read: qemu with internal tftp), NetLoop() is
37420     clever enough to cope with 1 packet per eth_rx().
37421
37422     Signed-off-by: Vlad Lungu <vlad@comsys.ro>
37423
37424 commit df90968b48fb34fa9072fab150db2ac89678f537
37425 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
37426 Date:   Mon Sep 24 13:32:13 2007 -0400
37427
37428     Setting MSR[DE] in do_reset
37429
37430     Hello,
37431        This patch ensures the soft reset of the board for the 85xx boards
37432        by setting the MSR[DE] in the do_reset function.
37433
37434     Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
37435
37436 commit 1e701e701304b3c3a3768ca83dd2ab7b9e88c77d
37437 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
37438 Date:   Mon Sep 24 13:36:01 2007 -0400
37439
37440     MSR overwrite fix
37441
37442     Hello,
37443       This patch fixes the MSR overwrite in the start.S when moving out of
37444       the last 4K page.
37445
37446     Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
37447
37448 commit 5c7ea64bb74a850a2b2303f853a8270695ad8602
37449 Author: Dan Wilson <dwilson@fulcrummicro.com>
37450 Date:   Fri Oct 19 11:33:48 2007 -0500
37451
37452     tsec driver should clear RHALT on startup
37453
37454     This was causing problems for some people.
37455
37456     Signed-off-by: Alain Gravel <agravel@fulcrummicro.com>
37457     Signed-off-by: Dan Wilson <dwilson@fulcrummicro.com>
37458     Signed-off-by: Andy Fleming <afleming@freescale.com>
37459
37460 commit 7600d47b8f6a10019e537dc9a62aa1498df58d25
37461 Author: Kumar Gala <galak@kernel.crashing.org>
37462 Date:   Thu Oct 11 00:29:18 2007 -0500
37463
37464     Improve handling of PCI interrupt device tree fixup on MPC85xx CDS
37465
37466     On the MPC85xx CDS we have two issues:
37467
37468     1. The device tree fixup code did not check to see if the property we are
37469     trying to update is actually found.  Its possible that it would update
37470     random memory starting at 0.
37471
37472     2. Newer Linux kernel's have moved the location of the PCI nodes to be
37473     sibilings of the soc node and not children.  The explicit PATH to the PCI
37474     node would not be found for these device trees.  Add the ability to handle
37475     both paths.  In the future we shouldn't handle such fixups by explicit path.
37476
37477     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37478
37479 commit a3063eec775719b7e91023bbec3f64b3118791df
37480 Author: Kumar Gala <galak@kernel.crashing.org>
37481 Date:   Thu Oct 11 00:18:48 2007 -0500
37482
37483     Set OF_STDOUT_PATH to match the default console on MPC8568 MDS
37484
37485     On the MPC8568 MDS we use ttyS0, UART0, etc. as the standard configured
37486     console.  Make it so we match that config what we tell Linux as the early
37487     STDOUT console.
37488
37489     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37490
37491 commit e1ce3cb617bb06f91f82f98915391175addf3e82
37492 Author: Kumar Gala <galak@kernel.crashing.org>
37493 Date:   Tue Oct 2 11:12:27 2007 -0500
37494
37495     Remove magic numbers from cache related operations for mpc85xx
37496
37497     The mpc85xx start code uses some magic numbers that we actually
37498     have #defines for in <config.h> so use those instead.
37499
37500     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37501
37502 commit 5441f61a3d8b7034f19fc1361183e936198e6dbb
37503 Author: Detlev Zundel <dzu@denx.de>
37504 Date:   Fri Oct 19 16:47:26 2007 +0200
37505
37506     Fix two typos.
37507
37508     Signed-off-by: Detlev Zundel <dzu@denx.de>
37509
37510 commit 281df457c1aa50d2752165d0c5c3282d4027b974
37511 Author: Tony Li <tony.li@freescale.com>
37512 Date:   Thu Oct 18 17:47:19 2007 +0800
37513
37514     mpc83xx: Add configure entry for MPC83xx ATM support
37515
37516     Add MPC8360EMDS_ATM_config and MPC832XEMDS_ATM_config into
37517     Makfile and MAKEALL
37518
37519     Signed-off-by: Tony Li <tony.li@freescale.com>
37520     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37521
37522 commit d2646554f529a9577515eceb0ec5eceee18244ba
37523 Author: Tony Li <tony.li@freescale.com>
37524 Date:   Thu Oct 18 17:44:38 2007 +0800
37525
37526     mpc83xx: pq-mds-pib.c typo error
37527
37528     Correct to val8 from val.
37529
37530     Signed-off-by: Tony Li <tony.li@freescale.com>
37531     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37532
37533 commit 3e11ae80fec1ee12194940955431186abf6009c2
37534 Author: Stefan Roese <sr@denx.de>
37535 Date:   Wed Oct 17 15:40:19 2007 +0200
37536
37537     ppc4xx: Add 667/133 (CPU/PLB) frequency setup to Sequoia bootstrap command
37538
37539     Signed-off-by: Stefan Roese <sr@denx.de>
37540
37541 commit 3c89d75409eb26639d36dfa11d4ee3d8b962dc3c
37542 Author: Jon Loeliger <jdl@freescale.com>
37543 Date:   Tue Oct 16 15:27:43 2007 -0500
37544
37545     Initial mpc8610hpcd Makefile files.
37546
37547     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
37548     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
37549     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
37550     Signed-off-by: Jon Loeliger <jdl@freescale.com>
37551
37552 commit 9553df86d3a319c3a1a7cde7e4edd6eeb5aa64c7
37553 Author: Jon Loeliger <jdl@freescale.com>
37554 Date:   Tue Oct 16 15:26:51 2007 -0500
37555
37556     Initial mpc8610hpcd cpu/, README and include/ files.
37557
37558     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
37559     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
37560     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
37561     Signed-off-by: Jon Loeliger <jdl@freescale.com>
37562
37563 commit 3dd2db53ceb0dff80f25c2a07f83f29b907b403e
37564 Author: Jon Loeliger <jdl@freescale.com>
37565 Date:   Tue Oct 16 13:54:01 2007 -0500
37566
37567     Initial mpc8610hpcd board files.
37568
37569     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
37570     Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
37571     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
37572     Signed-off-by: Jon Loeliger <jdl@freescale.com>
37573
37574 commit 7ee6ba1a056e4061ab4cfde30127e332e7957afd
37575 Author: runet@innovsys.com <runet@innovsys.com>
37576 Date:   Tue Oct 16 14:50:40 2007 -0500
37577
37578     Make MPC8266ADS board compile again.
37579
37580     Signed-off-by: Runet Torgersen <runet@innovsys.com>
37581
37582 commit 2491167c245d8ebe6f2dbd8c4287aaa0d14fe93a
37583 Author: Jon Loeliger <jdl@freescale.com>
37584 Date:   Mon Aug 27 12:41:03 2007 -0500
37585
37586     86xx: Allow for fewer DDR slots per memory controller.
37587
37588     As a direct correlation exists between DDR DIMM slots
37589     and SPD EEPROM addresses used to configure them, use
37590     the individually defined SPD_EEPROM_ADDRESS* values to
37591     determine if a DDR DIMM slot should have its SPD
37592     configuration read or not.
37593
37594     Effectively, this now allows for 1 or 2 DIMM slots
37595     per memory controller.
37596
37597     Signed-off-by: Jon Loeliger <jdl@freescale.com>
37598
37599 commit 4d4a945e189a2f384c66432316da2788a0ac1607
37600 Author: Rodolfo Giometti <giometti@enneenne.com>
37601 Date:   Mon Oct 15 11:59:17 2007 +0200
37602
37603     PXA USB OHCI: "usb stop" implementation.
37604
37605     Some USB keys need to be switched off before loading the kernel
37606     otherwise they can remain in an undefined status which prevents them
37607     to be correctly recognized by the kernel.
37608
37609     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
37610
37611 commit e2e93442e558cf1500e92861f99713b2f045ea22
37612 Author: Stefan Roese <sr@denx.de>
37613 Date:   Mon Oct 15 11:39:00 2007 +0200
37614
37615     ppc4xx: Fix bug in I2C bootstrap values for Sequoia/Rainier
37616
37617     The I2C bootstrap values that can be setup via the "bootstrap" command,
37618     were setup incorrect regarding the generation of the internal sync PCI
37619     clock. The values for PLB clock == 133MHz were slighly incorrect and the
37620     values for PLB clock == 166MHz were totally incorrect. This could
37621     lead to a hangup upon booting while PCI configuration scan.
37622
37623     This patch fixes this issue and configures valid PCI divisor values
37624     for the sync PCI clock, with respect to the provided external async
37625     PCI frequency.
37626
37627     Here the values of the formula in the chapter 14.2 "PCI clocking"
37628     from the 440EPx users manual:
37629
37630     AsyncPCICLK - 1MHz <= SyncPCIClk <= (2 * AsyncPCIClk) - 1MHz
37631
37632     33MHz async PCI frequency:
37633     PLB = 133:
37634     =>      32 <= 44.3 <= 65        (div = 3)
37635
37636     PLB = 166:
37637     =>      32 <= 55.3 <= 65        (div = 3)
37638
37639     66MHz async PCI frequency:
37640     PLB = 133:
37641     =>      65 <= 66.5 <= 132       (div = 2)
37642
37643     PLB = 166:
37644     =>      65 <= 83 <= 132         (div = 2)
37645
37646     Signed-off-by: Stefan Roese <sr@denx.de>
37647
37648 commit 5a5958b7de70ae99f0e7cbd5c97ec1346e051587
37649 Author: Stefan Roese <sr@denx.de>
37650 Date:   Mon Oct 15 11:29:33 2007 +0200
37651
37652     ppc4xx: Fix incorrect 33/66MHz PCI clock log-message on Sequoia & Yosemite
37653
37654     The BCSR status bit for the 66MHz PCI operation was correctly
37655     addressed (MSB/LSB problem). Now the correct currently setup
37656     PCI frequency is displayed upon bootup.
37657
37658     This patch also fixes this problem on Rainier & Yellowstone, since these
37659     boards use the same souce code as Sequoia & Yosemite do.
37660
37661     Signed-off-by: Stefan Roese <sr@denx.de>
37662
37663 commit da3aad55cbde80ab6e301aafa82a2c411aa53eff
37664 Author: Martin Krause <martin.krause@tqs.de>
37665 Date:   Wed Sep 26 17:55:56 2007 +0200
37666
37667     TQM860M: adjust for doubled flash sector size.
37668
37669     Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
37670     doubled sector size.
37671
37672     Signed-off-by: Martin Krause <martin.krause@tqs.de>
37673
37674 commit 9d29250e2e62f4bf20c7a20b4173d84c48f11f5d
37675 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
37676 Date:   Wed Sep 26 17:55:54 2007 +0200
37677
37678     TQM8xx: Fix CAN timing.
37679
37680     Signed-off-by: Martin Krause <martin.krause@tqs.de>
37681
37682 commit d43e489baf02afae49077791fb22332d240d8656
37683 Author: Martin Krause <martin.krause@tqs.de>
37684 Date:   Thu Sep 27 14:54:36 2007 +0200
37685
37686     TQM866M: fix SDRAM refresh
37687
37688     At 133 MHz the current SDRAM refresh rate is too fast
37689     (measured 4 * 1.17 us).
37690     CFG_MAMR_PTA changes from 39 to 97. This result
37691     in a refresh rate of 4 * 7.8 us at the default clock
37692     50 MHz. At 133 MHz the value will be then 4 * 2.9 us.
37693     This is a compromise until a new method is found to
37694     adjust the refresh rate.
37695
37696     Signed-off-by: Martin Krause <martin.krause@tqs.de>
37697
37698 commit 9ef57bbee1c67cc01da2026c242c4692db32be36
37699 Author: Martin Krause <martin.krause@tqs.de>
37700 Date:   Wed Sep 26 17:55:55 2007 +0200
37701
37702     TQM866M: adjust for doubled flash sector size.
37703
37704     Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
37705     doubled sector size.
37706
37707     Signed-off-by: Martin Krause <martin.krause@tqs.de>
37708
37709 commit f8bf90461d9bad2e6fed31fcebaf235f60dd6763
37710 Author: Michal Simek <monstr@monstr.eu>
37711 Date:   Sun Oct 14 16:12:29 2007 +0200
37712
37713     [FIX] XUPV2P change command handling
37714     and remove code violation
37715
37716 commit 636400198228d96983c06657b17f760f5989958e
37717 Author: Wolfgang Denk <wd@denx.de>
37718 Date:   Sun Oct 14 00:13:19 2007 +0200
37719
37720     Prepare for 1.3.0-rc3 release
37721
37722     Signed-off-by: Wolfgang Denk <wd@denx.de>
37723
37724 commit 68f14f77ca5fe5f9cc025c8cae101671f628309f
37725 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37726 Date:   Sat Sep 29 13:41:37 2007 +0200
37727
37728     Fix warning differ in signedness in cpu/pxa/mmc.c
37729
37730     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37731
37732 commit fc19e36f741e8bc727c0a330170b3b5db90399ef
37733 Author: Wolfgang Denk <wd@denx.de>
37734 Date:   Sat Oct 13 23:51:14 2007 +0200
37735
37736     Fix warning differ in signedness in board/mpl/vcma9/vcma9.c
37737
37738     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37739     Signed-off-by: Wolfgang Denk <wd@denx.de>
37740
37741 commit de74b9eeacccaf0a42e5ecc9ae79a88f7a311296
37742 Author: Wolfgang Denk <wd@denx.de>
37743 Date:   Sat Oct 13 21:15:39 2007 +0200
37744
37745     Coding Style cleanup.
37746
37747     Signed-off-by: Wolfgang Denk <wd@denx.de>
37748
37749 commit e1893815b0999410d7a327589611c7b38e95299e
37750 Author: Wolfgang Denk <wd@denx.de>
37751 Date:   Fri Oct 12 15:49:39 2007 +0200
37752
37753     GP3 SSA: enable RTC
37754
37755     Signed-off-by: Wolfgang Denk <wd@denx.de>
37756
37757 commit 8002012041f1ff9f997a5727abe5015f70cd2e46
37758 Author: Grzegorz Bernacki <gjb@semihalf.com>
37759 Date:   Tue Oct 9 13:58:24 2007 +0200
37760
37761     [ads5121] EEPROM support added.
37762
37763     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
37764
37765 commit 7b624ad254b97e5a25dca2304a398b64aeedaffe
37766 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
37767 Date:   Sat Oct 6 18:55:35 2007 +0200
37768
37769     AVR32: Initialize bi_flash* in board_init_r
37770
37771     The ATSTK1000-specific flash driver intializes bi_flashstart,
37772     bi_flashsize and bi_flashoffset, but other flash drivers, like the CFI
37773     driver, don't.
37774
37775     Initialize these in board_init_r instead so that things will still be
37776     set up correctly when we switch to the CFI driver.
37777
37778     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
37779
37780 commit 2b2a587d6d3076387d22ac740f44044bf46e2cb8
37781 Author: Marian Balakowicz <m8@semihalf.com>
37782 Date:   Fri Oct 5 10:40:54 2007 +0200
37783
37784     tqm5200: Fix CONFIG_CMD_PCI typo in board config file.
37785
37786     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37787
37788 commit 92869195ef8210758d2176230c0a36897afd50ed
37789 Author: Bartlomiej Sieka <tur@semihalf.com>
37790 Date:   Fri Oct 5 09:46:06 2007 +0200
37791
37792     CM5200: Fix missing null-termination in hostname manipulation code
37793
37794     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
37795
37796 commit 9add9884b1fddc34ca186e00a2f868ccd5d02d87
37797 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
37798 Date:   Tue Oct 2 19:09:01 2007 +0200
37799
37800     Fix memtest breakage
37801
37802     CFG_MEMTEST_START uses weird magic involving gd, which fails to
37803     compile. Use hardcoded values instead (we actually know how much RAM
37804     we have on board.)
37805
37806     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
37807
37808 commit 738815c0cc44aa329097f868dc1efc49ede9c5ba
37809 Author: Stefan Roese <sr@denx.de>
37810 Date:   Tue Oct 2 11:44:46 2007 +0200
37811
37812     ppc4xx: Coding style cleanup
37813
37814     Signed-off-by: Stefan Roese <sr@denx.de>
37815
37816 commit 87c1833a39e944db66385286fd5e28f9b3fcdd50
37817 Author: Stefan Roese <sr@denx.de>
37818 Date:   Tue Oct 2 11:44:19 2007 +0200
37819
37820     ppc4xx: lwmon5: Remove watchdog for now, since not fully tested yet
37821
37822     Signed-off-by: Stefan Roese <sr@denx.de>
37823
37824 commit 2db64784061bfc34f4ba70ef1d2fbe7133b55670
37825 Author: Grzegorz Bernacki <gjb@semihalf.com>
37826 Date:   Mon Oct 1 09:51:50 2007 +0200
37827
37828     Program EPLD to force full duplex mode for PHY.
37829
37830     EPLD forces modes of PHY operation. By default full duplex is turned off.
37831     This fix turns it on.
37832
37833     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
37834
37835 commit 785c13477b77dcd2e6c5128fffcdb4e1943f4818
37836 Author: Timo Ketola <timo.ketola@exertus.fi>
37837 Date:   Mon Sep 24 14:50:32 2007 +0300
37838
37839     Bugfix: Use only one PTD for one endpoint
37840
37841     Original isp116x-hcd code prepared multiple PTDs for longer than 16
37842     byte transfers for one endpoint. That is unnecessary because the
37843     ISP116x is able to split long data from one PTD into multiple
37844     transactions based on the buffer size of the endpoint. It also caused
37845     serious problems if the endpoint NAKed some of the transactions. In
37846     that case ISP116x wouldn't notice that the other PTDs were for the same
37847     endpoint and would try the other PTDs possibly out of order. That would
37848     break the whole transfer.
37849
37850     This patch makes isp116x_submit_job to use one PTD for one transfer.
37851
37852     Signed-off-by: Timo Ketola <timo.ketola@exertus.fi>
37853     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
37854
37855 commit 86ec86c04326c3913178a7679aa910de071da75d
37856 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37857 Date:   Thu Sep 27 23:27:47 2007 +0200
37858
37859     Fix missing DECLARE_GLOBAL_DATA_PTR on CONFIG_LPC2292 in serial
37860
37861     Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37862
37863 commit 3e954beb614b5b190d7f4f4c3b641437a0132e35
37864 Author: Stefan Roese <sr@denx.de>
37865 Date:   Tue Sep 11 14:12:55 2007 +0200
37866
37867     ppc4xx: lwmon5: Change GPIO 58 to default to low (watchdog test)
37868
37869     Signed-off-by: Stefan Roese <sr@denx.de>
37870
37871 commit 1487adbdcf9594bb2eb686325a6f9540dad1b70a
37872 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
37873 Date:   Wed Sep 26 16:35:54 2007 -0500
37874
37875     85xx io out functions need sync after write.
37876
37877     This fixes the mc146818 rtc_read/write functions for 85xx.
37878
37879     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
37880
37881 commit 0d38effc6e359e6b1b0c78d66e8bc1a4dc15a2ae
37882 Author: Grant Likely <grant.likely@secretlab.ca>
37883 Date:   Tue Sep 25 15:48:05 2007 -0600
37884
37885     Fpga: fix incorrect test of CFG_FPGA_XILINX macro
37886
37887     CFG_FPGA_XILINX is a bit value used to test against the value in
37888     CONFIG_FPGA.  Testing for a value will always return TRUE.  I don't
37889     think that is the intention in this code.
37890
37891     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
37892
37893 commit 853643d8cf2ca80cb2e25c53ad5dc580abafe166
37894 Author: Michal Simek <monstr@monstr.eu>
37895 Date:   Mon Sep 24 00:41:30 2007 +0200
37896
37897     [FIX] change command handling and removing code violation
37898
37899 commit f240356507038e5ce55e8a24cb2607e9eae6d10c
37900 Author: Michal Simek <monstr@monstr.eu>
37901 Date:   Mon Sep 24 00:36:06 2007 +0200
37902
37903     [FIX] change sets of commands
37904     because changing of command handling brings
37905     compilation problems
37906
37907 commit cb1bc63b75a232571eb69aa2c8aa919321655845
37908 Author: Michal Simek <monstr@monstr.eu>
37909 Date:   Mon Sep 24 00:30:42 2007 +0200
37910
37911     [FIX] Email reparation & Copyright
37912     Both codes are written by myself without any
37913     support from CTU
37914
37915 commit 0731cbae6c2feab93b244d83fd6a43f5cc9bf852
37916 Author: Michal Simek <monstr@monstr.eu>
37917 Date:   Mon Sep 24 00:25:11 2007 +0200
37918
37919     [PATCH] Change macro name for UartLite
37920     because PowerPC 405 can use UartLite as console
37921
37922 commit 1c1100d2fcf46b9d11dcf78d6e5aea75e2e8b716
37923 Author: Michal Simek <monstr@monstr.eu>
37924 Date:   Mon Sep 24 00:21:19 2007 +0200
37925
37926     [PATCH] Add support for design without interrupt controller
37927     Polling timer
37928
37929 commit 0731933ec8ec45d02ba89b52df673d526873cdde
37930 Author: Michal Simek <monstr@monstr.eu>
37931 Date:   Mon Sep 24 00:19:48 2007 +0200
37932
37933     [FIX] resolve problem with cpu without barrel shifter
37934
37935 commit db14d77995ce515b728b178b63f82babe60e3d56
37936 Author: Michal Simek <monstr@monstr.eu>
37937 Date:   Mon Sep 24 00:18:46 2007 +0200
37938
37939     [FIX] repair email address
37940
37941 commit 481d4328618804add1f818a6c96296121cd0528e
37942 Author: Michal Simek <monstr@monstr.eu>
37943 Date:   Mon Sep 24 00:17:42 2007 +0200
37944
37945     [FIX] repair MFSL commands
37946
37947 commit b90c045f035c3cc9b5d2edaed6048dfb74e40763
37948 Author: Michal Simek <monstr@monstr.eu>
37949 Date:   Mon Sep 24 00:08:37 2007 +0200
37950
37951     synchronizition with mainline
37952
37953 commit eda3e1e6619ad0bee94ae4b16c99d88e77e2af13
37954 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37955 Date:   Sun Sep 23 02:42:38 2007 +0900
37956
37957     sh: Add support command of ide with sh
37958
37959     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37960
37961 commit d91ea45d15cf8e0987456bd211ffbb650824b6f1
37962 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37963 Date:   Sun Sep 23 02:38:42 2007 +0900
37964
37965     sh: Update Makefile
37966
37967     Add support MS7722SE01 to Makefile.
37968
37969     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37970
37971 commit 6c0bbdccd379f5c8702af9e0765294c2fb7472a6
37972 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37973 Date:   Sun Sep 23 02:31:13 2007 +0900
37974
37975     sh: Add support Renesas sh7722 processor and Hitachi MS7722SE01 board
37976
37977     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37978
37979 commit 047375bfa4c3052fa50a748da7ff89e9dad3b364
37980 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37981 Date:   Sun Sep 23 02:19:24 2007 +0900
37982
37983     sh: Update MS7750SE01 platform
37984
37985     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37986
37987 commit 516ad760db3553766267ada01b7d5d727faa4bbd
37988 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37989 Date:   Sun Sep 23 02:17:08 2007 +0900
37990
37991     sh: Remove comment out code from include/asm-sh/cpu_sh4.h
37992
37993     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37994
37995 commit b02bad128669e567fce87d8df823b06a0144b8db
37996 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37997 Date:   Sun Sep 23 02:12:30 2007 +0900
37998
37999     sh: Update core code of SuperH.
38000
38001     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
38002
38003 commit 66dcad3a9a53e0766d90e0084123bd8529522fb0
38004 Author: Wolfgang Denk <wd@denx.de>
38005 Date:   Thu Sep 20 00:04:14 2007 +0200
38006
38007     v1.3.0-rc2
38008
38009     Signed-off-by: Wolfgang Denk <wd@denx.de>
38010
38011 commit 135e19bc2773ebca487e9a8371f67e1ba202313a
38012 Author: Wolfgang Denk <wd@denx.de>
38013 Date:   Tue Sep 18 21:36:35 2007 +0200
38014
38015     Avoid compiler warning.
38016
38017     Signed-off-by: Wolfgang Denk <wd@denx.de>
38018
38019 commit 8a783a65851bc7421ab69f442261215e21b8891a
38020 Author: Grant Likely <grant.likely@secretlab.ca>
38021 Date:   Tue Sep 18 12:24:57 2007 -0600
38022
38023     Bugfix: remove embedded null (\0) from CFG_BOOTFILE macro in TQM8540_config
38024
38025     /bin/bash and /bin/dash (which /bin/sh is linked to on ubuntu) handle embedded
38026     nulls in a string differently.  For example, the following statement:
38027         echo "this is a string\0" > afile
38028     Will produce the following with /bin/bash:
38029         "this is a string\0"
38030     But with /bin/dash, will produce:
38031         "this is a string
38032
38033     Bug fixed by moving the embedded null out of the makefile and into the
38034     config header.  Also renamed the macro to avoid usage colision with the same
38035     macro used by other board ports.
38036
38037     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38038
38039 commit f8d3ca7b6fa322ac57e8e831f07dbeea039a9f35
38040 Author: Wolfgang Denk <wd@denx.de>
38041 Date:   Tue Sep 18 17:40:27 2007 +0200
38042
38043     MCC200: fix build warning
38044
38045     The MCC200 board config file includes version.h for some customer-
38046     specific setting, which causes warnings with "make depend"; build
38047     version.h before depend.
38048
38049     Signed-off-by: Wolfgang Denk <wd@denx.de>
38050
38051 commit bd86220f58b99d6896198c385fda132f0c980915
38052 Author: Peter Pearse <peter.pearse@arm.com>
38053 Date:   Tue Sep 18 13:07:54 2007 +0100
38054
38055     Move coloured led API to status_led.h
38056     Improve indentation in drivers/at45.c
38057
38058 commit e80e585b00fbbab7ad1bf71619741f2c5b029ab7
38059 Author: Eirik Aanonsen <eaa@wprmedical.com>
38060 Date:   Tue Sep 18 08:47:20 2007 +0200
38061
38062     Update atstk1002 bootargs.
38063
38064     Updates to atstk1002 U-Boot header file:
38065     - Changed bootargs:
38066         * Set the bootargs for at1002 to point to the SD-card partition instead
38067         * ... of the boot flash.
38068         * Removing the rootfstype since that argument are not needed.
38069
38070     Signed-off-by: Eirik Aanonsen <eaa@wprmedical.com>
38071     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38072
38073 commit a4f3aab6dfbed6c29367c688bfb8a47eef62c225
38074 Author: Eirik Aanonsen <eaa@wprmedical.com>
38075 Date:   Wed Sep 12 13:32:37 2007 +0200
38076
38077     Add some comments to clocks in atstk1002.h
38078
38079     This patch applies some clarifying comments to how the different
38080     clocks are setup according to atstk1002.h Some of the previous
38081     comments where stating wrongful information.
38082
38083     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38084
38085 commit 97213f32416ead885deafea86774e912ffd60ad0
38086 Author: David Saada <David.Saada@ecitele.com>
38087 Date:   Mon Sep 17 17:04:47 2007 +0200
38088
38089     Description: Add NEC's PCI OHCI module ID to the USB OHCI driver
38090
38091     Signed-off-by: David Saada <david.saada@ecitele.com>
38092
38093 commit 30363e98fa470fbecea5e8bc0f1443352754f303
38094 Author: Stefan Roese <sr@denx.de>
38095 Date:   Mon Sep 17 08:20:47 2007 +0200
38096
38097     Small whitespace cleanup of OneNAND patch
38098
38099     Signed-off-by: Stefan Roese <sr@denx.de>
38100
38101 commit d7e8ce101a4a45ed6ed45739fc2de5f87b13f7f1
38102 Author: Kyungmin Park <kmpark@infradead.org>
38103 Date:   Mon Sep 10 17:15:14 2007 +0900
38104
38105     OneNAND support (take #2)
38106
38107     [PATCH 3/3] OneNAND support (take #2)
38108
38109     OneNAND support at U-Boot
38110
38111     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
38112
38113 commit 17aa2800457df0c06b41516f46f126712c196219
38114 Author: Kyungmin Park <kmpark@infradead.org>
38115 Date:   Mon Sep 10 17:14:34 2007 +0900
38116
38117     OneNAND support (take #2)
38118
38119     [PATCH 2/3] OneNAND support (take #2)
38120
38121     OneNAND support at U-Boot
38122
38123     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
38124
38125 commit 916527f4809a7bcd811f1f1daf34af184e31dd8c
38126 Author: Kyungmin Park <kmpark@infradead.org>
38127 Date:   Mon Sep 10 17:13:49 2007 +0900
38128
38129     OneNAND support (take #2)
38130
38131     [PATCH 1/3] OneNAND support (take #2)
38132
38133     OneNAND support at U-Boot
38134
38135     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
38136
38137 commit b49c90df6e7cfcfb8b862b8bbf8448dff5eed9a5
38138 Author: Michal Simek <monstr@monstr.eu>
38139 Date:   Sun Sep 16 20:51:57 2007 +0200
38140
38141     [FIX] remove files form repository
38142
38143 commit 67c31036acaaaa992fc346cc89db0909a7e733c4
38144 Author: Wolfgang Denk <wd@denx.de>
38145 Date:   Sun Sep 16 17:10:04 2007 +0200
38146
38147     TQM8xx[LM]: Fix broken environment alignment.
38148
38149     With recent toolchains, the environment sectors were no longer aligned to
38150     sector boundaries. The reason was a combination of two bugs:
38151
38152     1) common/environment.c assumed that CONFIG_TQM8xxL would be defined
38153        for all TQM8xxL and TQM8xxM boards. But "include/common.h", where
38154        this gets defined, is not included here (and cannot be included
38155        without causing lots of problems).
38156
38157        Added a new #define CFG_USE_PPCENV for all boards which really
38158        want to put the environment is a ".ppcenv" section.
38159
38160     2) The linker scripts just include environment.o, silently assuming
38161        that the objects in that file are really in the order in which
38162        they are coded in the C file, i. e. "environment" first, then
38163        "redundand_environment", and "env_size" last. However, current
38164        toolchains (GCC-4.x) reorder the objects, causing the environment
38165        data not to start on a flash sector boundary:
38166
38167        Instead of:                                      we got:
38168
38169         40008000 T environment                  40008000 T env_size
38170         4000c000 T redundand_environment        40008004 T redundand_environment
38171         40010000 T env_size                     4000c004 T environment
38172
38173        Note: this patch fixes just the first part, and cures the alignment
38174        problem by making sure that "env_size" gets placed correctly. However,
38175        we still have a potential issue because primary and redundant
38176        environment sectors are actually swapped, i. e. we have now:
38177
38178         40008000 T redundand_environment
38179         4000c000 T environment
38180         40010000 T env_size
38181
38182        This shall be fixed in the next version.
38183
38184     Signed-off-by: Wolfgang Denk <wd@denx.de>
38185
38186 commit eb6da8050797c204c9d010548424186c7ce32fc1
38187 Author: Wolfgang Denk <wd@denx.de>
38188 Date:   Sun Sep 16 02:39:35 2007 +0200
38189
38190     TQM8xx/FPS8xx: adjust flash partitions for 2.6 ARCH=powerpc kernels
38191
38192     Signed-off-by: Wolfgang Denk <wd@denx.de>
38193
38194 commit cd2d1602c54cc6957bdef3872272a4b264893960
38195 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
38196 Date:   Mon Sep 10 14:54:56 2007 -0400
38197
38198     Typo fix in tsec.c
38199
38200     Fixup for the break statement in wrong place.
38201
38202     [Patch by urwithsughosh@gmail.com]
38203     Acked-by: Andy Fleming <afleming@freescale.com>
38204     Signed-off-by:      Wolfgang Denk <wd@denx.de>
38205
38206 commit 5bd7fe9aeb76906371f40b8fd07613f10922e3e7
38207 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38208 Date:   Tue Sep 11 17:04:00 2007 +0200
38209
38210     Fix do_div() usage in nand process output
38211
38212     Fix usage of do_div() in nand erase|read|write process output.
38213
38214     The last patch to nand_util.c introduced do_div() instead of libgcc's
38215     implementation. But do_div() returns the quotient in its first
38216     macro parameter and not as result.
38217
38218     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38219
38220 commit c750d2e6692a000a82f29de7bf24e3dc21239161
38221 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38222 Date:   Wed Sep 12 12:36:53 2007 +0200
38223
38224     NAND: Add CFG_NAND_QUIET option
38225
38226     This config option sets the default for the progress information
38227     output behavior that can also be configured through the 'quiet'
38228     environment variable.
38229
38230     The legacy NAND code does not print the current progress info
38231     on the console. So this option is for backward compatibility for
38232     units that are in the field and where setting the quiet variable
38233     is not an option. With CFG_NAND_QUIET set to '1' the console
38234     progress info is turned off. This can still be overwritten
38235     through the environment variable.
38236
38237     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38238
38239 commit dcb88630290d2bcd803386dd4c2be73142994c4f
38240 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
38241 Date:   Thu Sep 13 16:06:05 2007 -0700
38242
38243     ColdFire: fix build error becasue of bad type of mii_init()
38244
38245     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
38246
38247 commit 314d5b6ce52a4ed19dd295d1364e246c5e605017
38248 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
38249 Date:   Thu Sep 13 16:04:05 2007 -0700
38250
38251     ColdFire: Fix build error caused by pixis.c
38252
38253     Moved the #include <asm/cache.h> inside the #ifdef CONFIG_FSL_PIXIS.
38254
38255     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
38256
38257 commit e21659e30660a1377c42af135a6114efe39801d9
38258 Author: Sam Sparks <SSparks@twacs.com>
38259 Date:   Fri Sep 14 11:14:42 2007 -0600
38260
38261     Update MPC8349ITX*_config to place config.tmp in right place.
38262
38263     MPC834ITX*_config does not store config.tmp at the correct locatation,
38264     causing MPC8349ITXGP to have the wrong TEXT_BASE.
38265
38266     Signed-off-by: Sam Sparks <SSparks@twacs.com>
38267     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38268
38269 commit 1218abf1b5817a39a82399b4b928b00750575bda
38270 Author: Wolfgang Denk <wd@denx.de>
38271 Date:   Sat Sep 15 20:48:41 2007 +0200
38272
38273     Fix cases where DECLARE_GLOBAL_DATA_PTR was not declared as global
38274
38275     Signed-off-by: Wolfgang Denk <wd@denx.de>
38276
38277 commit 66b3f24d665be678a9dbb125b1e84185400f63b5
38278 Author: Dirk Behme <dirk.behme@googlemail.com>
38279 Date:   Sat Sep 15 11:55:42 2007 +0200
38280
38281     Make DECLARE_GLOBAL_DATA_PTR global for DaVinci
38282
38283     As discussed in [1], DECLARE_GLOBAL_DATA_PTR has to be global and not
38284     function local.
38285
38286     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
38287
38288     [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/31805
38289
38290 commit 991b089d1ce5ad945725e3657a8f106dfa02a38e
38291 Author: Michal Simek <monstr@monstr.eu>
38292 Date:   Sat Sep 15 00:03:35 2007 +0200
38293
38294     Synchronize with U-BOOT mainline
38295
38296 commit d7fee32b7e61fe11c64e371cde79faa4768e8350
38297 Author: Sam Sparks <SSparks@twacs.com>
38298 Date:   Fri Sep 14 11:14:42 2007 -0600
38299
38300     Update MPC8349ITX*_config to place config.tmp in right place.
38301
38302     MPC834ITX*_config does not store config.tmp at the correct locatation,
38303     causing MPC8349ITXGP to have the wrong TEXT_BASE.
38304
38305     Signed-off-by: Sam Sparks <SSparks@twacs.com>
38306     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38307     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38308
38309 commit 6e7b7b6ea1b6d04dbe96242eb6a0c1c664c98e8c
38310 Author: Bartlomiej Sieka <tur@semihalf.com>
38311 Date:   Thu Sep 13 18:21:48 2007 +0200
38312
38313     cm5200: Fix a typo introduced by afaac86fe2948ac84cd9a12bbed883b3c683e7d9
38314
38315     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
38316
38317 commit e1f601b572db5de9aa81a0b77c68a86994fe24c4
38318 Author: Bartlomiej Sieka <tur@semihalf.com>
38319 Date:   Thu Sep 13 16:33:59 2007 +0200
38320
38321     tqm5200: Restore customary env. variable boot commands for powerpc kernels
38322
38323     - update default definitions of kernel_addr and fdt_addr env. variables
38324     - make arch/powerpc booting the default scenario
38325     - update MTD partition layout to match the above
38326
38327     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
38328
38329 commit f34024d4a328e6edd906456da98d2c537155c4f7
38330 Author: Wolfgang Denk <wd@denx.de>
38331 Date:   Wed Sep 12 00:48:57 2007 +0200
38332
38333     Fix memory corruption problem on STX GP3 SSA Board.
38334
38335     Signed-off-by: Wolfgang Denk <wd@denx.de>
38336
38337 commit d94c79e47011af5e8dd10ed6163c09b4cfc743cc
38338 Author: Peter Pearse <peter.pearse@arm.com>
38339 Date:   Tue Sep 11 15:35:01 2007 +0100
38340
38341     Final tidy
38342
38343 commit 38ad82da0c1180ecdeb212a8f4245e945bcc546e
38344 Author: Grzegorz Bernacki <gjb@semihalf.com>
38345 Date:   Tue Sep 11 15:42:11 2007 +0200
38346
38347     [GP3SSA] Add define CONFIG_MPC85XX_PCI2 in config file to allow u-boot to
38348     scan on second pci bus.
38349
38350     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
38351
38352 commit 6c2f4f388e8181655ea8b69343ea00b68aa6e8d0
38353 Author: Grzegorz Bernacki <gjb@semihalf.com>
38354 Date:   Tue Sep 11 12:57:52 2007 +0200
38355
38356     [ppc4xx] Individual handling of sdram.c for bamboo_nand build
38357
38358     Bamboo has a file sdram.c which needs special treatment when building in
38359     separate directory. It has to be linked to build directory otherwise it is
38360     not seen.
38361
38362     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
38363
38364 commit d45963854eff39d575124d859419bb4953ce2c87
38365 Author: Michal Simek <monstr@monstr.eu>
38366 Date:   Tue Sep 11 00:37:04 2007 +0200
38367
38368     [FIX] Microblaze ML401 - repare FLASH handling
38369
38370 commit 38c1ef728d19950414a8ab1ccfc53767848fa346
38371 Author: Sean MCGOOGAN <sean.mcgoogan@st.com>
38372 Date:   Mon Sep 10 16:55:59 2007 +0100
38373
38374     Allocate CPU Architecture Code for STMicroelectronics' ST200.
38375
38376     Signed-off-by: Sean McGoogan <Sean.McGoogan@st.com>
38377     ---------------------------------------------------
38378
38379 commit 754bac48156f8958d8f6a53a51eda88ab5758929
38380 Author: Wolfgang Denk <wd@denx.de>
38381 Date:   Mon Sep 10 20:42:31 2007 +0200
38382
38383     Update version to match current state.
38384
38385     Signed-off-by: Wolfgang Denk <wd@denx.de>
38386
38387 commit 7a888d6b3c32a126dbb504ef146bb4c26574ca7b
38388 Author: Grzegorz Bernacki <gjb@semihalf.com>
38389 Date:   Mon Sep 10 17:39:08 2007 +0200
38390
38391     [MPC512x] Streamline frame handling in the FEC driver
38392
38393     - convert frame size settings to be derived from a single base
38394     - set frame size to the recommended default value
38395
38396     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
38397
38398 commit e251e00d0db4b36d1d2b7e38fec43a7296b529a2
38399 Author: Kyungmin Park <kmpark@infradead.org>
38400 Date:   Mon Sep 10 11:34:00 2007 +0900
38401
38402     Remove compiler warning: target CPU does not support interworking
38403
38404     Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
38405
38406 commit 1d9e31e04911a6bb7cc66dd91132c699101c32e2
38407 Author: Wolfgang Denk <wd@denx.de>
38408 Date:   Sun Sep 9 21:21:33 2007 +0200
38409
38410     Fix compile error in spc1920 config.
38411
38412     Signed-off-by: Markus Klotzbücher <mk@denx.de>
38413     Signed-off-by: Wolfgang Denk <wd@denx.de>
38414
38415 commit a7d7eca791a37f452c9da10fef4b31dd7aa9a622
38416 Author: Grant Likely <grant.likely@secretlab.ca>
38417 Date:   Fri Sep 7 09:25:07 2007 -0600
38418
38419     Bugfix: make bootm+libfdt compile on boards with no flash
38420
38421     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38422
38423 commit 6efc1fc0b63e55f94c5bc61d8dd23c918e3bc778
38424 Author: Grzegorz Bernacki <gjb@semihalf.com>
38425 Date:   Fri Sep 7 18:35:37 2007 +0200
38426
38427     [PPC440SPe] PCIe environment settings for Katmai and Yucca
38428
38429     - 'pciconfighost' is set by default in order to be able to scan bridges
38430     behind the primary host/PCIe
38431
38432     - 'pciscandelay' env variable is recognized to allow for user-controlled
38433     delay before the PCIe bus enumeration; some peripheral devices require a
38434     significant delay before they can be scanned (e.g. LSI8408E); without the
38435     delay they are not detected
38436
38437     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
38438
38439 commit 7f1913938984ef6c6a46cb53e003719196d9c5de
38440 Author: Grzegorz Bernacki <gjb@semihalf.com>
38441 Date:   Fri Sep 7 18:20:23 2007 +0200
38442
38443     [PPC440SPe] Improve PCIe configuration space access
38444
38445     - correct configuration space mapping
38446     - correct bus numbering
38447     - better access to config space
38448
38449     Prior to this patch, the 440SPe host/PCIe bridge was able to configure only the
38450     first device on the first bus. We now allow to configure up to 16 buses;
38451     also, scanning for devices behind the PCIe-PCIe bridge is supported, so
38452     peripheral devices farther in hierarchy can be identified.
38453
38454     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
38455
38456 commit 15ee4734e4e08003d73d9ead3ca80e2a0672e427
38457 Author: Grzegorz Bernacki <gjb@semihalf.com>
38458 Date:   Fri Sep 7 17:46:18 2007 +0200
38459
38460     [PPC440SPe] Convert machine check exceptions handling
38461
38462     Convert using fixup mechanism to suppressing MCK for the duration of config
38463     read/write transaction: while fixups work fine with the case of a precise
38464     exception, we identified a major drawback with this approach when there's
38465     an imprecise case. In this scenario there is the following race condition:
38466     the fixup is (by design) set to catch the instruction following the one
38467     actually causing the exception; if an interrupt (e.g. decrementer) happens
38468     between those two instructions, the ISR code is executed before the fixup
38469     handler the machine check is no longer protected by the fixup handler as it
38470     appears as within the ISR code. In consequence the fixup approach is being
38471     phased out and replaced with explicit suppressing of MCK during a PCIe
38472     config read/write cycle.
38473
38474     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
38475
38476 commit ff7640c9ead8806b5d827f2b29f9cb2632add729
38477 Author: Wolfgang Denk <wd@denx.de>
38478 Date:   Fri Sep 7 17:43:36 2007 +0200
38479
38480     Fix typo in MAKEALL script.
38481
38482     Signed-off-by: Wolfgang Denk <wd@denx.de>
38483
38484 commit 08e2e5fcd2e06670b62e1680a3934c0e55c72810
38485 Author: Grzegorz Bernacki <gjb@semihalf.com>
38486 Date:   Fri Sep 7 17:09:21 2007 +0200
38487
38488     [MPC512x] Proper handling of larger frames in the FEC driver
38489
38490     When frame larger than local RX buffer is received, it is split and handled
38491     by two buffer descriptors. Prior to this patch the FEC driver discarded
38492     contents of a buffer descriptor without the 'LAST' bit set, so the first
38493     part of the frame was lost in case of larger frames. This fix allows to
38494     safely combine the two pieces into the whole frame.
38495
38496     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
38497
38498 commit 8d17979d0359492a822a0a409d26e3a3549b4cd4
38499 Author: Rafal Jaworowski <raj@semihalf.com>
38500 Date:   Fri Sep 7 17:05:36 2007 +0200
38501
38502     [MPC512x] Correct fixup relocation
38503
38504     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
38505
38506 commit a89cbbd27a60e6740772000fd0688ffba1c2576a
38507 Author: Wolfgang Denk <wd@denx.de>
38508 Date:   Fri Sep 7 01:21:25 2007 +0200
38509
38510     Update CHANGELOG, minor coding style cleanup.
38511
38512 commit 5e5803e119de3bebd76fc9a57baac0b5aeccc8a3
38513 Author: stefano babic <sbabic@denx.de>
38514 Date:   Thu Aug 30 23:01:49 2007 +0200
38515
38516     PXA270: Added support for TrizepsIV board.
38517
38518     This patch add support for the Trizeps IV module (520Mhz).
38519
38520     Signed-off-by: Stefano Babic <sbabic@denx.de>
38521
38522 commit 80172c6181c912fbb34ea3ba0c22b232b419b47f
38523 Author: stefano babic <sbabic@denx.de>
38524 Date:   Thu Aug 30 22:57:04 2007 +0200
38525
38526     PXA270: Add support for multiple serial ports.
38527
38528     This patch adds support for multiple serial ports to the PXA target.
38529     FFUART, BTUART and STUART are supported.
38530
38531     Signed-off-by: Stefano Babic <sbabic@denx.de>
38532
38533 commit 28bb3f72c687ac6b2eb076b01dd21a5fd657d45e
38534 Author: stefano babic <sbabic@denx.de>
38535 Date:   Thu Aug 30 22:48:47 2007 +0200
38536
38537     PXA270: fix compile issue (invalid lvalue)
38538
38539     Code is broken for PXA270 due to "invalid lvalue in assignment".
38540
38541     This patch fix it in pxa-regs.h
38542
38543     Signed-off-by: Stefano Babic <sbabic@denx.de>
38544
38545 commit 1d2ca446e1a731df420206d04fe278c27ea6b8e8
38546 Author: Jason Jin <Jason.jin@freescale.com>
38547 Date:   Thu Aug 30 18:19:05 2007 +0800
38548
38549     Add BUILD_DIR support for bios emulator.
38550
38551     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
38552
38553 commit b4d8a55145442f136982634862341a3e02002bda
38554 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
38555 Date:   Fri Aug 31 14:41:51 2007 +0900
38556
38557     [MIPS] Remove inline asm string functions
38558
38559     Stop using inline string functions on MIPS as other ARCHs do so,
38560     since the optimized inline asm versions are not small.
38561
38562     This change is triggered by a following MIPS build error:
38563     common/libcommon.a(exports.o)(.text+0xdc): In function `jumptable_init':
38564     common/exports.c:32: undefined reference to `strcmp'
38565     make: *** [u-boot] Error 1
38566
38567     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
38568
38569 commit 8ea2c4e54833deaebc24c3ca6b7f21353c25b0f5
38570 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
38571 Date:   Fri Aug 31 14:41:45 2007 +0900
38572
38573     [MIPS] Update asm string header
38574
38575     This patches contains several bugfixes and cleanups in the latest upstream:
38576
38577      - Don't include linux/config.h
38578      - Remove buggy inline version of memscan.
38579      - Merge with Linux 2.6.11-rc3.
38580      - Fix undefined reference to strcpy in binfmt_misc caused by gcc 3.4.
38581      - Goodbye mips64.  31704 lines of code bite the dust.
38582      - Replace extern inline with static inline.
38583      - Fix return value of strncpy.
38584      - Remove a bunch more "$1" clobbers.
38585
38586     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
38587
38588 commit 5b729fb3bd98f49855d6bfc657c3fbae95f2adc2
38589 Author: Bartlomiej Sieka <tur@semihalf.com>
38590 Date:   Tue Sep 4 17:31:22 2007 +0200
38591
38592     Fix do_bootm_linux() so that multi-file images with FDT blob boot.
38593
38594     Fix incorrect blob address calculation in do_bootm_linux() that prevents
38595     booting the kernel from a multi-file image (kernel + initrd + blob).
38596
38597     Also, make minor updates to the U-Boot's output and to the coding style.
38598
38599     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
38600
38601 commit 041a2554ad619e80dce520c1a33210affcb6a3f2
38602 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
38603 Date:   Fri Aug 31 14:29:04 2007 +0200
38604
38605     Add support for Sil680 IDE controller.
38606
38607     o add drivers/sil680.c to support the Sil680 IDE-controller.
38608     o drivers/Makefile: add sil680.o.
38609
38610     Signed-off-by: Gary Jennejohn <garyj@denx.de>
38611
38612 commit e79021223bc339df655e360645a52c457a74b067
38613 Author: Grant Likely <grant.likely@secretlab.ca>
38614 Date:   Thu Sep 6 09:47:40 2007 -0600
38615
38616     bootm/fdt: Only process the fdt if an fdt address was provided
38617
38618     Boards with CONFIG_OF_LIBFDT enabled are not able to boot old-style
38619     kernels using the board info structure (instead of passing a device tree)
38620     This change allows the old style booting to be used if the fdt argument
38621     was not passed to 'bootm'.
38622
38623     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38624     Acked-by: Kim Phillips <kim.phillips@freescale.com>
38625
38626 commit cf2817a84c2e9bea2c5dfc084bce2f2d2563ac43
38627 Author: Grant Likely <grant.likely@secretlab.ca>
38628 Date:   Thu Sep 6 09:46:23 2007 -0600
38629
38630     Migrate 5xxx boards from CONFIG_OF_FLAT_TREE to CONFIG_OF_LIBFDT
38631
38632     Affects boards: icecube (lite5200), jupiter, motionpro, tqm5200
38633
38634     Tested on: lite5200b
38635
38636     Note: the fixup functions have not been moved to a common place.  This
38637     patch is targeted for immediate merging as in solves a build issue, but
38638     the final name/location of the fixups is still subject to debate.  I
38639     propose to merge this now, and move the fixups in the next merge window
38640     to be usable by all targets.
38641
38642     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38643
38644 commit 41bb76e941929f54a73206fb132f7a4c275543a3
38645 Author: Grant Likely <grant.likely@secretlab.ca>
38646 Date:   Thu Sep 6 09:46:17 2007 -0600
38647
38648     libfdt: add convenience function fdt_find_and_setprop()
38649
38650     Given the path to a node, fdt_find_and_setprop() allows a property value
38651     to be set directly.
38652
38653     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38654
38655 commit 80767a6cead9990d9e77e62be947843c2c72f469
38656 Author: Peter Pearse <peter.pearse@arm.com>
38657 Date:   Wed Sep 5 16:04:41 2007 +0100
38658
38659     Changed API name to coloured_led.h
38660     Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
38661     Tidied other cpu/arm920t/start.S code
38662
38663 commit 56a9270521baaa00e12639a978302a67f61ef060
38664 Author: Kumar Gala <galak@kernel.crashing.org>
38665 Date:   Thu Aug 30 16:18:18 2007 -0500
38666
38667     Fix ULI RTC support on MPC8544 DS
38668
38669     The RTC on the M1575 ULI chipset requires a dummy read before
38670     we are able to talk to the RTC.  We accomplish this by adding a
38671     second memory region to the PHB the ULI is on and read from it.
38672
38673     The second region is added to maintain compatiabilty with Linux's
38674     view of the PCI memory map.
38675
38676     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38677
38678 commit f75e89e9b5714db2b0e80074071dfbdd6f59488a
38679 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
38680 Date:   Thu Aug 30 01:58:48 2007 -0500
38681
38682     ft_board_setup update 85xx/86xx of pci/pcie bus-range property.
38683
38684     pcie is now differentiated from pci.  Add 8641 bus-range updates.
38685
38686     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38687
38688 commit 9f5c3d3720e777a572dcdc8af2008b44c7243885
38689 Author: Peter Pearse <peter.pearse@arm.com>
38690 Date:   Tue Sep 4 16:18:38 2007 +0100
38691
38692     Add coloured led interface for ARM boards.
38693     Use it in cpu/arm920t/start.S to indicate U-Boot code has been entered.
38694
38695 commit 7462fe0d5a9d40cde083fb1a3cd73911996b5ecb
38696 Author: Peter Pearse <peter.pearse@arm.com>
38697 Date:   Tue Sep 4 14:49:28 2007 +0100
38698
38699     Move include/led.h to board/at91rm9200dk
38700
38701 commit 6e4bf9b24e57c15abc6542e685d06380bc64af27
38702 Author: Peter Pearse <peter.pearse@arm.com>
38703 Date:   Tue Sep 4 14:25:51 2007 +0100
38704
38705     Ran Lindent on drivers/at45.c
38706
38707 commit 557ab89d294f08dd532f21d19861b40093200a33
38708 Author: Peter Pearse <peter.pearse@arm.com>
38709 Date:   Tue Sep 4 14:23:50 2007 +0100
38710
38711     Rename CONFIG_CMD_MUX to CONFIG_CMD_AT91_SPIMUX
38712
38713 commit 81b73dec16fd1227369a191e725e10044a9d56b8
38714 Author: Gary Jennejohn <garyj@denx.de>
38715 Date:   Fri Aug 31 15:21:46 2007 +0200
38716
38717     ppc4xx: (Re-)Enable CONFIG_PCI_PNP on AMCC 440EPx Sequoia
38718
38719     The 440EPx has a problem when the PCI_CACHE_LINE_SIZE register is
38720     set to non-zero, because it doesn't support MRM (memory-read-
38721     multiple) correctly. We now added the possibility to configure
38722     this register in the board config file, so that the default value
38723     of 8 can be overridden.
38724
38725     Here the details of this patch:
38726
38727     o drivers_pci_auto.c: introduce CFG_PCI_CACHE_LINE_SIZE to allow
38728       board-specific settings. As an example the sequoia board requires 0.
38729       Idea from Stefan Roese <sr@denx.de>.
38730     o board/amcc/sequoia/init.S: add a TLB mapping at 0xE8000000 for the
38731       PCI IO-space. Obtained from Stefan Roese <sr@denx.de>.
38732     o include/configs/sequoia.h: turn CONFIG_PCI_PNP back on and set
38733       CFG_PCI_CACHE_LINE_SIZE to 0.
38734
38735     Signed-off-by: Gary Jennejohn <garyj@denx.de>
38736     Signed-off-by: Stefan Roese <sr@denx.de>
38737
38738 commit 60174746c668b309378a91488dded898e9553eae
38739 Author: Wolfgang Denk <wd@denx.de>
38740 Date:   Fri Aug 31 10:01:51 2007 +0200
38741
38742     Fix TFTP OACK code for short packets.
38743
38744     The old code had a loop limit overflow bug which caused a semi-
38745     infinite loop for small packets, because in "i<len-8", "i" was signed,
38746     but "len" was unsigned, and "len-8" became a huge number for small
38747     values of "len".
38748
38749     This is a workaround which replaces broken commit 8f1bc284.
38750
38751     Signed-off-by: Wolfgang Denk <wd@denx.de>
38752
38753 commit 696dd1307cd8e73a10e9bb3c51731bfd6f837bee
38754 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
38755 Date:   Thu Aug 30 15:03:05 2007 +0200
38756
38757     Reduce BOOTDELAY variable to 1 second by default for STK1002
38758
38759     Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
38760     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38761
38762 commit c88b6e1cbf9a8ae2a34fb602f78a1bf4e6692b6a
38763 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
38764 Date:   Thu Aug 30 15:03:04 2007 +0200
38765
38766     Remove double quotation marks around MAC address for STK1002
38767
38768     Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
38769     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38770
38771 commit ff13ac8c7bbebb238e339592de765c546dba1073
38772 Author: Wolfgang Denk <wd@denx.de>
38773 Date:   Thu Aug 30 14:42:15 2007 +0200
38774
38775     Backout commit 8f1bc284 as it causes TFTP to fail.
38776
38777     Signed-off-by: Wolfgang Denk <wd@denx.de>
38778
38779 commit 1900fbf255acba8b94fb442a16408ea85a1d46a6
38780 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
38781 Date:   Thu Aug 30 02:26:17 2007 -0500
38782
38783     Revert "Fix MPC8544DS PCIe3 scsi."
38784
38785     This reverts commit 9468e680.
38786     Commit 16e23c3f5da removing allocation of PCSRBAR is sufficient.
38787
38788     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38789
38790 commit 8f1bc28408ded213418d9bc0780c7d8fb8a03774
38791 Author: Grant Likely <grant.likely@secretlab.ca>
38792 Date:   Wed Aug 29 18:26:24 2007 -0600
38793
38794     tftp: don't implicity trust the format of recevied packets
38795
38796     The TFTP OACK code trusts that the incoming packet is formated as
38797     ASCII text and can be processed by string functions. It also has a
38798     loop limit overflow bug where if the packet length is less than 8, it
38799     ends up looping over *all* of memory to find the 'blksize' string.
38800
38801     This patch solves the problem by forcing the packet to be null
38802     terminated and using strstr() to search for the sub string.
38803
38804     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38805
38806 commit 04625764cc93ce8a61625ac19d7fe2a2ceee8143
38807 Author: Stefan Roese <sr@denx.de>
38808 Date:   Wed Aug 29 16:31:18 2007 +0200
38809
38810     ppc4xx: Change lwmon5 default environment to support Linux RTC
38811
38812     The Linux PCF8563 RTC driver doesn't do autoprobing, so we need
38813     to supply the RTC I2C address as bootline parameter. This patch
38814     adds support for this rtc probing parameter to the bootargs:
38815
38816     "rtc-pcf8563.probe=0,0x51"
38817
38818     Signed-off-by: Stefan Roese <sr@denx.de>
38819
38820 commit 2602a5c40ae37ab965a4e240854fdaffb51328a4
38821 Author: Kim Phillips <kim.phillips@freescale.com>
38822 Date:   Wed Aug 29 09:06:05 2007 -0500
38823
38824     sbc8641: remove unused OF_FLAT_TREE_MAX_SIZE
38825
38826     this had slipped through the cracks, since the sbc board was added
38827     after I wrote the original patch to remove all these symbols, and
38828     before it was merged.
38829
38830     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38831
38832 commit c5bded3c88e48ae648a75d357dc81a8255fa81f1
38833 Author: Wolfgang Denk <wd@denx.de>
38834 Date:   Wed Aug 29 14:05:30 2007 +0200
38835
38836     Add mii_init() prototype
38837
38838     to get rid of a *lot* of compiler warnings.
38839
38840     Signed-off-by: Wolfgang Denk <wd@denx.de>
38841
38842 commit 2d1f23aa1e74e4a8f8ffa67f246eb98c522dfd7f
38843 Author: Wolfgang Denk <wd@denx.de>
38844 Date:   Wed Aug 29 13:35:03 2007 +0200
38845
38846     Disable network support on cmi_mpc5xx board
38847
38848     ..because it caused compiler errors and there seems to be no
38849     board maintainer to take care of this.
38850
38851     Signed-off-by: Wolfgang Denk <wd@denx.de>
38852
38853 commit 9468e6804b7e25b0f6f52e53f47bce3175400a16
38854 Author: Kumar Gala <galak@kernel.crashing.org>
38855 Date:   Mon Aug 20 09:44:00 2007 -0500
38856
38857     Fix MPC8544DS PCIe3 scsi.
38858
38859     <ed.swarthout@freescale.com>
38860
38861     The problem is pciauto_setup_device() getting called from fsl_pci_init.c
38862     is allocating memory space it doesn't need.
38863
38864     Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
38865     Signed-off-by: Andy Fleming <afleming@freescale.com>
38866
38867 commit 4bf4abb8a4e9955556b120a1aafa30c03e74032a
38868 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
38869 Date:   Tue Aug 21 09:38:59 2007 -0500
38870
38871     8548cds fixes
38872
38873     Restore CONFIG_EXTRA_ENV_SETTINGS definition which contains the
38874     correct consoledev needed for linux boot.
38875     Standardize on fdt{file,addr} var to hold dtb file name.
38876
38877     Set PCI inbound memory region from CFG_MEMORY_{BUS,PHYS}.
38878
38879     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38880
38881 commit 7a1ac419fa0d2d23ddd08bd61d16896a9f33c933
38882 Author: Haiying Wang <Haiying.Wang@freescale.com>
38883 Date:   Thu Aug 23 15:20:54 2007 -0400
38884
38885     Enable L2 cache for MPC8568MDS board
38886
38887     The L2 cache size is 512KB for 8568, print out the correct informaiton.
38888
38889     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
38890
38891 commit 94c47fdaf14cb29fa3fb4d4da2efdd96c803b46b
38892 Author: Jason Jin <Jason.jin@freescale.com>
38893 Date:   Wed Aug 22 17:54:49 2007 +0800
38894
38895     Remove the bios emulator binary files from MAI board
38896
38897     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
38898
38899 commit 7608d75f9c87c9eb5b3a43219d0506d3e979a13f
38900 Author: Kim Phillips <kim.phillips@freescale.com>
38901 Date:   Tue Aug 21 17:00:17 2007 -0500
38902
38903     support board vendor-common makefiles
38904
38905     if a board/$(VENDOR)/common/Makefile exists, build it.
38906
38907     also add the first such case, board/freescale/common/Makefile, to
38908     handle building board-shared EEPROM, PIXIS, and MDS-PIB code, as
38909     dictated by board configuration.
38910
38911     thusly get rid of alternate build dir errors such as:
38912
38913     FATAL: can't create /work/wd/tmp/u-boot-ppc/board/freescale/mpc8360emds/../common/pq-mds-pib.o: No such file or directory
38914
38915     by putting the common/ mkdir command in its proper place (the common
38916     Makefile). Common bits from existing individual board Makefiles have
38917     been removed.
38918
38919     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38920
38921 commit ef8f20752712dc1cdbd86f47e3bd6e35f81c83fd
38922 Author: stefano babic <sbabic@denx.de>
38923 Date:   Tue Aug 21 15:52:33 2007 +0200
38924
38925     Fix: TFTP is not working on little endian systems
38926
38927     TFTP does not work anymore after multicast tftp
38928     patch was applied on little endian systems.
38929     This patch fix it.
38930
38931     Signed-off-by: Stefano Babic <sbabic@denx.de>
38932
38933 commit 5f470948570526e9186f053a3003da7719604e90
38934 Author: stefano babic <sbabic@denx.de>
38935 Date:   Tue Aug 21 15:50:33 2007 +0200
38936
38937     Fix MAC address setting in DM9000 driver.
38938
38939     The logic to check if there is a correct MAC address in the DM9000
38940     EEPROM, added in the last patch, is wrong. Now the MAC address is
38941     always taken from the environment, even if a suitable MAC is present
38942     in the EEPROM.
38943
38944     Signed-off-by: Stefano Babic <sbabic@denx.de>
38945
38946 commit 4a8527ef086ec7c89f40674ef024ae6f988a614a
38947 Author: Martin Krause <martin.krause@tqs.de>
38948 Date:   Tue Aug 21 12:40:34 2007 +0200
38949
38950     MPC5xxx: fix some compiler warnings in USB code
38951
38952     Fix the following warnings:
38953     - usb.c:xx: warning: function declaration isn't a prototype
38954     - usb_ohci.c:xxx: warning: passing argument 1 of '__fswab32' makes integer
38955       from pointer wihtout a cast
38956
38957     Signed-off-by: Martin Krause <martin.krase@tqs.de>
38958
38959 commit 16e23c3f5dab6937f5109365416808c7f15c122b
38960 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
38961 Date:   Mon Aug 20 23:55:33 2007 -0500
38962
38963     fsl_pci_init - Remove self PCSRBAR allocation
38964
38965     CPU physical address space was being wasted by allocating a
38966     PCSRBAR PCI inbound region to it's memory space.
38967
38968     As a rule, PCSRBAR should be left alone since it does not affect
38969     transactions from self and other masters may have changed it.
38970
38971     Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
38972
38973 commit 0e700ce03a23bb1921149bc77008ace7103d5289
38974 Author: Martin Krause <martin.krause@tqs.de>
38975 Date:   Mon Aug 20 13:56:47 2007 +0200
38976
38977     Fix compiler warning in include/s3c2410.h
38978
38979     This patch fixes the "type qualifiers ignored on fuction return tpye"
38980     warning for include/s3c2410.h
38981
38982     Signed-off-by: Martin Krause <martin.krause@tqs.de>
38983
38984 commit 9bb8b209ed2058a5756ecbeb544c067e44a42aea
38985 Author: Dirk Behme <dirk.behme@googlemail.com>
38986 Date:   Mon Aug 20 07:09:05 2007 +0200
38987
38988     Fix compilation error for omap2420h4_config.
38989
38990     omap2420h4 switched to cfi, so remove old (already disabled) flash.c
38991     and flash_probe() calls in env_flash.c.
38992
38993     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
38994
38995 commit 3bb342fc85d79dbb6b8c2039e7cdcddc82b8d90f
38996 Author: Kim Phillips <kim.phillips@freescale.com>
38997 Date:   Fri Aug 10 14:34:14 2007 -0500
38998
38999     fdt: remove unused OF_FLAT_TREE_MAX_SIZE references
39000
39001     and make some minor corrections to the FDT part of the README.
39002
39003     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39004
39005 commit 6af2eeb1e99c2dcc584d4c5ab7fcae30a325f4de
39006 Author: Wolfgang Denk <wd@denx.de>
39007 Date:   Wed Aug 29 01:32:05 2007 +0200
39008
39009     Minor coding style cleanup.
39010
39011     Signed-off-by: Wolfgang Denk <wd@denx.de>
39012
39013 commit a861558c65f65f1cf1302f3a35e9db7686b9e1a3
39014 Author: Heiko Schocher <hs@pollux.denx.de>
39015 Date:   Tue Aug 28 17:40:33 2007 +0200
39016
39017     [UC101] Fix: if no CF in the board, U-Boot resets sometimes.
39018
39019     Signed-off-by: Heiko Schocher <hs@denx.de>
39020
39021 commit f98984cb194bb34dbe1db9429d3b51133af30d07
39022 Author: Heiko Schocher <hs@pollux.denx.de>
39023 Date:   Tue Aug 28 17:39:14 2007 +0200
39024
39025     IDE:        - make ide_inb () and ide_outb () "weak", so boards can
39026               define there own I/O functions.
39027               (Needed for the pcs440ep board).
39028             - The default I/O Functions are again 8 Bit accesses.
39029             - Added CONFIG_CMD_IDE for the pcs440ep Board.
39030
39031     Signed-off-by: Heiko Schocher <hs@denx.de>
39032
39033 commit 2c05fd125744981e5f2828d24e66ccc20a77d25d
39034 Author: Semih Hazar <semih.hazar@indefia.com>
39035 Date:   Mon Aug 20 19:00:01 2007 +0300
39036
39037     AVR32: Change prototype of memset
39038
39039     Signed-off-by: Semih Hazar <semih.hazar@indefia.com>
39040     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
39041
39042 commit 9c02defc29b57945b600714cf61ddfd02b02fb14
39043 Author: Yuri Tikhonov <yur@emcraft.com>
39044 Date:   Sat Aug 25 05:07:16 2007 +0200
39045
39046     POST: limit memory test area to not touch global data anymore
39047
39048     As experienced on lwmon5, on some boards the POST memory test can
39049     corrupt the global data buffer (bd). This patch fixes this issue
39050     by checking and limiting this area.
39051
39052     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
39053     Signed-off-by: Stefan Roese <sr@denx.de>
39054
39055 commit 75e1a84d483e36be10e206e539b028c4889e1158
39056 Author: Stefan Roese <sr@denx.de>
39057 Date:   Fri Aug 24 15:41:42 2007 +0200
39058
39059     ppc4xx: Add RTC POST test to lwmon5 board configuration
39060
39061     Since this RTC POST test is taking quite a while to complete
39062     it's only initiated upon special keypress same as the complete
39063     memory POST.
39064
39065     Signed-off-by: Stefan Roese <sr@denx.de>
39066
39067 commit d7bfa620037a6d2210159387571bdf93aa32c162
39068 Author: Stefan Roese <sr@denx.de>
39069 Date:   Fri Aug 24 15:19:10 2007 +0200
39070
39071     ppc4xx: Change GPIO signal for watchdog triggering on lwmon5
39072
39073     Signed-off-by: Stefan Roese <sr@denx.de>
39074
39075 commit c25dd8fc25e9ca3695db996a257d9ba4dab414db
39076 Author: Stefan Roese <sr@denx.de>
39077 Date:   Thu Aug 23 11:02:37 2007 +0200
39078
39079     ppc4xx: Add support for 2nd I2C EEPROM on lwmon5 board
39080
39081     This patch adds support for the 2nd EEPROM (AT24C128) on the lwmon5
39082     board. Now the "eeprom" command can be used to read/write from/to this
39083     device. Additionally a new command was added "eepromwp" to en-/disable
39084     the write-protect of this 2nd EEPROM.
39085
39086     The 1st EEPROM is not affected by this write-protect command.
39087
39088     Signed-off-by: Stefan Roese <sr@denx.de>
39089
39090 commit c64fb30e4c5976007d56fc1789c7a0666082b536
39091 Author: Stefan Roese <sr@denx.de>
39092 Date:   Wed Aug 22 08:56:09 2007 +0200
39093
39094     ppc4xx: Remove unused option CFG_INIT_RAM_OCM
39095
39096     Signed-off-by: Stefan Roese <sr@denx.de>
39097
39098 commit 3ad63878737a5a2b1e60825bf0a7d601d7a695e7
39099 Author: Stefan Roese <sr@denx.de>
39100 Date:   Tue Aug 21 16:27:57 2007 +0200
39101
39102     ppc4xx: Add matrix kbd support to lwmon5 board (440EPx based)
39103
39104     This patch adds support for the matrix keyboard on the lwmon5 board.
39105     Since the implementation in the dsPCI is kind of compatible with the
39106     "old" lwmon board, most of the code is copied from the lwmon
39107     board directory.
39108
39109     Signed-off-by: Stefan Roese <sr@denx.de>
39110
39111 commit 3e66c078003607a7d1d214c15a5f262bc1b4032f
39112 Author: Wolfgang Denk <wd@denx.de>
39113 Date:   Sun Aug 19 10:27:34 2007 +0200
39114
39115     Fix some build errors.
39116
39117     Signed-off-by: Wolfgang Denk <wd@denx.de>
39118
39119 commit 05675735ef77dc23b5e0eb782bad1ff477b55e86
39120 Author: Wolfgang Denk <wd@denx.de>
39121 Date:   Sat Aug 18 22:00:38 2007 +0200
39122
39123     Update CHANGELOG.
39124
39125 commit 79f240f7ecc0506b43ac50d1ea405ff6540d4d57
39126 Author: Kim Phillips <kim.phillips@freescale.com>
39127 Date:   Thu Aug 16 22:52:39 2007 -0500
39128
39129     lib_ppc: make board_add_ram_info weak
39130
39131     platforms wishing to display RAM diagnostics in addition to size,
39132     can do so, on one line, in their own board_add_ram_info()
39133     implementation.
39134
39135     this consequently eliminates CONFIG_ADD_RAM_INFO.
39136
39137     Thanks to Stefan for the hint.
39138
39139     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39140
39141 commit 815b5bd5b18569917c3e04b9757511e6ed23b9f6
39142 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
39143 Date:   Fri Aug 17 12:43:44 2007 +0900
39144
39145     PCI_READ_VIA_DWORD_OP: Fix *val uninitialized bug
39146
39147     This patch has been sent on:
39148     - 6 Jun 2007
39149
39150     Many users of PCI config read routines tend to ignore the function
39151     ret value, and are only concerned about the contents of *val. Based
39152     on this, pci_hose_read_config_{byte,word}_via_dword should initialize
39153     the *val on dword read error.
39154
39155     Without this fix, for example, we'll go on scanning bus with vendor or
39156     header_type uninitialized. This brings many unnecessary config trials.
39157
39158     Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
39159
39160 commit 26667b7fa05a8bf2fc65fb9f3230b02b1a10c367
39161 Author: Stefan Roese <sr@denx.de>
39162 Date:   Sat Aug 18 14:37:52 2007 +0200
39163
39164     ColdFire: Fix some remaining problems with CFG_CMD_
39165
39166     Signed-off-by: Stefan Roese <sr@denx.de>
39167
39168 commit 8280f6a1c43247616b68224675188e5ccd124650
39169 Author: Stefan Roese <sr@denx.de>
39170 Date:   Sat Aug 18 14:33:02 2007 +0200
39171
39172     Coding style cleanup
39173
39174     Signed-off-by: Stefan Roese <sr@denx.de>
39175
39176 commit 4a442d3186b31893b4f77c6e82f63c4517a5224b
39177 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39178 Date:   Thu Aug 16 19:23:50 2007 -0500
39179
39180     ColdFire: Add M5235EVB Platform for MCF523x
39181
39182     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39183
39184 commit 4cc1cd5941827a04cf5c51a07fcc42e8945894aa
39185 Author: Kim Phillips <kim.phillips@freescale.com>
39186 Date:   Fri Aug 17 09:30:00 2007 -0500
39187
39188     mpc83xx: fix typo in DDR2 programming
39189
39190     introduced in the implement board_add_ram_info patch as I was cleaning out the
39191     magic numbers.  sorry.
39192
39193     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39194
39195 commit e58fe95784d2514fc9c21028dc59f2b319a35d80
39196 Author: Kim Phillips <kim.phillips@freescale.com>
39197 Date:   Thu Aug 16 22:53:09 2007 -0500
39198
39199     mpc83xx: move freescale boards to boards/freescale
39200
39201     includes build fixes.
39202
39203     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39204
39205 commit 5aa4ad8d8e7e9468219990c7875d5fdc9e962f47
39206 Author: Kim Phillips <kim.phillips@freescale.com>
39207 Date:   Thu Aug 16 22:52:59 2007 -0500
39208
39209     mpc83xx: suppress unused variable 'val8' warning
39210
39211     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39212
39213 commit bbea46f76f767b919070b4829bf34c86bd223248
39214 Author: Kim Phillips <kim.phillips@freescale.com>
39215 Date:   Thu Aug 16 22:52:48 2007 -0500
39216
39217     mpc83xx: implement board_add_ram_info
39218
39219     add board_add_ram_info, to make memory diagnostic output more
39220     consistent. u-boot banner output now looks like:
39221
39222     DRAM:  256 MB (DDR1, 64-bit, ECC on)
39223
39224     and for boards with SDRAM on the local bus, a line such as this is
39225     added:
39226
39227     SDRAM: 64 MB (local bus)
39228
39229     also replaced some magic numbers with their equivalent define names.
39230
39231     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39232
39233 commit 14778585d1389d86d5846efec29e5fce892680ce
39234 Author: Tony Li <tony.li@freescale.com>
39235 Date:   Fri Aug 17 10:35:59 2007 +0800
39236
39237     mpc83xx: Split PIB init code from pci.c and add Qoc3 ATM card support
39238
39239     The patch split the PIB init code from pci.c to a single file board/freescale/common/pq-mds-pib.c
39240     And add Qoc3 ATM card support for MPC8360EMDS and MPC832XEMDS board.
39241
39242     Signed-off-by Tony Li <tony.li@freescale.com>
39243
39244 commit 8ae158cd87a4a25722b27835261b6ff0fa2aa6a7
39245 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39246 Date:   Thu Aug 16 15:05:11 2007 -0500
39247
39248     ColdFire: Add M54455EVB for MCF5445x
39249
39250     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39251
39252 commit a1436a842654a8d3927d082a8ae9ee0a10da62d7
39253 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39254 Date:   Thu Aug 16 13:20:50 2007 -0500
39255
39256     ColdFire: Add M5253EVBE platform for MCF52x2
39257
39258     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39259
39260 commit a605aacd8324094199402816cc6d9124aba57b8d
39261 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39262 Date:   Thu Aug 16 05:04:31 2007 -0500
39263
39264     ColdFire: Add M5249EVB platform for MCF52x2
39265
39266     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39267
39268 commit f28e1bd9daa6de5eb33ae4822bda6b008ccb4e9e
39269 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39270 Date:   Wed Aug 15 20:32:06 2007 -0500
39271
39272     ColdFire: Update Freescale MCF52x2 platforms
39273
39274     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39275
39276 commit 870470dbf6f4bb9864e0d97aeedbc17c167c6d1c
39277 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39278 Date:   Wed Aug 15 19:55:10 2007 -0500
39279
39280     ColdFire: Update EB+MCF-EV123 platform
39281
39282     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39283
39284 commit aa93d859d9b1fcd8eea52d51b06e86c38f72111b
39285 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39286 Date:   Wed Aug 15 19:46:38 2007 -0500
39287
39288     ColdFire: update TASREG platform for MCF52x2
39289
39290     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39291
39292 commit a9505510bf56a9b5558248dd8b73ec9d9a1556a2
39293 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39294 Date:   Wed Aug 15 19:45:51 2007 -0500
39295
39296     ColdFire: update r5200 platform for MCF52x2
39297
39298     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39299
39300 commit 6cfd3c7bc813fb317ab7c0781f0d1874b1c0877c
39301 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39302 Date:   Wed Aug 15 19:43:20 2007 -0500
39303
39304     ColdFire: idmr platform MCF52x2 update
39305
39306     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39307
39308 commit 6706424d0bb851fb52af00cd1c3301e91ee7f2b0
39309 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39310 Date:   Wed Aug 15 19:41:06 2007 -0500
39311
39312     ColdFire: cobra5272 platform for MCF52x2 update
39313
39314     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39315
39316 commit 56115665b4a64c10c01440c57749b265e0908fa4
39317 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39318 Date:   Wed Aug 15 19:38:15 2007 -0500
39319
39320     ColdFire: MCF52x2 Header files update
39321
39322     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39323
39324 commit 83ec20bc4380eebddfde45da6e3a69a92d4db21d
39325 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39326 Date:   Wed Aug 15 19:21:21 2007 -0500
39327
39328     ColdFire: MCF52x2 update
39329
39330     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39331
39332 commit f52e78304dcc0ac459c0ea1fa5be275c7d1642cf
39333 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39334 Date:   Wed Aug 15 18:46:11 2007 -0500
39335
39336     ColdFire: MCF5329 update cache
39337
39338     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39339
39340 commit 7171977fb8fd77cfb6676953fa9a05789c450513
39341 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39342 Date:   Wed Aug 15 15:40:20 2007 -0500
39343
39344     ColdFire: MCF5329 header file clean up
39345
39346     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39347
39348 commit ab77bc547ba561c25ea34457ed17aa0b2f7c2723
39349 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39350 Date:   Wed Aug 15 15:39:17 2007 -0500
39351
39352     ColdFire: MCF5329 Update and cleanup
39353
39354     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
39355
39356 commit 10327dc5541f947c0cf7e31fef86c4706169607a
39357 Author: Andy Fleming <afleming@freescale.com>
39358 Date:   Thu Aug 16 16:35:02 2007 -0500
39359
39360     Add CONFIG_HAS_ETH0 to all boards with TSEC
39361
39362     The 85xx code now relies on CONFIG_HAS_ETH0 to determine whether
39363     to update TSEC1's device-tree node, so we need to add it
39364     to all the boards with TSECs.  Do this for 83xx and 86xx, too,
39365     since they will eventually do something similar.
39366
39367     Signed-off-by: Andy Fleming <afleming@freescale.com>
39368
39369 commit d64ee908a1b525e5bb2b4cbeb5c449ad6a469666
39370 Author: Kumar Gala <galak@kernel.crashing.org>
39371 Date:   Thu Aug 16 15:05:04 2007 -0500
39372
39373     Update MPC8544 DS PCI memory map
39374
39375     The PCIe bus that the ULI M1575 is connected to has no possible way of
39376     needing more than the fixed amount of IO & Memory space needed by the ULI.
39377
39378     So make it use far less IO & memory space and have it use the shared LAW.  This
39379     free's up a LAW for PCIe1 IO space.  Also reduce the amount of IO space needed
39380     by each bus.
39381
39382     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39383
39384 commit ea5877e31ed63ade948fd1293895ec23fe01472e
39385 Author: Kumar Gala <galak@kernel.crashing.org>
39386 Date:   Thu Aug 16 11:01:21 2007 -0500
39387
39388     Fix up some fdt issues on 8544DS
39389
39390     It looks like we had a merge issue that duplicated a bit of code
39391     in ft_board_setup.  Also, we need to set CONFIG_HAS_ETH0 to get
39392     the MAC address properly set in the device tree on boot for TSEC1
39393
39394     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39395
39396 commit 07bc20560cb9d3d186cca268c05c82762e8c55ad
39397 Author: Niklaus Giger <niklaus.giger@netstal.com>
39398 Date:   Thu Aug 16 15:16:03 2007 +0200
39399
39400     PPC4xx:HCU4/5 cleanup
39401
39402     Minor cleanups to confirm to the u-boot coding style.
39403     Some german expressions -> english.
39404     HCU5 enforces a unique IP adress for a given slot in the rack.
39405
39406     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
39407
39408 commit 1e6b07c64967c1eb2cd84faa4c32bf2a769bc8eb
39409 Author: Niklaus Giger <niklaus.giger@netstal.com>
39410 Date:   Thu Aug 16 15:16:02 2007 +0200
39411
39412     PPC4xx:HCU4/5 cleanup ecc/sdram init
39413
39414     Make ecc initialisation robust, as DDR2-ECC errors may be generated
39415     while zeroing the RAM.
39416
39417     Return 16 bytes (a cacheline) less than the available memory, as the
39418     board and/or PPC440EPx might have problems accessing the last bytes.
39419
39420     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
39421
39422 commit d35b508a55508535b6e8445b718585d27df733d3
39423 Author: Kim Phillips <kim.phillips@freescale.com>
39424 Date:   Wed Aug 15 22:29:56 2007 -0500
39425
39426     fdt: suppress unused variable 'bd' warning
39427
39428     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39429
39430 commit 82bd9ee77490588d4da785d75829ca63d0176baf
39431 Author: Andy Fleming <afleming@freescale.com>
39432 Date:   Wed Aug 15 20:06:50 2007 -0500
39433
39434     Fix warnings from of_data copy fix
39435
39436     Forgot to cast of_flat_tree to ulong.
39437
39438     Signed-off-by: Andy Fleming <afleming@freescale.com>
39439
39440 commit 7613afda77d5eec0f47d303025b0c661b70e4c73
39441 Author: Andy Fleming <afleming@freescale.com>
39442 Date:   Wed Aug 15 20:03:44 2007 -0500
39443
39444     Don't wait for disconnected TSECs
39445
39446     The TSEC driver's PHY code waits a long time for autonegotiation to
39447     complete, even if the link is down.  The PHY knows the link is
39448     down or up before autonegotiation completes, so we can short-circuit
39449     the process if the link is down.
39450
39451     Signed-off-by: Andy Fleming <afleming@freescale.com>
39452
39453 commit b96c83d4ae475a70ef2635cd0e748174c44c8601
39454 Author: Andy Fleming <afleming@freescale.com>
39455 Date:   Wed Aug 15 20:03:34 2007 -0500
39456
39457     Fix numerous bugs in the 8568 UEC support
39458
39459     Actually, fixed a large bug in the UEC for *all* platforms.
39460     How did this ever work?
39461
39462     uec_init() did not follow the spec for eth_init(), and returned
39463     0 on success.  Switch it to return the link like tsec_init()
39464     (and 0 on error)
39465
39466     The immap for the 8568 was defined based on MPC8568, rather than
39467     CONFIG_MPC8568
39468
39469     CONFIG_QE was off
39470
39471     CONFIG_ETHPRIME was set to "Freescale GETH".  Now is "FSL UEC0"
39472
39473     Fixed a comment about the ranges for CONFIG_ETHPRIME if TSEC_ENET is
39474     enabled
39475
39476     Signed-off-by: Andy Fleming <afleming@freescale.com>
39477
39478 commit 3a79013e2adda53332dfd0b511066a805e929a9d
39479 Author: Andy Fleming <afleming@freescale.com>
39480 Date:   Wed Aug 15 20:03:25 2007 -0500
39481
39482     Define tsec flag values in config files
39483
39484     The tsec_info structure and array has a "flags" field for each
39485     ethernet controller.  This field is the only reason there are
39486     settings.  Switch to defining TSECn_FLAGS for each controller
39487     in the config header, and we can greatly simplify the array, and
39488     also simplify the addition of future boards.
39489
39490     Signed-off-by: Andy Fleming <afleming@freescale.com>
39491
39492 commit ec7238229507e7f47533a611ea8c53319d234cf3
39493 Author: Andy Fleming <afleming@freescale.com>
39494 Date:   Wed Aug 15 20:03:13 2007 -0500
39495
39496     Add support for building all boards with a TSEC
39497
39498     Changes to the TSEC driver affect almost all 83xx, 85xx, and 86xx boards.
39499     Now we can do a MAKEALL test on all of them!
39500
39501     Signed-off-by: Andy Fleming <afleming@freescale.com>
39502
39503 commit 10aaf716cb0dc6614df54ef78bed5144afd23ef8
39504 Author: Andy Fleming <afleming@freescale.com>
39505 Date:   Wed Aug 15 17:30:56 2007 -0500
39506
39507     Fix of_data copying for CONFIG_OF_FLAT_TREE-using boards
39508
39509     The fix, "Fix where the #ifdef CFG_BOOTMAPSZ is placed"
39510     neglected to *also* put the code inside the similar #ifdef
39511     for CONFIG_OF_FLAT_TREE.
39512
39513     Signed-off-by: Andy Fleming <afleming@freescale.com>
39514
39515 commit 78f9fef7f406078c8bf7191e665a73f795157746
39516 Author: Scott Wood <scottwood@freescale.com>
39517 Date:   Wed Aug 15 15:46:46 2007 -0500
39518
39519     mpc885ads: Don't define CONFIG_BZIP2.
39520
39521     bzip2 requires a significant chunk of malloc space, and there isn't
39522     enough room on mpc885ads (with only 8MB RAM) for both bzip2's malloc area
39523     and a downloaded image at 0x400000.
39524
39525     Signed-off-by: Scott Wood <scottwood@freescale.com>
39526
39527 commit 002275a3ed8b114885f6702d6d544d0780dfe689
39528 Author: Michal Simek <Monstr@seznam.cz>
39529 Date:   Thu Aug 16 08:54:10 2007 +0200
39530
39531     Bios emulator - fix microblaze toolchain problem
39532
39533     microblaze CPU have problem with bios_emulator code.
39534     Microblaze toolchain doesn't support PRAGMA PACK.
39535
39536     Signed-off-by: Michal Simek <monstr@monstr.eu>
39537
39538 commit a5a38f4fd7e5366d706ff6a985f9b6715ddbc98b
39539 Author: Wolfgang Denk <wd@denx.de>
39540 Date:   Thu Aug 16 11:51:04 2007 +0200
39541
39542     Minor Coding Style fix; Update CHANGELOG file.
39543
39544     Signed-off-by: Wolfgang Denk <wd@denx.de>
39545
39546 commit 8fb6e80c06849e3013ac5c9350d8ed9e52967991
39547 Author: Stefan Roese <sr@denx.de>
39548 Date:   Thu Aug 16 11:21:49 2007 +0200
39549
39550     ppc4xx: Remove #warning in esd auto_update.c
39551
39552     Signed-off-by: Stefan Roese <sr@denx.de>
39553
39554 commit 2d78074d2e806edc380c1464eb9e5df335ece65e
39555 Author: Stefan Roese <sr@denx.de>
39556 Date:   Fri Jun 22 17:32:28 2007 +0200
39557
39558     ppc7xx: Update CPCI750 board
39559
39560     This small CPCI750 update extends the board specific command
39561     "show_config" to display the Marvell strapping registers and
39562     extends the PCI IDE controller.
39563
39564     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
39565     Signed-off-by: Stefan Roese <sr@denx.de>
39566
39567 commit 78cff50edba6b1508eb15c2f53ce966ac891eb9e
39568 Author: Michal Simek <monstr@monstr.eu>
39569 Date:   Thu Aug 16 10:46:28 2007 +0200
39570
39571     [FIX] Changes for bios_emulator code for others architecture
39572
39573 commit 6e0e2253f039344f8ebd2787285fdba90e6714e8
39574 Author: Michal Simek <monstr@monstr.eu>
39575 Date:   Thu Aug 16 10:45:09 2007 +0200
39576
39577     [FIX] Remove unused include file
39578
39579 commit 9de469bd960cc1870bb40d6672ed42726b8b50d7
39580 Author: Stefan Roese <sr@denx.de>
39581 Date:   Thu Aug 16 10:18:33 2007 +0200
39582
39583     ppc4xx: Only enable POST FPU test on Sequoia and not Rainier
39584
39585     Signed-off-by: Stefan Roese <sr@denx.de>
39586
39587 commit 6da0c5bd4a53e40eb4f7eb72a4c051ecabad783c
39588 Author: Stefan Roese <sr@denx.de>
39589 Date:   Thu Aug 16 09:54:51 2007 +0200
39590
39591     Add missing rainier (PPC440GRx) target to MAKEALL and MAINTAINERs files
39592
39593     Signed-off-by: Stefan Roese <sr@denx.de>
39594
39595 commit 02ba7022f62bb75908296c58c63866e1d294b69a
39596 Author: Stefan Roese <sr@denx.de>
39597 Date:   Thu Aug 16 09:52:29 2007 +0200
39598
39599     ppc4xx: Update Sequoia/Rainier bootstrap command
39600
39601     As suggested by David Mitchell, here an update for the Sequoia/Rainier
39602     bootstrap command.
39603
39604     Signed-off-by: Stefan Roese <sr@denx.de>
39605
39606 commit 35cc4e4823668e8745854899cfaedd4489beb0ef
39607 Author: Kim Phillips <kim.phillips@freescale.com>
39608 Date:   Wed Aug 15 22:30:39 2007 -0500
39609
39610     mpc83xx: enable libfdt by default on freescale boards
39611
39612     this enables libfdt code by default for the
39613     freescale mpc8313erdb, mpc832xemds, mpc8349emds,
39614     mpc8349itx and gp boards.
39615
39616     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39617
39618 commit 3fde9e8b22cfbd7af489214758f9839a206576cb
39619 Author: Kim Phillips <kim.phillips@freescale.com>
39620 Date:   Wed Aug 15 22:30:33 2007 -0500
39621
39622     mpc83xx: migrate remaining freescale boards to libfdt
39623
39624     this adds libfdt support code for the freescale
39625     mpc8313erdb, mpc832xemds, mpc8349emds, mpc8349itx,
39626     and gp boards.
39627
39628     Boards remain compatible with OF_FLAT_TREE.
39629
39630     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39631
39632 commit 6a16e0dfcc4119b46adb1dce2d6c8fb3c5d108e1
39633 Author: Kim Phillips <kim.phillips@freescale.com>
39634 Date:   Wed Aug 15 22:30:26 2007 -0500
39635
39636     mpc83xx: move common /memory node update mechanism to cpu.c
39637
39638     also adds common prototypes to include/common.h.
39639
39640     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39641
39642 commit 8f9e0e9f339aee4ce31a338d5f27356eb5457f85
39643 Author: Kim Phillips <kim.phillips@freescale.com>
39644 Date:   Wed Aug 15 22:30:19 2007 -0500
39645
39646     mpc83xx: remaining 8360 libfdt fixes
39647
39648     PCI clocks and QE frequencies weren't being updated, and the core clock
39649     was being updated incorrectly.  This patch also adds a /memory node if
39650     it doesn't already exist prior to update.
39651
39652     plus some cosmetic trimming to single line comments.
39653
39654     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39655
39656 commit f4b2ac5ed9aaff9920d487bff8a59696c083a524
39657 Author: Kim Phillips <kim.phillips@freescale.com>
39658 Date:   Wed Aug 15 22:30:12 2007 -0500
39659
39660     mpc83xx: fix UEC2->1 typo in libfdt setup code
39661
39662     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39663
39664 commit 19fa1c35368484d4ed10ddce8a7793c21862e3a3
39665 Author: Kim Phillips <kim.phillips@freescale.com>
39666 Date:   Wed Aug 15 22:30:05 2007 -0500
39667
39668     mpc83xx: add MAINTAINER and MAKEALL entries for the mpc8323erdb
39669
39670     and reorder the existing 83xx maintainers alpha.
39671
39672     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39673
39674 commit 5b4de9309d7a03aa1db2e5391ab696363391f460
39675 Author: Michal Simek <monstr@monstr.eu>
39676 Date:   Wed Aug 15 21:15:05 2007 +0200
39677
39678     [FIX] Resolve problem with warnings
39679     microblaze toolchain don't support PRAGMA PACK.
39680
39681 commit d1ed28cf36ab6b1d4c479809de7252bf53d2f2d4
39682 Author: Michal Simek <monstr@monstr.eu>
39683 Date:   Wed Aug 15 21:05:07 2007 +0200
39684
39685     [FIX] Correction command setting for Microblaze boards
39686
39687 commit 7aa63d8cd30ab20ac2fd1ab86e60471de8b1f1e5
39688 Author: Michal Simek <monstr@monstr.eu>
39689 Date:   Wed Aug 15 21:03:41 2007 +0200
39690
39691     [FIX] Correction command definition
39692
39693 commit 30b52df9e906bf0e465916c2c6bb5192b438e0b8
39694 Author: Jon Loeliger <jdl@freescale.com>
39695 Date:   Wed Aug 15 11:55:35 2007 -0500
39696
39697     86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
39698
39699     Remove a leftover in net/tftp.c while we're at it.
39700
39701     Signed-off-by: Jon Loeliger <jdl@freescale.com>
39702
39703 commit 4ce917742b1e48faa9bf9a9757545e56fb4cfe44
39704 Author: Jon Loeliger <jdl@freescale.com>
39705 Date:   Wed Aug 15 12:20:40 2007 -0500
39706
39707     Move the MPC8641HPCN board under board/freescale.
39708
39709     Minor path corrections needed to ensure buildability.
39710
39711     Signed-off-by: Jon Loeliger <jdl@freescale.com>
39712
39713 commit 8662577fe36fdb6a44b55b998d9daac6392a736a
39714 Author: Jon Loeliger <jdl@freescale.com>
39715 Date:   Wed Aug 15 11:46:22 2007 -0500
39716
39717     86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
39718
39719     Remove a leftover in net/tftp.c while we're at it.
39720
39721     Signed-off-by: Jon Loeliger <jdl@freescale.com>
39722
39723 commit 210f463c71917b7a4495c2103c228b9c179ae64d
39724 Author: Jerry Van Baren <gvb.uboot@gmail.com>
39725 Date:   Wed Aug 15 11:13:15 2007 -0400
39726
39727     Fix where the #ifdef CFG_BOOTMAPSZ is placed.
39728
39729     Commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924 "Fix initrd/dtb
39730     interaction" put the new code outside of the #if defined(CONFIG_OF_LIBFDT)
39731     when it should have gone inside of the conditional.  As a result, it
39732     broke non-LIBFDT board builds.
39733
39734     Also added a missing "not." to the comment.
39735
39736     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
39737
39738 commit 0e19209767194a97cec6d93dba9e64d1da8d548e
39739 Author: Niklaus Giger <niklaus.giger@netstal.com>
39740 Date:   Wed Aug 15 12:14:23 2007 +0200
39741
39742     PPC4xx:HCU4/5-Board fix compile warning
39743
39744     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
39745
39746 commit 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7
39747 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
39748 Date:   Tue Aug 14 14:06:45 2007 -0500
39749
39750     Fix malloc size error in ahci_init_one.
39751
39752     Typically this causes scsi init to corrupt the
39753     devlist and break the coninfo command.
39754     Fix a compiler size warning.
39755
39756     Signed-off-by: Jason Jin <jason.jin@freescale.com>
39757     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
39758     Acked-by: Andy Fleming <afleming@freescale.com>
39759
39760 commit b361acd64fd2525c081b9b288b0804efe209c0e9
39761 Author: ksi@koi8.net <ksi@koi8.net>
39762 Date:   Tue Aug 14 10:02:16 2007 -0700
39763
39764     TI DaVinci - fix unsupported %hhx format
39765
39766     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
39767
39768 commit f01dbb5424a81453c81190dd30e945891466f621
39769 Author: Wolfgang Denk <wd@denx.de>
39770 Date:   Tue Aug 14 18:42:36 2007 +0200
39771
39772     Coding style cleanup. Update CHANGELOG.
39773
39774     Signed-off-by: Wolfgang Denk <wd@denx.de>
39775
39776 commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924
39777 Author: Andy Fleming <afleming@freescale.com>
39778 Date:   Tue Aug 14 10:32:59 2007 -0500
39779
39780     Fix initrd/dtb interaction
39781
39782     The original code would wrongly relocate the blob to be right before
39783     the initrd if it existed.  The blob *must* be within CFG_BOOTMAPSZ,
39784     if it is defined.  So we make two changes:
39785
39786     1) flag the blob for relocation whenever its address is above BOOTMAPSZ
39787
39788     2) If the blob is being relocated, relocate it before kbd, not initrd
39789
39790     Signed-off-by: Andy Fleming <afleming@freescale.com>
39791
39792 commit e54b970173769307a116bd34028b6d0c2eea2a4e
39793 Author: Peter Pearse <peter.pearse@arm.com>
39794 Date:   Tue Aug 14 15:40:00 2007 +0100
39795
39796     Supply spi interface in at45.c
39797
39798 commit 4ce846ec59f36b85d6644a769690ad3feb667575
39799 Author: Stefan Roese <sr@denx.de>
39800 Date:   Tue Aug 14 15:12:01 2007 +0200
39801
39802     POST: Fix merge problem
39803
39804     Signed-off-by: Stefan Roese <sr@denx.de>
39805
39806 commit 429d9571f60631ae8a2fe12b11be4c75b0c2b37c
39807 Author: Stefan Roese <sr@denx.de>
39808 Date:   Tue Aug 14 15:03:17 2007 +0200
39809
39810     Coding style cleanup
39811
39812     Signed-off-by: Stefan Roese <sr@denx.de>
39813
39814 commit 779e975117a75e91fcebe226a63104dbfb924ab1
39815 Author: Stefan Roese <sr@denx.de>
39816 Date:   Tue Aug 14 14:44:41 2007 +0200
39817
39818     ppc4xx: Add initial Zeus (PPC405EP) board support
39819
39820     Signed-off-by: Stefan Roese <sr@denx.de>
39821
39822 commit c5a172a5fd636c12467429e3f7910e53773979c6
39823 Author: Stefan Roese <sr@denx.de>
39824 Date:   Tue Aug 14 14:41:55 2007 +0200
39825
39826     POST: Add option for external ethernet loopback test
39827
39828     When CFG_POST_ETHER_EXT_LOOPBACK is defined, the ethernet POST
39829     is not done using an internal loopback connection, but by assuming
39830     that an external loopback connector is plugged into the board.
39831
39832     Signed-off-by: Stefan Roese <sr@denx.de>
39833
39834 commit eb2b4010ae426245172988804ee8d9193fb41038
39835 Author: Stefan Roese <sr@denx.de>
39836 Date:   Tue Aug 14 14:39:44 2007 +0200
39837
39838     POST: Add ppc405 support to cache and UART POST
39839
39840     Signed-off-by: Stefan Roese <sr@denx.de>
39841
39842 commit 0c42f36f15074bd9808a7dbd7ef611fad9bf537c
39843 Author: Peter Pearse <peter.pearse@arm.com>
39844 Date:   Tue Aug 14 10:46:32 2007 +0100
39845
39846     Replace lost end of at45.c.
39847
39848 commit 65d7ada64557e76094b4fd3bad30a0f18f5fb2b2
39849 Author: Peter Pearse <peter.pearse@arm.com>
39850 Date:   Tue Aug 14 10:30:06 2007 +0100
39851
39852     Update Makefiles for merged and split at45.c.
39853
39854 commit 3454cece2db57cb9eb7087995f7e73066a163f71
39855 Author: Peter Pearse <peter.pearse@arm.com>
39856 Date:   Tue Aug 14 10:21:06 2007 +0100
39857
39858     Delete the merged files.
39859
39860 commit dcbfd2e5649f97aa04fbbc6ea2b008aa4486e225
39861 Author: Peter Pearse <peter.pearse@arm.com>
39862 Date:   Tue Aug 14 10:14:05 2007 +0100
39863
39864     Add the files.
39865
39866 commit d4fc6012fd0a5c211b825691f44b06f8032c0551
39867 Author: Peter Pearse <peter.pearse@arm.com>
39868 Date:   Tue Aug 14 10:10:52 2007 +0100
39869
39870     Add MACH_TYPE records for several AT91 boards.
39871     Merge to two at45.c files into a common file, split to at45.c and spi.c
39872     Fix spelling error in DM9161 PHY Support.
39873     Initialize at91rm9200 board (and set LED).
39874     Add PIO control for at91rm9200dk LEDs and Mux.
39875     Change dataflash partition boundaries to be compatible with Linux 2.6.
39876
39877     Signed-off-by:      Peter Pearse <peter.pearse@arm.com>
39878     Signed-off-by:      Ulf Samuelsson <ulf@atmel.com>
39879
39880 commit 4ef35e53c693556c54b0c22d6f873de87bade253
39881 Author: Wolfgang Denk <wd@denx.de>
39882 Date:   Tue Aug 14 09:54:46 2007 +0200
39883
39884     Coding style cleanup, update CHANGELOG
39885
39886     Signed-off-by: Wolfgang Denk <wd@denx.de>
39887
39888 commit 85eb5caf6b906f7ec5b54814e8c7c74f55986bb7
39889 Author: Wolfgang Denk <wd@denx.de>
39890 Date:   Tue Aug 14 09:47:27 2007 +0200
39891
39892     Coding style cleanup; rebuild CHANGELOG
39893
39894 commit 7f3f2bd2dc08e0b05e185662ca2e2d283757104a
39895 Author: Randy Vinson <rvinson@linuxbox.(none)>
39896 Date:   Tue Feb 27 19:42:22 2007 -0700
39897
39898     85xxCDS: Add make targets for legacy systems.
39899
39900     The PCI ID select values on the Arcadia main board differ depending
39901     on the version of the hardware. The standard configuration supports
39902     Rev 3.1. The legacy target supports Rev 2.x.
39903
39904     Signed-off-by Randy Vinson <rvinson@mvista.com>
39905
39906 commit e41094c7e38177c755fbd9b182018069614f080d
39907 Author: Andy Fleming <afleming@freescale.com>
39908 Date:   Tue Aug 14 01:50:09 2007 -0500
39909
39910     85xxCDS: Enable the VIA PCI-to-ISA bridge.
39911
39912     Author: Randy Vinson <rvinson@linuxbox.(none)>
39913
39914     Enable the PCI-to-ISA bridge in the VIA Southbridge located on the
39915     Arcadia main board.
39916
39917     Signed-off-by: Randy Vinson <rvinson@mvista.com>
39918     Signed-off-by: York Sun <yorksun@freescale.com>
39919
39920 commit da9d4610d76e52c4d20a8f3d8433439a7fcf5b71
39921 Author: Andy Fleming <afleming@freescale.com>
39922 Date:   Tue Aug 14 00:14:25 2007 -0500
39923
39924     Add support for UEC to 8568
39925
39926     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
39927     Signed-off-by: Andy Fleming <afleming@freescale.com>
39928
39929 commit c59e4091ffe0148398b9e9ff14a019ea038b7432
39930 Author: Haiying Wang <Haiying.Wang@freescale.com>
39931 Date:   Tue Jun 19 14:18:34 2007 -0400
39932
39933     Add PCI support for MPC8568MDS board
39934
39935     This patch is against u-boot-mpc85xx.git of www.denx.com
39936
39937     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
39938     Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
39939
39940 commit d111d6382c99fdea08c2312eeeae8786945e189a
39941 Author: Haiying Wang <Haiying.Wang@freescale.com>
39942 Date:   Tue Jun 19 14:18:32 2007 -0400
39943
39944     Empirically set cpo and clk_adjust for mpc85xx DDR2 support
39945
39946     This patch is against u-boot-mpc85xx.git of www.denx.com
39947
39948     Setting cpo to 0x9 for frequencies higher than 333MHz is verified on
39949     both MPC8548CDS board and MPC8568MDS board, especially for supporting
39950     533MHz DDR2.
39951
39952     Setting clk_adjust to 0x6(3/4 late cycle) for MPC8568MDS board is for
39953     DDR2 on all current board versions especially ver 1.92 or later to bring
39954     up.
39955
39956     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
39957
39958 commit 3db0bef59eab1155801618cef5c481e97553b597
39959 Author: Kumar Gala <galak@kernel.crashing.org>
39960 Date:   Tue Aug 7 18:07:27 2007 -0500
39961
39962     Use an absolute address when jumping out of 4k boot page
39963
39964     On e500 when we leave the 4k boot page we should use an absolute address since
39965     we don't know where the board code may want us to be really running at.
39966
39967     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39968
39969 commit 39980c610c9a4c381907c9e1d1b9c0e1c0dca57a
39970 Author: Andy Fleming <afleming@freescale.com>
39971 Date:   Mon Aug 13 14:49:59 2007 -0500
39972
39973     MPC85xx BA bits not set for 3-bit bank address DIMM
39974
39975     The current implementation does not set the number of bank address bits
39976     (BA) in the processor. The default assumes 2 logical bank bits. This
39977     works fine for a DIMM that uses devices with 4 internal banks (SPD
39978     byte17 = 0x4) but needs to be set appropriately for a DIMM that uses
39979     devices with 8 internal banks (SPD byte17 = 0x8).
39980
39981     Signed-off-by: Greg Davis <DavisG@embeddedplanet.com>
39982
39983 commit 6c543597bb4b1ecf5d8589f7abb0f39929fb7fd1
39984 Author: Andy Fleming <afleming@freescale.com>
39985 Date:   Mon Aug 13 14:38:06 2007 -0500
39986
39987     Fix minor 85xx warnings
39988
39989     Some patches had inserted warnings into the build:
39990     * mpc8560ads declared data without using it
39991     * cpu_init declared ecm and immap without using it in all CONFIGs
39992     * MPC8548CDS.h had its default filenames changed so that they contained
39993       "\m" in the paths.  Made the defaults not Windows-specific (or
39994       anything-specific)
39995
39996     Signed-off-by: Andy Fleming <afleming@freescale.com>
39997
39998 commit f2cff6b104f82b993bef6086ce0c97159bbe1add
39999 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
40000 Date:   Fri Jul 27 01:50:52 2007 -0500
40001
40002     8548cds PCIE support.
40003
40004     Make the early L1 cache stack region guarded to prevent speculative
40005     fetches outside the locked range.
40006
40007     Use _PHYS defines, not _MEM for cpu-side PCI memory mapped regions.
40008     init.S whitespace cleanup.
40009
40010     Allow TEXT_BASE value to be specified on command line.  This allows it
40011     to be set to 0xfffc0000 which cuts the uboot binary in half.
40012
40013     Clear and enable lbc and ecm errors.
40014
40015     Update last_busno in device-tree for pci and pcie.
40016
40017     Remove load of obsolete cpu/mpc85xx/pci.0
40018
40019     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40020     Acked-by: Andy Fleming <afleming@freescale.com>
40021
40022 commit 837f1ba05cfb248aba5ab8e1fb1bfeefa07d5962
40023 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
40024 Date:   Fri Jul 27 01:50:51 2007 -0500
40025
40026     8544ds PCIE support
40027
40028     PCI1 LAW mapping should use CFG_PCI1_MEM_PHY and not _BASE address.
40029
40030     Enable LBC and ECM errors and clear error registers.
40031
40032     Add tftpflash env var to get uboot from tftp server and flash it.
40033
40034     Add pci/pcie convenience env vars to display register space:
40035       "run pcie3regs" to see all pcie3 ccsr registers
40036       "run pcie3cfg" to see all cfg registers
40037     Whitespace cleanup and MPC8544DS.h
40038
40039     Enable CONFIG_INTERRUPTS.
40040
40041     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40042     Acked-by: Andy Fleming <afleming@freescale.com>
40043
40044 commit 61a21e980a7b9188424d04f1c265fdc5c21c7e85
40045 Author: Andy Fleming <afleming@freescale.com>
40046 Date:   Tue Aug 14 01:34:21 2007 -0500
40047
40048     85xx start.S cleanup and exception support
40049
40050     From: Ed Swarthout <Ed.Swarthout@freescale.com>
40051
40052     Support external interrupts from platform to eliminate system hangs.
40053     Define CONFIG_INTERRUPTS board configure option to enable.
40054     Enable ecm, ddr, lbc, and pci/pcie error interrupts in PIC.
40055
40056     Remove extra cpu initialization redundant with hardware initialization.
40057     Whitespace cleanup.
40058
40059     Define and use _START_OFFSET consistent with other processors using
40060     ppc_asm.tmpl
40061
40062     Move additional code from .text to boot page to make room for
40063     exception vectors at start of image.
40064
40065     Handle Machine Check, External and Critical exceptions.
40066
40067     Fix e500 machine check error determination in traps.c
40068
40069     TEXT_BASE can now be 0xfffc_0000 - which cuts binary image in half.
40070
40071     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40072     Acked-by: Andy Fleming <afleming@freescale.com>
40073
40074 commit 7bd30fc4a6475b41d6679ae3aafc9fa505260c47
40075 Author: Andy Fleming <afleming@freescale.com>
40076 Date:   Tue Aug 14 01:33:18 2007 -0500
40077
40078     Add MPC8544DS README
40079
40080     Signed-off-by: Andy Fleming <afleming@freescale.com>
40081
40082 commit 40c7f9b0de4e300370adfc704128fa0f79a143b6
40083 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
40084 Date:   Fri Jul 27 01:50:48 2007 -0500
40085
40086     85xx allow debugger to configure ddr.
40087
40088     Only check for mpc8548 rev 1 when compiled for 8548.
40089
40090     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40091     Acked-by: Andy Fleming <afleming@freescale.com>
40092
40093 commit 29372ff38c5baab7d0e3a8c14fe11fa194a38704
40094 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
40095 Date:   Fri Jul 27 01:50:47 2007 -0500
40096
40097     mpc85xx L2 cache reporting and SRAM relocation option.
40098
40099     Allow debugger to override flash cs0/cs1 settings to enable alternate
40100     boot regions
40101
40102     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40103     Acked-by: Andy Fleming <afleming@freescale.com>
40104
40105 commit 41f0f8fb1ab92f0cba7d329de90070f822f8299f
40106 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
40107 Date:   Fri Jul 27 01:50:46 2007 -0500
40108
40109     e500 needs ppc_asm.tmp MCK_EXCEPTION
40110
40111     Always define MCK_EXCEPTION macro - so e500 can use it too.
40112
40113     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40114     Acked-by: Andy Fleming <afleming@freescale.com>
40115
40116 commit 53a5c424bf8655b7b4e2c305a441963259a26a81
40117 Author: David Updegraff <dave@cray.com>
40118 Date:   Mon Jun 11 10:41:07 2007 -0500
40119
40120     multicast tftp: RFC2090
40121
40122     Implemented IETF RFC2090, Multicast TFTP.  Initial implementation
40123     on Realtek RTL8139 and Freescale TSEC.
40124
40125     Signed-off-by: David Updegraff <dave@cray.com>
40126     Signed-off-by: Ben Warren <bwarren@qstreams.com>
40127
40128 commit 5d110f0aa69f065ee386ec1840dfee1e8cc46bc1
40129 Author: Wilson Callan <wcallan@savantav.com>
40130 Date:   Sat Jul 28 10:56:13 2007 -0400
40131
40132     New CONFIG_BOOTP_SERVERIP option
40133
40134     Added CONFIG_BOOTP_SERVERIP to allow the tftp server to be different
40135     from the bootp server
40136
40137     Signed-off-by: Wilson Callan <wcallan@savantav.com>
40138     Signed-off-by: Ben Warren <bwarren@qstreams.com>
40139
40140 commit 50cca8b976ec74069860208c36e64ce8f4d5e4c1
40141 Author: Mike Rapoport <mike@compulab.co.il>
40142 Date:   Sun Aug 12 08:48:27 2007 +0300
40143
40144     Add ability to take MAC address from the environment to DM9000 driver
40145
40146     Signed-off-by: Mike Rapoport <mike@compulab.co.il>
40147     Signed-off-by: Ben Warren <bwarren@qstreams.com>
40148
40149 commit be5d72d10d47609326226225181e301fb9a33b58
40150 Author: Wolfgang Denk <wd@denx.de>
40151 Date:   Mon Aug 13 21:57:53 2007 +0200
40152
40153     Minor coding style cleanup. Update CHANGELOG.
40154
40155     Signed-off-by: Wolfgang Denk <wd@denx.de>
40156
40157 commit cca34967cbd13ff6bd352be29e3f1cc88ab24c05
40158 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
40159 Date:   Sat Aug 11 06:54:58 2007 -0500
40160
40161     Modify SBC8641D to use new Freescale PCI routines
40162
40163     PCI-Express sockets 1 and 2 verified working with Intel Pro/1000 PT
40164     adapter.
40165
40166     Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
40167     Signde-off-by: Jon Loeliger <jdl@freescale.com>
40168
40169 commit a08458303e7f9db67f296980036d3292c35cb45c
40170 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
40171 Date:   Fri Jun 29 18:38:51 2007 +0200
40172
40173     atmel_mci: Fix data timeout value
40174
40175     Calculate the data timeout based on values from the CSD instead of
40176     just using a hardcoded DTOR value. This is a backport of a similar fix
40177     in BSP 2.0, with one additional fix: the DTOCYC value is rounded up
40178     instead of down.
40179
40180     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
40181
40182 commit 0ba8eed28b575626b17e0a7882f923b83e0d7584
40183 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
40184 Date:   Mon Aug 13 17:22:31 2007 +0200
40185
40186     AVR32: Include <div64.h> instead of <asm/div64.h>
40187
40188     include/asm-avr32/div64.h was recently moved to include/div64.h, but
40189     cpu/at32ap/interrupts.c wasn't properly updated (an earlier version of
40190     the patch was merged perhaps?)
40191
40192     This patch updates cpu/at32ap/interrupts.c so that the avr32 port
40193     compiles again.
40194
40195     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
40196
40197 commit f0d1246ed7cb5a88522244c596d7ae7e6f161283
40198 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
40199 Date:   Wed Jun 27 13:34:26 2007 +0200
40200
40201     atmel_mci: Use 512 byte blocksize if possible
40202
40203     Instead of always using the largest blocksize the card supports, check
40204     if it can support smaller block sizes and use 512 bytes if possible.
40205     Most cards do support this, and other parts of u-boot seem to have
40206     trouble with block sizes different from 512 bytes.
40207
40208     Also enable underrun/overrun protection.
40209
40210     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
40211     Acked-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
40212
40213 commit 273db7e1bdd1937e32f1d4507321bb721ebd3118
40214 Author: Stefan Roese <sr@denx.de>
40215 Date:   Mon Aug 13 09:05:33 2007 +0200
40216
40217     ppc4xx: Fix problem in PLL clock calculation
40218
40219     This patch was originall provided by David Mitchell <dmitchell@amcc.com>
40220     and fixes a bug in the PLL clock calculation.
40221
40222     Signed-off-by: Stefan Roese <sr@denx.de>
40223
40224 commit 9986bc3e40e899bea372a99a2bca4071bdf2e24b
40225 Author: Wolfgang Denk <wd@denx.de>
40226 Date:   Sun Aug 12 21:34:50 2007 +0200
40227
40228     Update CHANGELOG
40229
40230 commit 77d19a8bf3b0b1e401cb9f23c81e2ef419705c1a
40231 Author: Wolfgang Denk <wd@denx.de>
40232 Date:   Sun Aug 12 21:34:34 2007 +0200
40233
40234     Minor alignment of output, 2nd try.
40235     Also update CHANGELOG
40236
40237     Signed-off-by: Wolfgang Denk <wd@denx.de>
40238
40239 commit 6b309f22a724fad8418e811751a0741b893419cf
40240 Author: Wolfgang Denk <wd@denx.de>
40241 Date:   Sun Aug 12 20:35:49 2007 +0200
40242
40243     Minor alignment of output
40244
40245     Signed-off-by: Wolfgang Denk <wd@denx.de>
40246
40247 commit 6f6d7b9c8559e241e8d232621542b8b59699b07b
40248 Author: Wolfgang Denk <wd@denx.de>
40249 Date:   Sun Aug 12 18:28:18 2007 +0200
40250
40251     Cleanup output on ADS5121 board
40252
40253     Signed-off-by: Wolfgang Denk
40254
40255 commit a4d2636f2a859245ed3a401f26189da2dfda4ceb
40256 Author: Wolfgang Denk <wd@denx.de>
40257 Date:   Sun Aug 12 15:11:38 2007 +0200
40258
40259     Adapt board configuration and fix kernel crash on MCC200 board.
40260
40261     The update procedure was modified to turn off the USB subsystem
40262     before exit for MCC200 and TRAB. This is necessary as otherwise the
40263     USB controller continues to write periodically to system memory!
40264
40265     MCC200-specific notes:
40266     - the patch disables the magic key check for MCC200
40267     - the patch contains the configuration changes made
40268       for the new revision of the board.
40269
40270     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
40271     Signed-off-by: Wolfgang Denk <wd@denx.de>
40272
40273 commit e27f3a6efb9db5a533223b05c629ff4ac8d921bf
40274 Author: Wolfgang Denk <wd@denx.de>
40275 Date:   Sun Aug 12 14:47:54 2007 +0200
40276
40277     Adjust default configuration of ADS5121 board.
40278
40279     Signed-off-by: Wolfgang Denk <wd@denx.de>
40280
40281 commit afaac86fe2948ac84cd9a12bbed883b3c683e7d9
40282 Author: Wolfgang Denk <wd@denx.de>
40283 Date:   Sun Aug 12 14:27:39 2007 +0200
40284
40285     Clean up some remaining CFG_CMD_ -> CONFIG_CMD_ issues.
40286
40287     Signed-off-by: Wolfgang Denk <wd@denx.de>
40288
40289 commit 5fe6be6208dda852c3564e384bd78d75784dea3e
40290 Author: Gerald Van Baren <vanbaren@cideas.com>
40291 Date:   Tue Aug 7 21:14:22 2007 -0400
40292
40293     Improve error print messages.
40294
40295     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
40296
40297 commit 99dffca3b7590a16a00bc475c860b67b2a3f1462
40298 Author: Kim Phillips <kim.phillips@freescale.com>
40299 Date:   Tue Jul 17 13:57:04 2007 -0500
40300
40301     fdt: allow for builds that don't want env and bd_t nodes
40302
40303     protect fdt_env and fdt_bd_t invocations, fix codingstyle while in the
40304     area.
40305
40306     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40307
40308 commit 91148bf7aeba142d6f348805db7625db7da64d6f
40309 Author: Kim Phillips <kim.phillips@freescale.com>
40310 Date:   Tue Jul 17 13:56:53 2007 -0500
40311
40312     fdt: do board setup based on fdt address specified on bootm line
40313
40314     The last fdt patch to bootm did board setup based on the address
40315     specified by a prior fdt address command invocation.  The bootm
40316     code, as its call to fdt_chosen does, should use the fdt specified
40317     by the user on the bootm command.  Note this restores full
40318     functionality for the 8360's existing default boot environment
40319     values, e.g. 'run nfsboot' (i.e. no having to 'fdt addr $fdtaddr'
40320     before booting a kernel).
40321
40322     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40323
40324 commit e125a2ffc209dd34794e326c7175658253beadf3
40325 Author: Gerald Van Baren <vanbaren@cideas.com>
40326 Date:   Tue Jul 10 20:40:39 2007 -0400
40327
40328     Call ft_board_setup() from the bootm command.
40329
40330     In the patch titled "Create new fdt boardsetup command..." I removed the
40331     call to ft_board_setup() from the routine fdt_chosen(), but I forgot
40332     to add a direct call back into cmd_bootm.c
40333
40334     This fixes the oversight by adding the direct call to the bootm command.
40335
40336     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
40337
40338 commit fd61e55dd8cb52ce3ff91b3917af26e24b6b0845
40339 Author: Gerald Van Baren <vanbaren@cideas.com>
40340 Date:   Mon Jun 25 23:25:28 2007 -0400
40341
40342     Create new fdt boardsetup command, fix bug parsing [] form of set values.
40343
40344     Previously ft_board_setup() was called by fdt_chosen() which was not
40345     really correctly structured.  This splits ft_board_setup() out by creating
40346     a new fdt boardsetup command.
40347
40348     Fix a bug when parsing fdt set command values which have the square
40349     bracket form [00 11 22 33] - the length was updated incorrectly in when
40350     parsing that form.
40351
40352     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
40353
40354 commit 6f35ded9e85493595e0eb66a82b502a95326d049
40355 Author: Gerald Van Baren <vanbaren@cideas.com>
40356 Date:   Mon Jun 25 20:55:58 2007 -0400
40357
40358     Tighten up the error messages.
40359
40360     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
40361
40362 commit c45874b05aae897a6c29d1a97d4bb708fca2756c
40363 Author: Gerald Van Baren <vanbaren@cideas.com>
40364 Date:   Mon Jun 25 19:52:23 2007 -0400
40365
40366     Asthetic improvements: error messages and line lengths.
40367
40368     Tighten up the error messages, split overlength lines.
40369
40370     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
40371
40372 commit 35ec398f16e17df600edc1b38c1e9e62c15c9aa1
40373 Author: Gerald Van Baren <vanbaren@cideas.com>
40374 Date:   Fri May 25 22:08:57 2007 -0400
40375
40376     Fix fdt_chosen() to call ft_board_setup(), clean up long lines.
40377
40378     The fdt_chosen() function was adding/seting some properties ad-hoc
40379       improperly and duplicated (poorly) what was done in ft_board_setup()
40380
40381     Clean up long lines (setting properties, printing errors).
40382
40383     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
40384
40385 commit 06e19a07701c968f15d72c083b5872a1a11c7b01
40386 Author: Gerald Van Baren <vanbaren@cideas.com>
40387 Date:   Mon May 21 23:27:16 2007 -0400
40388
40389     For fdt_find_node_by_path(), handle the root path properly.
40390
40391     Also removes the special case root path detection in cmd_fdt.c since it
40392     is no longer necessary.
40393
40394     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
40395
40396 commit 9675ee7208ab965d13ea8d8262d77ac4160ef549
40397 Author: Gerald Van Baren <vanbaren@cideas.com>
40398 Date:   Thu May 17 23:54:36 2007 -0400
40399
40400     Add fdt_find_node_by_type() and fdt_find_compatible_node() to LIBFDT
40401
40402     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
40403     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
40404
40405 commit 1a861169bc3758f9de3aead62b058736c6891246
40406 Author: Gerald Van Baren <vanbaren@cideas.com>
40407 Date:   Wed Jun 6 22:47:58 2007 -0400
40408
40409     Replace fdt_node_offset() with fdt_find_node_by_path().
40410
40411     The new name matches more closely the kernel's name, which is also
40412     a much better description.
40413
40414     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
40415     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
40416
40417 commit addd8ce83078c25f0eca5f23adbdfc64ca50a243
40418 Author: Gerald Van Baren <vanbaren@cideas.com>
40419 Date:   Wed May 16 22:39:59 2007 -0400
40420
40421     Fix cmd_fdt line lengths, refactor code.
40422
40423     Break lines that were greater than 80 characters in length.
40424     Move the fdt print and property parsing code to separate static functions
40425       to reduce coding clutter in the fdt_cmd handling body.
40426
40427     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
40428
40429 commit 25114033ab21788810c48ba4df103b649da1223b
40430 Author: Gerald Van Baren <vanbaren@cideas.com>
40431 Date:   Sat May 12 09:47:25 2007 -0400
40432
40433     FDT command improvements.
40434
40435     Fix "fdt set" so that it will create a non-existing property.
40436     Add "fdt mknode" to create nodes.
40437
40438     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
40439
40440 commit 38eb508e8e811e2e57628f445de3a24a23c7d804
40441 Author: Gerald Van Baren <vanbaren@cideas.com>
40442 Date:   Sat May 12 09:45:46 2007 -0400
40443
40444     Reorganize and fix problems (returns) in the bootm command.
40445
40446     Do *NOT* return after the "point of no return" has been passed.
40447       If something goes wrong, the board must be reset after that point.
40448     Move the "Transferring control to Linux" debug message back to where it
40449       belongs: just before transferring control to linux.
40450
40451     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
40452
40453 commit 89c8757d8f213c47709bdc4efe0695263a6080a6
40454 Author: Gerald Van Baren <vanbaren@cideas.com>
40455 Date:   Tue May 8 21:27:35 2007 -0400
40456
40457     Fix bugs in the CONFIG_OF_LIBFDT
40458
40459     Stupid coding mistakes (identified by Timur Tabi, thanks).
40460
40461     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
40462
40463 commit 6be07cc1ca458278c85ecdbf1a0536cff4c701ec
40464 Author: Gerald Van Baren <vanbaren@cideas.com>
40465 Date:   Wed Apr 25 22:47:15 2007 -0400
40466
40467     Improve fdt move length handling.
40468
40469     Make the length parameter optional: if not specified, do the move using
40470     the current size unchanged.
40471
40472     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
40473
40474 commit bb930e76fea6cf89ca2d98e2f7c7a6043d79327d
40475 Author: Gerald Van Baren <vanbaren@cideas.com>
40476 Date:   Wed Apr 25 22:23:36 2007 -0400
40477
40478     Minor code clean up.
40479
40480     Declare the variable fdt properly as extern.
40481     Call the "set_fn" function pointer the "short way" without the full
40482       dereferencing syntax.
40483
40484     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
40485
40486 commit ba24e2ac3bdb5c489f3c787e7542b6474c4d65c6
40487 Author: Gerald Van Baren <vanbaren@cideas.com>
40488 Date:   Wed Apr 25 21:24:27 2007 -0400
40489
40490     Improve error messages, more informative.
40491
40492     Print more than the raw libfdt error message strings.  This is especially
40493     useful for cluing in the user when the bootm command aborts due to
40494     blob problems.
40495
40496     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
40497
40498 commit 8096b3b8f772c1894ddeda9dbceff6a8826473a4
40499 Author: Gerald Van Baren <vanbaren@cideas.com>
40500 Date:   Fri Apr 20 22:46:53 2007 -0400
40501
40502     libfdt: Conditionally compile based on CONFIG_OF_LIBFDT
40503
40504     This is the way u-boot reduces configured-out code.  At Wolfgang
40505     Grandegger and Wolfgang Denk's request, make libfdt conform.
40506
40507     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
40508
40509 commit 923efd286411ed052d9e074f59f8986d6081061c
40510 Author: Bruce Adler <bruce.adler@ccpu.com>
40511 Date:   Fri Aug 10 14:54:47 2007 -0700
40512
40513     add image size and descriptors for Spartan 3E FPGA chips
40514
40515     Spartan 3E image sizes taken from Table 1-4 in Xilinx UG332 (v1.1)
40516
40517     Signed-off by: Bruce Adler <bruce.adler@ccpu.com>
40518
40519 commit fb56579ffe7ef3275b7036bb7b924e5a0d32bd70
40520 Author: Kim Phillips <kim.phillips@freescale.com>
40521 Date:   Fri Aug 10 15:34:48 2007 -0500
40522
40523     make MAKEALL more immune to merge conflicts
40524
40525     ..by placing board entries one per line, as suggested by jdl.
40526
40527     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40528
40529 commit 2628114ec564f969f34b5f7105fbd168cb8c9c3f
40530 Author: Kim Phillips <kim.phillips@freescale.com>
40531 Date:   Fri Aug 10 13:28:25 2007 -0500
40532
40533     README: Remove outdated cpu type, board type, and NAME_config lists
40534
40535     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40536
40537 commit 49bb59912d21aacb507eb81fd21fb7af650c706c
40538 Author: Dave Liu <r63238@freescale.com>
40539 Date:   Fri Aug 10 15:48:59 2007 +0800
40540
40541     mpc83xx: Suppress the warning 'burstlen'
40542
40543     suppress the warning 'burstlen' of spd_sdram.
40544
40545     Signed-off-by: Dave Liu <daveliu@freescale.com>
40546
40547 commit c646bba6465a45c60746d4cc1602cd06c1960f2d
40548 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
40549 Date:   Thu Aug 9 15:11:03 2007 -0500
40550
40551     Add support for SBC8641D. Config files.
40552
40553     Add support for Wind River's SBC8641D reference board.
40554
40555     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
40556     Acked-by: Wolfgang Denk <wd@denx.de>
40557     Acked-by: Jon Loeliger <jdl@freescale.com>
40558
40559 commit 8ac273271d57321f90505c7a51cdb1ef2113b628
40560 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
40561 Date:   Thu Aug 9 15:10:53 2007 -0500
40562
40563     Add support for SBC8641D.  Board files.
40564
40565     Add support for Wind River's SBC8641D reference board.
40566
40567     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
40568     Acked-by: Wolfgang Denk <wd@denx.de>
40569     Acked-by: Jon Loeliger <jdl@freescale.com>
40570
40571 commit c2c0ab4aff86622b837a48a0e560351f9afafb95
40572 Author: Stefan Roese <sr@denx.de>
40573 Date:   Fri Aug 10 20:34:58 2007 +0200
40574
40575     Conding style cleanup
40576
40577     Signed-off-by: Stefan Roese <sr@denx.de>
40578
40579 commit c74b2108e31fe09bd1c5d291c3cf360510d4f13e
40580 Author: Sergey Kubushyn <ksi@koi8.net>
40581 Date:   Fri Aug 10 20:26:18 2007 +0200
40582
40583     [ARM] TI DaVinci support, hopefully final
40584
40585     Add support for the following DaVinci boards:
40586     - DV_EVM
40587     - SCHMOOGIE
40588     - SONATA
40589
40590     Changes:
40591
40592     - Split into separate board directories
40593     - Removed changes to MTD_DEBUG (or whatever it's called)
40594     - New CONFIG_CMD party line followed
40595     - Some cosmetic fixes, cleanup etc.
40596     - Patches against the latest U-Boot tree as of now.
40597     - Fixed CONFIG_CMD_NET in net files.
40598     - Fixed CONFIG_CMD_EEPROM for schmoogie.
40599     - Made sure it compiles and works (forceenv() link problem) on SCHMOOGIE and
40600        DV_EVM. Can't check if it works on SONATA, don't have a board any more,
40601        but it at least compiles.
40602
40603     Here is an excerpt from session log on SCHMOOGIE...
40604
40605     U-Boot 1.2.0-g6c33c785-dirty (Aug  7 2007 - 13:07:17)
40606
40607     DRAM:  128 MB
40608     NAND:  128 MiB
40609     In:    serial
40610     Out:   serial
40611     Err:   serial
40612     ARM Clock : 297MHz
40613     DDR Clock : 162MHz
40614     ETH PHY   : DP83848 @ 0x01
40615     U-Boot > iprobe
40616     Valid chip addresses: 1B 38 3A 3D 3F 50 5D 6F
40617     U-Boot > ping 192.168.253.10
40618     host 192.168.253.10 is alive
40619     U-Boot >
40620
40621     Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
40622     Acked-by: Dirk Behme <dirk.behme@gmail.com>
40623     Acked-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
40624     Acked-by: Stefan Roese <sr@denx.de>
40625
40626 commit 2e4d94f1e3c2961428967a33b6ff2520568391b3
40627 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
40628 Date:   Fri Jul 27 01:50:45 2007 -0500
40629
40630     fsl_pci_init cleanup.
40631
40632     Do not enable normal errors created during probe (master abort, perr,
40633     and pcie Invalid Configuration access).
40634
40635     Add CONFIG_PCI_NOSCAN board option to prevent bus scan.
40636
40637     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40638     Acked-by: Andy Fleming <afleming@freescale.com>
40639
40640 commit 936b3e69b667c3eb9a61ece4e78647d3fce9fc2a
40641 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
40642 Date:   Fri Jul 27 01:50:44 2007 -0500
40643
40644     pciauto_setup_device bars_num fix
40645
40646     Passing bars_num=0 to pciauto_setup_device should assign no bars.
40647
40648     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40649     Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
40650     Acked-by: Andy Fleming <afleming@freescale.com>
40651
40652 commit cf0b185e58ca0aec8ae2b2a8804ec0ef58ee21d4
40653 Author: Jon Loeliger <jdl@freescale.com>
40654 Date:   Mon Aug 6 17:39:44 2007 -0500
40655
40656     8641hpcn: Do correct sized pointer math.
40657
40658     When I rebased Ed's patch and cleaned up a few compilation
40659     problems, I apparently rebased my brain on crack first.
40660     Fix that by doing (char *) sized pointer math as needed.
40661
40662     Signed-off-by: Jon Loeliger <jdl@freescale.com>
40663
40664 commit cfc7a7f5bb3273c9951173c788001d45118f141f
40665 Author: Jon Loeliger <jdl@freescale.com>
40666 Date:   Thu Aug 2 14:42:20 2007 -0500
40667
40668     cpu/86xx fixes.
40669
40670     Remove rev 1 fixes.
40671     Always set PICGCR_MODE.
40672     Enable machine check and provide board config option
40673     to set and handle SoC error interrupts.
40674
40675     Include MSSSR0 in error message.
40676
40677     Isolate a RAMBOOT bit of code with #ifdef CFG_RAMBOOT.
40678
40679     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40680     Signed-off-by: Jon Loeliger <jdl@freescale.com>
40681
40682 commit 35d22f957a85a22bb3cd1ad084fa5404620d1c42
40683 Author: Stefan Roese <sr@denx.de>
40684 Date:   Fri Aug 10 10:42:25 2007 +0200
40685
40686     Coding style cleanup
40687
40688     Signed-off-by: Stefan Roese <sr@denx.de>
40689
40690 commit 3a6d56c20989fe27360afe743bd2a7ad4d76e48f
40691 Author: Dirk Behme <dirk.behme@googlemail.com>
40692 Date:   Thu Aug 2 17:42:08 2007 +0200
40693
40694     Make use of generic 64bit division in nand_util.c
40695
40696     Use generic 64bit division in nand_util.c. This makes nand_util.c
40697     independent of any toolchain 64bit division.
40698
40699     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
40700
40701 commit f7c086e94e8ce9aad7268af97f73aa6884686f27
40702 Author: Dirk Behme <dirk.behme@googlemail.com>
40703 Date:   Thu Aug 2 17:41:14 2007 +0200
40704
40705     Move 64bit division from avr32 to generic lib
40706
40707     Move the 64bit division from lib_avr32 to lib_generic. With this, all
40708     boards can do_div/__div64_32 if needed, not only avr one. Code is put
40709     to lib_generic, so no larger memory footprint if not used. No code
40710     modifications. Thanks for proposal by HÃ¥vard Skinnemoen.
40711
40712     Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
40713
40714 commit 157cda4d0c3d592ccbb19bbfc07d9251894f0894
40715 Author: Niklaus Giger <niklausgiger@gmx.ch>
40716 Date:   Fri Jul 27 11:31:22 2007 +0200
40717
40718     Add PPC4xx-HCU4 and HCU5 boards: HCU5 files
40719
40720     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
40721
40722 commit 6e5de26c6e7580faf16e87745cd488b92b492d0c
40723 Author: Niklaus Giger <niklausgiger@gmx.ch>
40724 Date:   Fri Jul 27 11:30:33 2007 +0200
40725
40726     Add PPC4xx-HCU4 and HCU5 boards: HCU4 files
40727
40728     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
40729
40730 commit e8397fc78c9394d71de233a4d810fbc9047e4c76
40731 Author: Niklaus Giger <niklausgiger@gmx.ch>
40732 Date:   Fri Jul 27 11:38:26 2007 +0200
40733
40734     Add PPC4xx-HCU4 and HCU5 boards: common files
40735
40736     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
40737
40738 commit ac982ea5a4f2f993efcf52dca122f5a59df047d8
40739 Author: Niklaus Giger <niklausgiger@gmx.ch>
40740 Date:   Fri Jul 27 11:28:44 2007 +0200
40741
40742     Add PPC4xx-HCU4 and HCU5 boards: make related
40743
40744     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
40745
40746 commit 137fdd9f474ecb853efdace5200576308c67f18d
40747 Author: Niklaus Giger <niklausgiger@gmx.ch>
40748 Date:   Fri Jul 27 11:28:03 2007 +0200
40749
40750     Add PPC4xx-HCU4 and HCU5 boards: HCU5 config
40751
40752     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
40753
40754 commit 714bc55b35b6f6a65cc8740a3842a543e88cdef2
40755 Author: Niklaus Giger <niklausgiger@gmx.ch>
40756 Date:   Fri Jul 27 11:27:15 2007 +0200
40757
40758     Add PPC4xx-HCU4 and HCU5 boards: HCU4 config
40759
40760     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
40761
40762 commit 1894dd381124bdbfbdae7cf3a6ca52a8eb1f4421
40763 Author: Niklaus Giger <niklausgiger@gmx.ch>
40764 Date:   Fri Jul 27 11:25:31 2007 +0200
40765
40766     Add PPC4xx-HCU4 and HCU5 boards: READMEs
40767
40768     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
40769
40770 commit 641cca9569ce351ddb287fd3343d8b1dcb591db4
40771 Author: Niklaus Giger <niklausgiger@gmx.ch>
40772 Date:   Fri Jul 27 11:37:40 2007 +0200
40773
40774     Add PPC4xx-HCU4 and HCU5 boards: Infrastructure
40775
40776     This series of patches adds support for 2 boards from Netstal Maschinen.
40777
40778     The HCU4 has a PPC405Gpr and
40779     the HCU5 has a PPC440EPX.
40780
40781     The HCU4 has a somehow complicated flash setup, as the booteprom is
40782     only 8 bits and the CFI 16 bits wide, which makes it impossible to use a more
40783     elegant solution.
40784
40785     The HCU5 has only a booteprom as the whole code will be downloaded from a
40786     different board which has HD, CD-ROM, etc and where all code is stored.
40787
40788     This is my third try. I incorporated all suggestions made by Wolfgang and Stefan.
40789     Thanks them a lot.
40790
40791     Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
40792
40793 commit 3e4c90c6233618fc1806e63fde68df5f3d6a0171
40794 Author: Stefan Roese <sr@denx.de>
40795 Date:   Fri Aug 10 08:42:55 2007 +0200
40796
40797     ppc4xx: Update lwmon5 POST configuration
40798
40799     Signed-off-by: Stefan Roese <sr@denx.de>
40800
40801 commit 29cb25da56afe18cf5e7072a92a9d98ea8af1fd4
40802 Author: Yuri Tikhonov <yur@emcraft.com>
40803 Date:   Fri Aug 10 08:25:22 2007 +0200
40804
40805     POST: Add ppc4xx UART POST support without external uart clock (lwmon5)
40806
40807     The patch adds support for UART POST on ppc44x-based boards with no
40808     external serial clocks installed.
40809
40810     Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
40811     Acked-by: Stefan Roese <sr@denx.de>
40812
40813 commit 99c2fdab91bc633e46fb41dbaa629f87ccf6e00f
40814 Author: Kim Phillips <kim.phillips@freescale.com>
40815 Date:   Mon Aug 6 18:18:34 2007 -0500
40816
40817     mpc83xx: fix ITX[GP] O=builddir builds
40818
40819     make: *** No rule to make target `/work/wd/tmp/board/mpc8349itx/u-boot.lds', needed by `/work/wd/tmp/u-boot'.  Stop.
40820
40821     Both the ITX and ITX-GP fail when you use "make O=<some dir> ..." or
40822     "BUILD_DIR=<some dir> ./MAKEALL ..."
40823
40824     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40825
40826 commit 47e8bc846759e037b8af0e5f9c9f9cfa7a1050c3
40827 Author: Dave Liu <r63238@freescale.com>
40828 Date:   Wed Aug 1 15:00:59 2007 +0800
40829
40830     mpc83xx: Correct the README for DDR ECC
40831
40832     Update the README for DDR ECC, change the name
40833     to README.mpc83xx.ddrecc.
40834
40835     Signed-off-by: Dave Liu <daveliu@freescale.com>
40836     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40837
40838 commit daab8c67d2defef73dc26ab07f0c3afd1b05d019
40839 Author: Dave Liu <r63238@freescale.com>
40840 Date:   Wed Aug 1 15:00:15 2007 +0800
40841
40842     mpc83xx: Consolidate the ECC support of 83xx
40843
40844     Remove the duplicated source code of ecc command on the <board>.c,
40845     for reused, move these code to cpu/mpc83xx directory.
40846
40847     Signed-off-by: Dave Liu <daveliu@freescale.com>
40848     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40849
40850 commit 036575c544cf1b69654d8fb334bda69c6ff3da36
40851 Author: Dave Liu <r63238@freescale.com>
40852 Date:   Sat Aug 4 13:37:39 2007 +0800
40853
40854     mpc83xx: Correct the burst length for DDR2 with 32 bits
40855
40856     The burst length should be 4 for DDR2 with 32 bits bus
40857
40858     Signed-off-by: Dave Liu <daveliu@freescale.com>
40859
40860 commit 1c274c4e05b6dc9b24edc8aa618b02f607ee6eed
40861 Author: Kim Phillips <kim.phillips@freescale.com>
40862 Date:   Wed Jul 25 19:25:33 2007 -0500
40863
40864     mpc83xx: add support for the MPC8323E RDB
40865
40866     MPC8323E based board with 64MB fixed SDRAM, 16MB flash,
40867     five 10/100 ethernet ports connected via an ICPlus IP175C
40868     switch, one PCI slot, and serial.  Features not supported
40869     in this patch are SD card interface, 2 USB ports, and the
40870     two phone ports.
40871
40872     Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
40873     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40874
40875 commit 343d91009d55fc5b3ff8cc940597af6c6aa1d359
40876 Author: Kim Phillips <kim.phillips@freescale.com>
40877 Date:   Wed Jul 25 19:25:28 2007 -0500
40878
40879     mpc83xx: fixup generic pci for libfdt
40880
40881     add libfdt support to the generic 83xx pci code
40882
40883     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40884
40885 commit f57ac7a7b37109245b69db80839ebee26179966a
40886 Author: Kim Phillips <kim.phillips@freescale.com>
40887 Date:   Wed Jul 25 19:25:22 2007 -0500
40888
40889     mpc83xx: fix 8360 and cpu functions to update fdt being passed
40890
40891     ..and not the global fdt. Rename local fdt vars to blob so as not to
40892     be confused with the global var with the same three-letter name.
40893
40894     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40895
40896 commit 8be404459a6b7395415a57bb35e8377e3b2b5acb
40897 Author: Jerry Van Baren <gvb.uboot@gmail.com>
40898 Date:   Wed Jul 4 21:34:24 2007 -0400
40899
40900     mpc83xx: Fix errors when CONFIG_OF_LIBFDT is enabled
40901
40902     Several node strings were not correct (trailing slashes and properties
40903       in the strings)
40904     Added setting of the timebase-frequency.
40905     Improved error messages and use debug() instead of printf().
40906
40907     Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
40908     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40909
40910 commit 26d02c9bbac1751c5e19294f000100b48d43a920
40911 Author: Jerry Van Baren <gvb.uboot@gmail.com>
40912 Date:   Wed Jul 4 21:27:30 2007 -0400
40913
40914     mpc83xx: Replace fdt_node_offset() with fdt_find_node_by_path().
40915
40916     The new name matches more closely the kernel's name, which is also
40917     a much better description.
40918
40919     These are the mpc83xx changes made necessary by the function name change.
40920
40921     Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
40922     Acked-by: Gerald Van Baren <vanbaren@cideas.com>
40923     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40924
40925 commit 9be39a67c9f8fef7107f5df09d673005f04d0963
40926 Author: Dave Liu <daveliu@freescale.com>
40927 Date:   Mon Jun 25 10:41:56 2007 +0800
40928
40929     mpc83xx: Add support for the display of reset status
40930
40931     83xx processor family has many reset sources, such as
40932     power on reset, software hard reset, software soft reset,
40933     JTAG, bus monitor, software watchdog, check stop reset,
40934     external hard reset, external software reset.
40935     sometimes, to figure out the fault of system, we need to
40936     know the cause of reset early before the prompt of
40937     u-boot present.
40938
40939     Signed-off-by: Dave Liu <daveliu@freescale.com>
40940     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40941
40942 commit ff9658d7049bf8c8e8e0a05dbe5e9f7e91aa5a5d
40943 Author: Dave Liu <daveliu@freescale.com>
40944 Date:   Mon Jun 25 10:41:04 2007 +0800
40945
40946     mpc83xx: Fix the align bug of SDMA buffer
40947
40948     According to the latest user manual, the SDMA temporary
40949     buffer base address must be 4KB aligned.
40950
40951     Signed-off-by: Dave Liu <daveliu@freescale.com>
40952     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40953
40954 commit 66dc2c2dc51f8b88bb8e231bc80cd92eae1d6476
40955 Author: Dave Liu <daveliu@freescale.com>
40956 Date:   Mon Jun 25 13:21:12 2007 +0800
40957
40958     mpc83xx: Revise the MPC8360EMDS readme doc
40959
40960     When the rev2.x silicon mount on the MPC8360EMDS baord,
40961     and if you are using the u-boot version after the commit
40962     3fc0bd159103b536e1c54c6f4457a09b3aba66ca.
40963     to make the ethernet interface usable, we have to setup
40964     the jumpers correctly.
40965
40966     Signed-off-by: Dave Liu <daveliu@freescale.com>
40967     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40968
40969 commit e739bc95797aac4fefc4c75b55c7c78e59d3ea9c
40970 Author: Timur Tabi <timur@freescale.com>
40971 Date:   Tue Jul 3 13:46:32 2007 -0500
40972
40973     FSL I2C driver programs the two I2C busses differently
40974
40975     The i2c_init() function in fsl_i2c.c programs the two I2C busses differently.
40976     The second I2C bus has its slave address programmed incorrectly and is
40977     missing a 5-us delay.
40978
40979     Signed-off-by: Timur Tabi <timur@freescale.com>
40980     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40981
40982 commit df33f6b4d6d63693dd9200808b242de1b86cb8e8
40983 Author: Timur Tabi <timur@freescale.com>
40984 Date:   Tue Jul 3 13:04:34 2007 -0500
40985
40986     Update SCCR programming in cpu_init_f() to support all 83xx processors
40987
40988     Update the cpu_init_f() function in cpu/mpc83xx/cpu_init.c to program the
40989     bitfields for all 83xx processors.  The code to update some bitfields was
40990     compiled only on some processors.  Now, the bitfields are programmed as long
40991     as the corresponding CFG_SCCR option is defined in the board header file.
40992     This means that the board header file should not define any CFG_SCCR macros
40993     for bitfields that don't exist on that processor, otherwise the SCCR will be
40994     programmed incorrectly.
40995
40996     Signed-off-by: Timur Tabi <timur@freescale.com>
40997     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40998
40999 commit 9546266999f0b9b51372636614211b88d90f0f25
41000 Author: Martin Krause <martin.krause@tqs.de>
41001 Date:   Fri Jun 22 13:04:22 2007 +0200
41002
41003     TQM834x: cleanup configuraton
41004
41005     Remove irritating #undef DEBUG
41006
41007     Signed-off-by: Martin Krause <martin.krause@tqs.de>
41008     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41009
41010 commit 5d497e6bf0f5bf63729b4a47b3fd786d3c77a1bc
41011 Author: david.saada <David.Saada@ecitele.com>
41012 Date:   Mon Jun 18 09:09:53 2007 -0700
41013
41014     MPC83xx: Fix makefile to generate config.h file in the build directory
41015
41016     MPC83xx: Fix the Makefile config sections to generate the include/config.h
41017     file in the build directory instead of the source directory.
41018
41019     Signed-off-by: David Saada <david.saada@ecitele.com>
41020     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41021
41022 commit 1ded0242e437259366792d52b7e9d1e1931d8fa5
41023 Author: Lee Nipper <Lee.Nipper@freescale.com>
41024 Date:   Thu Jun 14 20:07:33 2007 -0500
41025
41026     mpc83xx: Add support for 8360 silicon revision 2.1
41027
41028     This change adds 8360 silicon revision 2.1 support to u-boot.
41029
41030     Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
41031     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41032
41033 commit a22806469a8f2b69c829f4fd5361fdebd0cb01b4
41034 Author: Kumar Gala <galak@kernel.crashing.org>
41035 Date:   Wed Aug 8 04:14:28 2007 -0500
41036
41037     Treat ppc64 host as ppc
41038
41039     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41040
41041 commit 0dc4279b08ff82472bec2e2c90858602459febe8
41042 Author: Jason Jin <Jason.jin@freescale.com>
41043 Date:   Wed Aug 8 09:01:46 2007 +0800
41044
41045     Minor fix for bios emulator makefile
41046
41047     Add $(obj) to LIB avoiding objects be built in the source dir
41048
41049     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
41050
41051 commit ce981dc857adfc8036ca2f6d5d5a06c2a8aa77d6
41052 Author: Jason Jin <Jason.jin@freescale.com>
41053 Date:   Wed Aug 8 08:33:11 2007 +0800
41054
41055     Add CONFIG_BIOSEMU define to guard all the bios emulator code
41056
41057     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
41058
41059     This patch fix the compile issue on the board that did not enable the bios emulator
41060
41061 commit ed8106433522f2ea8933e9808346860d061d7731
41062 Author: Zach Sadecki <Zach.Sadecki@ripcode.com>
41063 Date:   Tue Jul 31 12:27:25 2007 -0500
41064
41065     tsec: fix multiple PHY support
41066
41067     The change entitled "Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx"
41068     broke multiple PHY support in tsec.c.  This fixes it.
41069
41070     Signed-off-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
41071     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41072
41073 commit dcb84b7208ade0bbebbeb56bec9c2c64f8b2eede
41074 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
41075 Date:   Thu Aug 9 09:08:18 2007 -0500
41076
41077     tsec: Allow Ten Bit Interface address to be configurable
41078
41079     Allow the address of the Ten Bit Interface (TBI) to be changed in the
41080     event of a conflict with another device.
41081
41082     Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
41083
41084 commit 3ba4c2d68f6541db4677b4aea12071f56e6ff6e6
41085 Author: Stefan Roese <sr@denx.de>
41086 Date:   Wed Aug 8 09:54:26 2007 +0200
41087
41088     Coding style cleanup
41089
41090     Signed-off-by: Stefan Roese <sr@denx.de>
41091
41092 commit a41de1f0d373e09c782dea558385a06247111ba5
41093 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41094 Date:   Sun Aug 5 05:15:18 2007 -0500
41095
41096     Port enabled for I2C signals and chipselects port configuration.
41097
41098     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41099
41100 commit 1a33ce65a4c51a69190dd8c408f9e1c62a66e94f
41101 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41102 Date:   Sun Aug 5 04:31:18 2007 -0500
41103
41104     Added NAND support
41105
41106     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41107
41108 commit eaf9e447beb3e498818ef8ad0b8c1597cd506149
41109 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41110 Date:   Sun Aug 5 04:11:20 2007 -0500
41111
41112     Added I2C support
41113
41114     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41115
41116 commit 99c03c175d2689093176facf17c58ce2cb320001
41117 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41118 Date:   Sun Aug 5 03:58:52 2007 -0500
41119
41120     Changed CFG_CLK to gd->bus_clk for CFG_TIMER_PRESCALER. Added DECLARE_GLOBAL_DATA_PTR for time.c
41121
41122     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41123
41124 commit 8d1d66af54d305de29d0bbf4aa8c9e6375f7f731
41125 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41126 Date:   Sun Aug 5 03:55:21 2007 -0500
41127
41128     Added uart_gpio_conf() in serial_init(), seperated uart port configuration from cpu_init() to uart_gpio_conf()
41129
41130     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41131
41132 commit 6fde84a44b7e575ea80fe0e2d5be3b6f73d1e630
41133 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41134 Date:   Sun Aug 5 03:43:30 2007 -0500
41135
41136     Moved sync() from board file to include/asm-m68k/io.h
41137
41138     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41139
41140 commit 9e737d8476e7d6a596d16caaf6a3853a9a1190a2
41141 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41142 Date:   Sun Aug 5 03:30:44 2007 -0500
41143
41144     Declared attributes of void __mii_init(void) as an alias for int mii_init(void)
41145
41146     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41147
41148 commit 9998bd37ead85e93953559720710d3b0685c81e6
41149 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41150 Date:   Sun Aug 5 03:19:10 2007 -0500
41151
41152     Renamed CONFIG_MCFSERIAL to CONFIG_MCFUART
41153
41154     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41155
41156 commit 7c4c3722a38d40b0cf537ddae72b04f4088b190c
41157 Author: Jason Jin <Jason.jin@freescale.com>
41158 Date:   Tue Aug 7 16:17:06 2007 +0800
41159
41160     Add CONFIG_BIOSEMU define to guard all the bios emulator code
41161
41162     This patch fix the compile issue on the board that did not enable the bios emulator
41163
41164 commit bf1060ea4f9eaa7e7d164a70a7d6f28939882053
41165 Author: Wolfgang Denk <wd@denx.de>
41166 Date:   Tue Aug 7 16:02:13 2007 +0200
41167
41168     Fix missing brace error in fs/fat/fat.c
41169     [pointed out by Roderik Wildenburg]
41170
41171     Signed-off-by: Wolfgang Denk <wd@denx.de>
41172
41173 commit 706714d97a0d08d59eda4de2268c39f504688329
41174 Author: Michal Simek <monstr@monstr.eu>
41175 Date:   Mon Aug 6 23:41:53 2007 +0200
41176
41177     [FIX] remove cute code
41178
41179 commit f500d9fdeb576288656dac427052ad2c5ca0ad1a
41180 Author: Michal Simek <monstr@monstr.eu>
41181 Date:   Mon Aug 6 23:35:26 2007 +0200
41182
41183     [FIX] Fix romfs code
41184
41185 commit ab4b956d3143f8f8174089053f5dfabbb04762b0
41186 Author: Michal Simek <monstr@monstr.eu>
41187 Date:   Mon Aug 6 23:31:49 2007 +0200
41188
41189     [FIX] Coding style cleanup - Wolfgang's suggestions
41190
41191 commit 6c33c78557ca6f8da68c01ce33e278695197d3f4
41192 Author: Wolfgang Denk <wd@denx.de>
41193 Date:   Mon Aug 6 23:21:05 2007 +0200
41194
41195     Fixed typo in README (pointed out by Martin Jost).
41196
41197     Signed-off-by: Wolfgang Denk <wd@denx.de>
41198
41199 commit 537223afa61f64480df31ce440a9cb386df4a814
41200 Author: Stefan Roese <sr@denx.de>
41201 Date:   Mon Aug 6 21:10:17 2007 +0200
41202
41203     ppc4xx: Update AMCC Bamboo README doc/README.bamboo
41204
41205     As suggested by Eugene O'Brien <Eugene.O'Brien@advantechamt.com>,
41206     here an updated Bamboo README.
41207
41208     Signed-off-by: Stefan Roese <sr@denx.de>
41209
41210 commit 9c7e4b06214db61bb21f1bcbe57c97519669baae
41211 Author: Wolfgang Denk <wd@denx.de>
41212 Date:   Mon Aug 6 02:17:36 2007 +0200
41213
41214     Coding style cleanup. Update CHANGELOG.
41215
41216     Signed-off-by: Wolfgang Denk <wd@denx.de>
41217
41218 commit 221838cc7eb178370ff62aa05920a582e12ac322
41219 Author: Jason Jin <Jason.jin@freescale.com>
41220 Date:   Tue Jul 10 09:03:22 2007 +0800
41221
41222     Remove the bios emulator from MAI board.
41223
41224     The bios emulator in the MAI board can not pass compile
41225     and have a lot of crap in it. remove it and will have a
41226     clean and small bios emulator in the drivers directory
41227     which can be uesed for every board.
41228
41229     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
41230
41231 commit 5618332409bb96f4448d1712899369fc80c0b489
41232 Author: Jason Jin <Jason.jin@freescale.com>
41233 Date:   Fri Jul 13 12:14:59 2007 +0800
41234
41235     Fix some compile issues for MAI board.
41236
41237     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
41238
41239 commit 0f460a1ee148b648ee242c3157650287d4296260
41240 Author: Jason Jin <Jason.jin@freescale.com>
41241 Date:   Fri Jul 13 12:14:58 2007 +0800
41242
41243     Configurations for ATI video card BIOS emulator
41244
41245     This patch add definition of the BIOS emulator and the ATI framebuffer
41246     driver for MPC8641HPCN board.
41247
41248     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
41249     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
41250
41251 commit ece92f85053b8df613edcf05b26a416cbc3d629c
41252 Author: Jason Jin <Jason.jin@freescale.com>
41253 Date:   Fri Jul 6 08:34:56 2007 +0800
41254
41255     This is a BIOS emulator, porting from SciTech for u-boot, mainly for
41256     ATI video card BIOS. and can be used for x86 code emulation by some
41257     modifications.
41258
41259     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
41260
41261 commit 5072188acabde3178fac7f5a597150e6e74fd40c
41262 Author: Jason Jin <Jason.jin@freescale.com>
41263 Date:   Fri Jul 6 08:33:33 2007 +0800
41264
41265     This is a framebuffer driver for ATI video card, can work for PCI9200,
41266     X300, X700, X800 ATI video cards.
41267
41268     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
41269     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
41270
41271 commit 5728be389e65fd47f34b33c2596271eb4db751ae
41272 Author: Wolfgang Denk <wd@denx.de>
41273 Date:   Mon Aug 6 01:01:49 2007 +0200
41274
41275     Coding style cleanup. Update CHANGELOG.
41276
41277     Signed-off-by: Wolfgang Denk <wd@denx.de>
41278
41279 commit 8092fef4c29b395958bb649647da7e3775731517
41280 Author: Martin Krause <Martin.Krause@tqs.de>
41281 Date:   Tue Dec 12 14:26:01 2006 +0100
41282
41283     Add functions to list of exported functions
41284
41285     Additionally export the following fuctions (to make trab_config build again):
41286     - simple_strtol()
41287     - strcmp()
41288
41289     Also bump the ABI version to reflect this change
41290
41291     Signed-off-by: Martin Krause <martin.krause@tqs.de>
41292
41293 commit 63cec5814fab5d2b1c86982327433807a5ac0249
41294 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
41295 Date:   Thu Aug 2 14:09:49 2007 -0500
41296
41297     Make MPC8641's PCI/PCI-E driver a common driver for many FSL parts.
41298
41299     All of the PCI/PCI-Express driver and initialization code that
41300     was in the MPC8641HPCN port has now been moved into the common
41301     drivers/fsl_pci_init.c.  In a subsequent patch, this will be
41302     utilized by the 85xx ports as well.
41303
41304     Common PCI-E IMMAP register blocks for FSL 85xx/86xx are added.
41305
41306     Also enable the second PCI-Express controller on 8641
41307     by getting its BATS and CFG_ setup right.
41308
41309     Fixed a u16 vendor compiler warning in AHCI driver too.
41310
41311     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
41312     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
41313     Signed-off-by: Jon Loeliger <jdl@freescale.com>
41314
41315 commit a274ca4f6d68830e7c916f897561cff8c4101c38
41316 Author: Michal Simek <monstr@monstr.eu>
41317 Date:   Sun Aug 5 22:33:05 2007 +0200
41318
41319     [FIX] Coding style cleanup
41320
41321 commit af8377d4eb3a0ac5a831830d5ce63fbf65fecb7f
41322 Author: Michal Simek <monstr@monstr.eu>
41323 Date:   Sun Aug 5 16:13:31 2007 +0200
41324
41325     [FIX] Xilinx Uartlite driver
41326     Because PPC405 can use UARTLITE serial interface and
41327     Microblaze can use Uart16550 serial interface not only Uartlite.
41328
41329 commit 98889edd50aadf862071eb5664747ad0d568a20e
41330 Author: Michal Simek <monstr@monstr.eu>
41331 Date:   Sun Aug 5 15:54:53 2007 +0200
41332
41333     [FIX] Change configuration for XUPV2P Microblaze board
41334
41335 commit 537091b4eed9302865d03fef3f7212b4fe5cf28f
41336 Author: Michal Simek <monstr@monstr.eu>
41337 Date:   Sun Aug 5 15:53:50 2007 +0200
41338
41339     [PATCH] Added support for Xilinx Emac community driver
41340
41341 commit 86b116b1b1e165ca4840daefed36d2e3b8460173
41342 Author: Bartlomiej Sieka <tur@semihalf.com>
41343 Date:   Fri Aug 3 12:08:16 2007 +0200
41344
41345     cm1_qp1 -> cm5200: single U-Boot image for modules from the cm5200 family.
41346
41347     Add the ability for modules from the Schindler cm5200 family to use a
41348     single U-Boot image:
41349     - rename cm1_qp1 to cm5200
41350     - add run-time module detection
41351     - parametrize SDRAM configuration according to the module we are running on
41352
41353     Few minor, board-specific fixes included in this patch:
41354     - better MAC address handling
41355     - updated default environment ('update' command uses +{filesize} now)
41356     - improved error messages in the auto-update code
41357     - allow booting U-Boot from RAM (CFG_RAMBOOT)
41358
41359     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
41360     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
41361     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
41362
41363 commit c7e717ebc2b044d7a71062552c9dc0f54ea9b779
41364 Author: Andy Fleming <afleming@freescale.com>
41365 Date:   Fri Aug 3 04:05:25 2007 -0500
41366
41367     Add Marvell 1149 PHY support to the TSEC
41368
41369 commit b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86
41370 Author: Wolfgang Denk <wd@denx.de>
41371 Date:   Thu Aug 2 21:27:46 2007 +0200
41372
41373     Coding style cleanup, update CHANGELOG
41374
41375     Signed-off-by: Wolfgang Denk <wd@denx.de>
41376
41377 commit 63e22764d2f8653f68888c667eb65b3996b52680
41378 Author: Wolfgang Denk <wd@denx.de>
41379 Date:   Thu Aug 2 10:11:18 2007 +0200
41380
41381     Minor cleanup of <board>_nand build rules.
41382
41383 commit 9ca8d79de096c65b9b9c867259b3ff4685f775ef
41384 Author: Stefan Roese <sr@denx.de>
41385 Date:   Thu Aug 2 08:33:56 2007 +0200
41386
41387     ppc4xx: Code cleanup
41388
41389     Signed-off-by: Stefan Roese <sr@denx.de>
41390
41391 commit c92409812206ac67a7fa7aae298539a9c3804a46
41392 Author: Grzegorz Bernacki <gjb@semihalf.com>
41393 Date:   Tue Jul 31 18:51:48 2007 +0200
41394
41395     [ppc440SPe] Graceful recovery from machine check during PCIe configuration
41396
41397     During config transactions on the PCIe bus an attempt to scan for a
41398     non-existent device can lead to a machine check exception with certain
41399     peripheral devices. In order to avoid crashing in such scenarios the
41400     instrumented versions of the config cycle read routines are introduced, so
41401     the exceptions fixups framework can gracefully recover.
41402
41403     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
41404     Acked-by: Rafal Jaworowski <raj@semihalf.com>
41405
41406 commit dec99558b9ea75a37940d07f41a3565a50b54ad1
41407 Author: Rafal Jaworowski <raj@semihalf.com>
41408 Date:   Tue Jul 31 18:19:54 2007 +0200
41409
41410     [ppc4xx] Separate settings for PCIe bus numbering on 440SPe rev.A
41411
41412     This brings back separate settings for PCIe bus numbers depending on chip
41413     revision, which got eliminated in 2b393b0f0af8402ef43b25c1968bfd29714ddffa
41414     commit. 440SPe rev. A does NOT work properly with the same settings as for
41415     the rev. B (no devices are seen on the bus during enumeration).
41416
41417     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
41418
41419 commit cdd917a43da6fa7fc8f54a3cc9f420ce5ecf3197
41420 Author: Wolfgang Denk <wd@denx.de>
41421 Date:   Thu Aug 2 00:48:45 2007 +0200
41422
41423     Fix build errors and warnings / code cleanup.
41424
41425     Signed-off-by: Wolfgang Denk <wd@denx.de>
41426
41427 commit d2f68006627eda6cb6c7f364bddf621dbfd2fc68
41428 Author: Eugene OBrien <eugene.obrien@advantechamt.com>
41429 Date:   Tue Jul 31 10:24:56 2007 +0200
41430
41431     ppc4xx: Update AMCC Bamboo 440EP support
41432
41433     Changed storage type of cfg_simulate_spd_eeprom to const
41434     Changed storage type of gpio_tab to stack storage
41435     (Cannot access global data declarations in .bss until afer code relocation)
41436
41437     Improved SDRAM tests to catch problems where data is not uniquely addressable
41438     (e.g. incorrectly programmed SDRAM row or columns)
41439
41440     Added CONFIG_PROG_SDRAM_TLB to support Bamboo SIMM/DIMM modules
41441     Fixed AM29LV320DT (OpCode Flash) sector map
41442
41443     Signed-off-by: Eugene OBrien <eugene.obrien@advantechamt.com>
41444     Signed-off-by: Stefan Roese <sr@denx.de>
41445
41446 commit ea9f6bce383cc9fbcdee28b5836109b1a6dba574
41447 Author: Stefan Roese <sr@denx.de>
41448 Date:   Tue Jul 31 08:37:01 2007 +0200
41449
41450     ppc4xx: Update 440EPx lwmon5 board support
41451
41452     - Clear ECC status regs after ECC POST test
41453     - Set dcbz for ECC generation with caches enabled as default
41454     - Code cleanup
41455
41456     Signed-off-by: Stefan Roese <sr@denx.de>
41457
41458 commit 27a528fb41433c4c1e2b5d6bd3fd8d78606fc724
41459 Author: Stefan Roese <sr@denx.de>
41460 Date:   Mon Jul 30 11:04:57 2007 +0200
41461
41462     ppc4xx: Only print ECC related info when the error bis are set
41463
41464     Signed-off-by: Stefan Roese <sr@denx.de>
41465
41466 commit e36220a4baf1f188ba60f17e9d0f043069b1362a
41467 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41468 Date:   Fri Jul 27 16:44:31 2007 +0200
41469
41470     new FPGA image for PLU405 board
41471
41472     new FPGA image for PLU405 board with improved CompactFlash timing
41473
41474     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41475
41476 commit 8993e54b6f397973794f3d6f47d3b3c0c98dd4f6
41477 Author: Rafal Jaworowski <raj@semihalf.com>
41478 Date:   Fri Jul 27 14:43:59 2007 +0200
41479
41480     [ADS5121] Support for the ADS5121 board
41481
41482     The following MPC5121e subsystems are supported:
41483
41484     - low-level CPU init
41485     - NOR Boot Flash (common CFI driver)
41486     - DDR SDRAM
41487     - FEC
41488     - I2C
41489     - Watchdog
41490
41491     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
41492     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
41493     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
41494
41495 commit 1863cfb7b100ba0ee3401799457a01dc058745f8
41496 Author: Rafal Jaworowski <raj@semihalf.com>
41497 Date:   Fri Jul 27 14:22:04 2007 +0200
41498
41499     [PPC] Remove unused MSR_USER definition
41500
41501     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
41502
41503 commit d4024bb72dd81695ec099b2199eda0d27c623e62
41504 Author: John Otken <john@softadvances.com>
41505 Date:   Thu Jul 26 17:49:11 2007 +0200
41506
41507     ppc4xx: Add support for AMCC 405EP Taihu board
41508
41509     Signed-off-by: John Otken <john@softadvances.com>
41510
41511 commit b66091de6c7390620312c2501db23d8391e7cabb
41512 Author: Anatolij Gustschin <agust@denx.de>
41513 Date:   Thu Jul 26 15:08:01 2007 +0200
41514
41515     ppc4xx: lwmon5: Update Lime initialization
41516
41517     Change Lime SDRAM initialization to now support 100MHz and
41518     133MHz (if enabled). Also the framebuffer is initialized to
41519     display a blue rectangle with a white border.
41520
41521     Signed-off-by: Anatolij Gustschin <agust@denx.de>
41522     Signed-off-by: Stefan Roese <sr@denx.de>
41523
41524 commit 9f24a808f17fc0f37b7fb4805f734741335caecc
41525 Author: Stefan Roese <sr@denx.de>
41526 Date:   Tue Jul 24 09:52:52 2007 +0200
41527
41528     ppc4xx: lwmon5: Support for 128 MByte NOR FLASH added
41529
41530     The used Intel NOR FLASH chips have internally two dies, and are now
41531     treated as two seperate chips.
41532
41533     Signed-off-by: Stefan Roese <sr@denx.de>
41534
41535 commit aedf5bde179ecfbd0a96130d18996a96518b785f
41536 Author: Stefan Roese <sr@denx.de>
41537 Date:   Tue Jul 24 07:20:09 2007 +0200
41538
41539     ppc4xx: Fix lwmon5 interrupt controller setup (polarity, trigger...)
41540
41541     As suggested by Hakan Eryigit, here an updated setup for the lwmon5
41542     interrupt controller.
41543
41544     Signed-off-by: Stefan Roese <sr@denx.de>
41545
41546 commit a71d96eac8130b53a91f93cd10c70fca0db18d52
41547 Author: Stefan Roese <sr@denx.de>
41548 Date:   Fri Jul 20 15:03:44 2007 +0200
41549
41550     ppc4xx: Fix bug with default GPIO output value
41551
41552     As spotted by Matthias Fuchs, the default output values for all GPIO1
41553     outputs were not setup correctly. This patch fixes this issue.
41554
41555     Signed-off-by: Stefan Roese <sr@denx.de>
41556
41557 commit 531e3e8b831f357056448fa573137d5fb37000fd
41558 Author: Pavel Kolesnikov <concord@emcraft.com>
41559 Date:   Fri Jul 20 15:03:03 2007 +0200
41560
41561     POST: Add ECC POST for the lwmon5 board
41562
41563     This patch adds ECC Post test for the Lwmon5 board based
41564     on PPC440EPx to U-Boot.
41565
41566     Signed-off-by: Pavel Kolesnikov <concord@emcraft.com>
41567     Acked-by: Yuri Tikhonov <yur@emcraft.com>
41568     Acked-by: Stefan Roese <sr@denx.de>
41569
41570 commit cc3023b9f95d7ac959a764471a65001062aecf41
41571 Author: Rafal Jaworowski <raj@semihalf.com>
41572 Date:   Thu Jul 19 17:12:28 2007 +0200
41573
41574     Fix breakage of 8xx boards from recent commit.
41575
41576     This patch fixes the negative consequences for 8xx of the recent
41577     "ppc4xx: Clean up 440 exceptions handling" commit.
41578
41579     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
41580
41581 commit c883f6ea32dce91f07670b3aafecf6c99b1e5341
41582 Author: Stefan Roese <sr@denx.de>
41583 Date:   Mon Jul 16 13:11:12 2007 +0200
41584
41585     Coding style cleanup
41586
41587     Signed-off-by: Stefan Roese <sr@denx.de>
41588
41589 commit 8848ec858f74ed6dab06fb6d5ddc933e0a1328bf
41590 Author: Stefan Roese <sr@denx.de>
41591 Date:   Mon Jul 16 10:02:12 2007 +0200
41592
41593     ppc4xx: Code cleanup
41594
41595     Signed-off-by: Stefan Roese <sr@denx.de>
41596
41597 commit 2a49fc17d09020e7ebd9536694d99d20e419fcb8
41598 Author: Stefan Roese <sr@denx.de>
41599 Date:   Mon Jul 16 10:01:38 2007 +0200
41600
41601     ppc4xx: AMCC Luan uses the new boardspecific DDR2 controller setup
41602
41603     Signed-off-by: Stefan Roese <sr@denx.de>
41604
41605 commit df3f17422aeb03fb81a7ac8c78d2b05d05aa4cf9
41606 Author: Stefan Roese <sr@denx.de>
41607 Date:   Mon Jul 16 10:00:43 2007 +0200
41608
41609     ppc4xx: Support for Yucca board with 440SPe Rev A added to 44x_spd_ddr2.c
41610
41611     The new boardspecific DDR2 controller configuration is used for the Yucca
41612     board. Now the Yucca board with 440SPe Rev. A chips is also supported.
41613
41614     Signed-off-by: Stefan Roese <sr@denx.de>
41615
41616 commit 6ed14addf97c8cd8f531e9ae7b2d3e222fffd53e
41617 Author: Stefan Roese <sr@denx.de>
41618 Date:   Mon Jul 16 09:57:00 2007 +0200
41619
41620     ppc4xx: Add new weak functions to support boardspecific DDR2 configuration
41621
41622     The new "weak" functions ddr_wrdtr() and ddr_clktr() are added to better
41623     support non default, boardspecific DDR(2) controller configuration.
41624
41625     Signed-off-by: Stefan Roese <sr@denx.de>
41626
41627 commit 5743a9207a370b90f09b20ebd61167c806b937f3
41628 Author: Stefan Roese <sr@denx.de>
41629 Date:   Mon Jul 16 08:53:51 2007 +0200
41630
41631     ppc4xx: Add remove_tlb() function to remove a mem area from TLB setup
41632
41633     The new function remove_tlb() can be used to remove the TLB's used to
41634     map a specific memory region. This is especially useful for the DDR(2)
41635     setup routines which configure the SDRAM area temporarily as a cached
41636     area (for speedup on auto-calibration and ECC generation) and later
41637     need this area uncached for normal usage.
41638
41639     Signed-off-by: Stefan Roese <sr@denx.de>
41640
41641 commit 0c0a9cda1bde37106520476ed486bd67eb8d30ae
41642 Author: Michal Simek <monstr@monstr.eu>
41643 Date:   Mon Jul 16 00:31:07 2007 +0200
41644
41645     [PATCH] Support for Xilinx EmacLite controller
41646
41647 commit 3a6cab844cf74f76639d795e0be8717e02c86af7
41648 Author: Wolfgang Denk <wd@denx.de>
41649 Date:   Sat Jul 14 22:51:02 2007 +0200
41650
41651     Update CHANGELOG
41652
41653     Signed-off-by: Wolfgang Denk <wd@denx.de>
41654
41655 commit 5280f352c8da33b1d7fbf448768717d9e16ff9a1
41656 Author: Michal Simek <monstr@monstr.eu>
41657 Date:   Sat Jul 14 13:11:28 2007 +0200
41658
41659     [FIX] support for simply measuring time
41660
41661 commit 91bb4ca665d2e0cf7f60c4b5b370990250ec0c43
41662 Author: Michal Simek <monstr@monstr.eu>
41663 Date:   Sat Jul 14 12:41:23 2007 +0200
41664
41665     [FS] Added support for ROMFS
41666
41667 commit 011595307731a7a67a7445d107c279d031e8ab97
41668 Author: Heiko Schocher <hs@pollux.denx.de>
41669 Date:   Sat Jul 14 01:06:58 2007 +0200
41670
41671     [PCS440EP]  - fix compile error, if BUILD_DIR is used
41672
41673 commit 5a2f1098d81ad58b309e5e558d0492643166a799
41674 Author: Michal Simek <monstr@monstr.eu>
41675 Date:   Sat Jul 14 00:18:48 2007 +0200
41676
41677     [PATCH] Support time without timer
41678
41679 commit a476ca2ac2217ddd05a2bf0c514075814b10a3c0
41680 Author: Michal Simek <monstr@monstr.eu>
41681 Date:   Fri Jul 13 21:43:55 2007 +0200
41682
41683     [PATCH] Remove problem with disabled BARREL SHIFTER
41684
41685 commit 55e26ad62107d2f14f757de3ae0b14b9aa7aed94
41686 Author: Michal Simek <monstr@monstr.eu>
41687 Date:   Fri Jul 13 21:41:44 2007 +0200
41688
41689     [FIX] correct help for rspr
41690
41691 commit fad63407154f46246ce80d53a9c669a44362ac67
41692 Author: Heiko Schocher <hs@pollux.denx.de>
41693 Date:   Fri Jul 13 09:54:17 2007 +0200
41694
41695     make show_boot_progress () weak.
41696
41697     Signed-off-by: Heiko Schocher <hs@denx.de>
41698
41699 commit 907902472391b6ca1876ec300687562ecaf459b1
41700 Author: Heiko Schocher <hs@pollux.denx.de>
41701 Date:   Fri Jul 13 08:26:05 2007 +0200
41702
41703     [PCS440EP]  - The DIAG LEDs are now blinking, if an error occur
41704                 - fix compile error, if BUILD_DIR is used
41705
41706     Signed-off-by: Heiko Schocher <hs@denx.de>
41707
41708 commit a2e1c7098cf9574386b0c96841dfc8ea5cc93578
41709 Author: Stefan Roese <sr@denx.de>
41710 Date:   Thu Jul 12 16:32:08 2007 +0200
41711
41712     ppc4xx: Change receive buffer handling in the 4xx emac driver
41713
41714     This change fixes a bug in the receive buffer handling, that
41715     could lead to problems upon high network traffic (broadcasts...).
41716
41717     Signed-off-by: Stefan Roese <sr@denx.de>
41718
41719 commit 239f05ee4dd4cfe0b50f251b533dcebe9e67c360
41720 Author: Wolfgang Denk <wd@denx.de>
41721 Date:   Thu Jul 12 01:45:34 2007 +0200
41722
41723     Update CHANGELOG, minor coding style cleanup.
41724
41725     Signed-off-by: Wolfgang Denk <wd@denx.de>
41726
41727 commit 5a56af3b522ba47fb33a3fee84d23bf1e5429654
41728 Author: Andy Fleming <afleming@freescale.com>
41729 Date:   Fri Jun 8 16:41:18 2007 -0500
41730
41731     Remove erroneous errata code from Marvel 88E1111S driver
41732
41733     The Marvel 88E1111S driver for the TSEC was copied from the
41734     88E1101 driver, and included a fix for an erratum which does not
41735     exist on that part.  Now it is removed
41736
41737     Signed-off-by: Andy Fleming <afleming@freescale.com>
41738
41739 commit 982efcf23fd03647e01e2fbe28a7a36239156cc0
41740 Author: Andy Fleming <afleming@freescale.com>
41741 Date:   Tue Jun 5 16:38:44 2007 -0500
41742
41743     From: eran liberty <eran.liberty@gmail.com>
41744
41745     adds the reset register to 85xx immap
41746
41747     Signed-off-by: Eran Liberty <eran.liberty@gmail.com>
41748     Signed-off-by: Andy Fleming <afleming@freescale.com>
41749
41750 commit d3ec0d943a045bdb99e159e7bbc77430e09f11d7
41751 Author: Andy Fleming <afleming@freescale.com>
41752 Date:   Thu May 10 17:50:01 2007 -0500
41753
41754     Polished the 85xx ADS config files
41755
41756     Made the boot commands use device trees by default.
41757     Also moved the ramdisk to 1000000 (I think the previous address
41758     was getting overridden during boot).
41759
41760     Signed-off-by: Andy Fleming <afleming@freescale.com>
41761
41762 commit bfb37b32d1b0b03f18077dba49cc66a6e76fa038
41763 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
41764 Date:   Wed May 9 11:03:32 2007 -0500
41765
41766     8544ds: Fix Makefile after moving pixis to board/freescale.
41767
41768     The OBJTREE != SRCTREE build scenario was broken.
41769     This fixes it.
41770
41771     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
41772     Signed-off-by: Jon Loeliger <jdl@freescale.com>
41773
41774 commit 2a3cee43c3b71fa5b8d91db19f05067865290f3e
41775 Author: Andy Fleming <afleming@freescale.com>
41776 Date:   Wed May 9 00:54:20 2007 -0500
41777
41778     tsec: Fix PHY code to match first driver
41779
41780     Jarrold Wen noticed that the generic PHY code always matches
41781     under the current implementation.  Change it so the first match
41782     wins, and *only* unknown PHYs trigger the generic driver
41783
41784     Signed-off-by: Andy Fleming <afleming@freescale.com>
41785
41786 commit ccc091aac61a38cd998d575d92f7232e256d6312
41787 Author: Andy Fleming <afleming@freescale.com>
41788 Date:   Tue May 8 17:27:43 2007 -0500
41789
41790     Add support for CPM device tree configuration to 8560 ADS
41791
41792     * Adds code to modify CPM frequencies
41793     * Cleans up the config file to #define TSEC and (for now) #undef FCC
41794     * Adds the MII command for all 8560 ADS configurations
41795     * Updates config file to provide convenience commands for booting
41796       with a device tree
41797
41798     Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
41799     Signed-off-by: Andy Fleming <afleming@freescale.com>
41800
41801 commit 7507d56ccaf7aae1c474342a9a5540165cd7e9d9
41802 Author: Andy Fleming <afleming@freescale.com>
41803 Date:   Tue May 8 17:23:02 2007 -0500
41804
41805     Fix Marvell 88e1145 PHY init code
41806
41807     Fix a bug in the Marvell 88e1145 PHY init code in the TSEC driver
41808     where the reset was being done after the errata code instead of
41809     before.
41810
41811     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
41812     Signed-off-by: Andy Fleming <afleming@freescale.com>
41813
41814 commit 5dc210dec5bace98a50b6ba905347890091a9bb0
41815 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
41816 Date:   Wed Jul 11 14:52:16 2007 -0500
41817
41818     Add simple agent/end-point configuration in PCI AutoConfig for PCI_CLASS_PROCESSOR_POWERPC.
41819
41820     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
41821
41822 commit e8b85f3ba4cd8930e0a2fea2100c815d64201765
41823 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
41824 Date:   Wed Jul 11 14:52:08 2007 -0500
41825
41826     pciauto setup bridge
41827
41828     The P2P bridge bus numbers programmed into the device are relative to
41829     hose->first_busno.
41830
41831     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
41832
41833 commit 571f49fa717004ca4268b4e24057efc7bf9f987b
41834 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
41835 Date:   Wed Jul 11 14:52:01 2007 -0500
41836
41837     Support PCIe extended config registers
41838
41839     FSL PCIe block has extended cfg registers in the 100 and 400 range.
41840     For example, to read the LTSSM register: pci display <busn>.0 404 1
41841
41842     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
41843
41844 commit ba5feb12581bb2912ce301e4866b71f846e9fc07
41845 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
41846 Date:   Wed Jul 11 14:51:48 2007 -0500
41847
41848     Minor improvements to drivers/pci_auto.c
41849
41850     - Make pciauto_{pre,post}scan_setup_bridge non-static
41851     - Added physical address display in debug messages.
41852
41853     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
41854
41855 commit 40e81addab7bb74d20ddf681ce9babc880a828ee
41856 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
41857 Date:   Wed Jul 11 14:51:35 2007 -0500
41858
41859     Start pci hose scan from hose->current_busno.
41860
41861     Ensure hose->current_busno is not less than first_busno.  This fixes
41862     broken board code which leaves current_busno=0 when first_busno is
41863     greater than 0 for the cases with multiple controllers.
41864
41865     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
41866
41867 commit 3865b1fb7843a08ad49a6319a36415752276ff48
41868 Author: Stefan Roese <sr@denx.de>
41869 Date:   Wed Jul 11 12:13:53 2007 +0200
41870
41871     Fix some compile problems introduced by the latest CFG_CMD_xxx cleanup
41872
41873     Signed-off-by: Stefan Roese <sr@denx.de>
41874
41875 commit fa1df308926a6f70e3504c57514ef27ac31fd13a
41876 Author: Bartlomiej Sieka <tur@semihalf.com>
41877 Date:   Wed Jul 11 20:11:07 2007 +0200
41878
41879     CM1.QP1: Support for the Schindler CM1.QP1 board.
41880
41881     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
41882     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
41883
41884 commit 96e1d75be8193ca79e4215a368bf9d7f2362450f
41885 Author: Heiko Schocher <hs@pollux.denx.de>
41886 Date:   Wed Jul 11 18:39:11 2007 +0200
41887
41888     [PCS440EP]  - Show on the DIAG LEDs, if the SHA1 check failed
41889                 - now the Flash ST M29W040B is supported (not tested)
41890                 - fix the "led" command
41891                 - fix compile error, if BUILD_DIR is used
41892
41893     Signed-off-by: Heiko Schocher <hs@denx.de>
41894
41895 commit e9514751cfa5cce61ea699fa0d3eb37898a5eeb5
41896 Author: Stefan Roese <sr@denx.de>
41897 Date:   Sun Jul 8 13:44:27 2007 +0200
41898
41899     Fix malloc problem introduced with the relocation fixup for the PPC platform
41900
41901     The relocation fixup didn't handle the malloc pointer initialization
41902     correctly. This patch fixes this problem. Tested successfully on 4xx.
41903     The relocation fixup patches for 4xx will follow soon.
41904
41905     Signed-off-by: Stefan Roese <sr@denx.de>
41906
41907 commit 0dca874db62718e41253659e60f3a1de7eb418ce
41908 Author: TsiChung <tcliew@Goku.(none)>
41909 Date:   Tue Jul 10 15:45:43 2007 -0500
41910
41911     Cache update and added CFG_UNIFY_CACHE
41912
41913     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.
41914
41915     Signed-off-by: TsiChung <tcliew@Goku.(none)>
41916
41917 commit 52b017604a8f4d4a795880ef6e7861d7f2f1b005
41918 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41919 Date:   Thu Jul 5 23:36:16 2007 -0500
41920
41921     Update header file. Include dtimer_intr_setup(). Changed timer divider to global define.
41922
41923     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
41924
41925     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41926
41927 commit 5cdc07c7ef8f08ea55d3c47ed9221d91aa6d5fac
41928 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41929 Date:   Thu Jul 5 23:31:25 2007 -0500
41930
41931     Update header files
41932
41933     Include immap.h and renamed mcfrtc.h to rtc.h
41934
41935     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41936
41937 commit 2870e98ac8e5553e9187b12a47e5f46babb53990
41938 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41939 Date:   Thu Jul 5 23:29:21 2007 -0500
41940
41941     Add mcffec_initialize()
41942
41943     Added mcffec_initialize() in eth_initialize()
41944
41945     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41946
41947 commit 45a25bfd0c52f8a3fa137216bc94d32f90bedc5d
41948 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41949 Date:   Thu Jul 5 23:27:40 2007 -0500
41950
41951     Update header file and clean up
41952
41953     Include immap.h
41954
41955     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41956
41957 commit 0cee9c66318602c856a899ae5fa7579ccba6443a
41958 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41959 Date:   Thu Jul 5 23:23:15 2007 -0500
41960
41961     New uart structure and defines
41962
41963     Seperated from mcfuart.h
41964
41965     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41966
41967 commit a90e79de8d99e9c9d69d60bfff9f24c337165900
41968 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41969 Date:   Thu Jul 5 23:22:31 2007 -0500
41970
41971     New timer structure and defines
41972
41973     Seperated from mcftimer.h
41974
41975     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41976
41977 commit e04acb2eba4782489417240eff76e20e176aec10
41978 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41979 Date:   Thu Jul 5 23:21:09 2007 -0500
41980
41981     Rename mcfrtc to rtc
41982
41983     Since it is already in m68k folder, un-necessary to pad mcf. Replaced immap_5329.h and m5329.h to immap.h
41984
41985     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41986
41987 commit 2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5
41988 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41989 Date:   Thu Jul 5 23:17:36 2007 -0500
41990
41991     Rename mcfserial.c. Update include header
41992
41993     Renamed mcfserial.c to mcfuart.c. Modified Makefile for mcfuart.o from mcfserial.o. Replace immap_5329.h and m5329.h to immap.h
41994
41995     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41996
41997 commit f2208fbc2eb9de3f4285bfaa021c6ebae16c9b0e
41998 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
41999 Date:   Thu Jul 5 23:13:58 2007 -0500
42000
42001     Header file update, clean up and cache handling
42002
42003     Replaced immap_5329.h and m5329.h with immap.h. Included cache_invalid.
42004
42005     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42006
42007 commit 2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97
42008 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42009 Date:   Thu Jul 5 23:10:40 2007 -0500
42010
42011     Create interrupts.c and modify Makefile
42012
42013     interrupt_init() and dtimer_intr_setup() are placed in interrupts.c. Added interrupts.o to Makefile
42014
42015     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42016
42017 commit ddd104f1ed655eda50c06ba636237a83ed943f34
42018 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42019 Date:   Thu Jul 5 23:06:55 2007 -0500
42020
42021     Enable Icache
42022
42023     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42024
42025 commit b9bf3de377b2bae70c983c9b97feae914999e735
42026 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42027 Date:   Thu Jul 5 23:05:31 2007 -0500
42028
42029     Update header file and some clean up
42030
42031     Replaced immap_5329.h and m5329.h with immap.h. Removed whitespaces.
42032
42033     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42034
42035 commit 84a015b52ec820a5ae173717d78516de731c89c2
42036 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42037 Date:   Thu Jul 5 23:03:28 2007 -0500
42038
42039     Update header file and enable icache
42040
42041     Replaced immap_5329.h and m5329.h with immap.h. Enabled icache_enable() in cpu_init_r().
42042
42043     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42044
42045 commit 7a17e759c7a8b58e910daf54df611e94fc8ca074
42046 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42047 Date:   Thu Jul 5 23:01:22 2007 -0500
42048
42049     Update header file and removed interrupt_init()
42050
42051     Replace immap_5329.h and m5329.h with immap.h. Removed interrupt_init() and placed it in interrupts.c
42052
42053     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42054
42055 commit 3b635492c95bd0d6e08f93f699821cba1f602a64
42056 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42057 Date:   Thu Jul 5 22:57:46 2007 -0500
42058
42059     Update for flash.o and mii.o
42060
42061     Removed flash.o and added mii.o
42062
42063     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42064
42065 commit c5ded275d839e4ff79f41718d50a835d989f57bc
42066 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42067 Date:   Thu Jul 5 22:56:19 2007 -0500
42068
42069     MII functions calls.
42070
42071     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42072
42073 commit 427c814104560e29bda14955c67703245aaaa5b4
42074 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42075 Date:   Thu Jul 5 22:54:42 2007 -0500
42076
42077     Removed MII functions and replaced immap_5329.h and m5329.h with immap.h.
42078
42079     The removed MII routines will be placed in mii.c.
42080
42081     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42082
42083 commit 01a793fda09c63df5a496f09dc1c7cb26e6751a2
42084 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42085 Date:   Thu Jul 5 22:51:05 2007 -0500
42086
42087     Duplicate code
42088
42089     There is a Common Flash Interface Driver existed. To use the CFI driver, define CFG_FLASH_CFI in configuration file.
42090
42091     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42092
42093 commit 2744354a8437b8f78db178e30660215688bff570
42094 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42095 Date:   Thu Jul 5 22:46:38 2007 -0500
42096
42097     Seperate old structure defines and new structure defines
42098
42099     Removed new uart structure and defines to uart.h
42100
42101     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42102
42103 commit 2bd58608dbcff8890ca9a0c59e861ac24f8bb230
42104 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42105 Date:   Thu Jul 5 22:45:01 2007 -0500
42106
42107     Seperate old structure defines and new structure defines
42108
42109     New timer structure and defines will move to new timer.h
42110
42111     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42112
42113 commit 8cd5cd6de4ff92e03978338ed7aeb3ce7b7b9784
42114 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42115 Date:   Thu Jul 5 22:42:23 2007 -0500
42116
42117     Clean up
42118
42119     Removed whitespace
42120
42121     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42122
42123 commit 514871f565dd8bd1121e4a3ac1665a790e20b8f2
42124 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42125 Date:   Thu Jul 5 22:41:24 2007 -0500
42126
42127     Clean up
42128
42129     Replaced whitespace with tabs
42130
42131     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42132
42133 commit 48dbfeabc7afffe30609a4489f10c22cb67ef7dd
42134 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42135 Date:   Thu Jul 5 22:39:07 2007 -0500
42136
42137     Create new header file and move peripherals base address from configs file to new header file.
42138
42139     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.
42140
42141     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42142
42143 commit be296e31c4411f96d9cb3d2afc8fcb006867abfa
42144 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42145 Date:   Thu Jul 5 22:24:58 2007 -0500
42146
42147     Revert file mode
42148
42149     Changed MAKEALL file mode to executable, removed executable file mode from Makefile
42150
42151     Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
42152
42153 commit b3aff0cb9ecf236d7e8c93761dd1dadf6837a582
42154 Author: Jon Loeliger <jdl@freescale.com>
42155 Date:   Tue Jul 10 11:19:50 2007 -0500
42156
42157     disk/ doc/ lib_*/ and tools/: Remove lingering references to CFG_CMD_* symbols.
42158
42159     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
42160     Those always evaluated TRUE, and thus were always compiled
42161     even when IDE really wasn't defined/wanted.
42162
42163     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42164
42165 commit ddb5d86f0215bcb6c293510c50eb050e92883b7a
42166 Author: Jon Loeliger <jdl@freescale.com>
42167 Date:   Tue Jul 10 11:13:21 2007 -0500
42168
42169     drivers/: Remove lingering references to CFG_CMD_* symbols.
42170
42171     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
42172     Those always evaluated TRUE, and thus were always compiled
42173     even when IDE really wasn't defined/wanted.
42174
42175     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42176
42177 commit f40a7f3e3888b42a43674b099e5470022c8c544c
42178 Author: Jon Loeliger <jdl@freescale.com>
42179 Date:   Tue Jul 10 11:07:56 2007 -0500
42180
42181     fs/: Remove lingering references to CFG_CMD_* symbols.
42182
42183     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
42184     Those always evaluated TRUE, and thus were always compiled
42185     even when IDE really wasn't defined/wanted.
42186
42187     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42188
42189 commit 610f2e9c28a9c101e09fa1b78143cf5f00ed1593
42190 Author: Jon Loeliger <jdl@freescale.com>
42191 Date:   Tue Jul 10 11:05:02 2007 -0500
42192
42193     net/: Remove lingering references to CFG_CMD_* symbols.
42194
42195     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
42196     Those always evaluated TRUE, and thus were always compiled
42197     even when IDE really wasn't defined/wanted.
42198
42199     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42200
42201 commit 902531788376046da212afd1661cffb62f3daa1c
42202 Author: Jon Loeliger <jdl@freescale.com>
42203 Date:   Tue Jul 10 11:02:44 2007 -0500
42204
42205     common/: Remove lingering references to CFG_CMD_* symbols.
42206
42207     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
42208     Those always evaluated TRUE, and thus were always compiled
42209     even when IDE really wasn't defined/wanted.
42210
42211     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42212
42213 commit d39b57415838c73fb0a37eca84de3c68ba990586
42214 Author: Jon Loeliger <jdl@freescale.com>
42215 Date:   Tue Jul 10 10:48:22 2007 -0500
42216
42217     board/[j-z]*: Remove lingering references to CFG_CMD_* symbols.
42218
42219     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
42220     Those always evaluated TRUE, and thus were always compiled
42221     even when IDE really wasn't defined/wanted.
42222
42223     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42224
42225 commit 77a318545d57aefa844752465b94c7e09a3f26d0
42226 Author: Jon Loeliger <jdl@freescale.com>
42227 Date:   Tue Jul 10 10:39:10 2007 -0500
42228
42229     board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols.
42230
42231     Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
42232     Those always evaluated TRUE, and thus were always compiled
42233     even when IDE really wasn't defined/wanted.
42234
42235     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42236
42237 commit 068b60a0eb7e73b243ca55399f2a7df76e2c3f3d
42238 Author: Jon Loeliger <jdl@freescale.com>
42239 Date:   Tue Jul 10 10:27:39 2007 -0500
42240
42241     cpu/ rtc/ include/: Remove lingering references to CFG_CMD_* symbols.
42242
42243     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42244
42245 commit 079a136c3588814784561d6e4856970ee82d6e2a
42246 Author: Jon Loeliger <jdl@freescale.com>
42247 Date:   Tue Jul 10 10:12:10 2007 -0500
42248
42249     include/configs/[p-z]* + misc: Cleanup BOOTP and lingering CFG_CMD_*.
42250
42251     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
42252     used to be included but CONFIG_BOOTP_MASK was not defined.
42253
42254     Remove lingering references to CFG_CMD_* symbols.
42255
42256     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42257
42258 commit 7f5c01577400c74cc5bac74f41dd0d3c79df623c
42259 Author: Jon Loeliger <jdl@freescale.com>
42260 Date:   Tue Jul 10 09:38:02 2007 -0500
42261
42262     include/configs/[g-o]*: Cleanup BOOTP and lingering CFG_CMD_*.
42263
42264     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
42265     used to be included but CONFIG_BOOTP_MASK was not defined.
42266
42267     Remove lingering references to CFG_CMD_* symbols.
42268
42269     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42270
42271 commit 80ff4f99b84b64edca3fd10da365ec1493be1c95
42272 Author: Jon Loeliger <jdl@freescale.com>
42273 Date:   Tue Jul 10 09:29:01 2007 -0500
42274
42275     include/configs/[a-e]*: Cleanup BOOTP and lingering CFG_CMD_*.
42276
42277     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
42278     used to be included but CONFIG_BOOTP_MASK was not defined.
42279
42280     Remove lingering references to CFG_CMD_* symbols.
42281
42282     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42283
42284 commit a1aa0bb502e25fd598b5e0ccdfb2c174921d714a
42285 Author: Jon Loeliger <jdl@freescale.com>
42286 Date:   Tue Jul 10 09:22:23 2007 -0500
42287
42288     include/configs/[P-Z]*: Cleanup BOOTP and lingering CFG_CMD_*.
42289
42290     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
42291     used to be included but CONFIG_BOOTP_MASK was not defined.
42292
42293     Remove lingering references to CFG_CMD_* symbols.
42294
42295     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42296
42297 commit 659e2f6736232a08acca8785c206e2b4d9cd07d7
42298 Author: Jon Loeliger <jdl@freescale.com>
42299 Date:   Tue Jul 10 09:10:49 2007 -0500
42300
42301     include/configs/[J-O]*: Cleanup BOOTP and lingering CFG_CMD_*.
42302
42303     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
42304     used to be included but CONFIG_BOOTP_MASK was not defined.
42305
42306     Remove lingering references to CFG_CMD_* symbols.
42307
42308     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42309
42310 commit 11799434c5ff15a612577bb1ad1f4ea1a0595e4b
42311 Author: Jon Loeliger <jdl@freescale.com>
42312 Date:   Tue Jul 10 09:02:57 2007 -0500
42313
42314     include/configs/[A-I]*: Cleanup BOOTP and lingering CFG_CMD_*.
42315
42316     Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
42317     used to be included but CONFIG_BOOTP_MASK was not defined.
42318
42319     Remove lingering references to CFG_CMD_* symbols.
42320
42321     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42322
42323 commit 1fe80d79c5c4e52d3410a7ab4b8515da095cdab3
42324 Author: Jon Loeliger <jdl@freescale.com>
42325 Date:   Mon Jul 9 22:08:34 2007 -0500
42326
42327     Finally retire cmd_confdefs.h and CONFIG_BOOTP_MASK!
42328
42329     All of the choices for CONFIG_BOOTP_ are now documented in
42330     the README file.  You must now individually select exactly
42331     the set that you want using a series of
42332         #define CONFIG_BOOTP_<x>
42333     statements in the board port config files now.
42334
42335     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42336
42337 commit d3b8c1a743dcd31625c99e6a44590f207eb00028
42338 Author: Jon Loeliger <jdl@freescale.com>
42339 Date:   Mon Jul 9 21:57:31 2007 -0500
42340
42341     include/configs/[m-z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
42342
42343     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42344
42345 commit 2fd90ce575b02d189cbf443c85309bcd001aa393
42346 Author: Jon Loeliger <jdl@freescale.com>
42347 Date:   Mon Jul 9 21:48:26 2007 -0500
42348
42349     include/configs/[a-m]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
42350
42351     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42352
42353 commit 37d4bb70586659dedef1658ce1bed071be098aec
42354 Author: Jon Loeliger <jdl@freescale.com>
42355 Date:   Mon Jul 9 21:38:02 2007 -0500
42356
42357     include/configs/[T-Z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
42358
42359     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42360
42361 commit 18225e8dd1950bd6dbf35011e436db7f474c187d
42362 Author: Jon Loeliger <jdl@freescale.com>
42363 Date:   Mon Jul 9 21:31:24 2007 -0500
42364
42365     include/configs/[P-S]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
42366
42367     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42368
42369 commit 7be044e4ea644b0ef1c486dadc1a4c2665b4374d
42370 Author: Jon Loeliger <jdl@freescale.com>
42371 Date:   Mon Jul 9 21:24:19 2007 -0500
42372
42373     include/configs/[H-N]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
42374
42375     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42376
42377 commit 5d2ebe1b3ef0055c661bb1a0d252bf252380069f
42378 Author: Jon Loeliger <jdl@freescale.com>
42379 Date:   Mon Jul 9 21:16:53 2007 -0500
42380
42381     include/configs/[A-G]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
42382
42383     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42384
42385 commit f55f7f8d83f36021ab1f0e3d738f5d8c8083a7e3
42386 Author: Jon Loeliger <jdl@freescale.com>
42387 Date:   Mon Jul 9 19:12:30 2007 -0500
42388
42389     Retire CONFIG_COMMANDS finally.
42390     Strip old CFG_CMD_* symbols out.
42391
42392     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42393
42394 commit b5501f7d720fed99ab0b42c83f5dea52868ce007
42395 Author: Jon Loeliger <jdl@freescale.com>
42396 Date:   Mon Jul 9 19:10:03 2007 -0500
42397
42398     Update README.* to reference new CONFIG_CMD_* names now.
42399
42400     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42401
42402 commit 4431283c7e6d54ae180d466e51bf2d97471a0ad9
42403 Author: Jon Loeliger <jdl@freescale.com>
42404 Date:   Mon Jul 9 19:06:00 2007 -0500
42405
42406     cpu/m*: Remove obsolete references to CONFIG_COMMANDS
42407
42408     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42409
42410 commit 3a1ed1e1f922c419bb71f7df4949d783ade369fa
42411 Author: Jon Loeliger <jdl@freescale.com>
42412 Date:   Mon Jul 9 18:57:22 2007 -0500
42413
42414     cpu/[7a-ln-z]*: Remove obsolete references to CONFIG_COMMANDS
42415
42416     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42417
42418 commit ab3abcbabd840928fb1eb5122118ca466b5e5013
42419 Author: Jon Loeliger <jdl@freescale.com>
42420 Date:   Mon Jul 9 18:45:16 2007 -0500
42421
42422     board/[q-z]*: Remove obsolete references to CONFIG_COMMANDS
42423
42424     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42425
42426 commit 3fe00109a5f12de55b6e25b1f98dfc24bc9090c9
42427 Author: Jon Loeliger <jdl@freescale.com>
42428 Date:   Mon Jul 9 18:38:39 2007 -0500
42429
42430     board/[m-p]*: Remove obsolete references to CONFIG_COMMANDS
42431
42432     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42433
42434 commit c508a4cefd8a953fc64957650506a035e6e3d9d1
42435 Author: Jon Loeliger <jdl@freescale.com>
42436 Date:   Mon Jul 9 18:31:28 2007 -0500
42437
42438     board/[f-l]*: Remove obsolete references to CONFIG_COMMANDS
42439
42440     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42441
42442 commit b9307262f8a9f3b5c9e15a6067eadc17407146f6
42443 Author: Jon Loeliger <jdl@freescale.com>
42444 Date:   Mon Jul 9 18:24:55 2007 -0500
42445
42446     board/[d-e]*: Remove obsolete references to CONFIG_COMMANDS
42447
42448     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42449
42450 commit fcec2eb93e126400009729328e797f12bc94f1fd
42451 Author: Jon Loeliger <jdl@freescale.com>
42452 Date:   Mon Jul 9 18:19:09 2007 -0500
42453
42454     board/[A-Za-c]*: Remove obsolete references to CONFIG_COMMANDS
42455
42456     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42457
42458 commit a593814f2be0c9cdc3133cd550b167b8a988328f
42459 Author: Jon Loeliger <jdl@freescale.com>
42460 Date:   Mon Jul 9 18:10:50 2007 -0500
42461
42462     rtc/: Remove obsolete references to CONFIG_COMMANDS
42463
42464     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42465
42466 commit 67350568f9d46e66c21829f3513b3db0caeb948b
42467 Author: Jon Loeliger <jdl@freescale.com>
42468 Date:   Mon Jul 9 18:05:38 2007 -0500
42469
42470     lib_{arm,avr32,blackfin,generic,i386}/: Remove obsolete references to CONFIG_COMMANDS
42471
42472     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42473
42474 commit 7def6b34f910f08d7ef0a14646da067719237ca2
42475 Author: Jon Loeliger <jdl@freescale.com>
42476 Date:   Mon Jul 9 18:02:11 2007 -0500
42477
42478     lib_{m68k,microblaze,mips,ppc}/: Remove obsolete references to CONFIG_COMMANDS
42479
42480     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42481
42482 commit dd60d1223b99a88a7216f3e041fe40634ad4c2bb
42483 Author: Jon Loeliger <jdl@freescale.com>
42484 Date:   Mon Jul 9 17:56:50 2007 -0500
42485
42486     fs/: Remove obsolete references to CONFIG_COMMANDS
42487
42488     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42489
42490 commit c91898bbc505aff3e12a807af88e76da18efb7ee
42491 Author: Jon Loeliger <jdl@freescale.com>
42492 Date:   Mon Jul 9 17:46:09 2007 -0500
42493
42494     tools/: Remove obsolete references to CONFIG_COMMANDS
42495
42496     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42497
42498 commit 643d1ab23960950b52e0a2803c2d3ea4c558fa01
42499 Author: Jon Loeliger <jdl@freescale.com>
42500 Date:   Mon Jul 9 17:45:14 2007 -0500
42501
42502     net/: Remove obsolete references to CONFIG_COMMANDS
42503
42504     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42505
42506 commit cb51c0bf88f95a1bca68324b0126f8eed8b43273
42507 Author: Jon Loeliger <jdl@freescale.com>
42508 Date:   Mon Jul 9 17:39:42 2007 -0500
42509
42510     drivers/[n-z]*: Remove obsolete references to CONFIG_COMMANDS
42511
42512     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42513
42514 commit 07d38a17e964aec4c7827f0ee9a583bc8cc1ad6b
42515 Author: Jon Loeliger <jdl@freescale.com>
42516 Date:   Mon Jul 9 17:30:01 2007 -0500
42517
42518     drivers/[a-m]*: Remove obsolete references to CONFIG_COMMANDS
42519
42520     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42521
42522 commit cde5c64d17cf4834aa7b5c373f288bc7dad27b29
42523 Author: Jon Loeliger <jdl@freescale.com>
42524 Date:   Mon Jul 9 17:22:37 2007 -0500
42525
42526     disk/: Remove obsolete references to CONFIG_COMMANDS
42527
42528     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42529
42530 commit 639221c76c88215bd55af83ad174fc30d1940f8f
42531 Author: Jon Loeliger <jdl@freescale.com>
42532 Date:   Mon Jul 9 17:15:49 2007 -0500
42533
42534     include/: Remove obsolete references to CONFIG_COMMANDS
42535     Mostly removed from comments here.
42536
42537     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42538
42539 commit 4ef218f6fdf8d747f4589da5252b004e7d2c2876
42540 Author: Wolfgang Denk <wd@denx.de>
42541 Date:   Tue Jul 10 00:01:28 2007 +0200
42542
42543     Coding style cleanup; update CHANGELOG.
42544
42545     Signed-off-by: Wolfgang Denk <wd@denx.de>
42546
42547 commit c8603cfbd4573379a6076c9c208545ba2bbf019a
42548 Author: Stefan Roese <sr@denx.de>
42549 Date:   Mon Jul 9 11:00:24 2007 +0200
42550
42551     Small coding style cleanup
42552
42553     Signed-off-by: Stefan Roese <sr@denx.de>
42554
42555 commit 0f92c7e7c9a62755b1457d3c46f93c8c1f6c19fc
42556 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42557 Date:   Mon Jul 9 10:10:08 2007 +0200
42558
42559     Migrate esd 405EP boards to new NAND subsystem
42560
42561     Remove unused CFG_NAND_LEGACY define
42562
42563     These boards to not have NAND.
42564
42565     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42566
42567 commit bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803
42568 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42569 Date:   Mon Jul 9 10:10:06 2007 +0200
42570
42571     Migrate esd 405EP boards to new NAND subsystem
42572
42573     Migrate esd 405EP boards to new NAND subsystem
42574
42575     -cleanup
42576     -use correct io accessors (in/out_be32())
42577
42578     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42579
42580 commit e09f7ab5749c345f924da272bea0521a73af5b11
42581 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42582 Date:   Mon Jul 9 10:10:04 2007 +0200
42583
42584     Migrate esd 405EP boards to new NAND subsystem
42585
42586     This patch prepares the migration from the legacy NAND driver
42587     to U-Boot's new NAND subsystem for esd boards.
42588
42589     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42590
42591 commit c3517f919d0f61650cf3027fd4faf0f631142f6c
42592 Author: Jon Loeliger <jdl@freescale.com>
42593 Date:   Sun Jul 8 18:10:08 2007 -0500
42594
42595     common/* non-cmd*: Remove obsolete references to CONFIG_COMMANDS
42596
42597     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42598
42599 commit fd9bcaa35be64fe41a4223fdb6ecdbad52470b39
42600 Author: Jon Loeliger <jdl@freescale.com>
42601 Date:   Sun Jul 8 18:05:39 2007 -0500
42602
42603     common/cmd_[p-x]*: Remove obsolete references to CONFIG_COMMANDS.
42604
42605     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42606
42607 commit c76fe47425afc7d5d670ff0539823c85d65d9c42
42608 Author: Jon Loeliger <jdl@freescale.com>
42609 Date:   Sun Jul 8 18:02:23 2007 -0500
42610
42611     common/cmd_[i-n]*: Remove obsolete references to CONFIG_COMMANDS.
42612
42613     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42614
42615 commit baa26db4113679b80970ff447d91cc10217742a6
42616 Author: Jon Loeliger <jdl@freescale.com>
42617 Date:   Sun Jul 8 17:51:39 2007 -0500
42618
42619     common/cmd_[af]*: Remove obsolete references to CONFIG_COMMANDS.
42620
42621     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42622
42623 commit af075ee96e52dda7b6bca6c937588aeaaec5f2cd
42624 Author: Jon Loeliger <jdl@freescale.com>
42625 Date:   Sun Jul 8 17:02:01 2007 -0500
42626
42627     Clear up confusion over the CMD_POST and POST_DIAG mess.
42628
42629     For some reason, CONFIG_POST permeated as CONFIG_CMD_POST_DIAG
42630     when it really means just CONFIG_CMD_DIAG.  There is no CMD_POST.
42631     Clear this mess up some.
42632
42633     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42634
42635 commit b3631487105a57ab7cbadfc26efbaf9676275018
42636 Author: Jon Loeliger <jdl@freescale.com>
42637 Date:   Sun Jul 8 15:45:08 2007 -0500
42638
42639     Remove references to the old cmd_confdefs.h include file.
42640
42641     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42642
42643 commit a22d4da95e20049b4daa1c2a022f61e8a72f2fb6
42644 Author: Jon Loeliger <jdl@freescale.com>
42645 Date:   Sun Jul 8 15:42:59 2007 -0500
42646
42647     include/configs: Catch some CONFIG_CMD_* conversion stragglers.
42648
42649     Use new CONFIG_CMD_* in lwmon5.h board config file.
42650     Fix CONFIG_CMD_* typo braindamage in omap1510inn.h
42651
42652     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42653
42654 commit a5562901661bd428f7e5feb333f796372cb81019
42655 Author: Jon Loeliger <jdl@freescale.com>
42656 Date:   Sun Jul 8 15:31:57 2007 -0500
42657
42658     include/configs: Use new CONFIG_CMD_* in various [TUVWZYZ]* named board config files.
42659
42660     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42661
42662 commit fe7f782d5b8c64a0195c68c31a0a11d4f641355e
42663 Author: Jon Loeliger <jdl@freescale.com>
42664 Date:   Sun Jul 8 15:02:44 2007 -0500
42665
42666     include/configs: Use new CONFIG_CMD_* in various S* named board config files.
42667
42668     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42669
42670 commit e9a0f8f15c11f337967aa0600ad6e8af33037f50
42671 Author: Jon Loeliger <jdl@freescale.com>
42672 Date:   Sun Jul 8 15:12:40 2007 -0500
42673
42674     include/configs: Use new CONFIG_CMD_* in various R* named board config files.
42675
42676     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42677
42678 commit 12aa9fd23d724bd6ab88e1baa0db35133a27303f
42679 Author: Jon Loeliger <jdl@freescale.com>
42680 Date:   Sun Jul 8 14:55:07 2007 -0500
42681
42682     include/configs: Use new CONFIG_CMD_* in various Q* named board config files.
42683
42684     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42685
42686 commit acf0269779422f3e147d2ddfb499c9f6ff10ad5e
42687 Author: Jon Loeliger <jdl@freescale.com>
42688 Date:   Sun Jul 8 14:49:44 2007 -0500
42689
42690     include/configs: Use new CONFIG_CMD_* in various P* named board config files.
42691
42692     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42693
42694 commit e18a1061a8630cb67995fdf99afd3fb50d1b187d
42695 Author: Jon Loeliger <jdl@freescale.com>
42696 Date:   Sun Jul 8 14:21:43 2007 -0500
42697
42698     include/configs: Use new CONFIG_CMD_* in various [NO]* named board config files.
42699
42700     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42701
42702 commit 8353e139bfad9059c54f5b2421f1a3090e15a2e2
42703 Author: Jon Loeliger <jdl@freescale.com>
42704 Date:   Sun Jul 8 14:14:17 2007 -0500
42705
42706     include/configs: Use new CONFIG_CMD_* in various M* named board config files.
42707
42708     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42709
42710 commit 348f258f24253433e4a2302a0bbceb6740a67246
42711 Author: Jon Loeliger <jdl@freescale.com>
42712 Date:   Sun Jul 8 13:46:18 2007 -0500
42713
42714     include/configs: Use new CONFIG_CMD_* in various [IJKL]* named board config files.
42715
42716     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42717
42718 commit 6c4f4da9bfc9f9403f54fce678ed0364b7c86a6a
42719 Author: Jon Loeliger <jdl@freescale.com>
42720 Date:   Sun Jul 8 10:09:35 2007 -0500
42721
42722     include/configs: Use new CONFIG_CMD_* in various H* named board config files.
42723
42724     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42725
42726 commit 60a0876b5106b34220e459c208bbf648073306c0
42727 Author: Jon Loeliger <jdl@freescale.com>
42728 Date:   Sat Jul 7 21:04:26 2007 -0500
42729
42730     include/configs: Use new CONFIG_CMD_* in various F* and G* named board config files.
42731
42732     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42733
42734 commit dcaa71562826a2466e894c868d132509dcda8444
42735 Author: Jon Loeliger <jdl@freescale.com>
42736 Date:   Sat Jul 7 20:56:05 2007 -0500
42737
42738     include/configs: Use new CONFIG_CMD_* in various E* named board config files.
42739
42740     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42741
42742 commit 3c3227f3c737502311b25b72084573901cbbf17d
42743 Author: Jon Loeliger <jdl@freescale.com>
42744 Date:   Sat Jul 7 20:40:43 2007 -0500
42745
42746     include/configs: Use new CONFIG_CMD_* in various D* named board config files.
42747
42748     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42749
42750 commit 49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c
42751 Author: Jon Loeliger <jdl@freescale.com>
42752 Date:   Thu Jul 5 19:52:35 2007 -0500
42753
42754     include/configs: Use new CONFIG_CMD_* in various C* named board config files.
42755
42756     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42757
42758 commit de8b2a6e33298dcdb10bdda48db25e53c3089eba
42759 Author: Jon Loeliger <jdl@freescale.com>
42760 Date:   Thu Jul 5 19:32:07 2007 -0500
42761
42762     include/configs: Use new CONFIG_CMD_* in various B* named board config files.
42763
42764     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42765
42766 commit 498ff9a228485bd4b9f23d066bada268f9add1dd
42767 Author: Jon Loeliger <jdl@freescale.com>
42768 Date:   Thu Jul 5 19:13:52 2007 -0500
42769
42770     include/configs: Use new CONFIG_CMD_* in various A* named board config files.
42771
42772     Since ADS860.h includes "board/fads/fads.h" with ramifications
42773     on the CONFIG_COMMAND treatment, it too has to be adjusted to
42774     exclude already configured commands in this same commit.
42775
42776     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42777
42778 commit 10e038932f22ee80ebd53de312531e70e6590a2f
42779 Author: Thomas Knobloch <knobloch@siemens.com>
42780 Date:   Fri Jul 6 14:58:39 2007 +0200
42781
42782     [NAND] Bad block skipping for command nboot
42783
42784     The old implementation of command nboot does not support reading the image from
42785     NAND flash with skipping of bad blocks. The patch implements a new version of
42786     the nboot command: by calling nboot.jffs2 from the u-boot command line the
42787     command will load the image from NAND flash with respect to bad blocks (by using
42788     nand_read_opts()). This is similar to e.g. the NAND read command: "nand
42789     read.jffs2 ...".
42790
42791     Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
42792     Signed-off-by: Stefan Roese <sr@denx.de>
42793
42794 commit 334043f601a90ac53e5ecc846fbb73a1ef38cb1f
42795 Author: Stefan Roese <sr@denx.de>
42796 Date:   Fri Jul 6 12:26:51 2007 +0200
42797
42798     ppc4xx: Update lwmon5 default environment
42799
42800     Signed-off-by: Stefan Roese <sr@denx.de>
42801
42802 commit 5d187430a055d62f17ca84d75e7245439d1f7e75
42803 Author: Stefan Roese <sr@denx.de>
42804 Date:   Fri Jul 6 11:48:24 2007 +0200
42805
42806     ppc4xx: Update lwmon5 board
42807
42808     Add unlock=yes environment variable to default variables to unlock
42809     the CFI flash by default.
42810
42811     Signed-off-by: Stefan Roese <sr@denx.de>
42812
42813 commit 6b0a174a1e6f55e1f5a1fbb223cdad7645a4646e
42814 Author: Stefan Roese <sr@denx.de>
42815 Date:   Fri Jul 6 09:45:47 2007 +0200
42816
42817     Fix problem with get/setdcr commands introduced by cfg patches
42818
42819     Signed-off-by: Stefan Roese <sr@denx.de>
42820
42821 commit f1152f8c28db4a22087c21c618a3f7baa48e9a4f
42822 Author: Wolfgang Denk <wd@denx.de>
42823 Date:   Fri Jul 6 02:50:19 2007 +0200
42824
42825     Code cleanup and default config update for STC GP3 SSA board.
42826
42827     Signed-off-by: Wolfgang Denk <wd@denx.de>
42828
42829 commit e4dbe1b215f5c6c462e76909d240bd96472b84de
42830 Author: Wolfgang Denk <wd@denx.de>
42831 Date:   Thu Jul 5 17:56:27 2007 +0200
42832
42833     Fixing some typos etc. introduced mainly by cfg patches.
42834
42835     Signed-off-by: Wolfgang Denk <wd@denx.de>
42836
42837 commit b6b4684546809f89c8bac72863ca49b5fd8ac0cd
42838 Author: Wolfgang Denk <wd@denx.de>
42839 Date:   Thu Jul 5 11:12:16 2007 +0200
42840
42841     Minor coding style cleanup. Update CHANGELOG.
42842
42843 commit dca3b3d6d6396b67e5e84af53452164923c73443
42844 Author: Jon Loeliger <jdl@jdl.com>
42845 Date:   Wed Jul 4 22:33:46 2007 -0500
42846
42847     include/configs: Use new CONFIG_CMD_* in various [v-z]* named board config files.
42848
42849     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42850
42851 commit 6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7
42852 Author: Jon Loeliger <jdl@jdl.com>
42853 Date:   Wed Jul 4 22:33:38 2007 -0500
42854
42855     include/configs: Use new CONFIG_CMD_* in various t* and u* named board config files.
42856
42857     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42858
42859 commit 46da1e96b7db14f4fcd2c92544e7c0862024bc76
42860 Author: Jon Loeliger <jdl@jdl.com>
42861 Date:   Wed Jul 4 22:33:30 2007 -0500
42862
42863     include/configs: Use new CONFIG_CMD_* in various s* named board config files.
42864
42865     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42866
42867 commit 90cc3eb6d2be856d9ddd81436de9cf343bc6b5c8
42868 Author: Jon Loeliger <jdl@jdl.com>
42869 Date:   Wed Jul 4 22:33:23 2007 -0500
42870
42871     include/configs: Use new CONFIG_CMD_* in various q* and r* named board config files.
42872
42873     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42874
42875 commit 26a34560d56a9df5bc2ae23525d9229736134757
42876 Author: Jon Loeliger <jdl@jdl.com>
42877 Date:   Wed Jul 4 22:33:17 2007 -0500
42878
42879     include/configs: Use new CONFIG_CMD_* in various p* named board config files.
42880
42881     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42882
42883 commit a5cb23092a7d31490a33d4ec871468b63babfa3c
42884 Author: Jon Loeliger <jdl@jdl.com>
42885 Date:   Wed Jul 4 22:33:13 2007 -0500
42886
42887     include/configs: Use new CONFIG_CMD_* in various o* named board config files.
42888
42889     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42890
42891 commit 929a2bfd142737003a8fc32e1b86e1f2c1850257
42892 Author: Jon Loeliger <jdl@jdl.com>
42893 Date:   Wed Jul 4 22:33:07 2007 -0500
42894
42895     include/configs: Use new CONFIG_CMD_* in various n* named board config files.
42896
42897     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42898
42899 commit 5dc11a511960d490f7f01ffd746edfe6277f99b0
42900 Author: Jon Loeliger <jdl@jdl.com>
42901 Date:   Wed Jul 4 22:33:01 2007 -0500
42902
42903     include/configs: Use new CONFIG_CMD_* in various m* named board config files.
42904
42905     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42906
42907 commit 9bbb1c0820c1fbd3811ab6ee4ba0f6c6f76b27e4
42908 Author: Jon Loeliger <jdl@jdl.com>
42909 Date:   Wed Jul 4 22:32:57 2007 -0500
42910
42911     include/configs: Use new CONFIG_CMD_* in various l* named board config files.
42912
42913     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42914
42915 commit bc234c129fa04fb9fa33530930e5cbc6084cd47a
42916 Author: Jon Loeliger <jdl@jdl.com>
42917 Date:   Wed Jul 4 22:32:51 2007 -0500
42918
42919     include/configs: Use new CONFIG_CMD_* in various j* and k* named board config files.
42920
42921     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42922
42923 commit 1d2c6bc491969f8d8fb34c8e30e8bea7a2af9c31
42924 Author: Jon Loeliger <jdl@jdl.com>
42925 Date:   Wed Jul 4 22:32:32 2007 -0500
42926
42927     include/configs: Use new CONFIG_CMD_* in various i* named board config files.
42928
42929     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42930
42931 commit 48d5d102a2f2e619c92050b9aedbb69689185bc0
42932 Author: Jon Loeliger <jdl@jdl.com>
42933 Date:   Wed Jul 4 22:32:25 2007 -0500
42934
42935     include/configs: Use new CONFIG_CMD_* in various h* named board config files.
42936
42937     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42938
42939 commit 72eb0efaed7048afcc61fc6f0085c49394b5dc36
42940 Author: Jon Loeliger <jdl@jdl.com>
42941 Date:   Wed Jul 4 22:32:19 2007 -0500
42942
42943     include/configs: Use new CONFIG_CMD_* in various g* named board config files.
42944
42945     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42946
42947 commit 1bec3d3002d3bbbae6f2468a0f7376db1120d33e
42948 Author: Jon Loeliger <jdl@jdl.com>
42949 Date:   Wed Jul 4 22:32:10 2007 -0500
42950
42951     include/configs: Use new CONFIG_CMD_* in various e* named board config files.
42952
42953     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42954
42955 commit ab999ba1b31ebe78dd16374394a55d7c6e5aa6e4
42956 Author: Jon Loeliger <jdl@jdl.com>
42957 Date:   Wed Jul 4 22:32:03 2007 -0500
42958
42959     include/configs: Use new CONFIG_CMD_* in various d* named board config files.
42960
42961     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42962
42963 commit 37e4f24b87fa255ae456d193b7cd23c18dd1d56b
42964 Author: Jon Loeliger <jdl@jdl.com>
42965 Date:   Wed Jul 4 22:31:56 2007 -0500
42966
42967     include/configs: Use new CONFIG_CMD_* in various c* named board config files.
42968
42969     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42970
42971 commit ba2351f9d1e841bd00ea6dad1e3c16d0259ad264
42972 Author: Jon Loeliger <jdl@jdl.com>
42973 Date:   Wed Jul 4 22:31:49 2007 -0500
42974
42975     include/configs: Use new CONFIG_CMD_* in various b* named board config files.
42976
42977     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42978
42979 commit 0b361c916617aff79e647b40f0e43361e0bbaccf
42980 Author: Jon Loeliger <jdl@jdl.com>
42981 Date:   Wed Jul 4 22:31:42 2007 -0500
42982
42983     include/configs: Use new CONFIG_CMD_* in various a* named board config files.
42984
42985     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42986
42987 commit b730cda82e362df6a22f4c59c0a9b97e885b1014
42988 Author: Jon Loeliger <jdl@jdl.com>
42989 Date:   Wed Jul 4 22:31:35 2007 -0500
42990
42991     include/configs: Use new CONFIG_CMD_* in mpc5xx board config files.
42992
42993     Signed-off-by: Jon Loeliger <jdl@freescale.com>
42994
42995 commit d794cfefead5fc177cf4f41164e80382e9c9484a
42996 Author: Jon Loeliger <jdl@jdl.com>
42997 Date:   Wed Jul 4 22:31:15 2007 -0500
42998
42999     include/configs: Use new CONFIG_CMD_* in various 5200 board config files.
43000
43001     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43002
43003 commit ef0df52ab49eea4a30c15087fd27d54c1d946f2c
43004 Author: Jon Loeliger <jdl@jdl.com>
43005 Date:   Wed Jul 4 22:31:07 2007 -0500
43006
43007     include/configs: Use new CONFIG_CMD_* in STx board config files.
43008
43009     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43010
43011 commit 866e3089bfc826bb4dc74637f8aad87a3bab79fc
43012 Author: Jon Loeliger <jdl@jdl.com>
43013 Date:   Wed Jul 4 22:30:58 2007 -0500
43014
43015     include/configs: Use new CONFIG_CMD_* in sbc* board config files.
43016
43017     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43018
43019 commit 2694690e285acaa34922f55f4b5ae030da60c55a
43020 Author: Jon Loeliger <jdl@jdl.com>
43021 Date:   Wed Jul 4 22:30:50 2007 -0500
43022
43023     include/configs: Use new CONFIG_CMD_* in TQM board config files.
43024
43025     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43026
43027 commit 1cc4c458329765b58e584a19821e796b3c10e976
43028 Author: Jon Loeliger <jdl@jdl.com>
43029 Date:   Wed Jul 4 22:30:28 2007 -0500
43030
43031     include/configs: Use new CONFIG_CMD_* in 82xx board config files.
43032
43033     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43034
43035 commit 8ea5499afdaba0acf60923dd99001c399d4a7c8e
43036 Author: Jon Loeliger <jdl@jdl.com>
43037 Date:   Wed Jul 4 22:30:06 2007 -0500
43038
43039     include/configs: Use new CONFIG_CMD_* in 83xx board config files.
43040
43041     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43042
43043 commit b44896215a09c60fa40cae906f7ed207bbc2c492
43044 Author: Sergei Poselenov <sposelenov@emcraft.com>
43045 Date:   Thu Jul 5 08:17:37 2007 +0200
43046
43047     Merged POST framework with the current TOT.
43048
43049     Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
43050
43051 commit b24629fa377214d63bb40d1360e354b6d3e4af56
43052 Author: Jon Loeliger <jdl@jdl.com>
43053 Date:   Wed Jun 13 13:23:15 2007 -0500
43054
43055     mpc86xx: Remove old CFG_CMD_* references.
43056
43057     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43058
43059 commit 46175d9764da129bb4fd341cd2554dc7d55f5b2a
43060 Author: Jon Loeliger <jdl@jdl.com>
43061 Date:   Wed Jun 13 13:22:54 2007 -0500
43062
43063     Add MPC8568MDS to MAKEALL 85xx target.
43064
43065     It was missing from the original port submission.
43066
43067     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43068
43069 commit 2835e518c969e5124ba1174eef3e8375e12fa7d5
43070 Author: Jon Loeliger <jdl@jdl.com>
43071 Date:   Wed Jun 13 13:22:08 2007 -0500
43072
43073     include/configs: Use new CONFIG_CMD_* in 85xx board config files.
43074
43075     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43076
43077 commit 56b304ac2091689506088a9ae67f63fd6300cf16
43078 Author: Jon Loeliger <jdl@jdl.com>
43079 Date:   Wed Jun 13 13:21:37 2007 -0500
43080
43081     Fix #if typo in CONFIG_CMD_* changes.
43082
43083     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43084
43085 commit f780b83316d9af1f61d71cc88b1917b387b9b995
43086 Author: Niklaus Giger <niklausgiger@gmx.ch>
43087 Date:   Wed Jun 27 18:11:38 2007 +0200
43088
43089     resubmit: ppc4xx: Remove sequoia/sequioa.h. Cleanup ppc440.h for PPC440EPX
43090
43091     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
43092
43093 commit 04e6c38b766eaa2f3287561563c9e215e0c3a0d4
43094 Author: Stefan Roese <sr@denx.de>
43095 Date:   Wed Jul 4 10:06:30 2007 +0200
43096
43097     ppc4xx: Update lwmon5 board
43098
43099     - Add optional ECC generation routine to preserve existing
43100       RAM values. This is needed for the Linux log-buffer support
43101     - Add optional DDR2 setup with CL=4
43102     - GPIO50 not used anymore
43103     - Lime register setup added
43104
43105     Signed-off-by: Stefan Roese <sr@denx.de>
43106
43107 commit 6810a34677dbc446334f5e451f1682426dd33b49
43108 Author: Grant Likely <grant.likely@secretlab.ca>
43109 Date:   Tue Jul 3 00:17:28 2007 -0600
43110
43111     Fix Makefile to use $(MKCONFIG) macro for all board ports
43112
43113     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43114
43115 commit 90b1b2d69b9396ff2f01165ebc16c9a594eb5926
43116 Author: Grant Likely <grant.likely@secretlab.ca>
43117 Date:   Tue Jul 3 00:17:28 2007 -0600
43118
43119     Fix Makefile to use $(MKCONFIG) macro for all board ports
43120
43121     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43122
43123 commit 057004f4a4863554d56cc56268bfa7c7d9738e27
43124 Author: Grant Likely <grant.likely@secretlab.ca>
43125 Date:   Tue Jul 3 00:34:49 2007 -0600
43126
43127     Correct fixup relocation for mpc83xx
43128
43129     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43130
43131 commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96
43132 Author: Grant Likely <grant.likely@secretlab.ca>
43133 Date:   Tue Jul 3 00:34:44 2007 -0600
43134
43135     Correct fixup relocation for mpc8260
43136
43137     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43138
43139 commit f3a52fe05923935db86985daf9438e2f70ac39aa
43140 Author: Grant Likely <grant.likely@secretlab.ca>
43141 Date:   Tue Jul 3 00:34:39 2007 -0600
43142
43143     Correct fixup relocation for mpc824x
43144
43145     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43146
43147 commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00
43148 Author: Grant Likely <grant.likely@secretlab.ca>
43149 Date:   Tue Jul 3 00:34:34 2007 -0600
43150
43151     Correct fixup relocation for mpc8220
43152
43153     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43154
43155 commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90
43156 Author: Grant Likely <grant.likely@secretlab.ca>
43157 Date:   Tue Jul 3 00:34:29 2007 -0600
43158
43159     Correct fixup relocation for MPC5xxx
43160
43161     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43162
43163 commit 3649cd99ba815b6601868735765602f00ef3692b
43164 Author: Grant Likely <grant.likely@secretlab.ca>
43165 Date:   Tue Jul 3 00:34:24 2007 -0600
43166
43167     Correct relocation fixup for mpc5xx
43168
43169     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43170
43171 commit f82b3b6304b620ef7e28bfaa1ea887a2ad2fa325
43172 Author: Grant Likely <grant.likely@secretlab.ca>
43173 Date:   Tue Jul 3 00:34:19 2007 -0600
43174
43175     Don't set gd->reloc_off if relocation of .fixup works correctly
43176
43177     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43178
43179 commit e1a6144c32dc7de73bcdd33995de0148cbd0bd28
43180 Author: Grant Likely <grant.likely@secretlab.ca>
43181 Date:   Tue Jul 3 00:34:14 2007 -0600
43182
43183     Remove obsolete mpc83xx linker scripts
43184
43185     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43186
43187 commit 17e32fc3908bf7089d3f16fc82a1c3ae674dd65b
43188 Author: Grant Likely <grant.likely@secretlab.ca>
43189 Date:   Tue Jul 3 00:34:09 2007 -0600
43190
43191     Consolidate mpc8260 linker scripts
43192
43193     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43194
43195 commit af7d38b393690d7eeaf418ac85a1e831a50d5fd0
43196 Author: Grant Likely <grant.likely@secretlab.ca>
43197 Date:   Tue Jul 3 00:34:04 2007 -0600
43198
43199     Remove obsolete mpc824x linker scripts
43200
43201     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43202
43203 commit f94a3aecebc40ca0939c7d66d010009cf51be9e2
43204 Author: Grant Likely <grant.likely@secretlab.ca>
43205 Date:   Tue Jul 3 00:33:59 2007 -0600
43206
43207     Remove obsolete mpc824x linker scripts (3 of 4)
43208
43209     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43210
43211 commit a71c084f3ac7fedf144537db2b2da47323068833
43212 Author: Grant Likely <grant.likely@secretlab.ca>
43213 Date:   Tue Jul 3 00:33:53 2007 -0600
43214
43215     Remove obsolete mpc824x linker scripts (2 of 4)
43216
43217     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43218
43219 commit f670a15468d1365241d40022b9408e1004181f5e
43220 Author: Grant Likely <grant.likely@secretlab.ca>
43221 Date:   Tue Jul 3 00:33:48 2007 -0600
43222
43223     Remove obsolete mpc824x linker scripts (1 of 4)
43224
43225     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43226
43227 commit 09555bd45a04c0e54f172528d21bc18896550d28
43228 Author: Grant Likely <grant.likely@secretlab.ca>
43229 Date:   Tue Jul 3 00:33:43 2007 -0600
43230
43231     Remove obsolete mpc8220 linker scripts
43232
43233     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43234
43235 commit 5efb992f046e51225c93d52f80fecbe433abd789
43236 Author: Grant Likely <grant.likely@secretlab.ca>
43237 Date:   Tue Jul 3 00:33:38 2007 -0600
43238
43239     Remove obsolete mpc5xxx linker scripts (3 of 3)
43240
43241     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43242
43243 commit 07c13dfef65b31647e69d8b61daa1eec598add1a
43244 Author: Grant Likely <grant.likely@secretlab.ca>
43245 Date:   Tue Jul 3 00:33:33 2007 -0600
43246
43247     Remove obsolete mpc5xxx linker scripts (2 of 3)
43248
43249     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43250
43251 commit b4f67513a624ce85866c66c575bd2d9d7977d7f0
43252 Author: Grant Likely <grant.likely@secretlab.ca>
43253 Date:   Tue Jul 3 00:33:28 2007 -0600
43254
43255     Remove obsolete mpc5xxx linker scripts (1 of 3)
43256
43257     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43258
43259 commit b7d8e05f8675249b5f208aa73babeed384a4519d
43260 Author: Grant Likely <grant.likely@secretlab.ca>
43261 Date:   Tue Jul 3 00:33:23 2007 -0600
43262
43263     Remove obsolete mpc5xx linker scripts
43264
43265     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43266
43267 commit 416a0b6d40f6eba3a2fc547253c16bda28d922f7
43268 Author: Grant Likely <grant.likely@secretlab.ca>
43269 Date:   Tue Jul 3 00:33:18 2007 -0600
43270
43271     Consolidate mpc83xx linker scripts
43272
43273     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43274
43275 commit 5fc59175b92883ed5d2666a04e6bc49e70a4a365
43276 Author: Grant Likely <grant.likely@secretlab.ca>
43277 Date:   Tue Jul 3 00:33:13 2007 -0600
43278
43279     Consolidate mpc8260 linker scripts
43280
43281     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43282
43283 commit 737f9eb02d7335df2b3e4d7a4d3348784d1da207
43284 Author: Grant Likely <grant.likely@secretlab.ca>
43285 Date:   Tue Jul 3 00:33:08 2007 -0600
43286
43287     Consolidate mpc824x linker scripts
43288
43289     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43290
43291 commit 9c757b789a59a855db57b448dd825329c4e9c4a0
43292 Author: Grant Likely <grant.likely@secretlab.ca>
43293 Date:   Tue Jul 3 00:33:03 2007 -0600
43294
43295     Consolidate mpc8220 linker scripts
43296
43297     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43298
43299 commit d181c9a15cd41863fe24840d17848429f27d3c8c
43300 Author: Grant Likely <grant.likely@secretlab.ca>
43301 Date:   Tue Jul 3 00:32:58 2007 -0600
43302
43303     Consolidate mpc5xxx linker scripts
43304
43305     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43306
43307 commit 287ac924adb7291bebe5086652a362a30ab28b13
43308 Author: Grant Likely <grant.likely@secretlab.ca>
43309 Date:   Tue Jul 3 00:32:53 2007 -0600
43310
43311     Consolidate mpc5xx linker scripts
43312
43313     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43314
43315 commit 52b8704d0245e589f86d462e9ec25aeb7ecbbbdd
43316 Author: Wolfgang Denk <wd@denx.de>
43317 Date:   Wed Jul 4 00:43:53 2007 +0200
43318
43319     Fix a few file permission problems.
43320
43321     Signed-off-by: Wolfgang Denk <wd@denx.de>
43322
43323 commit 78e0cf2de7be7f1eaeeb622eb61fd50e4d5e205c
43324 Author: Wolfgang Denk <wd@denx.de>
43325 Date:   Wed Jul 4 00:38:38 2007 +0200
43326
43327     Minor coding style cleanup. Rebuild CHANGELOG file.
43328
43329 commit 2f9c19e496acb6bb50d9299e1aab377625d48c38
43330 Author: Jon Loeliger <jdl@jdl.com>
43331 Date:   Mon Jun 11 19:03:44 2007 -0500
43332
43333     configs/ mpc86xx: Rewrite command line options using new CONFIG_CMD-* style.
43334
43335     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43336
43337 commit 602ad3b33d9ceef83dbab46be68646d645d637ee
43338 Author: Jon Loeliger <jdl@jdl.com>
43339 Date:   Mon Jun 11 19:03:39 2007 -0500
43340
43341     README: Rewrite command line config to use CONFIG_CMD_* names.
43342
43343     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43344
43345 commit 72a074cec68e5bad60d63206c050974e08afd804
43346 Author: Jon Loeliger <jdl@jdl.com>
43347 Date:   Mon Jun 11 19:03:34 2007 -0500
43348
43349     include/ non-config: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
43350
43351     This is a compatibility step that allows both the older form
43352     and the new form to co-exist for a while until the older can
43353     be removed entirely.
43354
43355     All transformations are of the form:
43356     Before:
43357         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
43358     After:
43359         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
43360
43361     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43362
43363 commit 5fcf543e0b6628c76ff48705b1b0566bfd11507b
43364 Author: Jon Loeliger <jdl@jdl.com>
43365 Date:   Mon Jun 11 19:03:28 2007 -0500
43366
43367     tools/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
43368
43369     This is a compatibility step that allows both the older form
43370     and the new form to co-exist for a while until the older can
43371     be removed entirely.
43372
43373     All transformations are of the form:
43374     Before:
43375         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
43376     After:
43377         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
43378
43379     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43380
43381 commit 9107ebe0d352420895ab69b715697bdebc8caf50
43382 Author: Jon Loeliger <jdl@jdl.com>
43383 Date:   Mon Jun 11 19:03:23 2007 -0500
43384
43385     board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
43386
43387     This is a compatibility step that allows both the older form
43388     and the new form to co-exist for a while until the older can
43389     be removed entirely.
43390
43391     All transformations are of the form:
43392     Before:
43393         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
43394     After:
43395         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
43396
43397     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43398
43399 commit 5e378003d592ea828ec69d6defcd4de79096dd5c
43400 Author: Jon Loeliger <jdl@jdl.com>
43401 Date:   Mon Jun 11 19:03:19 2007 -0500
43402
43403     board/[Ma-i]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
43404
43405     This is a compatibility step that allows both the older form
43406     and the new form to co-exist for a while until the older can
43407     be removed entirely.
43408
43409     All transformations are of the form:
43410     Before:
43411         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
43412     After:
43413         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
43414
43415     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43416
43417 commit 737184114ec9c9e0ab94d6713536126073bd2472
43418 Author: Jon Loeliger <jdl@jdl.com>
43419 Date:   Mon Jun 11 19:03:15 2007 -0500
43420
43421     cpu/ non-mpc*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
43422
43423     This is a compatibility step that allows both the older form
43424     and the new form to co-exist for a while until the older can
43425     be removed entirely.
43426
43427     All transformations are of the form:
43428     Before:
43429         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
43430     After:
43431         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
43432
43433     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43434
43435 commit f48070fe5fe440dfb5ee5268c920de70e48ea327
43436 Author: Jon Loeliger <jdl@jdl.com>
43437 Date:   Mon Jun 11 19:03:08 2007 -0500
43438
43439     cpu/mpc*/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
43440
43441     This is a compatibility step that allows both the older form
43442     and the new form to co-exist for a while until the older can
43443     be removed entirely.
43444
43445     All transformations are of the form:
43446     Before:
43447         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
43448     After:
43449         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
43450
43451     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43452
43453 commit 0c505db0a0dc1f670b13ce3b4d3fbf1ec5b3cbd2
43454 Author: Jon Loeliger <jdl@jdl.com>
43455 Date:   Mon Jun 11 19:03:03 2007 -0500
43456
43457     lib_*/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
43458
43459     This is a compatibility step that allows both the older form
43460     and the new form to co-exist for a while until the older can
43461     be removed entirely.
43462
43463     All transformations are of the form:
43464     Before:
43465         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
43466     After:
43467         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
43468
43469     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43470
43471 commit 73f032021ec5f13cda8faa4e34b6de80960eb86f
43472 Author: Jon Loeliger <jdl@jdl.com>
43473 Date:   Mon Jun 11 19:02:58 2007 -0500
43474
43475     lib_ppc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
43476
43477     This is a compatibility step that allows both the older form
43478     and the new form to co-exist for a while until the older can
43479     be removed entirely.
43480
43481     All transformations are of the form:
43482     Before:
43483         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
43484     After:
43485         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
43486
43487     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43488
43489 commit 98b79003c21c2578206003256de4e781d6b36ca8
43490 Author: Jon Loeliger <jdl@jdl.com>
43491 Date:   Mon Jun 11 19:02:53 2007 -0500
43492
43493     rtc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
43494
43495     This is a compatibility step that allows both the older form
43496     and the new form to co-exist for a while until the older can
43497     be removed entirely.
43498
43499     All transformations are of the form:
43500     Before:
43501         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
43502     After:
43503         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
43504
43505     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43506
43507 commit 6e2115acb6a892d53a6881bf253ae41d3df39156
43508 Author: Jon Loeliger <jdl@jdl.com>
43509 Date:   Mon Jun 11 19:02:49 2007 -0500
43510
43511     net/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
43512
43513     This is a compatibility step that allows both the older form
43514     and the new form to co-exist for a while until the older can
43515     be removed entirely.
43516
43517     All transformations are of the form:
43518     Before:
43519         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
43520     After:
43521         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
43522
43523     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43524
43525 commit 45cdb9b72c94655c7308b464a2666057c0b286e0
43526 Author: Jon Loeliger <jdl@jdl.com>
43527 Date:   Mon Jun 11 19:02:34 2007 -0500
43528
43529     disk/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
43530
43531     This is a compatibility step that allows both the older form
43532     and the new form to co-exist for a while until the older can
43533     be removed entirely.
43534
43535     All transformations are of the form:
43536     Before:
43537         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
43538     After:
43539         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
43540
43541     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43542
43543 commit 4e109ae98294a5ca7ff848b7652c7bfd4023a94a
43544 Author: Jon Loeliger <jdl@jdl.com>
43545 Date:   Mon Jun 11 19:02:20 2007 -0500
43546
43547     fs/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
43548
43549     This is a compatibility step that allows both the older form
43550     and the new form to co-exist for a while until the older can
43551     be removed entirely.
43552
43553     All transformations are of the form:
43554     Before:
43555         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
43556     After:
43557         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
43558
43559     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43560
43561 commit d5be43de93ff905c465e509d45a3164ef48d26e7
43562 Author: Jon Loeliger <jdl@jdl.com>
43563 Date:   Mon Jun 11 19:02:10 2007 -0500
43564
43565     drivers/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
43566
43567     This is a compatibility step that allows both the older form
43568     and the new form to co-exist for a while until the older can
43569     be removed entirely.
43570
43571     All transformations are of the form:
43572     Before:
43573         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
43574     After:
43575         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
43576
43577     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43578
43579 commit b453960d4fdb87b3970d96119b90df2ed024fc4a
43580 Author: Jon Loeliger <jdl@jdl.com>
43581 Date:   Mon Jun 11 19:02:05 2007 -0500
43582
43583     common/ non-cmd: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
43584
43585     This is a compatibility step that allows both the older form
43586     and the new form to co-exist for a while until the older can
43587     be removed entirely.
43588
43589     All transformations are of the form:
43590     Before:
43591         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
43592     After:
43593         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
43594
43595     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43596
43597 commit 65c450b47a62659d522cfa8f4fa1e4e5c60dccd0
43598 Author: Jon Loeliger <jdl@jdl.com>
43599 Date:   Mon Jun 11 19:01:54 2007 -0500
43600
43601     common/cmd_[i-z]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
43602
43603     This is a compatibility step that allows both the older form
43604     and the new form to co-exist for a while until the older can
43605     be removed entirely.
43606
43607     All transformations are of the form:
43608     Before:
43609         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
43610     After:
43611         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
43612
43613     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43614
43615 commit a76adc8142c1d956385a109e0b70f9319ede4d66
43616 Author: Jon Loeliger <jdl@jdl.com>
43617 Date:   Mon Jun 11 19:01:43 2007 -0500
43618
43619     common/cmd_[a-f]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
43620
43621     This is a compatibility step that allows both the older form
43622     and the new form to co-exist for a while until the older can
43623     be removed entirely.
43624
43625     All transformations are of the form:
43626     Before:
43627         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
43628     After:
43629         #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
43630
43631     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43632
43633 commit ec63b10b61fd68238d4c15c1cd04c0b38228e2c1
43634 Author: Jon Loeliger <jdl@jdl.com>
43635 Date:   Mon Jun 11 19:01:34 2007 -0500
43636
43637     Introduce initial versions of new Command Config files.
43638
43639     Derive three new files from cmd_confdefs.h:
43640         config_bootp.h - Has BOOTP related config options, not commands
43641         config_cmd_all.h - Has a CONFIG_CMD_* definition for every command
43642         config_cmd_default.h - Has a CONFIG_CMD_* definition for default cmds.
43643
43644     For now, include "config_bootp.h" for compatability until all
43645     users of it directly include it properly.
43646
43647     Signed-off-by: Jon Loeliger <jdl@freescale.com>
43648
43649 commit 1f2a05898658900dc5717761e27abf2052e67e13
43650 Author: Mushtaq Khan <mushtaqk_921@yahoo.co.in>
43651 Date:   Sat Jun 30 18:50:48 2007 +0200
43652
43653     Fix S-ATA support.
43654
43655     Signed-off-by: mushtaq khan <mushtaqk_921@yahoo.co.in>
43656
43657 commit a5d71e290f3673269be8eefb4ec44f53412f9461
43658 Author: Heiko Schocher <hs@pollux.denx.de>
43659 Date:   Mon Jun 25 19:11:37 2007 +0200
43660
43661     [PCS440EP]  get rid of CONFIG_PPC4xx_USE_SPD_DDR_INIT_HANG
43662
43663     Signed-off-by: Heiko Schocher <hs@denx.de>
43664
43665 commit a1bd6200eccd3a02040a955d5f43d3ee1fc9f93b
43666 Author: Niklaus Giger <niklaus.giger@nestal.com>
43667 Date:   Mon Jun 25 17:03:13 2007 +0200
43668
43669     ppc4xx: PPC440EPx Emit DDR0 registers on machine check interrupt
43670
43671     This patch prints the DDR status registers upon machine check
43672     interrupt on the 440EPx/GRx. This can be useful especially when
43673     ECC support is enabled.
43674
43675     I added some small changes to the original patch from Niklaus to
43676     make it compile clean.
43677
43678     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
43679     Signed-off-by: Stefan Roese <sr@denx.de>
43680
43681 commit 807018fb7faceb429ce0cb47baa2073746b33a4e
43682 Author: Niklaus Giger <niklaus.giger@nestal.com>
43683 Date:   Mon Jun 25 16:50:55 2007 +0200
43684
43685     ppc4xx: Fix O=buildir builds
43686
43687     This patch fixes the problem to assemble cpu/ppc4xx/start.S
43688     experienced last week where building failed having specified
43689     O=../build.sequoia.
43690
43691     Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
43692
43693 commit 466fff1a7bb5fe764a06450626f6098219f446b8
43694 Author: Stefan Roese <sr@denx.de>
43695 Date:   Mon Jun 25 15:57:39 2007 +0200
43696
43697     ppc4xx: Add pci_pre_init() for 405 boards
43698
43699     This patch removes the CFG_PCI_PRE_INIT option completely, since
43700     it's not needed anymore with the patch from Matthias Fuchs with
43701     the "weak" pci_pre_init() implementation.
43702
43703     Signed-off-by: Stefan Roese <sr@denx.de>
43704
43705 commit 6f35c53166213c24a5a0e2390ed861136ff73870
43706 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43707 Date:   Sun Jun 24 17:41:21 2007 +0200
43708
43709     ppc4xx: Maintenance patch for esd's CPCI405 derivats
43710
43711     -add pci_pre_init() for pci interrupt fixup code
43712     -disable phy sleep mode via reset_phy() function
43713     -use correct io accessors
43714     -cleanup
43715
43716     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43717
43718 commit 5a1c9ff0c44305b57cb4d8f9369bba90bcf0e1f8
43719 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43720 Date:   Sun Jun 24 17:23:41 2007 +0200
43721
43722     ppc4xx: Add pci_pre_init() for 405 boards
43723
43724     This patch adds support for calling a plattform dependant
43725     pci_pre_init() function for 405 boards. This can be used to
43726     move the current pci_405gp_fixup_irq() function into the
43727     board code.
43728
43729     This patch also makes the CFG_PCI_PRE_INIT define obsolete.
43730     A default function with 'weak' attribute is used when
43731     a board specific pci_pre_init() is not implemented.
43732
43733     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
43734
43735 commit 1636d1c8529c006d106287cfbc20cd0a246fe1cb
43736 Author: Wolfgang Denk <wd@denx.de>
43737 Date:   Fri Jun 22 23:59:00 2007 +0200
43738
43739     Coding stylke cleanup; rebuild CHANGELOG
43740
43741 commit 2dc64451b4c08ffd619372abfdc2506a2e2363b9
43742 Author: Igor Lisitsin <igor@emcraft.com>
43743 Date:   Wed Apr 18 14:55:19 2007 +0400
43744
43745     Adapt log buffer code to support Linux 2.6
43746
43747     A new environment variable, "logversion", selects the log buffer
43748     behaviour. If it is not set or set to a value other than 2, then the
43749     old, Linux 2.4.4, behaviour is selected.
43750
43751     Signed-off-by: Igor Lisitsin <igor@emcraft.com>
43752     --
43753
43754 commit a11e06965ec91270c51853407ff1261d3c740386
43755 Author: Igor Lisitsin <igor@emcraft.com>
43756 Date:   Wed Mar 28 19:06:19 2007 +0400
43757
43758     Extend POST support for PPC440
43759
43760     Added memory, CPU, UART, I2C and SPR POST tests for PPC440.
43761
43762     Signed-off-by: Igor Lisitsin <igor@emcraft.com>
43763     --
43764
43765 commit 566a494f592ae3b3c0785d90d4e1ba45574880c4
43766 Author: Heiko Schocher <hs@pollux.denx.de>
43767 Date:   Fri Jun 22 19:11:54 2007 +0200
43768
43769     [PCS440EP]      upgrade the PCS440EP board:
43770                     - Show on the Status LEDs, some States of the board.
43771                     - Get the MAC addresses from the EEProm
43772                     - use PREBOOT
43773                     - use the CF on the board.
43774                     - check the U-Boot image in the Flash with a SHA1
43775                       checksum.
43776                     - use dynamic TLB entries generation for the SDRAM
43777
43778     Signed-off-by: Heiko Schocher <hs@denx.de>
43779
43780 commit 3a1f5c81b0b9557817a789bece839905581c2205
43781 Author: Stefan Roese <sr@denx.de>
43782 Date:   Fri Jun 22 16:58:40 2007 +0200
43783
43784     ppc4xx: Fix problem with extended program_tlb() funtion
43785
43786     The recently extended program_tlb() function had a problem when
43787     multiple TLB's had to be setup (for example with 512MB of SDRAM). The
43788     virtual address was not incremented. This patch fixes this issue
43789     and is tested on Katmai with 512MB SDRAM.
43790
43791     Signed-off-by: Stefan Roese <sr@denx.de>
43792
43793 commit 02032e8f14751a1a751b09240a4f1cf9f8a2077f
43794 Author: Rafal Jaworowski <raj@semihalf.com>
43795 Date:   Fri Jun 22 14:58:04 2007 +0200
43796
43797     [ppc] Fix build breakage for all non-4xx PowerPC variants.
43798
43799     - adapt to the more generic EXCEPTION_PROLOG and CRIT_EXCEPTION macros
43800     - minor 4xx cleanup
43801
43802 commit d677b32855f577ae2690dcd64a172cdd706e0ffc
43803 Author: Mike Frysinger <vapier@gentoo.org>
43804 Date:   Fri Jun 22 10:34:12 2007 +0200
43805
43806     [patch] add nand_init() prototype to nand.h
43807
43808     since nand_init() is expected to be called by other parts of u-boot, there
43809     should be a prototype for it in nand.h
43810
43811     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
43812     Signed-off-by: Stefan Roese <sr@denx.de>
43813
43814 commit 83b4cfa3d629dff0264366263c5e94d9a50ad80b
43815 Author: Wolfgang Denk <wd@denx.de>
43816 Date:   Wed Jun 20 18:14:24 2007 +0200
43817
43818     Coding style cleanup. Refresh CHANGELOG.
43819
43820 commit b3f9ec86e388207fd03dcdf7b145b9ed080bf024
43821 Author: Stefan Roese <sr@denx.de>
43822 Date:   Tue Jun 19 17:22:44 2007 +0200
43823
43824     ppc4xx: Add bootstrap command for AMCC Sequoia (440EPx) eval board
43825
43826     This patch adds a board command to configure the I2C bootstrap EEPROM
43827     values. Right now 533 and 667MHz are supported for booting either via NOR
43828     or NAND FLASH. Here the usage:
43829
43830     => bootstrap 533 nor        ;to configure the board for 533MHz NOR booting
43831     => bootstrap 667 nand       ;to configure the board for 667MHz NNAND booting
43832
43833     Signed-off-by: Stefan Roese <sr@denx.de>
43834
43835 commit df8a24cdd30151505cf57bbee5289e91bf53bd1b
43836 Author: Stefan Roese <sr@denx.de>
43837 Date:   Tue Jun 19 16:42:31 2007 +0200
43838
43839     [ppc4xx] Fix problem with NAND booting on AMCC Acadia
43840
43841     The latest changes showed a problem with the location of the NAND-SPL
43842     image in the OCM and the init-data area (incl. cache). This patch
43843     fixes this problem.
43844
43845     Signed-off-by: Stefan Roese <sr@denx.de>
43846
43847 commit 86ba99e34194394052d24c04dc40d1263d29a26f
43848 Author: Stefan Roese <sr@denx.de>
43849 Date:   Tue Jun 19 16:40:58 2007 +0200
43850
43851     [ppc4xx] Change board/amcc/acadia/cpr.c to pll.c
43852
43853     Signed-off-by: Stefan Roese <sr@denx.de>
43854
43855 commit 8e585f02f82c17cc66cd229dbf0fd3066bbbf658
43856 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43857 Date:   Mon Jun 18 13:50:13 2007 -0500
43858
43859     Added M5329AFEE and M5329BFEE Platforms
43860
43861     Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
43862     drivers/serial,  immap_5329.h, m5329.h, mcfrtc.h,
43863     include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
43864     rtc/mcfrtc.c
43865
43866     Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
43867     common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
43868     include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
43869     include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
43870     include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
43871     lib_m68k/time.c, net/eth.c and rtc/Makefile
43872
43873     Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
43874
43875 commit 093172f08d6afb3f34d8a2f26ee0ee874261cf27
43876 Author: Michal Simek <monstr@monstr.eu>
43877 Date:   Sun Jun 17 19:04:11 2007 +0200
43878
43879     [fix] email reparation
43880
43881 commit 3666afffe7baf859c6ae0ce2bebbc8ab7e512ddc
43882 Author: Michal Simek <monstr@monstr.eu>
43883 Date:   Sun Jun 17 19:03:21 2007 +0200
43884
43885     [FIX] fix microblaze file permitission
43886
43887 commit e73846b7cf1e29ae635bf9bb5570269663df2ee5
43888 Author: Stefan Roese <sr@denx.de>
43889 Date:   Fri Jun 15 11:33:41 2007 +0200
43890
43891     [ppc4xx] Change lwmon5 port to work with recent 440 exception rework
43892
43893     Now CONFIG_440 has to be defined in all PPC440 board config files.
43894
43895     Signed-off-by: Stefan Roese <sr@denx.de>
43896
43897 commit efa35cf12d914d4caba942acd5a6c45f217de302
43898 Author: Grzegorz Bernacki <gjb@semihalf.com>
43899 Date:   Fri Jun 15 11:19:28 2007 +0200
43900
43901     ppc4xx: Clean up 440 exceptions handling
43902
43903     - Introduced dedicated switches for building 440 and 405 images required
43904       for 440-specific machine instructions like 'rfmci' etc.
43905
43906     - Exception vectors moved to the proper location (_start moved away from
43907       the critical exception handler space, which it occupied)
43908
43909     - CriticalInput now serviced (with default handler)
43910
43911     - MachineCheck properly serviced (added a dedicated handler and return
43912       subroutine)
43913
43914     - Overall cleanup of exceptions declared with STD_EXCEPTION macro (unused,
43915       unhandled and those not relevant for 4xx were eliminated)
43916
43917     - Eliminated Linux leftovers, removed dead code
43918
43919     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
43920     Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
43921     Signed-off-by: Stefan Roese <sr@denx.de>
43922
43923 commit b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2
43924 Author: Stefan Roese <sr@denx.de>
43925 Date:   Fri Jun 15 08:18:01 2007 +0200
43926
43927     [ppc4xx] Add initial lwmon5 board support
43928
43929     This patch adds initial support for the Liebherr lwmon5 board euqipped
43930     with an AMCC 440EPx PowerPC.
43931
43932     Signed-off-by: Stefan Roese <sr@denx.de>
43933
43934 commit 85f737376d5ff3d5f0d45a8b657686326d175307
43935 Author: Stefan Roese <sr@denx.de>
43936 Date:   Fri Jun 15 07:39:43 2007 +0200
43937
43938     [ppc4xx] Extend 44x GPIO setup with default output state
43939
43940     The board config array CFG_440_GPIO_TABLE for the ppc440 GPIO setup
43941     is extended with the default GPIO output state (level).
43942
43943     Signed-off-by: Stefan Roese <sr@denx.de>
43944
43945 commit dbca208518e5e7f01a6420588d1cd6e60db74c2b
43946 Author: Stefan Roese <sr@denx.de>
43947 Date:   Thu Jun 14 11:14:32 2007 +0200
43948
43949     [ppc4xx] Extend program_tlb() with virtual & physical addresses
43950
43951     Now program_tlb() allows to program a TLB (or multiple) with
43952     different virtual and physical addresses. With this change, now one
43953     physical region (e.g. SDRAM) can be mapped 2 times, once with caches
43954     diabled and once with caches enabled.
43955
43956     Signed-off-by: Stefan Roese <sr@denx.de>
43957
43958 commit 9912121f7ed804ea58fd62f3f230b5dcfc357d88
43959 Author: Detlev Zundel <dzu@denx.de>
43960 Date:   Wed May 23 19:02:41 2007 +0200
43961
43962     Change 'repeatable' attribute of some commands to sensible values.
43963
43964     Most prominently this changes 'erase' to be non-repeatable.
43965
43966     Signed-off-by: Detlev Zundel <dzu@denx.de>
43967
43968 commit 5afb202093f6a001797db92cf695b93a70ea9ab4
43969 Author: Detlev Zundel <dzu@denx.de>
43970 Date:   Wed May 23 18:47:48 2007 +0200
43971
43972     Fix 'run' not to continue after interrupted command
43973
43974     Signed-off-by: Detlev Zundel <dzu@denx.de>
43975
43976 commit 9b7464a2c88614e1061f509c48930a3d240d1a35
43977 Author: Jason Jin <Jason.jin@freescale.com>
43978 Date:   Mon Jun 11 15:14:24 2007 +0200
43979
43980     USB: This patch fix readl in ohci swap reg access.
43981
43982     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
43983
43984 commit 8f8416fada9faf94b9a92f21fe6000643cb521d5
43985 Author: Bartlomiej Sieka <tur@semihalf.com>
43986 Date:   Fri Jun 8 14:52:22 2007 +0200
43987
43988     TQM5200: Add Flat Device Tree support, update default env. accordingly.
43989
43990     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
43991     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
43992
43993 commit 9045f33c023f698660a2e45d1b2194c0711abebc
43994 Author: Wolfgang Denk <wd@denx.de>
43995 Date:   Fri Jun 8 10:24:58 2007 +0200
43996
43997     Fix config problems on SC3 board; make ide_reset_timeout work.
43998
43999 commit fba3fb0449b8a54542aed1e729de76e7f5a2ff1b
44000 Author: Benoît Monin <bmonin@adeneo.eu>
44001 Date:   Fri Jun 8 09:55:24 2007 +0200
44002
44003     [PATCH] fix gpio setting when using CFG_440_GPIO_TABLE
44004
44005     Set the correct value in GPIOx_TCR when configuring the gpio
44006     with CFG_440_GPIO_TABLE.
44007
44008     Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
44009     Signed-off-by: Stefan Roese <sr@denx.de>
44010
44011 commit f539edc076cfe52bff919dd512ba8d7af0e22092
44012 Author: Vadim Bendebury <vbendeb@google.com>
44013 Date:   Thu May 24 15:52:25 2007 -0700
44014
44015     cosmetic changes to bcm570x driver
44016
44017     This is a cosmetic only changes submission.
44018     It affects files relevant to bcm570x driver.
44019     the commands used to generate this change was
44020
44021     cd drivers
44022     Lindent -pcs -l80  bcm570x.c   bcm570x_lm.h   bcm570x_mm.h  tigon3.c  tigon3.h
44023
44024     The BMW target (the only one using this chip so far) builds cleanly, the
44025     `before and after' generated object files for drivers/bcm570x.c and
44026     drivers/tigon3.o are identical as reported by objdump -d
44027
44028     Signed-off-by: Vadim Bendebury <vbendeb@google.com>
44029     Signed-off-by: Ben Warren <bwarren@qstreams.com>
44030
44031 commit 725671ccd2cd04c9ebc50c9e5a94dd8cbade66b7
44032 Author: Wolfgang Denk <wd@denx.de>
44033 Date:   Wed Jun 6 16:26:56 2007 +0200
44034
44035     Coding Style cleanup; generate new CHANGELOG file.
44036
44037     Signed-off-by: Wolfgang Denk <wd@denx.de>
44038
44039 commit 19d763c35e0b5568eaf0b8adbf7a68ccfe7fa243
44040 Author: Markus Klotzbuecher <mk@denx.de>
44041 Date:   Wed Jun 6 11:49:44 2007 +0200
44042
44043     TRAB, USB: update trab board configuration for use of generic ohci driver
44044
44045 commit dace45acd1c1357daa9322099d07c9a9e08b0024
44046 Author: Markus Klotzbuecher <mk@denx.de>
44047 Date:   Wed Jun 6 11:49:43 2007 +0200
44048
44049     USB: ohci fixes and cleanup for ppc4xx and yosemite board.
44050
44051 commit 72657570b61635c74fa0c3f0e9e7d0671a9d08df
44052 Author: Markus Klotzbuecher <mk@denx.de>
44053 Date:   Wed Jun 6 11:49:43 2007 +0200
44054
44055     USB: ohci fixes and cleanup for mpc5xxx and IceCube board config
44056
44057 commit fc43be478f2aa37ce38acd85355038866e4162af
44058 Author: Markus Klotzbuecher <mk@denx.de>
44059 Date:   Wed Jun 6 11:49:35 2007 +0200
44060
44061     USB/OHCI: endianness cleanup in the generic ohci driver
44062
44063 commit c440bfe6d6d92d66478a7e84402b31f48413617b
44064 Author: Stefan Roese <sr@denx.de>
44065 Date:   Wed Jun 6 11:42:13 2007 +0200
44066
44067     ppc4xx: Add NAND booting support for AMCC Acadia (405EZ) eval board
44068
44069     This patch adds NAND booting support for the AMCC Acadia eval board.
44070
44071     Please make sure to configure jumper J7 to position 2-3 when booting
44072     from NOR, and to position 1-2 when booting for NAND.
44073
44074     I also added a board command to configure the I2C bootstrap EEPROM
44075     values. Right now only 267MHz is support for booting either via NOR
44076     or NAND FLASH. Here the usage:
44077
44078     => bootstrap 267 nor        ;to configure the board for 267MHz NOR booting
44079     => bootstrap 267 nand       ;to configure the board for 267MHz NNAND booting
44080
44081     Signed-off-by: Stefan Roese <sr@denx.de>
44082
44083 commit 18135125f909948b85d1d6881ab4ac0efb4a1c58
44084 Author: Rodolfo Giometti <giometti@linux.it>
44085 Date:   Wed Jun 6 10:08:14 2007 +0200
44086
44087     Files include/linux/byteorder/{big,little}_endian.h define
44088     __BIG_ENDIAN and __LITTLE_ENDIAN.
44089
44090     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
44091
44092 commit a81d1c0b85b13e9d45f2d87de96a51a6e0ef0f82
44093 Author: Zhang Wei <wei.zhang@freescale.com>
44094 Date:   Wed Jun 6 10:08:14 2007 +0200
44095
44096     Add USB PCI-OHCI, USB keyboard and event poll support to the
44097     MPC8641HPCN board config file.
44098
44099     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
44100
44101 commit 4dae14ce8fbdf380017dc54f172218e7d2acc889
44102 Author: Zhang Wei <wei.zhang@freescale.com>
44103 Date:   Wed Jun 6 10:08:14 2007 +0200
44104
44105     USB PCI-OHCI, interrupt pipe and usb event poll support
44106
44107     This patch added USB PCI-OHCI chips support, interrupt pipe support
44108     and usb event poll support. For supporting the USB interrupt pipe, the
44109     globe urb_priv is moved to purb in ed struct. Now, we can process
44110     several urbs at one time. The interrupt pipe support codes are ported
44111     from Linux kernel 2.4.
44112
44113     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
44114
44115 commit fdcfaa1b02268b2899e374b35adf936c911a47eb
44116 Author: Zhang Wei <wei.zhang@freescale.com>
44117 Date:   Wed Jun 6 10:08:13 2007 +0200
44118
44119     USB event poll support
44120
44121     This patch adds USB event poll support, which could be used in usbkbd
44122     and other usb devices driver when the asynchronous interrupt
44123     processing is supported.
44124
44125     Signed-off-by: Zhang Wei <wei.zhang@freescale.com
44126
44127 commit 9a1d00fa47c1e05e3fdb60b33213af4e18d4c18e
44128 Author: Rodolfo Giometti <giometti@linux.it>
44129 Date:   Wed Jun 6 10:08:12 2007 +0200
44130
44131     ISP116x: delay for crappy USB keys
44132
44133     Using some (very) slow USB keys cause the USB host controller buffers
44134     are not ready to be read by the CPU so we need an extra delay before
44135     reading the USB storage data.
44136
44137     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
44138
44139 commit 09444143670c9c2243cb7aba9f70b3713d33bed1
44140 Author: Markus Klotzbuecher <mk@denx.de>
44141 Date:   Wed Jun 6 10:08:12 2007 +0200
44142
44143     Change duplicate usb_cpu_init_fail to usb_board_init_fail
44144
44145     Thanks to Liew Tsi Chung <Tsi-chung.Liew@freescale.com> for pointing
44146     this out.
44147
44148     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
44149
44150 commit 32922cdc470fdfd39bea0c1c4f582d3fb340421e
44151 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
44152 Date:   Tue Jun 5 12:30:52 2007 -0500
44153
44154     mpc8641 image size cleanup
44155
44156     e600 does not have a bootpg restriction.
44157     Move the version string to beginning of image at fff00000.
44158     Resetvec.S is not needed.
44159     Update flash copy instructions.
44160     Add tftpflash env variable
44161
44162     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
44163     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44164
44165 commit e3cbe1f93c5722f8ebbad468e30c069a2b511097
44166 Author: Benoît Monin <bmonin@adeneo.eu>
44167 Date:   Mon Jun 4 08:36:05 2007 +0200
44168
44169     [PATCH] Fix ppc4xx bootstrap letter displayed on startup
44170
44171     The attached patch is mainly cosmetic, allowing u-boot to
44172     display the correct bootstrap option letter according to the
44173     datasheets.
44174
44175     The original patch was extended with 405EZ support by Stefan
44176     Roese.
44177
44178     Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
44179     Signed-off-by: Stefan Roese <sr@denx.de>
44180
44181 commit 5b1313fb2758ffce8b624457f777d8cc6709608d
44182 Author: Nikita V. Youshchenko <yoush@debian.org>
44183 Date:   Wed May 23 12:45:19 2007 +0400
44184
44185     fix compilation problem for mpc8349itx CFG_RAMBOOT
44186
44187     Current include/configs/MPC8349ITX.h does contain some support for building
44188     image that will be started from memory (without putting in into flash).
44189     It could be triggered by building with TEXT_BASE set to a low value.
44190
44191     However, this support is incomplete: using of low TEXT_BASE causes
44192     defining configuration macros in inconsistent way, which later leads
44193     to compilation errors. In particular. flash support is being disabled,
44194     but then flash structures get referenced.
44195
44196     This patch fixes this, making it possible to build with low TEXT_BASE.
44197
44198     Signed-Off-By: Nikita Youshchenko <yoush@debian.org>
44199
44200     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44201
44202 commit 8a364f0970de49949d635e60accf463c6443ef8c
44203 Author: Nikita V. Youshchenko <yoush@debian.org>
44204 Date:   Wed May 23 12:45:25 2007 +0400
44205
44206     add missing 'console' var to default mpc8349itx config
44207
44208     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44209
44210 commit 18d156eb37c90fadc8ec7a81a3b89176161f85b7
44211 Author: Stefan Roese <sr@denx.de>
44212 Date:   Fri Jun 1 16:18:17 2007 +0200
44213
44214     ppc4xx: Add missing file for Bamboo NAND booting support
44215
44216     Signed-off-by: Stefan Roese <sr@denx.de>
44217
44218 commit 155a96478a0881e6da96cbbbcf34952d6a3b1b4b
44219 Author: Stefan Roese <sr@denx.de>
44220 Date:   Fri Jun 1 15:58:19 2007 +0200
44221
44222     ppc4xx: Undo Sequoia patch for dynamic EBC speed support of 83MHz
44223
44224     This patch undoes the patch by Jeff Mann with commit-id ada4697d. As
44225     suggested by AMCC it is not recommended to dynamically change the EBC
44226     speed after bootup. So we undo this change to be on the safe side.
44227
44228     Signed-off-by: Stefan Roese <sr@denx.de>
44229
44230 commit 9d9096043e8f713d4bf1743d32e1459e6a11644b
44231 Author: Stefan Roese <sr@denx.de>
44232 Date:   Fri Jun 1 15:29:04 2007 +0200
44233
44234     ppc4xx: Update Sequoia NAND booting support with ECC
44235
44236     Signed-off-by: Stefan Roese <sr@denx.de>
44237
44238 commit cf959c7d6687567c308e366e9581e1a5aff5cc5b
44239 Author: Stefan Roese <sr@denx.de>
44240 Date:   Fri Jun 1 15:27:11 2007 +0200
44241
44242     ppc4xx: Add NAND booting support for AMCC Bamboo (440EP) eval board
44243
44244     This patch adds NAND booting support for the AMCC Bamboo eval board.
44245     Since the NAND-SPL boot image is limited to 4kbytes, this version
44246     only supports the onboard 64MBytes of DDR. The DIMM modules can't be
44247     supported, since the setup code for I2C DIMM autodetection and
44248     configuration is too big for this NAND bootloader.
44249
44250     Signed-off-by: Stefan Roese <sr@denx.de>
44251
44252 commit 42be56f53c8b107868e6125c8524ae84293e95a7
44253 Author: Stefan Roese <sr@denx.de>
44254 Date:   Fri Jun 1 15:23:04 2007 +0200
44255
44256     NAND: Add ECC support to NAND booting support in nand_spl/nand_boot.c
44257
44258     The U-Boot NAND booting support is now extended to support ECC
44259     upon loading of the NAND U-Boot image.
44260
44261     Tested on AMCC Sequoia (440EPx) and Bamboo (440EP).
44262
44263     Signed-off-by: Stefan Roese <sr@denx.de>
44264
44265 commit a471db07fbb65a841ffc9f4f112562b945230f98
44266 Author: Stefan Roese <sr@denx.de>
44267 Date:   Fri Jun 1 15:19:29 2007 +0200
44268
44269     ppc4xx: Prepare Bamboo port for NAND booting support
44270
44271     This patch updates the "normal" Bamboo NOR booting port, so
44272     that it is compatible with the coming soon NAND booting
44273     Bamboo port.
44274
44275     It also enables the 2nd NAND flash on the Bamboo.
44276
44277     Signed-off-by: Stefan Roese <sr@denx.de>
44278
44279 commit 53ad02103fb8be4138a9937a8ab91fcdff7b4987
44280 Author: Stefan Roese <sr@denx.de>
44281 Date:   Fri Jun 1 15:16:58 2007 +0200
44282
44283     ppc4xx: Update in_be32() functions and friends to latest Linux version
44284
44285     Signed-off-by: Stefan Roese <sr@denx.de>
44286
44287 commit 91da09cfbce0c1de05d6d84aa8363d666fa7ea3c
44288 Author: Stefan Roese <sr@denx.de>
44289 Date:   Fri Jun 1 15:15:12 2007 +0200
44290
44291     NAND: Add hardware ECC support to the PPC4xx NAND driver ndfc.c
44292
44293     This patch adds hardware ECC support to the NDFC driver. It also
44294     changes the register access from using the "simple" in32/out32
44295     functions to the in_be32/out_be32 functions, which make sure
44296     that the access is correctly synced. This is the only recommended
44297     access to SoC registers in the current Linux kernel.
44298
44299     Signed-off-by: Stefan Roese <sr@denx.de>
44300
44301 commit 17b5e862287cca76f19dcf8b741e61a7d06617f2
44302 Author: Stefan Roese <sr@denx.de>
44303 Date:   Fri Jun 1 15:12:15 2007 +0200
44304
44305     NAND: Update nand_ecc.c to latest Linux version
44306
44307     This patch updates the nand_ecc code to the latest Linux version.
44308     The main reason for this is the more compact code. This makes
44309     it possible to include the ECC code into the NAND bootloader
44310     image (NAND_SPL) for PPC4xx.
44311
44312     Signed-off-by: Stefan Roese <sr@denx.de>
44313
44314 commit d2d432760d2199d0e8558fdd9d1789b8131abcf7
44315 Author: Stefan Roese <sr@denx.de>
44316 Date:   Fri Jun 1 15:09:50 2007 +0200
44317
44318     ppc4xx: 44x DDR driver code cleanup and small fix for Bamboo
44319
44320     Signed-off-by: Stefan Roese <sr@denx.de>
44321
44322 commit e4bbed2803a2ad0521c7362f5d3e065f99abaedc
44323 Author: Stefan Roese <sr@denx.de>
44324 Date:   Fri Jun 1 13:45:24 2007 +0200
44325
44326     ppc4xx: Change Luan config file to support ECC
44327
44328     With the updated 44x DDR2 driver the Luan board now supports
44329     ECC generation and checking.
44330
44331     Signed-off-by: Stefan Roese <sr@denx.de>
44332
44333 commit 7187db73491c8de0fb56efb5e5134ba5ec443089
44334 Author: Stefan Roese <sr@denx.de>
44335 Date:   Fri Jun 1 13:45:00 2007 +0200
44336
44337     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
44338
44339     Add config option for 180 degree advance clock control as needed
44340     for the AMCC Luan eval board.
44341
44342     Signed-off-by: Stefan Roese <sr@denx.de>
44343
44344 commit ee1529838abbfaa35f14e3ffbeaaba693159475f
44345 Author: Wolfgang Denk <wd@denx.de>
44346 Date:   Thu May 31 17:20:09 2007 +0200
44347
44348     Add support for STX GP3SSA (stxssa) Board with 4 MiB flash.
44349
44350     Signed-off-by: Wolfgang Denk <wd@denx.de>
44351
44352 commit 7049288fb1f16f1b317140226cdebd07bd416395
44353 Author: Bartlomiej Sieka <tur@semihalf.com>
44354 Date:   Sun May 27 17:26:46 2007 +0200
44355
44356     Motion-PRO: Code cleanup, fix of a typo in OF_STDOUT_PATH.
44357
44358     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
44359
44360 commit 4520fd4d2c450da49637216aa0e53739b61c60ac
44361 Author: Bartlomiej Sieka <tur@semihalf.com>
44362 Date:   Sun May 27 17:06:36 2007 +0200
44363
44364     Motion-PRO: Add support for redundant environment.
44365
44366     Enable redundant environment, add a MTD partition for it; also add env.
44367     variable command for passing MTD partitions to the kernel command line.
44368
44369     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
44370     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
44371
44372 commit a26eabeec31746f06d309103690892805696e344
44373 Author: Bartlomiej Sieka <tur@semihalf.com>
44374 Date:   Sun May 27 17:05:11 2007 +0200
44375
44376     Motion-PRO: Change maximum console buffer size from 256 to 1024 bytes.
44377
44378     Allow passing longer command line to the kernel - useful especially
44379     for passing MTD partition layout.
44380
44381     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
44382     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
44383
44384 commit 9160b96f71483a116de81c68985e8ee306d36764
44385 Author: Bartlomiej Sieka <tur@semihalf.com>
44386 Date:   Sun May 27 17:04:18 2007 +0200
44387
44388     Fix: Add missing NULL termination in strings expanded by macros parser.
44389
44390     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
44391     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
44392
44393 commit 630ec84aef7228fc1dbfb38dec78541403a786cd
44394 Author: Bartlomiej Sieka <tur@semihalf.com>
44395 Date:   Sun May 27 17:03:37 2007 +0200
44396
44397     Motion-PRO: Update EEPROM's page write bits and write delay.
44398
44399     Change EEPROM configuration according to the datasheet: "The 24C01A and 24C02A
44400     have a page write capability of two bytes", and "This device offers fast (1ms)
44401     byte write". Add 3ms of extra delay.
44402
44403     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
44404     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
44405
44406 commit c00125e07c1ebc125bab40e1e18bceed8be0c162
44407 Author: Bartlomiej Sieka <tur@semihalf.com>
44408 Date:   Sun May 27 16:58:45 2007 +0200
44409
44410     MPC5XXX, Motion-PRO: Fix PHY initialization problem.
44411
44412     After being reset in mpc5xxx_fec_init_phy(), PHY goes into FX mode, in which
44413     networking does not function. This commit switches PHY to TX mode by clearing
44414     the FX_SEL bit of Mode Control Register. It also reverses commit
44415     008861a2f3ef2c062744d733787c7e530a1b8761, i.e., a temporary workaround.
44416
44417     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
44418     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
44419
44420 commit 93b78f534a6e708b4cf1a4ffb4d8438c67a007db
44421 Author: Bartlomiej Sieka <tur@semihalf.com>
44422 Date:   Sun May 27 16:57:15 2007 +0200
44423
44424     Motion-PRO: Add support for the temperature sensor.
44425
44426     Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
44427     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
44428
44429 commit c75e639630cc132dc19cd1ecda5922c0db0bfbba
44430 Author: Bartlomiej Sieka <tur@semihalf.com>
44431 Date:   Sun May 27 16:55:23 2007 +0200
44432
44433     Motion-PRO: Add displaying of CPLD revision information during boot.
44434
44435     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
44436     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
44437
44438 commit c99512d6bd3973f01ca2fc4896d829b46e68f150
44439 Author: Bartlomiej Sieka <tur@semihalf.com>
44440 Date:   Sun May 27 16:53:43 2007 +0200
44441
44442     MPC5xxx: Change names of defines related to IPB and PCI clocks.
44443
44444     Both CFG_PCISPEED_66 and CFG_IPBSPEED_133 are misnamed, as defining
44445     them does not cause PCI or IPB clocks to run at the specified speed.
44446     Instead, they configure divisors used to calculate said clocks. This
44447     patch renames the defines according to their real function.
44448
44449     Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
44450     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
44451
44452 commit a11c0b85dc3664bb3c1e781137118730c8f619ab
44453 Author: Bartlomiej Sieka <tur@semihalf.com>
44454 Date:   Sun May 27 16:51:48 2007 +0200
44455
44456     Motion-PRO: Add LED support.
44457
44458     Signed-off-by: Jan Wrobel <wrr@semihalf.com>
44459     Signed-off-by: Marian Balakowicz <m8@semihalf.com>
44460     Acked-by: Bartlomiej Sieka <tur@semihalf.com>
44461
44462 commit 7ebb4479b07ff294eb4d76e420753a0349f7c93b
44463 Author: Ulf Samuelsson <ulf@atmel.com>
44464 Date:   Thu May 24 12:12:47 2007 +0200
44465
44466     [PATCH][NAND] Define the Vendor Id for Micron NAND Flash
44467
44468     Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
44469     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
44470     Signed-off-by: Stefan Roese <sr@denx.de>
44471
44472 commit d756894722c888d09a9fa1df8323753772d3dcce
44473 Author: Stefan Roese <sr@denx.de>
44474 Date:   Thu May 24 09:49:00 2007 +0200
44475
44476     ppc4xx: Fix small 405EZ OCM initilization bug in start.S
44477
44478     As pointed out by Bruce Adler <bruce.adler@acm.org> this patch
44479     fixes a small bug in the 405EZ OCM initialization. Thanks for
44480     spotting.
44481
44482     Signed-off-by: Stefan Roese <sr@denx.de>
44483
44484 commit 5d4a179013d59a76446462e1eb0a969fba63eb81
44485 Author: Stefan Roese <sr@denx.de>
44486 Date:   Thu May 24 08:22:09 2007 +0200
44487
44488     ppc4xx: Update AMCC Acadia support for board revision 1.1
44489
44490     This patch updates the Acadia (405EZ) support for the new 1.1 board
44491     revision. It also adds support for NAND FLASH via the 4xx NDFC.
44492
44493     Please note that the jumper J7 must be in position 2-3 for this
44494     NAND support. Position 1-2 is for NAND booting only. NAND booting
44495     support will follow later.
44496
44497     Signed-off-by: Stefan Roese <sr@denx.de>
44498
44499 commit 822d55365bb557e084d0e33625a6dedcc866110b
44500 Author: Jon Loeliger <jdl@freescale.com>
44501 Date:   Wed May 23 14:09:46 2007 -0500
44502
44503     Add LIST_86xx MAKEALL target for PowerPC builds.
44504
44505     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44506
44507 commit 9f0077abd69f7a7c756a915b961037302be3e6f2
44508 Author: Stefan Roese <sr@denx.de>
44509 Date:   Tue May 22 12:48:09 2007 +0200
44510
44511     ppc4xx: Use do { ... } while (0) for CPR & SDR access macros
44512
44513     Signed-off-by: Stefan Roese <sr@denx.de>
44514
44515 commit 6f3dfc139a838b0841c151efe00ad47db2366e79
44516 Author: Stefan Roese <sr@denx.de>
44517 Date:   Tue May 22 12:46:10 2007 +0200
44518
44519     ppc4xx: Add 405 support to 4xx NAND driver ndfc.c
44520
44521     This patch adds support for 405 PPC's to the 4xx NAND driver
44522     ndfc.c. This is in preparation for the new AMCC 405EZ.
44523
44524     Signed-off-by: Stefan Roese <sr@denx.de>
44525
44526 commit 10603d76767426be803dadd4fb688b97eb69481c
44527 Author: Stefan Roese <sr@denx.de>
44528 Date:   Mon May 21 07:41:22 2007 +0200
44529
44530     ppc4xx: Fix problem in 405EZ OCM initialization
44531
44532     As spotted by Bruce Adler this patch fixes an initialization problem
44533     for the 405EZ OCM.
44534
44535     Signed-off-by: Stefan Roese <sr@denx.de>
44536
44537 commit 3e3b956906eba9e4ad7931581ecedaad10eccce8
44538 Author: Peter Pearse <peter.pearse@arm.com>
44539 Date:   Fri May 18 16:47:03 2007 +0100
44540
44541     Reduce line lengths to 80 characters max.
44542
44543 commit 93ef45c9ddfdd9fc17c4e74bd8e2f2456580eb72
44544 Author: Peter Pearse <peter.pearse@arm.com>
44545 Date:   Fri May 18 14:34:07 2007 +0100
44546
44547     Makefile permissions
44548
44549 commit 1443a31457d68f7e8f0b9403e9832ec1e79dc59d
44550 Author: Peter Pearse <peter.pearse@arm.com>
44551 Date:   Fri May 18 14:33:11 2007 +0100
44552
44553     Makefile permissions
44554
44555 commit 255a3577c848706441daee0174543efe205a77f8
44556 Author: Kim Phillips <kim.phillips@freescale.com>
44557 Date:   Wed May 16 16:52:19 2007 -0500
44558
44559     Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx
44560
44561     For all practical u-boot purposes, TSECs don't differ throughout the
44562     mpc8[356]xx families; reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx.
44563
44564     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44565
44566 commit 70124c2602ae2d4c5d3dba05b482d91548242de8
44567 Author: Stefano Babic <sbabic@denx.de>
44568 Date:   Wed May 16 14:49:12 2007 +0200
44569
44570     Fix compile problem cause my Microblaze merge
44571
44572     Signed-off-by: Stefano Babic <sbabic@denx.de>
44573
44574 commit ada4697d0230d6da552867777f98a67ec3ba2579
44575 Author: Jeffrey Mann <mannj@embeddedplanet.com>
44576 Date:   Wed May 16 13:23:10 2007 +0200
44577
44578     [PATCH] Run new sequoia boards with an EBC speed of 83MHz
44579
44580     Because the Sequoia board does not boot with an EBC faster than 66MHz,
44581     the clock divider are changed after the initial boot process.
44582
44583     This allows for maximum clocking speeds  to be achieved on newer boards.
44584     Sequoia boards with 666.66 MHz processors require that the EBC divider
44585     be set to 3 in order to start the initial boot process at a slower EBC
44586     speed. After the initial boot process, the divider can be set back to 2,
44587     which will cause the boards to run at 83.333MHz. This is backward
44588     compatible with boards with 533.33 MHz processors, as these boards will
44589     already be set with an EBC divider of 2.
44590
44591     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
44592
44593 commit a7676ea7732f3c596805079fed7e5c9fac652cfc
44594 Author: Wolfgang Denk <wd@denx.de>
44595 Date:   Wed May 16 01:16:53 2007 +0200
44596
44597     Minor Coding Style cleanup, update CHANGELOG.
44598
44599     Signed-off-by: Wolfgang Denk <wd@denx.de>
44600
44601 commit d62f64cc23a940eafe712c776b3249e4160753d1
44602 Author: Wolfgang Denk <wd@denx.de>
44603 Date:   Wed May 16 00:13:33 2007 +0200
44604
44605     Coding Style Cleanup, new CHANGELOG
44606
44607 commit 3162eb836903c8b247fdc7470dd39bfa6996f495
44608 Author: Wolfgang Denk <wd@denx.de>
44609 Date:   Tue May 15 23:38:05 2007 +0200
44610
44611     Minor coding style cleanup.
44612
44613 commit 66d9dbec1cc27d6398ee6cf84639dbe14971251e
44614 Author: mushtaq khan <mushtaq_k@procsys.com>
44615 Date:   Fri Apr 20 14:23:02 2007 +0530
44616
44617     Add driver for S-ATA-controller on Intel processors with South
44618     Bridge, ICH-5, ICH-6 and ICH-7.
44619
44620     Implementation:
44621
44622     1. Code is divided in to two files. All functions, which are
44623        controller specific are kept in "drivers/ata_piix.c" file and
44624        functions, which are not controller specific, are kept in
44625        "common/cmd_sata.c" file.
44626
44627     2. Reading and Writing from the S-ATA drive is done using PIO method.
44628
44629     3. Driver can be configured for 48-bit addressing by defining macro
44630        CONFIG_LBA48, if this macro is not defined driver uses the 28-bit
44631        addressing.
44632
44633     4. S-ATA read function is hooked to the File system, commands like
44634        ext2ls and ext2load file can be used. This has been tested.
44635
44636     5. U-Boot command "SATA_init" is added, which initializes the S-ATA
44637        controller and identifies the S-ATA drives connected to it.
44638
44639     6. U-Boot command "sata" is added, which is used to read/write, print
44640        partition table and get info about the drives present. This I have
44641        implemented in same way as "ide" command is implemented in U-Boot.
44642
44643     7. This driver is for S-ATA in native mode.
44644
44645     8. This driver does not support the Native command queuing and
44646        Hot-plugging.
44647
44648     Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
44649
44650 commit 644e6fb4eb8be90ea04ba34b643a8bf019d680e0
44651 Author: mushtaq khan <mushtaq_k@procsys.com>
44652 Date:   Mon Apr 30 15:57:22 2007 +0530
44653
44654     Fixes bug clearing the bss section for i386
44655
44656     Hi,
44657     There is a bug in the code of clearing the bss section for processor
44658     i386.(File: cpu/i386/start.S)
44659     In the code, bss_start addr (starting addr of bss section) is put into
44660     the register %eax, but the code which clears the bss section refers to
44661     the addr pointed by %edi.
44662
44663     This patch fixes this bug by putting bss_start into %edi register.
44664
44665     Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
44666
44667 commit c3243cf7b490057277d61acffe4ad0946f9eb4a4
44668 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
44669 Date:   Mon Apr 30 16:47:28 2007 -0500
44670
44671     Add support for BCM5464 Quad Phy
44672
44673     Added support for Broadcom's BCM5464 Quad Phy
44674
44675     Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
44676
44677 commit 1b305bdc754c8468e1d5d858f5dcf8a7a0a4bb7a
44678 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
44679 Date:   Wed May 9 08:10:57 2007 +0800
44680
44681     Search the exception table with linear algorithm
44682
44683     Search the exception table with linear algorithm instead of
44684     bisecting algorithm.
44685     Because the exception table might be unsorted.
44686
44687     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
44688
44689 commit 5dfaa50eb819686bfba1927e8c5b8a70a4d65fd3
44690 Author: Aubrey.Li <aubrey.adi@gmail.com>
44691 Date:   Mon May 14 11:47:35 2007 +0800
44692
44693     Fix compilation issues on MACOSX
44694
44695     Singed-off-by: Marc Hoffman <Marc.Hoffman@analog.com>
44696     Signed-off-by: Aubrey Li <aubrey.adi@gmail.com>
44697
44698 commit 56fd7162985c412317bbf763a225fba23c64fd31
44699 Author: Stephen Williams <steve@icarus.com>
44700 Date:   Tue May 15 07:55:42 2007 -0700
44701
44702     Fix for compile of JSE target
44703
44704     The attached patch fixes the compile of the JSE board in the
44705     denx git as of 14 may 2007. It is an extremely simple patch,
44706     it just adds the missing define of CFG_SYSTEMACE_WIDTH.
44707
44708      Fix to compile JSE against 20070514 git of u-boot
44709
44710 commit 69df3c4da0c93017cceb25a366e794570bd0ed98
44711 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
44712 Date:   Sun May 13 21:01:03 2007 +0900
44713
44714     sh: MS7750SE support.
44715
44716     This adds support for the Hitachi MS7750SE.
44717
44718     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44719
44720 commit 0b135cfc2e524dc249b75057b55dd4cc09842e27
44721 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
44722 Date:   Sun May 13 20:58:00 2007 +0900
44723
44724     sh: First support code of SuperH.
44725
44726     Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44727
44728 commit 61936667e86a250ae12fd2dc189d3588f0a59e0b
44729 Author: Stefan Roese <sr@denx.de>
44730 Date:   Fri May 11 12:01:49 2007 +0200
44731
44732     ppc4xx: Add mtcpr/mfcpr access macros
44733
44734     Signed-off-by: Stefan Roese <sr@denx.de>
44735
44736 commit 343c48bd84606c4025c8a7c7263fda465d6e284c
44737 Author: Stefan Roese <sr@denx.de>
44738 Date:   Fri May 11 12:01:06 2007 +0200
44739
44740     ppc4xx: Set bd->bi_pci_busfreq on 440EPx/GRx too
44741
44742     Signed-off-by: Stefan Roese <sr@denx.de>
44743
44744 commit 7d98ba770a7eaefa29ce927f31a0956df85bf650
44745 Author: Piotr Kruszynski <ppk@semihalf.com>
44746 Date:   Thu May 10 16:55:52 2007 +0200
44747
44748     [Motion-PRO] Add MTD and JFFS2 support, also add default partition
44749     definition.
44750
44751 commit 65fb6a676e821f9570a2a376dc204bf611ce5f81
44752 Author: Peter Pearse <peter.pearse@arm.com>
44753 Date:   Wed May 9 11:42:44 2007 +0100
44754
44755     Add the board directory for SMN42
44756
44757 commit 160131bf965785419626df6c388729fe0b597992
44758 Author: Peter Pearse <peter.pearse@arm.com>
44759 Date:   Wed May 9 11:41:58 2007 +0100
44760
44761     Add the files for the SMN42 board
44762
44763 commit 5c6d2b5a500f8c49670de8910150b78a41f781fc
44764 Author: Peter Pearse <peter.pearse@arm.com>
44765 Date:   Wed May 9 11:40:34 2007 +0100
44766
44767     Remove the deleted files for the SMN42 patch
44768
44769 commit b0d8f5bf0d215adc9424cb228b2484dbf07f7761
44770 Author: Peter Pearse <peter.pearse@arm.com>
44771 Date:   Wed May 9 11:37:56 2007 +0100
44772
44773     New board SMN42 branch
44774
44775 commit 29f3be0caf0799ca6b89dfd9824c15619a50000f
44776 Author: Peter Pearse <peter.pearse@arm.com>
44777 Date:   Wed May 9 10:24:38 2007 +0100
44778
44779     Makefile permissions
44780
44781 commit b84289b595731e8851df46e893845cc1322c9b9b
44782 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
44783 Date:   Tue May 8 14:17:07 2007 -0500
44784
44785     8641hpcn: Fix Makefile after moving pixis to board/freescale.
44786
44787     The OBJTREE != SRCTREE build scenario was broken.
44788     This fixes it.
44789
44790     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
44791     Signed-off-by: Jon Loeliger <jdl@freescale.com>
44792
44793 commit e69f66c6ebe82bbbd1da766bc4eda40ec7ee5af1
44794 Author: Michal Simek <monstr@monstr.eu>
44795 Date:   Tue May 8 15:57:43 2007 +0200
44796
44797     add: reading special purpose registers
44798
44799 commit 1a50f164beb065f360fbddb76029607d6b099698
44800 Author: Michal Simek <monstr@monstr.eu>
44801 Date:   Tue May 8 14:52:52 2007 +0200
44802
44803     add: Microblaze V5 exception handling
44804
44805 commit ab874d5047e5d30dbc1e517ff26083efffa98ecb
44806 Author: Michal Simek <monstr@monstr.eu>
44807 Date:   Tue May 8 14:39:11 2007 +0200
44808
44809     add: FSL control read and write
44810
44811 commit de1de02a7cbf05e6b63e0d8ffc624f12493f6ba3
44812 Author: Piotr Kruszynski <ppk@semihalf.com>
44813 Date:   Tue May 8 13:05:44 2007 +0200
44814
44815     [Motion-PRO] Add support for I2C, EEPROM and RTC.
44816
44817 commit fa5c2ba123b1bf88455bfc21db5e786ca045029d
44818 Author: Bartlomiej Sieka <tur@semihalf.com>
44819 Date:   Tue May 8 10:23:56 2007 +0200
44820
44821     [Motion-PRO] Add ATA support. Add CF-booting commands to the default
44822     environment.
44823
44824 commit 06241d50a3ab1b20a0b08baeeaffcaa23ae4b839
44825 Author: Bartlomiej Sieka <tur@semihalf.com>
44826 Date:   Tue May 8 09:39:12 2007 +0200
44827
44828     [Motion-PRO] Change IPB clock frequency from 50MHz to 100MHz. This
44829     eliminates networking problems in Linux (timeouts).
44830
44831 commit 1f1369c34b629be94702684d41d3fddf0f6193e7
44832 Author: Bartlomiej Sieka <tur@semihalf.com>
44833 Date:   Tue May 8 09:21:57 2007 +0200
44834
44835     [Motion-PRO] Enable Flat Device Tree support and modify default environment
44836     to allow booting of FDT-expecting kernels.
44837
44838 commit fb05f6da35ea1c15c553abe6f23f656bf18dc5db
44839 Author: Michal Simek <monstr@monstr.eu>
44840 Date:   Mon May 7 23:58:31 2007 +0200
44841
44842     new: USE_MSR_INTR support
44843
44844 commit 008861a2f3ef2c062744d733787c7e530a1b8761
44845 Author: Bartlomiej Sieka <tur@semihalf.com>
44846 Date:   Mon May 7 22:36:15 2007 +0200
44847
44848     [MPC5xxx] There are networking problems on the Motion-PRO board with
44849     current PHY initalization code (tftp timeouts all the time). This commit
44850     temporarily disables PHY initalization sequence to make the networking
44851     operational, until a fix is found.
44852
44853 commit abca901869c3760b6c5fecb825db6c1d91a78a93
44854 Author: Wolfgang Denk <wd@denx.de>
44855 Date:   Mon May 7 22:10:36 2007 +0200
44856
44857     Get rid of duplicated file (see include/configs/sbc8560.h instead)
44858
44859     Signed-off-by: Wolfgang Denk <wd@denx.de>
44860
44861 commit 207b7b2c9d9752e0f6478c30c29b7087f6e6cbb6
44862 Author: Wolfgang Denk <wd@denx.de>
44863 Date:   Mon May 7 22:07:08 2007 +0200
44864
44865     Get rid of duplicated file (see doc/README.SBC8560 instead)
44866
44867     Signed-off-by: Wolfgang Denk <wd@denx.de>
44868
44869 commit a7bac7e9b57ba948051beb19ec5be3a75ce75383
44870 Author: Michal Simek <monstr@monstr.eu>
44871 Date:   Mon May 7 19:43:10 2007 +0200
44872
44873     fix: read and write MSR - repair number of parameters
44874
44875 commit 193b4a3bb3acaddf798da8de0da05d94ba8774ee
44876 Author: Jeffrey Mann <mannj@embeddedplanet.com>
44877 Date:   Mon May 7 19:42:49 2007 +0200
44878
44879     [PATCH] ppc4xx: Fix CONFIG_SYS_CLK_FREQ definition in Sequoia config file
44880
44881     A '3' got cut off in the formatting of the last patch to automatically
44882     change the clock speed of the system clock on sequoia board.
44883
44884     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
44885     Signed-off-by: Stefan Roese <sr@denx.de>
44886
44887 commit 19bf1fbad7f19d5a120be9b1daf136e052fcab39
44888 Author: Michal Simek <monstr@monstr.eu>
44889 Date:   Mon May 7 19:33:51 2007 +0200
44890
44891     new: fsl interrupt support
44892     FSL_Has_data is connected to INTC.
44893
44894 commit 792032baa7d625e34c981ab6df521911bd8dc861
44895 Author: Michal Simek <monstr@monstr.eu>
44896 Date:   Mon May 7 19:30:12 2007 +0200
44897
44898     fix: interrupt handler
44899     remove asm code
44900
44901 commit f3f001a341ef185d0f13841be5b5dc3395aacc31
44902 Author: Michal Simek <monstr@monstr.eu>
44903 Date:   Mon May 7 19:25:08 2007 +0200
44904
44905     fix: remove asm code
44906
44907 commit fb7c2dbef02c9f6f8d7b04ec4c2bfb91418b9c01
44908 Author: Michal Simek <monstr@monstr.eu>
44909 Date:   Mon May 7 19:12:43 2007 +0200
44910
44911     fix: clean interrupt
44912
44913 commit 42efed6130c8fcf7da881385b5427065d2801757
44914 Author: Michal Simek <monstr@monstr.eu>
44915 Date:   Mon May 7 17:22:25 2007 +0200
44916
44917     fix: interrupt handler for multiple sources
44918
44919 commit 48fbd3a4cdabbebc1debd7eed73c00c2caf914f6
44920 Author: Michal Simek <monstr@monstr.eu>
44921 Date:   Mon May 7 17:11:09 2007 +0200
44922
44923     new: add writing to msr register
44924
44925 commit 3a619dd7bed03e8b4d22a3911f90fd12af5376c2
44926 Author: Markus Klotzbuecher <mk@denx.de>
44927 Date:   Mon May 7 16:43:56 2007 +0200
44928
44929     Fix an ancient CHANGELOG conflict
44930
44931 commit ac4cd59d59c9bf3f89cb7a344abf8184d678f562
44932 Author: Timur Tabi <timur@freescale.com>
44933 Date:   Sat May 5 08:12:30 2007 +0200
44934
44935     5xxx: write MAC address to mac-address and local-mac-address
44936
44937     Some device trees have a mac-address property, some have local-mac-address,
44938     and some have both.  To support all of these device trees, ftp_cpu_setup()
44939     should write the MAC address to mac-address and local-mac-address, if they
44940     exist.
44941
44942     Signed-off-by: Timur Tabi <timur@freescale.com>
44943     Acked-by: Grant Likely <grant.likely@secretlab.ca>
44944
44945 commit a9d87e2707dcb249f6bb7f7ff7e00acd8cda9fd2
44946 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
44947 Date:   Sun Apr 29 14:01:54 2007 +0200
44948
44949     [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
44950
44951     MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
44952     message. Use PVR to distinguish between the two variants, and print proper CPU
44953     information.
44954
44955     Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
44956     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
44957     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44958
44959 commit 4ec5bd55ed1ffa91a774af298769621f4fbb18c1
44960 Author: Ladislav Michl <ladis@linux-mips.org>
44961 Date:   Wed Apr 25 16:01:26 2007 +0200
44962
44963     [PATCH] simplify silent console
44964
44965     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
44966     Acked-by: Stefan Roese <sr@denx.de>
44967
44968 commit b7598a43f2b421a713d8135e98a42c37d9eb9df0
44969 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
44970 Date:   Mon Apr 23 15:30:39 2007 +0200
44971
44972     [PATCH] Avoid assigning PCI resources from zero address
44973
44974     If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
44975     core complains and IDE drivers fails to work.  Also, assigning zero to a BAR
44976     was illegal according to PCI 2.1 (the later revisions seem to have excluded the
44977     sentence about "0" being considered an invalid address) -- so, use a reasonable
44978     starting value of 0x1000 (that's what the most Linux archs are using).
44979
44980     Alternatively, one might have fixed the calls to pci_set_region() individually
44981     (some code even seems to have taken care of this issue) but that would have
44982     been a lot more work. :-)
44983
44984     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
44985     Acked-by: Stefan Roese <sr@denx.de>
44986
44987 commit 9ffd451afeb08e5be7ddae680487ec962b2bca25
44988 Author: Jeffrey Mann <mannj@embeddedplanet.com>
44989 Date:   Mon Apr 23 14:00:11 2007 +0200
44990
44991     [patch] setenv(...) can delete environmentalvariables
44992
44993     update setenv() function so that entering a NULL value for the
44994     variable's value will delete the environmental variable
44995
44996     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
44997     Acked-by: Stefan Roese <sr@denx.de>
44998
44999 commit ebd0a0ae05a44769c4e27458ad4e9f3438250443
45000 Author: Mike Frysinger <vapier@gentoo.org>
45001 Date:   Mon Apr 23 13:54:24 2007 +0200
45002
45003     [patch] use unsigned char in smc91111 driver for mac
45004
45005     the v_mac variable in the smc91111 driver is declared as a signed char ...
45006     this causes problems when one of the bytes in the MAC is "signed" like 0xE0
45007     because when it gets printed out, you get a display like:
45008     0xFFFFFFE0 and that's no good
45009
45010     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
45011
45012 commit ffc50f9bb194343c6303517a517708457a5eb6b8
45013 Author: Michal Simek <monstr@monstr.eu>
45014 Date:   Sat May 5 18:54:42 2007 +0200
45015
45016     new: FSL and MSR support #2
45017
45018 commit f7e2e0eb0668136305f78bb9c21be79b48a34247
45019 Author: Michal Simek <monstr@monstr.eu>
45020 Date:   Sat May 5 18:27:16 2007 +0200
45021
45022     new: FSL and MSR support
45023
45024 commit 2f15278c2eb911c668b4fe562130b78cf554d139
45025 Author: Wolfgang Denk <wd@denx.de>
45026 Date:   Sat May 5 18:23:11 2007 +0200
45027
45028     Coding stylke cleanup; update CHANGELOG.
45029
45030     Signed-off-by: Wolfgang Denk <wd@denx.de>
45031
45032 commit 885ec89b648a899a2f32393fd3ffd9f7234c4402
45033 Author: Wolfgang Denk <wd@denx.de>
45034 Date:   Sat May 5 18:05:02 2007 +0200
45035
45036     Add STX GP3 SSA board to MAKEALL script; update CHANGELOG.
45037
45038     Signed-off-by: Wolfgang Denk <wd@denx.de>
45039
45040 commit 5499645b3fe17a548af9dfc479ca6e2455f179a2
45041 Author: Wolfgang Denk <wd@denx.de>
45042 Date:   Sat May 5 17:15:50 2007 +0200
45043
45044     Make "file" command happy with some config.mk files; update CHANGELOG
45045
45046 commit e3b8c78bc2489c27ae020986ef0eaca684866cef
45047 Author: Jeffrey Mann <mannj@embeddedplanet.com>
45048 Date:   Sat May 5 08:32:14 2007 +0200
45049
45050     ppc4xx: Detect if the sysclk on Sequoia is 33 or 33.333 MHz
45051
45052     The AMCC Secquoia board has been changed in a new revision from using a
45053     33.000 MHz clock to a 33.333 MHz system clock. A bit in the CPLD
45054     indicates the difference. This patch reads that bit and uses the correct
45055     clock speed for the board. This code is backward compatable will all
45056     prior boards. All prior boards will be read as 33.000.
45057
45058     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
45059     Signed-off-by: Stefan Roese <sr@denx.de>
45060
45061 commit f544ff6656fca263ed1ebe39899b6d95da67c8b8
45062 Author: Stefan Roese <sr@denx.de>
45063 Date:   Sat May 5 08:29:01 2007 +0200
45064
45065     ppc4xx: Sequoia: Remove cpu/ppc4xx/speed.c from NAND booting
45066
45067     Using cpu/ppc4xx/speed.c to calculate the bus frequency is too big
45068     for the 4k NAND boot image so define bus_frequency to 133MHz here
45069     which is save for the refresh counter setup.
45070
45071     Signed-off-by: Stefan Roese <sr@denx.de>
45072
45073 commit 2f550ab976405300f5b07bf2890800840d0aa05f
45074 Author: Timur Tabi <timur@freescale.com>
45075 Date:   Sat May 5 08:12:30 2007 +0200
45076
45077     5xxx: write MAC address to mac-address and local-mac-address
45078
45079     Some device trees have a mac-address property, some have local-mac-address,
45080     and some have both.  To support all of these device trees, ftp_cpu_setup()
45081     should write the MAC address to mac-address and local-mac-address, if they
45082     exist.
45083
45084     Signed-off-by: Timur Tabi <timur@freescale.com>
45085     Acked-by: Grant Likely <grant.likely@secretlab.ca>
45086
45087 commit a79886590593ba1d667c840caa4940c61639f18f
45088 Author: Thomas Knobloch <knobloch@siemens.com>
45089 Date:   Sat May 5 07:04:42 2007 +0200
45090
45091     NAND: Wrong calculation of page number in nand_block_bad()
45092
45093     In case that there is no memory based bad block table available the
45094     function nand_block_checkbad() in drivers/mtd/nand/nand_base.c will call
45095     nand_block_bad() directly. When parameter 'getchip' is set to zero,
45096     nand_block_bad() will not right shift the offset to calculate the
45097     correct page number.
45098
45099     Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
45100     Signed-off-by: Stefan Roese <sr@denx.de>
45101
45102 commit 9877d7dcd1eebe61aa5d8b8ffe9c048ea426e6f6
45103 Author: Wolfgang Denk <wd@denx.de>
45104 Date:   Fri May 4 10:02:33 2007 +0200
45105
45106     Fix initrd length corruption in bootm command.
45107
45108     When using FDT Images, the length of an inital ramdisk was
45109     overwritten (bug introduced by commit 87a449c8, 22 Aug 2006).
45110
45111     Patches by Timur Tabi & Johns Daniel.
45112
45113     Signed-off-by: Wolfgang Denk <wd@denx.de>
45114
45115 commit 068aab660bc3912b930be5540e6b3f3fd6ad3c96
45116 Author: Kim Phillips <kim.phillips@freescale.com>
45117 Date:   Thu May 3 19:43:52 2007 -0500
45118
45119     mpc83xx: fix trivial error in MAKEALL
45120
45121     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
45122
45123 commit c64a89d6ce8584b9fc64f4e85da9ecac3cfc2c2a
45124 Author: Wolfgang Denk <wd@denx.de>
45125 Date:   Thu May 3 16:34:41 2007 +0200
45126
45127     Update board configuration for STX GP3SSA board:
45128
45129     Enable hush shell, environment in flash rather in EEPROM,
45130     more user-friendly default environment, etc.
45131     The simple EEPROM environment can be selected easily in the board
45132     config file.
45133
45134     Signed-off-by: Wolfgang Denk <wd@denx.de>
45135
45136 commit 2c6fb199dc5756fc72f49d1f4de105e089049d65
45137 Author: Wolfgang Denk <wd@denx.de>
45138 Date:   Tue Apr 24 14:37:49 2007 +0200
45139
45140     Cleanup STX GP3SSA code; fix build and compile problems.
45141
45142 commit 35171dc04e028ecacc23ad916a66295472555dbf
45143 Author: Dan Malek <dan@embeddedalley.com>
45144 Date:   Fri Jan 5 09:15:34 2007 +0100
45145
45146     Add support for STX GP3SSA (stxssa) Board
45147
45148     Signed-off-by Dan Malek, <dan@embeddedalley.com>
45149
45150 commit f2134f8e9eb006bdcd729e89f309c07b2fa45180
45151 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
45152 Date:   Wed May 2 13:31:53 2007 +0200
45153
45154     macb: Don't restart autonegotiation if we already have link
45155
45156     Rework macb_phy_init so that it doesn't attempt to re-negotiate if the
45157     link is already up.
45158
45159     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
45160
45161 commit 04fcb5d38bc90779cd9a710d60702075986f0e29
45162 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
45163 Date:   Wed May 2 13:22:38 2007 +0200
45164
45165     macb: Introduce a few barriers when dealing with DMA descriptors
45166
45167     There were a few theoretical possibilities that the compiler might
45168     optimize away DMA descriptor reads and/or writes and thus cause
45169     synchronization problems with the hardware. Insert barriers where
45170     we depend on reads/writes actually hitting memory.
45171
45172     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
45173
45174 commit ffa621a0d12a1ccd81c936c567f8917a213787a8
45175 Author: Andy Fleming <afleming@freescale.com>
45176 Date:   Sat Feb 24 01:08:13 2007 -0600
45177
45178     Cleaned up some 85xx PCI bugs
45179
45180     * Cleaned up the CDS PCI Config Tables and added NULL entries to
45181       the end
45182     * Fixed PCIe LAWBAR assignemt to use the cpu-relative address
45183     * Fixed 85xx PCI code to assign powar region sizes based on the
45184       config values (rather than hard-coding them)
45185     * Fixed the 8548 CDS PCI2 IO to once again have 0 as the base address
45186
45187     Signed-off-by: Andy Fleming <afleming@freescale.com>
45188
45189 commit 6743105988fc44d5b0d30388c790607835aae7a6
45190 Author: Andy Fleming <afleming@freescale.com>
45191 Date:   Mon Apr 23 02:54:25 2007 -0500
45192
45193     Add support for the 8568 MDS board
45194
45195     This included some changes to common files:
45196     * Add 8568 processor SVR to various places
45197     * Add support for setting the qe bus-frequency value in the dts
45198     * Add the 8568MDS target to the Makefile
45199
45200     Signed-off-by: Andy Fleming <afleming@freescale.com>
45201
45202 commit af1c2b84bf27c8565baddc82d1abb93700d10e2e
45203 Author: David Updegraff <dave@cray.com>
45204 Date:   Fri Apr 20 14:34:48 2007 -0500
45205
45206     Add support for treating unknown PHYs as generic PHYs.
45207
45208     When bringing up u-boot on new boards, PHY support sometimes gets
45209     neglected.  Most PHYs don't really need any special support,
45210     though.  By adding a generic entry that always matches if nothing
45211     else does, we can provide support for "unsupported" PHYs for the
45212     tsec.
45213
45214     The generic PHY driver supports most PHYs, including gigabit.
45215
45216     Signed-off-by: David Updegraff <dave@cray.com>
45217     Signed-off-by: Andy Fleming <afleming@freescale.com>
45218
45219 commit a75af9bfd8fff0499efdbb90601cec5a2afef117
45220 Author: James Yang <James.Yang@freescale.com>
45221 Date:   Wed Feb 7 15:28:04 2007 -0600
45222
45223     Conditionalize 8641 Rev1.0 MCM workarounds
45224
45225     Signed-off-by: James Yang <James.Yang@freescale.com>
45226     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45227
45228 commit f64702b7fc8f8df39d31add770df6e372f9e9ce3
45229 Author: Timur Tabi <timur@freescale.com>
45230 Date:   Mon Apr 30 13:59:50 2007 -0500
45231
45232     Fix memory initialization on MPC8349E-mITX
45233
45234     Define CFG_DDR_SDRAM_CLK_CNTL for the MPC8349E-mITX and MPC8349E-mITX-GP.
45235     This allows ddr->sdram_clk_cntl to be properly initialized.  This is necessary
45236     on some ITX boards, notably those with a revision 3.1 CPU.
45237
45238     Also change spd_sdram() in cpu/mpc83xx/spd_sdram.c to not write anything into
45239     ddr->sdram_clk_cntl if CFG_DDR_SDRAM_CLK_CNTL is not defined.
45240
45241     Signed-off-by: Timur Tabi <timur@freescale.com>
45242     Acked-by: Michael Benedict <MBenedict@twacs.com>
45243     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
45244
45245 commit 54b2d434ae9d01787936f34fe1759cf3d7624ae3
45246 Author: Kim Phillips <kim.phillips@freescale.com>
45247 Date:   Mon Apr 30 15:26:21 2007 -0500
45248
45249     mpc83xx: replace elaborate boottime verbosity with 'clocks' command
45250
45251     and fix CPU: to align with Board: display text.
45252
45253     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
45254
45255 commit c1ab82669d9525998c34e802a12cad662723f22a
45256 Author: James Yang <James.Yang@freescale.com>
45257 Date:   Fri Mar 16 13:02:53 2007 -0500
45258
45259     Rewrote picos_to_clk() to avoid rounding errors.
45260     Clarified that conversion is to DRAM clocks rather than platform clocks.
45261     Made function static to spd_sdram.c.
45262
45263     Signed-off-by: James Yang <James.Yang@freescale.com>
45264     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45265
45266 commit 8b39501d28754e72726ce7fb02310e56dbdf116a
45267 Author: Stefan Roese <sr@denx.de>
45268 Date:   Sun Apr 29 14:13:01 2007 +0200
45269
45270     ppc4xx: Bamboo: Use current NAND driver and *not* the legacy driver
45271
45272     Signed-off-by: Stefan Roese <sr@denx.de>
45273
45274 commit 864aa6a6a466fcb92bf32b1d7dba79cd709b52c9
45275 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
45276 Date:   Sun Apr 29 14:01:54 2007 +0200
45277
45278     [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
45279
45280     MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
45281     message. Use PVR to distinguish between the two variants, and print proper CPU
45282     information.
45283
45284     Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
45285     Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
45286     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
45287
45288 commit 5c5d3242935cf3543af01142627494434834cf98
45289 Author: Kim Phillips <kim.phillips@freescale.com>
45290 Date:   Wed Apr 25 12:34:38 2007 -0500
45291
45292     mpc83xx: minor fixups for 8313rdb introduction
45293
45294 commit ada4d40091f6ed4a4f0040e08d20db21967e4a67
45295 Author: Ladislav Michl <ladis@linux-mips.org>
45296 Date:   Wed Apr 25 16:01:26 2007 +0200
45297
45298     [PATCH] simplify silent console
45299
45300     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
45301     Acked-by: Stefan Roese <sr@denx.de>
45302
45303 commit 144876a380f5756f57412caf74c1d6dc201dd796
45304 Author: Michal Simek <monstr@monstr.eu>
45305 Date:   Tue Apr 24 23:01:02 2007 +0200
45306
45307     [PATCH] MTD partition support, JFFS2 support
45308
45309 commit 37ed6cdd4159195bfad68d8a237f6adda8f482cb
45310 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
45311 Date:   Tue Apr 24 14:03:45 2007 +0200
45312
45313     ppc4xx: setup 440EPx/GRx ZMII/RGMII bridge depending on PFC register content.
45314
45315     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
45316
45317 commit 66ed6cca3f340f7a8a06d9272ae2ef8e96f0273d
45318 Author: Andy Fleming <afleming@freescale.com>
45319 Date:   Mon Apr 23 02:37:47 2007 -0500
45320
45321     Reworked 85xx speed detection code
45322
45323     Changed the code to read the registers and calculate the clock
45324     rates, rather than using a "switch" statement.
45325
45326     Idea from Andrew Klossner <andrew@cesa.opbu.xerox.com>
45327
45328     Signed-off-by: Andy Fleming <afleming@freescale.com>
45329
45330 commit 81f481ca708ed6a56bf9c410e3191dbad581c565
45331 Author: Andy Fleming <afleming@freescale.com>
45332 Date:   Mon Apr 23 02:24:28 2007 -0500
45333
45334     Enable 8544 support
45335
45336     * Add support to the Makefile
45337     * Add 8544 configuration support to the tsec driver
45338     * Add 8544 SVR numbers to processor.h
45339
45340     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
45341     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45342
45343 commit 0d8c3a2096eaff8d7de89d45e9af4d4b0d4868fe
45344 Author: Andy Fleming <afleming@freescale.com>
45345 Date:   Fri Feb 23 17:12:25 2007 -0600
45346
45347     Support 1G size on 8548
45348
45349     e500v2 and newer cores support 1G page sizes.
45350
45351     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
45352     Signed-off-by: Andy Fleming <afleming@freescale.com>
45353
45354 commit 45cef612cc601d2d1c890fbbd7cdc9609a189a46
45355 Author: Andy Fleming <afleming@freescale.com>
45356 Date:   Fri Feb 23 17:11:16 2007 -0600
45357
45358     Changed BOOKE_PAGESZ_nGB to BOOKE_PAGESZ_nG
45359
45360     The other pagesz constants use one letter to specify order of
45361     magnitude.  Also change the one reference to it in mpc8548cds/init.S
45362
45363     Signed-off-by: Andy Fleming <afleming@freescale.com>
45364
45365 commit 1f9a318cea14272edd10d63739e2d326c90f430e
45366 Author: Andy Fleming <afleming@freescale.com>
45367 Date:   Fri Feb 23 16:28:46 2007 -0600
45368
45369     Only set ddrioovcr for 8548 rev1.
45370
45371     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
45372     Signed-off-by: Andy Fleming <afleming@freescale.com>
45373
45374 commit 9343dbf85bc03033f2102d8e8543567c2c1ad2d2
45375 Author: Andy Fleming <afleming@freescale.com>
45376 Date:   Sat Feb 24 01:16:45 2007 -0600
45377
45378     Tweak DDR ECC error counter
45379
45380     Enable single-bit error counter when memory was cleared by ddr controller.
45381
45382     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
45383     Signed-off-by: Andy Fleming <afleming@freescale.com>
45384
45385 commit 85e7c7a45e3dd9c7ce3e722352ba60f8df1a7a4b
45386 Author: Timur Tabi <timur@freescale.com>
45387 Date:   Mon Feb 12 13:34:55 2007 -0600
45388
45389     85xx: write MAC address to mac-address and local-mac-address
45390
45391     Some device trees have a mac-address property, some have local-mac-address,
45392     and some have both.  To support all of these device trees, ftp_cpu_setup()
45393     should write the MAC address to mac-address and local-mac-address, if they
45394     exist.
45395
45396     Signed-off-by: Timur Tabi <timur@freescale.com>
45397
45398 commit 03b81b48eec0ad249ec97a4ae16c36fa2e014ff4
45399 Author: Andy Fleming <afleming@freescale.com>
45400 Date:   Mon Apr 23 01:44:44 2007 -0500
45401
45402     Some 85xx cpu cleanups
45403
45404     * Cleaned up the TSR[WIS] clearing
45405     * Cleaned up DMA initialization
45406
45407     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
45408     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45409     Acked-by: Andy Fleming <afleming@freescale.com>
45410
45411 commit 151d5d992eab8c497b24c816c73dc1ad8bffb4eb
45412 Author: Andy Fleming <afleming@freescale.com>
45413 Date:   Mon Apr 23 01:32:22 2007 -0500
45414
45415     Add cpu support for the 8544
45416
45417     Recognize new SVR values, and add a few register definitions
45418
45419     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
45420     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45421     Acked-by: Andy Fleming <afleming@freescale.com>
45422
45423 commit 25d83d7f4ac65727182d8ddaf7ba42fa74cf65ae
45424 Author: Jon Loeliger <jdl@freescale.com>
45425 Date:   Wed Apr 11 16:51:02 2007 -0500
45426
45427     Add MPC8544DS basic port board files.
45428
45429     Add board port under new board/freescale directory
45430     structure and reuse existing PIXIS FPGA support there.
45431
45432     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
45433     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45434
45435 commit 0cde4b00fc7393b89f379d83a9d436dcb1334bfa
45436 Author: Jon Loeliger <jdl@freescale.com>
45437 Date:   Wed Apr 11 16:50:57 2007 -0500
45438
45439     Add MPC8544DS main configuration file.
45440
45441     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
45442     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45443
45444 commit 362dd83077ac04c0296bca3e824ec2fb3d44d9d6
45445 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
45446 Date:   Wed Dec 27 22:07:15 2006 +0300
45447
45448     Fix PCI I/O space mapping on Freescale MPC85x0ADS
45449
45450     The PCI I/O space mapping for Freescale MPC8540ADS board was broken by commit
45451     52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc which failed to update the #define's
45452     describing the local address window used for the PCI I/O space accesses -- fix
45453     this and carry over the necessary changes into the MPC8560ADS code since the
45454     PCI I/O space mapping was also broken for this board (by the earlier commit
45455     087454609e47295443af793a282cddcd91a5f49c).  Add the comments clarifying how
45456     the PCI I/O space must be mapped to all the MPC85xx board config. headers.
45457
45458     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
45459
45460      board/mpc8540ads/init.S      |    4 ++--
45461      board/mpc8560ads/init.S      |    4 ++--
45462      include/configs/MPC8540ADS.h |    5 ++---
45463      include/configs/MPC8541CDS.h |    2 +-
45464      include/configs/MPC8548CDS.h |    2 +-
45465      include/configs/MPC8560ADS.h |    8 ++++----
45466      6 files changed, 12 insertions(+), 13 deletions(-)
45467
45468 commit 96629cbabdb727d4a5e62542deefc01d498db6dc
45469 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
45470 Date:   Tue Dec 5 16:42:30 2006 +0800
45471
45472     u-boot: Fix e500 v2 core reset bug
45473
45474     The following patch fixes the e500 v2 core reset bug.
45475     For e500 v2 core, a new reset control register is added to reset the
45476     processor.
45477
45478     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
45479
45480 commit 63247a5acd58032e6cf33f525bc3923b467bac88
45481 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
45482 Date:   Wed Dec 20 11:01:00 2006 +0800
45483
45484     u-boot: v2: Remove the fixed TLB and LAW entrynubmer
45485
45486     Remove the fixed TLB and LAW entry nubmer. Use actually TLB and LAW
45487     entry number to control the loop.  This can reduce the potential risk
45488     for the 85xx processor increasing its TLB adn LAW entry number.
45489
45490     Signed-off-by: Swarthout Edward <swarthout@freescale.com>
45491     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
45492
45493 commit 0b1934ba12fd408fcc3b8bd9f4b04864c42a42bf
45494 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
45495 Date:   Mon Dec 18 17:01:04 2006 +0800
45496
45497     u-boot: Fix the 85xxcds tsec bug
45498
45499     Fix the 85xxcds tsec bug.
45500     When enable PCI, tsec.o should be added to u-boot.lds to make tsec work.
45501
45502     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
45503
45504 commit 7337b237ffc4aaf1b9467024fe472a880d852598
45505 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
45506 Date:   Fri Dec 15 14:43:31 2006 +0800
45507
45508     u-boot: Fix CPU2 errata on MPC8548CDS board
45509
45510     This patch apply workaround of CPU2 errata on MPC8548CDS board.
45511
45512     Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
45513
45514 commit 39b18c4f3e0b6d0dc00f4e68bad2da3766c85f09
45515 Author: ebony.zhu@freescale.com <ebony.zhu@freescale.com>
45516 Date:   Mon Dec 18 16:25:15 2006 +0800
45517
45518     u-boot: Disables MPC8548CDS 2T_TIMING for DDR by default
45519
45520     This patch disables MPC8548CDS 2T_TIMING for DDR by default.
45521
45522     Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
45523
45524 commit 41fb7e0f1ec9b91bdae2565bab5f2e3ee15039c7
45525 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
45526 Date:   Thu Dec 14 14:14:55 2006 +0800
45527
45528     u-boot: Enable PCI function and add PEX & rapidio memory map on MPC8548CDS board
45529
45530     Enable PCI function and add PEX & rapidio memory map on MPC8548CDS
45531     board.
45532     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
45533
45534 commit 96b8a05432f346f36493535c85320b70ec9c7c1b
45535 Author: Scott Wood <scottwood@freescale.com>
45536 Date:   Mon Apr 16 14:54:15 2007 -0500
45537
45538     mpc83xx: Add MPC8313ERDB support.
45539
45540     Signed-off-by: Scott Wood <scottwood@freescale.com>
45541
45542 commit 49ea3b6eafe606285ae4d5c378026153dde53200
45543 Author: Scott Wood <scottwood@freescale.com>
45544 Date:   Mon Apr 16 14:34:21 2007 -0500
45545
45546     mpc83xx: Add generic PCI setup code.
45547
45548     Board code can now request the generic setup code rather than having to
45549     copy-and-paste it for themselves.  Boards should be converted to use this
45550     once they're tested with it.
45551
45552     Signed-off-by: Scott Wood <scottwood@freescale.com>
45553
45554 commit 7c98e5193e93df6b9b651851d54b638a61ebb0ea
45555 Author: Scott Wood <scottwood@freescale.com>
45556 Date:   Mon Apr 16 14:34:19 2007 -0500
45557
45558     mpc83xx: Add 831x support to speed.c.
45559
45560     Signed-off-by: Scott Wood <scottwood@freescale.com>
45561
45562 commit 0f253283a32d91e06844d7f87f9b33f4f4fbce8f
45563 Author: Scott Wood <scottwood@freescale.com>
45564 Date:   Mon Apr 16 14:34:18 2007 -0500
45565
45566     mpc83xx: Add 831x support to global_data.h
45567
45568     Signed-off-by: Scott Wood <scottwood@freescale.com>
45569
45570 commit 95e7ef897e54591e615fc1b458b74c286fe1fb06
45571 Author: Scott Wood <scottwood@freescale.com>
45572 Date:   Mon Apr 16 14:34:16 2007 -0500
45573
45574     mpc83xx: Change PVR_83xx to PVR_E300C1-3, and update checkcpu().
45575
45576     Rather than misleadingly define PVR_83xx as the specific type of 83xx
45577     being built for, the PVR of each core revision is defined. checkcpu() now
45578     prints the core that it detects, rather than aborting if it doesn't find
45579     what it thinks it wants.
45580
45581     Signed-off-by: Scott Wood <scottwood@freescale.com>
45582
45583 commit a35b0c4950d84cf9e3a9e32b916135956d1ac636
45584 Author: Scott Wood <scottwood@freescale.com>
45585 Date:   Mon Apr 16 14:34:15 2007 -0500
45586
45587     mpc83xx: Recognize SPR values for MPC8311 and MPC8313.
45588
45589     Signed-off-by: Scott Wood <scottwood@freescale.com>
45590
45591 commit d87c57b201b4572d16f1b642998faa00c9912b16
45592 Author: Scott Wood <scottwood@freescale.com>
45593 Date:   Mon Apr 16 14:31:55 2007 -0500
45594
45595     mpc83xx: Add register definitions for MPC831x.
45596
45597     Signed-off-by: Scott Wood <scottwood@freescale.com>
45598
45599 commit 7fc4c71a143be8666d70803fb25ae60379c95622
45600 Author: Stefan Roese <sr@denx.de>
45601 Date:   Mon Apr 23 15:39:59 2007 +0200
45602
45603     Fix file mode
45604
45605     Signed-off-by: Stefan Roese <sr@denx.de>
45606
45607 commit 38257988abfe74d459ca2ad748b109ca04e4efe1
45608 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
45609 Date:   Mon Apr 23 15:30:39 2007 +0200
45610
45611     [PATCH] Avoid assigning PCI resources from zero address
45612
45613     If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
45614     core complains and IDE drivers fails to work.  Also, assigning zero to a BAR
45615     was illegal according to PCI 2.1 (the later revisions seem to have excluded the
45616     sentence about "0" being considered an invalid address) -- so, use a reasonable
45617     starting value of 0x1000 (that's what the most Linux archs are using).
45618
45619     Alternatively, one might have fixed the calls to pci_set_region() individually
45620     (some code even seems to have taken care of this issue) but that would have
45621     been a lot more work. :-)
45622
45623     Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
45624     Acked-by: Stefan Roese <sr@denx.de>
45625
45626 commit afb903a2eb9436baa9270ccc0c27082d86497d89
45627 Author: Jeffrey Mann <mannj@embeddedplanet.com>
45628 Date:   Mon Apr 23 14:00:11 2007 +0200
45629
45630     [patch] setenv(...) can delete environmentalvariables
45631
45632     update setenv() function so that entering a NULL value for the
45633     variable's value will delete the environmental variable
45634
45635     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
45636     Acked-by: Stefan Roese <sr@denx.de>
45637
45638 commit 36f104e5caa747d568eff26b369565af57c2ffa6
45639 Author: Mike Frysinger <vapier@gentoo.org>
45640 Date:   Mon Apr 23 13:54:24 2007 +0200
45641
45642     [patch] use unsigned char in smc91111 driver for mac
45643
45644     the v_mac variable in the smc91111 driver is declared as a signed char ...
45645     this causes problems when one of the bytes in the MAC is "signed" like 0xE0
45646     because when it gets printed out, you get a display like:
45647     0xFFFFFFE0 and that's no good
45648
45649     Signed-off-by: Mike Frysinger <vapier@gentoo.org>
45650
45651 commit d98c0885ad617fccf21e7c26ef8cb728fbfb2459
45652 Author: Rodolfo Giometti <giometti@enneenne.com>
45653 Date:   Mon Apr 23 13:10:52 2007 +0200
45654
45655     USB: (Another) delay for crappy USB keys.
45656
45657     Some USB keys are slow in giving back an answer when the Root HUB
45658     enables power lines.
45659
45660     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
45661
45662 commit 323bfa8f436dc3bc57187c9b1488bc3146ff1522
45663 Author: Stefan Roese <sr@denx.de>
45664 Date:   Mon Apr 23 12:00:22 2007 +0200
45665
45666     Remove BOARDLIBS usage completely
45667
45668     Signed-off-by: Stefan Roese <sr@denx.de>
45669
45670 commit 32556443840f127170e4baa8bdd5b567039f6c36
45671 Author: Michal Simek <monstr@monstr.eu>
45672 Date:   Sat Apr 21 21:07:22 2007 +0200
45673
45674     [PATCH] SystemACE support for Microblaze
45675
45676 commit 0643631aa1036cd746bf5d15f5a34bc7bc01ea4f
45677 Author: Michal Simek <monstr@monstr.eu>
45678 Date:   Sat Apr 21 21:02:40 2007 +0200
45679
45680     16bit read/write little endian
45681
45682 commit 9d1d6a34d26c5933bc097ce73c9348f95573cdd4
45683 Author: Michal Simek <monstr@monstr.eu>
45684 Date:   Sat Apr 21 20:53:31 2007 +0200
45685
45686     Change ML401 parameters - Xilinx BSP
45687
45688 commit 2e343b9a57f32e1bd08c35c9976910333fb4e13d
45689 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
45690 Date:   Wed Feb 28 05:37:29 2007 -0600
45691
45692     mpc8641hpcn: Fix LAW and TLB setup to use the IO_PHYS #defines.
45693
45694     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
45695
45696 commit 79cb47391eebef85acadb3f6961ef6c55cace6ac
45697 Author: Zhang Wei <wei.zhang@freescale.com>
45698 Date:   Fri Jan 19 10:42:37 2007 +0800
45699
45700     Enable LAWs for MPC8641 PCI-Ex2.
45701
45702     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
45703     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45704
45705 commit bd7851ce1e1f140665b520026abf1042968b1102
45706 Author: Jon Loeliger <jdl@freescale.com>
45707 Date:   Fri Apr 20 14:12:26 2007 -0500
45708
45709     mpc86xx; Write MAC address to mac-address and local-mac-address
45710
45711     Some device trees have a mac-address property, some have local-mac-address,
45712     and some have both.  To support all of these device trees, ftp_cpu_setup()
45713     should write the MAC address to mac-address and local-mac-address, if they
45714     exist.
45715
45716     Signed-off-by: Timur Tabi <timur@freescale.com>
45717     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45718
45719 commit 7dbdf28b8bd855a8530dc3292e4982575a197060
45720 Author: Jon Loeliger <jdl@freescale.com>
45721 Date:   Fri Apr 20 14:11:38 2007 -0500
45722
45723     mpc86xx: protect memcpy to bad address if a mac-address is missing from dt
45724
45725     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
45726     Signed-off-by: Jon Loeliger <jdl@freescale.com>
45727
45728 commit 14da5f7675bbb427c469e3f45006e027b6e21db9
45729 Author: Wolfgang Denk <wd@denx.de>
45730 Date:   Fri Apr 20 17:43:28 2007 +0200
45731
45732     Cleanup compiler warnings, update CHANGELOG
45733
45734     Signed-off-by: Wolfgang Denk <wd@denx.de>
45735
45736 commit 6923565db12af34fd5e02d354ee65a8c78ac460f
45737 Author: Detlev Zundel <dzu@denx.de>
45738 Date:   Fri Apr 20 12:01:47 2007 +0200
45739
45740     Fix breakage of NC650 board with respect to nand support.
45741
45742     Signed-off-by: Detlev Zundel <dzu@denx.de>
45743
45744 commit 39f23cd90947639ac278a18ff277ec786b5ac167
45745 Author: Domen Puncer <domen.puncer@telargo.com>
45746 Date:   Fri Apr 20 11:13:16 2007 +0200
45747
45748     [RFC PATCH] icecube/lite5200b: fix OF_TBCLK (timebase-frequency) calculation
45749
45750     G2 core reference manual says decrementer and time base
45751     are decreasing/increasing once every 4 bus clock cycles.
45752     Lets fix it, so time in Linux won't run twice as fast
45753
45754     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
45755     Acked-by: Grant Likely <grant.likely@secretlab.ca>
45756
45757 commit 7651f8bdbba03bb0b4f241e2d2c4cb65b230bd56
45758 Author: Gerald Van Baren <vanbaren@cideas.com>
45759 Date:   Thu Apr 19 23:14:39 2007 -0400
45760
45761     Fix serious pointer bug with bootm and reserve map.
45762
45763     What was suppose to be a stack variable was declared as a pointer,
45764       overwriting random memory.
45765     Also moved the libfdt.a requirement into the main Makefile.  That is
45766       The U-Boot Way.
45767
45768 commit d21686263574e95cb3e9e9b0496f968b1b897fdb
45769 Author: Stefan Roese <sr@denx.de>
45770 Date:   Thu Apr 19 09:53:52 2007 +0200
45771
45772     ppc4xx: Fix chip select timing for SysACE access on AMCC Katmai
45773
45774     Previous versions used full wait states for the chip select #1 which
45775     is connected to the Xilinix SystemACE controller on the AMCC Katmai
45776     evaluation board. This leads to really slow access and therefore low
45777     performance. This patch now sets up the chip select a lot faster
45778     resulting in much better read/write performance of the Linux driver.
45779
45780     Signed-off-by: Stefan Roese <sr@denx.de>
45781
45782 commit 37837828d89084879bee2f2b8c7c68d4695940df
45783 Author: Wolfgang Denk <wd@denx.de>
45784 Date:   Wed Apr 18 17:49:29 2007 +0200
45785
45786     Clenaup, update CHANGELOG
45787
45788     Signed-off-by: Wolfgang Denk <wd@denx.de>
45789
45790 commit fd094c6379e2ef8a4d0ceb5640b24cb0c8d04449
45791 Author: Wolfgang Denk <wd@denx.de>
45792 Date:   Wed Apr 18 17:20:58 2007 +0200
45793
45794     Update CHANGELOG
45795
45796     Signed-off-by: Wolfgang Denk <wd@denx.de>
45797
45798 commit 2a26ec4732efd7a308d0bbc97714c1d75ef1173b
45799 Author: Wolfgang Denk <wd@denx.de>
45800 Date:   Wed Apr 18 17:07:26 2007 +0200
45801
45802     Cleanup, update CHANGELOG
45803
45804     Sigend-off-by: Wolfgang Denk <wd@denx.de>
45805
45806 commit 5f6c732affea9647762d27a4617a2ae64c52dceb
45807 Author: Wolfgang Denk <wd@denx.de>
45808 Date:   Wed Apr 18 16:17:46 2007 +0200
45809
45810     Update CHANGELOG
45811
45812 commit ad4eb555671d97f96dc56eab55103b1f86874b01
45813 Author: Wolfgang Denk <wd@denx.de>
45814 Date:   Wed Apr 18 14:30:39 2007 +0200
45815
45816     MCC200 board: remove warning which is obsolete after PSoC firmware changes
45817
45818     Signed-off-by: Wolfgang Denk <wd@denx.de>
45819
45820 commit 3747a3f010b2b1442dec3e871c69788b6017aaae
45821 Author: Domen Puncer <domen.puncer@telargo.com>
45822 Date:   Wed Apr 18 12:11:05 2007 +0200
45823
45824     [PATCH] icecube/lite5200b: document wakeup from low-power support
45825
45826     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
45827
45828 commit e673226ff9d6aa91b47ceac74b8c13770b06bb37
45829 Author: Stefan Roese <sr@denx.de>
45830 Date:   Wed Apr 18 12:07:47 2007 +0200
45831
45832     ppc4xx: Update Acadia to not setup PLL when booting via bootstrap EEPROM
45833
45834     Signed-off-by: Stefan Roese <sr@denx.de>
45835
45836 commit 90e6f41cf09fc98f6ccb510e183d53ab8546cf2f
45837 Author: Stefan Roese <sr@denx.de>
45838 Date:   Wed Apr 18 12:05:59 2007 +0200
45839
45840     ppc4xx: Add output for bootrom location to 405EZ ports
45841
45842     Now 405EZ ports also show upon bootup from which boot device
45843     they are configured to boot:
45844
45845     U-Boot 1.2.0-gd3832e8f-dirty (Apr 18 2007 - 07:47:05)
45846
45847     CPU:   AMCC PowerPC 405EZ Rev. A at 199.999 MHz (PLB=133, OPB=66, EBC=66 MHz)
45848            Bootstrap Option E - Boot ROM Location EBC (32 bits)
45849            16 kB I-Cache 16 kB D-Cache
45850     Board: Acadia - AMCC PPC405EZ Evaluation Board
45851
45852     Signed-off-by: Stefan Roese <sr@denx.de>
45853
45854 commit 9c00dfb0bf89c8c23e8af5b5bdf49cf66d769f85
45855 Author: Peter Pearse <peter.pearse@arm.com>
45856 Date:   Tue Apr 17 13:30:33 2007 +0100
45857
45858     Move ppearse to ARM board list
45859     Add Konstantin Kletschke for scb9328.
45860     Signed-off-by: Peter Pearse <peter.pearse@arm.com>
45861
45862 commit d3832e8fe1b214ec62424eac36cfda9fc56d21b3
45863 Author: Domen Puncer <domen.puncer@telargo.com>
45864 Date:   Mon Apr 16 14:00:13 2007 +0200
45865
45866     [PATCH] icecube/lite5200b: wakeup from low-power support
45867
45868     U-Boot part of Lite5200b low power mode support.
45869     Puts SDRAM out of self-refresh and transfers control to
45870     address saved at physical 0x0.
45871
45872     Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
45873     Acked-by: Grant Likely <grant.likely@secretlab.ca>
45874
45875 commit f35a53fc7b0c79fcfe7bdc01163c4b34aaba1460
45876 Author: Gerald Van Baren <vanbaren@cideas.com>
45877 Date:   Sun Apr 15 13:54:26 2007 -0400
45878
45879     Fix the ft_cpu_setup() property settings.
45880
45881     Use "setter" functions instead of flags, cleaner and more flexible.
45882     It also fixes the problem noted by Timur Tabi that the ethernet MAC
45883     addresses were all being set incorrectly to the same MAC address.
45884
45885 commit c28abb9c614f65ce2096cc4a66fc886c77d0e5a4
45886 Author: Gerald Van Baren <vanbaren@cideas.com>
45887 Date:   Sat Apr 14 22:51:24 2007 -0400
45888
45889     Improve the bootm command for CONFIG_OF_LIBFDT
45890
45891     In bootm, create the "/chosen" node only if it doesn't already exist
45892       (better matches the previous behavior).
45893     Update for proper reserved memory map handling for initrd.
45894
45895 commit 3f9f08cf91c8a6949a5d78a18bd3d8df7b86d888
45896 Author: Gerald Van Baren <vanbaren@cideas.com>
45897 Date:   Sat Apr 14 22:46:41 2007 -0400
45898
45899     Add some utilities to manipulate the reserved memory map.
45900
45901 commit 8048cdd56f04a756eeea4951f402bf5cc33785db
45902 Author: Wolfgang Denk <wd@denx.de>
45903 Date:   Sat Apr 14 21:16:54 2007 +0200
45904
45905     Update CHANGELOG
45906
45907 commit 8e6875183cdca91c134408d119d4abcd48ef6856
45908 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
45909 Date:   Sun Dec 17 18:56:46 2006 +0100
45910
45911     AVR32: Enable MMC support
45912
45913     Set up the portmux for the MMC interface and enable the MMC driver
45914     along with support for DOS partitions, ext2 and FAT filesystems.
45915
45916     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
45917
45918 commit fc26c97bb6df41b4a95662c34054fe912387bf38
45919 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
45920 Date:   Fri Jan 20 10:03:53 2006 +0100
45921
45922     Atmel MCI driver
45923
45924     Driver for the Atmel MCI controller (MMC interface) for AT32AP CPUs.
45925
45926     The AT91 ARM-based CPUs use basically the same hardware, so it should
45927     be possible to share this driver, but no effort has been made so far.
45928
45929     Hardware documentation can be found in the AT32AP7000 data sheet,
45930     which can be downloaded from
45931
45932     http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
45933
45934     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
45935
45936 commit 05fdab1ef6a10d049a50021a86f1226f444d9b9f
45937 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
45938 Date:   Sun Dec 17 18:55:37 2006 +0100
45939
45940     AVR32: Add clk and gpio infrastructure for mmci
45941
45942     Implement functions for configuring the mmci pins, as well as
45943     functions for getting the clock rate of the mmci controller.
45944
45945     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
45946
45947 commit 7fac3f69e9f05c5e5326681976c35d129324c4de
45948 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
45949 Date:   Sun Dec 17 18:53:56 2006 +0100
45950
45951     Enable partition support with MMC
45952
45953     Include implementations of init_part() and get_partition_info() when
45954     CONFIG_MMC is set.
45955
45956     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
45957
45958 commit 9a24f477a1ed5bb0f74377c985d754ebbfa44872
45959 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
45960 Date:   Sun Dec 17 17:14:30 2006 +0100
45961
45962     AVR32: Enable networking
45963
45964     Implement MACB initialization for AVR32 and ATSTK1000, and turn
45965     everything on, including the MACB driver.
45966
45967     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
45968
45969 commit 5c1fe1ffffd1750a7e47e5a2e2cd600c00e4f009
45970 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
45971 Date:   Fri Jan 20 10:03:34 2006 +0100
45972
45973     Atmel MACB ethernet driver
45974
45975     Driver for the Atmel MACB on-chip ethernet controller.
45976
45977     This driver has been tested on the ATSTK1000 board with a AT32AP7000
45978     CPU. It should probably work on AT91SAM926x as well with some minor
45979     modifications.
45980
45981     Hardware documentation can be found in the AT32AP7000 data sheet,
45982     which can be downloaded from
45983
45984     http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
45985
45986     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
45987
45988 commit b4ec9c2d43d894729bb633bfdbdfa95a962c1556
45989 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
45990 Date:   Sun Dec 17 16:56:14 2006 +0100
45991
45992     AVR32: Add clk and gpio infrastructure for macb0 and macb1
45993
45994     Implement functions for configuring the macb0 and macb1 pins, as
45995     well as functions for getting the clock rate of the various
45996     busses the macb ethernet controllers are connected to.
45997
45998     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
45999
46000 commit d5acb95b16a0a74c643524342c3437e765426d05
46001 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46002 Date:   Sun Dec 17 15:39:15 2006 +0100
46003
46004     AVR32: Implement simple DMA memory allocator
46005
46006     Implement dma_alloc_coherent() which returns cache-aligned
46007     uncacheable memory.
46008
46009     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46010
46011 commit 91975b0fea773c9e681fea8cf3349669f27685ee
46012 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46013 Date:   Sun Dec 17 15:46:02 2006 +0100
46014
46015     Import <linux/mii.h> from the Linux kernel
46016
46017     Instead of creating yet another set of MII register definitions
46018     in the macb driver, here's a complete set of definitions for everyone
46019     to use.
46020
46021     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46022
46023 commit 1b804b229556a4d862da93c0ec94e79419364b2c
46024 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46025 Date:   Wed Mar 21 19:47:36 2007 +0100
46026
46027     AVR32: Include more commands for ATSTK1000
46028
46029     Include the imi, imls and jffs commands sets by default on ATSTK1000.
46030     Also define CONFIG_BOOTARGS to something more useful, define
46031     CONFIG_BOOTCOMMAND and enable autoboot by default.
46032
46033     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46034
46035 commit 9c0deb5ae3ea0189f2e08ac29ef1316f1fb8548d
46036 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46037 Date:   Wed Mar 21 19:44:48 2007 +0100
46038
46039     AVR32: Provide a definition of struct stat
46040
46041     Copy the definition of struct stat from the Linux kernel.
46042
46043     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46044
46045 commit 12f099c08167a7a51aeee623bc16dafd0841271c
46046 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46047 Date:   Sun Dec 17 14:46:06 2006 +0100
46048
46049     AVR32: Use initdram() instead of board_init_memories()
46050
46051     Conform to the "standard" interface and use initdram() instead of
46052     board_init_memories() on AVR32. This enables us to get rid of the
46053     sdram_size member of the global_data struct as well.
46054
46055     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46056
46057 commit 1f4f2121c2685182eb87fa9a9b799d1917387a1c
46058 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46059 Date:   Mon Nov 20 15:53:10 2006 +0100
46060
46061     AVR32: Relocate u-boot to SDRAM
46062
46063     Relocate the u-boot image into SDRAM like everyone else does. This
46064     means that we can handle much larger .data and .bss than we used to.
46065
46066     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46067
46068 commit df548d3c3e2bbc40258713167859ffc2ce99a900
46069 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46070 Date:   Sun Nov 19 18:06:53 2006 +0100
46071
46072     AVR32: Resource management rewrite
46073
46074     Rewrite the resource management code (i.e. I/O memory, clock gating,
46075     gpio) so it doesn't depend on any global state. This is necessary
46076     because this code is heavily used before relocation to RAM, so we
46077     can't write to any global variables.
46078
46079     As an added bonus, this makes u-boot's memory footprint a bit smaller,
46080     although some functionality has been left out; all clocks are enabled
46081     all the time, and there's no checking for gpio line conflicts.
46082
46083     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46084
46085 commit 03d1e1365796cd15d1726e8a51fd8b5be50b2fe9
46086 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46087 Date:   Sat Nov 18 18:01:13 2006 +0100
46088
46089     AVR32: Clean up memory-map.h for at32ap7000
46090
46091     Convert spaces to tabs (must have missed this one last time around),
46092     sort the entries by address and group them together by bus
46093     connectivity.
46094
46095     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46096
46097 commit 28c699ef69f4b6cdf252e4747b7b590028a88981
46098 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46099 Date:   Sat Nov 18 17:32:31 2006 +0100
46100
46101     AVR32: Build position-independent u-boot
46102
46103     Add -fPIC -mno-init-got to the avr32-specific CFLAGS to make u-boot
46104     position independent. This will make relocation a lot easier.
46105
46106     -mno-init-got means that gcc shouldn't emit code to load the GOT
46107     address into r6 in every function prologue. We do it once and for
46108     all in the early startup assembly code, so enabling this option
46109     makes u-boot a bit faster and smaller.
46110
46111     The assembly parts have always been position-independent, so no code
46112     changes should be necessary.
46113
46114     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46115
46116 commit 5374b36de91d006d1df9536259fa9f66b01aa3aa
46117 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46118 Date:   Sat Nov 18 17:24:31 2006 +0100
46119
46120     AVR32: Use avr32-linux- cross-compilation prefix by default
46121
46122     It doesn't really matter which toolchain you use to compile u-boot,
46123     but the avr32-linux one is probably what most people have installed.
46124
46125     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46126
46127 commit c841beeddebece0039e724fb27f4d1a39ee1c6b6
46128 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
46129 Date:   Sat Nov 18 17:15:30 2006 +0100
46130
46131     AVR32: Split start_u_boot into board_init_f and board_init_r
46132
46133     Split the avr32 initialization code into a function to run before
46134     relocation, board_init_f and a function to run after relocation,
46135     board_init_r. For now, board_init_f simply calls board_init_r
46136     at the end.
46137
46138     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
46139
46140 commit 37403005cfe6bb13964d450f6a48a0b0f2f7017e
46141 Author: Heiko Schocher <hs@pollux.denx.de>
46142 Date:   Sat Apr 14 05:26:48 2007 +0200
46143
46144     [Fix]       Set the LED status register on the UC101 for the LXT971 PHY.
46145             clear the Display after reset.
46146
46147     Signed-off-by: Heiko Schocher <hs@denx.de>
46148
46149 commit 7882751c78b7ecabfd49b0eff8de27661c71f16c
46150 Author: Denis Peter <d.peter@mpl.ch>
46151 Date:   Fri Apr 13 09:13:33 2007 +0200
46152
46153     [PATCH] Fix bugs in cmd_ide.c and cmd_scsi.c
46154
46155     Fix bug introduced by "Fix get_partition_info() parameter error in all
46156     other calls" from 2005-03-04 in cmd_ide.c and cmd_scsi.c, which prevented
46157     to use diskboot or scsiboot form another device than 0.
46158
46159     Signed-off-by: Denis Peter <d.peter@mpl.ch>
46160
46161 commit 0b94504d22e70f537c17a0d38c87edb6e370977d
46162 Author: Greg Lopp <lopp@pobox.com>
46163 Date:   Fri Apr 13 08:02:24 2007 +0200
46164
46165     [PATCH] Fix use of "void *" for block dev read/write buffer pointers
46166
46167     Signed-of-by: Greg Lopp <lopp@pobox.com>
46168     Acked-by: Grant Likely <grant.likely@secretlab.ca>
46169
46170 commit 6fbf261f8df294e589cfadebebe5468e3c0f29e9
46171 Author: Xie Xiaobo <r63061@freescale.com>
46172 Date:   Fri Mar 9 19:08:25 2007 +0800
46173
46174     Fix two bugs for MPC83xx DDR2 controller SPD Init
46175
46176     There are a few bugs in the cpu/mpc83xx/spd_sdram.c
46177     the first bug is that the picos_to_clk routine introduces a huge
46178     rounding error in 83xx.
46179     the second bug is that the mode register write recovery field is
46180     tWR-1, not tWR >> 1.
46181
46182 commit 2ad3aba01d37b72e7c957b07e102fccd64fe6d13
46183 Author: Jeffrey Mann <mannj@embeddedplanet.com>
46184 Date:   Thu Apr 12 14:15:59 2007 +0200
46185
46186     ppc4xx: Fix i2c divisor calcularion for PPC4xx
46187
46188     This patch fixes changes the i2c_init(...) function to use the function
46189     get_OPB_freq() rather than calculating the OPB speed by
46190     sysInfo.freqPLB/sysInfo.pllOpbDiv. The get_OPB_freq() function is
46191     specific per processor. The prior method was not and so was calculating
46192     the wrong speed for some PPC4xx processors.
46193
46194     Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
46195     Signed-off-by: Stefan Roese <sr@denx.de>
46196
46197 commit 6c9ba919375db977aaad9146bf320c7afd07ae7a
46198 Author: Wolfgang Denk <wd@denx.de>
46199 Date:   Wed Apr 11 17:25:01 2007 +0200
46200
46201     Update CHANGELOG
46202
46203     Signed-off-by: Wolfgang Denk <wd@denx.de>
46204
46205 commit 51056dd9863e6a1bc363afbbe1775c58cd967418
46206 Author: Wolfgang Denk <wd@denx.de>
46207 Date:   Wed Apr 11 17:22:55 2007 +0200
46208
46209     Update for SC3 board
46210
46211     * Make IDE timeout configurable through ide_reset_timeout variable.
46212     * Use Newline as "password" string
46213     * Use just a single partition in NAND flash
46214
46215 commit 3d98b85800c80dc68227c8f10bf5c93456d6d054
46216 Author: Haiying Wang <haiying.wang@freescale.com>
46217 Date:   Mon Jan 22 12:37:30 2007 -0600
46218
46219     Add PIXIS FPGA support for MPC8641HPCN board.
46220
46221     Move the 8641HPCN's PIXIS code to the new directory
46222     board/freescale/common/ as it will be shared by
46223     future boards not in the same processor family.
46224
46225     Write a "pixis_reset" command that utilizes the FPGA
46226     reset sequencer to support alternate soft-reset options
46227     such as using the "alternate" flash bank, enabling
46228     the watch dog, or choosing different CPU frequencies.
46229
46230     Add documentation for the pixis_reset to README.mpc8641hpcn.
46231
46232     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
46233     Signed-off-by: Jon Loeliger <jdl@freescale.com>
46234
46235 commit 64dbbd40c58349b64f43fd33dbb5ca0adb67d642
46236 Author: Gerald Van Baren <vanbaren@cideas.com>
46237 Date:   Fri Apr 6 14:19:43 2007 -0400
46238
46239     Moved fdt command support code to fdt_support.c
46240
46241     ...in preparation for improving the bootm command's handling of fdt blobs.
46242     Also cleaned up some coding sloppiness.
46243
46244 commit 6679f9299534e488a171a9bb8f9bb891de247aab
46245 Author: Gerald Van Baren <vanbaren@cideas.com>
46246 Date:   Fri Apr 6 14:17:14 2007 -0400
46247
46248     libfdt: Make fdt_check_header() public
46249
46250     Changed _fdt_check_header() to fdt_check_header() and made it part of
46251     the interface - it is a useful routine.
46252
46253     Also did some asthetics cleanup to the include files (headers).
46254
46255 commit c0707ce65677650b5ceab0500ee50ae5168afef2
46256 Author: Aubrey Li <aubrey.adi@gmail.com>
46257 Date:   Thu Apr 5 18:34:06 2007 +0800
46258
46259     [Blackfin][PATCH] Kill off a bunch of common local prototypes
46260
46261 commit 7b7e30aa64bb6657a1bfd32fdbdbfeb561e6a48d
46262 Author: Aubrey Li <aubrey.adi@gmail.com>
46263 Date:   Thu Apr 5 18:33:04 2007 +0800
46264
46265     [Blackfin][PATCH] Fix dynamic CPLB generation issue
46266
46267 commit 0445e3a264251d75b1be45ef713c70726a2952f0
46268 Author: Aubrey Li <aubrey.adi@gmail.com>
46269 Date:   Thu Apr 5 18:31:47 2007 +0800
46270
46271     [Blackfin][PATCH] minior cleanup
46272
46273 commit 155fd766573981090e638b493d5857562151862e
46274 Author: Aubrey Li <aubrey.adi@gmail.com>
46275 Date:   Thu Apr 5 18:31:18 2007 +0800
46276
46277     [Blackfin][PATCH] Fix copyright and update license
46278
46279 commit 9fd437bbd75d282f899e1da50be20a2bf38450bc
46280 Author: Aubrey Li <aubrey.adi@gmail.com>
46281 Date:   Thu Apr 5 18:30:25 2007 +0800
46282
46283     [Blackfin][PATCH] Add BF537 EMAC driver initialization
46284
46285 commit 889256e8604e0c68db1d866d720894dffede9df6
46286 Author: Aubrey Li <aubrey.adi@gmail.com>
46287 Date:   Thu Apr 5 18:29:55 2007 +0800
46288
46289     [Blackfin][PATCH] call real the system synchronize instruction
46290
46291 commit e0df1c921b788289564e4c1ee7120a6a9cd3ab05
46292 Author: Aubrey Li <aubrey.adi@gmail.com>
46293 Date:   Thu Apr 5 18:29:17 2007 +0800
46294
46295     [Blackfin][PATCH] remove asm/page.h as we do not actually use/want any of these definitions nor does any other arch include it
46296
46297 commit dfeeab2cd680df047e68e723b246adf6f33bb556
46298 Author: Aubrey Li <aubrey.adi@gmail.com>
46299 Date:   Thu Apr 5 18:28:34 2007 +0800
46300
46301     [Blackfin][PATCH]: fix flash unaligned copy issue
46302
46303 commit 443feb740584e406efa203af909fe2926608e8d5
46304 Author: Igor Marnat <marny@rambler.ru>
46305 Date:   Wed Mar 21 09:55:01 2007 +0300
46306
46307     Update usage of 'nc' in README.NetConsole
46308
46309     Added information about usage of NetConsole on systems where the -l and -p
46310     switches are mutually exclusive.
46311
46312     Signed-off-by: Igor Marnat <marny@rambler.ru>
46313     Signed-off-by: Ben Warren <bwarren@qstreams.com>
46314
46315 commit 31c98a88228021b314c89ebb8104fb6473da4471
46316 Author: Wolfgang Denk <wd@denx.de>
46317 Date:   Wed Apr 4 02:09:30 2007 +0200
46318
46319     Minor coding style cleanup.
46320
46321 commit 94abd7c0583ebe01e799b25f451201deeaab550d
46322 Author: Wolfgang Denk <wd@denx.de>
46323 Date:   Wed Apr 4 01:49:15 2007 +0200
46324
46325     Minor cleanup.
46326
46327 commit 822af351ad2babc7d99033361a5fcacd30f6bc78
46328 Author: Rodolfo Giometti <giometti@enneenne.com>
46329 Date:   Tue Apr 3 14:27:18 2007 +0200
46330
46331     Support for the Philips ISP116x HCD (Host Controller Driver)
46332
46333     Signed-off-by: Rodolfo Giometti <giometti@enneenne.com>
46334
46335 commit edf5851be6c17c031d4f71dd5b0a12040b7c50c8
46336 Author: Markus Klotzbuecher <mk@denx.de>
46337 Date:   Tue Apr 3 14:27:08 2007 +0200
46338
46339     USB: cleanup monahans usb support. Remove dead code.
46340
46341     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
46342
46343 commit a65c5768e5537530bd1780af3d3fddc3113a163c
46344 Author: Stefan Roese <sr@denx.de>
46345 Date:   Mon Apr 2 10:09:30 2007 +0200
46346
46347     ppc4xx: Change SysACE address on Katmai
46348
46349     With this new base address of the Xilinx SystemACE controller
46350     the Linux driver will be easier to adapt, since it can now be
46351     mapped via the "normal" ioremap() call.
46352
46353     Signed-off-by: Stefan Roese <sr@denx.de>
46354
46355 commit aea03c4e8c3a21ce43d3faf48a6e6d474c8bdf73
46356 Author: Gerald Van Baren <vanbaren@cideas.com>
46357 Date:   Sat Mar 31 14:30:53 2007 -0400
46358
46359     Fix some minor whitespace violations.
46360
46361 commit 213bf8c822de8eecaf69860684469cdaba2e9e6a
46362 Author: Gerald Van Baren <vanbaren@cideas.com>
46363 Date:   Sat Mar 31 12:23:51 2007 -0400
46364
46365     Add a flattened device tree (fdt) command (2 of 2)
46366
46367     Modifications to the existing code to support the new fdt command.
46368
46369 commit 781e09ee6e3e3e392ab362c1f0ef1068adc76e3e
46370 Author: Gerald Van Baren <vanbaren@cideas.com>
46371 Date:   Sat Mar 31 12:22:10 2007 -0400
46372
46373     Add a flattened device tree (fdt) command (1 of 2)
46374
46375     The fdt command uses David Gibson's libfdt library to manipulate as well
46376     as print the flattened device tree.  This patch is the new command,
46377     the second part is the modifications to the existing code.
46378
46379 commit 3af0d587d93e0be5f96e1b30fa41e662f8b0803e
46380 Author: Gerald Van Baren <vanbaren@cideas.com>
46381 Date:   Sat Mar 31 12:13:43 2007 -0400
46382
46383     libfdt: Enhanced and published fdt_next_tag()
46384
46385     Enhanced the formerly private function _fdt_next_tag() to allow stepping
46386       through the tree, used to produce a human-readable dump, and made
46387       it part of the published interface.
46388     Also added some comments.
46389
46390 commit fa3a74cec73dfd06a5ae35a9a3368200273aaa71
46391 Author: Gerald Van Baren <vanbaren@cideas.com>
46392 Date:   Sat Mar 31 12:05:39 2007 -0400
46393
46394     libfdt: Customizations for use by u-boot.
46395
46396     Changes to David Gibson's original source to fit into u-boot's
46397     environment.  No functionality changes.
46398
46399 commit 35748177c64a4a83a00057e93bb33e40278a2a96
46400 Author: Gerald Van Baren <vanbaren@cideas.com>
46401 Date:   Sat Mar 31 12:00:56 2007 -0400
46402
46403     libfdt: Import libfdt source (2 of 2)
46404
46405     This adds the applicable libfdt source files (unmodified) and a README
46406     to explain where the source came from.
46407
46408 commit 7cd5da0fe877e7171a4cdd44880bce783132871a
46409 Author: Gerald Van Baren <vanbaren@cideas.com>
46410 Date:   Sat Mar 31 11:59:59 2007 -0400
46411
46412     libfdt: Import libfdt source (1 of 2)
46413
46414     This adds the applicable libfdt source files (unmodified) and a README
46415     to explain where the source came from.
46416
46417 commit da6ebc1bc082cbe3b6bbde079cafe09f7ebbad4b
46418 Author: Stefan Roese <sr@denx.de>
46419 Date:   Sat Mar 31 13:16:23 2007 +0200
46420
46421     ppc4xx: Update Katmai bootstrap command
46422
46423     Now the DDR2 frequency is also 2*PLB frequency when 166MHz PLB
46424     is selected.
46425
46426     Signed-off-by: Stefan Roese <sr@denx.de>
46427
46428 commit cabee756a6532986729477c3cc1ea16ef8517ad2
46429 Author: Stefan Roese <sr@denx.de>
46430 Date:   Sat Mar 31 13:15:06 2007 +0200
46431
46432     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
46433
46434     Additional RAM information is now printed upon powerup, like
46435     DDR2 frequency and CAS latency.
46436
46437     Signed-off-by: Stefan Roese <sr@denx.de>
46438
46439 commit 60723803431ac75cad085690789e433d5ab9174e
46440 Author: Stefan Roese <sr@denx.de>
46441 Date:   Sat Mar 31 08:48:36 2007 +0200
46442
46443     ppc4xx: Change Yucca config file to support ECC
46444
46445     With the updated 44x DDR2 driver the Yucca board now supports
46446     ECC generation and checking.
46447
46448     Signed-off-by: Stefan Roese <sr@denx.de>
46449
46450 commit 490e5730c674b20d708b783a2c5ffd7208f83873
46451 Author: Stefan Roese <sr@denx.de>
46452 Date:   Sat Mar 31 08:47:34 2007 +0200
46453
46454     ppc4xx: Fix "bootstrap" command for Katmai board
46455
46456     The board specific "bootstrap" command is now fixed and can
46457     be used for the AMCC Katmai board to configure different
46458     CPU/PLB/OPB frequencies.
46459
46460     Signed-off-by: Stefan Roese <sr@denx.de>
46461
46462 commit 94f54703c3a776ec23e427ca2a16e0a79a5d50c1
46463 Author: Stefan Roese <sr@denx.de>
46464 Date:   Sat Mar 31 08:46:08 2007 +0200
46465
46466     ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
46467
46468     Fix a bug in the auto calibration routine. This driver now runs
46469     more reliable with the tested modules. It's also tested with
46470     167MHz PLB frequency (667MHz DDR2 frequency) on the Katmai.
46471
46472     Signed-off-by: Stefan Roese <sr@denx.de>
46473
46474 commit 342cd097be1e7affe82f42ab3da220959a699e64
46475 Author: Michal Simek <monstr@monstr.eu>
46476 Date:   Fri Mar 30 22:52:09 2007 +0200
46477
46478     [PATCH] Clean include dependence
46479
46480 commit 6f934210fb293fde2cfb4251c6d96fdc58b6a906
46481 Author: Michal Simek <monstr@monstr.eu>
46482 Date:   Fri Mar 30 22:42:45 2007 +0200
46483
46484     [CLEAN] Remove inefficient Suzaku code
46485
46486 commit 430f1b0f9a670c2f13eaa52e66a10db96dd3647d
46487 Author: Stefan Roese <sr@denx.de>
46488 Date:   Wed Mar 28 15:03:16 2007 +0200
46489
46490     Merge some AMCC make targets to keep the top-level Makefile smaller
46491
46492     Signed-off-by: Stefan Roese <sr@denx.de>
46493
46494 commit 0c75c9d84307a9f1cbe1ff0c4d8937ee3a96475e
46495 Author: Stefan Roese <sr@denx.de>
46496 Date:   Wed Mar 28 14:52:12 2007 +0200
46497
46498     i2c: Enable "old" i2c commands even when CONFIG_I2C_CMD_TREE is defined
46499
46500     The "old" i2c commands (iprobe, imd...) are now compiled in again,
46501     even when the i2c command tree is enabled via the CONFIG_I2C_CMD_TREE
46502     config option.
46503
46504     Signed-off-by: Stefan Roese <sr@denx.de>
46505
46506 commit 5da048adf44bea5e3b94080d02903c2e3fe7aa4a
46507 Author: Michal Simek <monstr@monstr.eu>
46508 Date:   Tue Mar 27 00:32:16 2007 +0200
46509
46510     PATCH: Resolve GPL license problem
46511
46512 commit ae00bb4b2944dc64a485ed72a19754b11af7c223
46513 Author: Rodolfo Giometti <giometti@enneenne.com>
46514 Date:   Mon Mar 26 12:03:36 2007 +0200
46515
46516     PXA: pxa27x USB OHCI support
46517
46518     Signed-off-by: Rodolfo Giometti <giometti@linux.it>
46519
46520 commit ae79f60677c208326535647dcbd5c3ec40dbcb0b
46521 Author: Markus Klotzbuecher <mk@denx.de>
46522 Date:   Mon Mar 26 11:21:05 2007 +0200
46523
46524     USB: remove the S3C24X0_merge #define, which was introduced while
46525     merging OHCI drivers.
46526
46527     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
46528
46529 commit 1798049522f594013aea29457d46794298c6ae15
46530 Author: Michal Simek <root@monstr.eu>
46531 Date:   Mon Mar 26 01:39:07 2007 +0200
46532
46533     Support for XUPV2P board
46534     Reset support
46535     BSP autoconfig support
46536
46537 commit 0d974d5297349504a2ddfa09314be573b5df320a
46538 Author: Stefan Roese <sr@denx.de>
46539 Date:   Sat Mar 24 15:57:09 2007 +0100
46540
46541     [PATCH] Add 4xx GPIO functions
46542
46543     This patch adds some 4xx GPIO functions. It also moves some of the
46544     common code and defines into a common 4xx GPIO header file.
46545
46546     Signed-off-by: Stefan Roese <sr@denx.de>
46547
46548 commit 2db633658bbf366ab0c8dad7a0727e1fb2ae6b11
46549 Author: Stefan Roese <sr@denx.de>
46550 Date:   Sat Mar 24 15:55:58 2007 +0100
46551
46552     [PATCH] Small Sequoia cleanup
46553
46554     Signed-off-by: Stefan Roese <sr@denx.de>
46555
46556 commit 3cb86f3e40d2a80356177434a99f75bc8baa9caf
46557 Author: Stefan Roese <sr@denx.de>
46558 Date:   Sat Mar 24 15:45:34 2007 +0100
46559
46560     [PATCH] Clean up 40EZ/Acadia support
46561
46562     This patch cleans up all the open issue of the preliminary
46563     Acadia support.
46564
46565     Signed-off-by: Stefan Roese <sr@denx.de>
46566
46567 commit 6eb1df835191d8ce4b81d5af40fa8e0fbe78e997
46568 Author: Jon Loeliger <jdl@freescale.com>
46569 Date:   Tue Dec 12 11:02:20 2006 -0600
46570
46571     Fix 8641HPCN problem with ld version 2.16
46572
46573     (Dot outside sections problem).
46574
46575     This fix is in the spirit of 807d5d7319330e336ab34a5623c5e0d73b87d540.
46576
46577     Signed-off-by: Jon Loeliger <jdl@freescale.com>
46578
46579 commit 9964a4dd0d4ef5a037febaebf1aa494b1a72991c
46580 Author: Haiying Wang <haiying.wang@freescale.com>
46581 Date:   Thu Dec 7 10:35:55 2006 -0600
46582
46583     Set Rev 2.x 86xx PIC in mixed mode.
46584
46585     Prevent false interrupt from hanging Linux as MSR[EE] is set
46586     to enable interrupts by changing the PIC out of the default
46587     pass through mode into mixed mode.
46588
46589     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
46590     Signed-off-by: Jon Loeliger <jdl@freescale.com>
46591
46592 commit 5a58a73ceb0a4059c42ef64cedbc1a45e0aaa00e
46593 Author: Jason Jin <jason.jin@freescale.com>
46594 Date:   Thu Dec 7 10:32:35 2006 -0600
46595
46596     Add flash cmd function to 8641HPCN ramboot
46597
46598     Also fixes some commmand for 8641 HPCN ramboot case.
46599
46600     Signed-off-by: Jason Jin <jason.jin@freescale.com>
46601     Signed-off-by: Jon Loeliger <jdl@freescale.com>
46602
46603 commit 2ccceacc04b009d923afb7c26189ba2f8a2a5d46
46604 Author: Ed Swarthout <ed.swarthout@freescale.com>
46605 Date:   Thu Dec 7 10:34:14 2006 -0600
46606
46607     Add support for 8641 Rev 2 silicon.
46608
46609     Without this patch, I am unable to get to the prompt on rev 2 silicon.
46610     Only set ddrioovcr for rev1.
46611
46612     Signed-off-by: Ed Swarthout<ed.swarthout@freescale.com>
46613     Signed-off-by: Jon Loeliger <jdl@freescale.com>
46614
46615 commit 44ba464b99001f8bd1c456a1e9d59726252f707a
46616 Author: Wolfgang Denk <wd@denx.de>
46617 Date:   Thu Mar 22 00:13:12 2007 +0100
46618
46619     Code cleanup / re-insert previous Copyright entries.
46620
46621     Signed-off-by: Wolfgang Denk <wd@denx.de>
46622
46623 commit 2a8dfe08359a1b663418b2faa1da1d7bce34d302
46624 Author: Wolfgang Denk <wd@denx.de>
46625 Date:   Wed Mar 21 23:26:15 2007 +0100
46626
46627     Code cleanup. Update CHANGELOG
46628
46629 commit e6615ecf4eaf4dd52696934aed8f5c6474cfd286
46630 Author: Stefan Roese <sr@denx.de>
46631 Date:   Wed Mar 21 14:54:29 2007 +0100
46632
46633     ppc4xx: Fix file mode of include/configs/acadia.h
46634
46635     Signed-off-by: Stefan Roese <sr@denx.de>
46636
46637 commit d5f4614c9350d9333e575100fb250aab774d0258
46638 Author: Markus Klotzbuecher <mk@denx.de>
46639 Date:   Wed Mar 21 14:41:46 2007 +0100
46640
46641     SPC1920: fix small clock routing bug
46642
46643     Signed-off-by: Markus Klotzbuecher <mk@denx.de>
46644
46645 commit 16c0cc1c82081a493ab87c51980b28336ce1bce8
46646 Author: Stefan Roese <sr@denx.de>
46647 Date:   Wed Mar 21 13:39:57 2007 +0100
46648
46649     [PATCH] Add AMCC Acadia (405EZ) eval board support
46650
46651     This patch adds support for the new AMCC Acadia eval board.
46652
46653     Please note that this Acadia/405EZ support is still in a beta stage.
46654     Still lot's of cleanup needed but we need a preliminary release now.
46655
46656     Signed-off-by: Stefan Roese <sr@denx.de>
46657
46658 commit e01bd218b00af73499331a1a701625a852cd286f
46659 Author: Stefan Roese <sr@denx.de>
46660 Date:   Wed Mar 21 13:38:59 2007 +0100
46661
46662     [PATCH] Add AMCC PPC405EZ support
46663
46664     This patch adds support for the new AMCC 405EZ PPC. It is in
46665     preparation for the AMCC Acadia board support.
46666
46667     Please note that this Acadia/405EZ support is still in a beta stage.
46668     Still lot's of cleanup needed but we need a preliminary release now.
46669
46670     Signed-off-by: Stefan Roese <sr@denx.de>
46671
46672 commit 07e82cb2e284a893df6693f2a1337ab2c47bf6a1
46673 Author: Heiko Schocher <hs@pollux.denx.de>
46674 Date:   Wed Mar 21 08:45:17 2007 +0100
46675
46676     [PATCH] TQM8272: dont change the bits given from the HRCW
46677                      for the SIUMCR and BCR Register.
46678                      Fix the calculation for the EEprom Size
46679
46680     Signed-off-by: Heiko Schocher <hs@denx.de>
46681
46682 commit 654589873dbafcf104dff133ce0d03a4506e9cc3
46683 Author: Aubrey Li <aubrey.adi@gmail.com>
46684 Date:   Tue Mar 20 18:16:24 2007 +0800
46685
46686     [Blackfin][PATCH] Add BF561 EZKIT board support
46687
46688 commit a6154fd1cfd020f6da8527e0365b1020a11a71d0
46689 Author: Aubrey Li <aubrey.adi@gmail.com>
46690 Date:   Mon Mar 19 22:55:58 2007 +0800
46691
46692     [Blackfin][PATCH] minor cleanup
46693
46694 commit 389b6bb50f745bf5038ce030300d8a8512e96f79
46695 Author: Wolfgang Denk <wd@denx.de>
46696 Date:   Mon Mar 19 13:10:08 2007 +0100
46697
46698     Remove obsoleted POST files.
46699
46700     Signed-off-by: Wolfgang Denk <wd@denx.de>
46701
46702 commit 8e709bbb2636b5670a8f2b575e138eb1f55773f6
46703 Author: Aubrey Li <aubrey.adi@gmail.com>
46704 Date:   Mon Mar 19 01:26:11 2007 +0800
46705
46706     [PATCH] Add flash chip M29W320ET/B support
46707
46708 commit 26bf7deca364a5b33f39e8f14ddd3f4081345015
46709 Author: Aubrey Li <aubrey.adi@gmail.com>
46710 Date:   Mon Mar 19 01:24:52 2007 +0800
46711
46712     [Blackfin][PATCH] Add BF537 stamp board support
46713
46714 commit 8423e5e31a7235d05a482627315fb11d49c17bd7
46715 Author: Stefan Roese <sr@denx.de>
46716 Date:   Fri Mar 16 21:11:42 2007 +0100
46717
46718     [PATCH] Use dynamic SDRAM TLB setup on AMCC Ebony eval board
46719
46720     Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
46721     DDR memory are dynamically programmed matching the total size
46722     of the equipped memory (DIMM modules).
46723
46724     Signed-off-by: Stefan Roese <sr@denx.de>
46725
46726 commit 76d1466f918b881cda2d259254761e73885093c2
46727 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
46728 Date:   Tue Mar 13 13:38:05 2007 +0100
46729
46730     [PATCH] renamed environment variable 'addcon' to 'addcons' for PCI405
46731             boards in terms of unification.
46732
46733     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
46734
46735 commit a7090b993d3d4d2221ac3f33e6cb1d1b2ccc6bf0
46736 Author: Wolfgang Denk <wd@denx.de>
46737 Date:   Tue Mar 13 16:05:55 2007 +0100
46738
46739     Make SC3 board build with 'make O='; use 'addcons' consistently
46740     (SC3 and Jupiter used to use 'addcon' instead).
46741
46742     Signed-off-by: Wolfgang Denk wd@denx.de
46743
46744 commit 8502e30a28e492c756ea2d7df0ace026388fce4b
46745 Author: Heiko Schocher <hs@pollux.denx.de>
46746 Date:   Tue Mar 13 09:40:59 2007 +0100
46747
46748     [PATCH] update board config for jupiter Board:
46749             added Hush Shell,
46750                   CONFIG_CMDLINE_EDITING,
46751                   CFG_ENV_ADDR_REDUND activated
46752
46753     Signed-off-by: Heiko Schocher <hs@denx.de>
46754
46755 commit 0d93de11449390a5984b0236c3612e50f6dbb7e8
46756 Author: Aubrey Li <aubrey.adi@gmail.com>
46757 Date:   Mon Mar 12 12:11:55 2007 +0800
46758
46759     [Blackfin][PATCH] minor cleanup
46760
46761 commit bfa5754a58477ac917d21527cd0f079d87cf188e
46762 Author: Aubrey Li <aubrey.adi@gmail.com>
46763 Date:   Mon Mar 12 01:42:06 2007 +0800
46764
46765     [Blackfin][PATCH] Fix BUILD_DIR option of MAKEALL building issue
46766
46767 commit 8440bb14581a294375c34b91b42512f9753d1130
46768 Author: Aubrey Li <aubrey.adi@gmail.com>
46769 Date:   Mon Mar 12 00:25:14 2007 +0800
46770
46771     [Blackfin][PATCH] code cleanup
46772
46773 commit cfc67116a706fd18b8f6a9c11a16753c5626d689
46774 Author: Michal Simek <monstr@monstr.eu>
46775 Date:   Sun Mar 11 13:48:24 2007 +0100
46776
46777     [Microblaze][PATCH] part 2
46778     timer support
46779     interrupt controller support
46780     flash support
46781     ethernet support
46782     cache support
46783     board information support
46784     env support
46785     booting image support
46786
46787     adding support for Xilinx ML401
46788
46789 commit 76316a318de91f6184e7c22a10e02d275ade2441
46790 Author: Michal Simek <monstr@monstr.eu>
46791 Date:   Sun Mar 11 13:42:58 2007 +0100
46792
46793     [Microblaze][PATCH]
46794     timer support
46795     interrupt controller support
46796     flash support
46797     ethernet support
46798     cache support
46799     board information support
46800     env support
46801     booting image support
46802
46803     adding support for Xilinx ML401
46804
46805 commit 8db13d63157811c839d15a313d9f2d2f5fd10af3
46806 Author: Aubrey Li <aubrey.adi@gmail.com>
46807 Date:   Sat Mar 10 23:49:29 2007 +0800
46808
46809     [Blackfin][PATCH] code cleanup
46810
46811 commit ef26a08fef928b7bc11ae2c109e638dc3a016d91
46812 Author: Aubrey.Li <aubrey.adi@gmail.com>
46813 Date:   Fri Mar 9 13:40:56 2007 +0800
46814
46815     [Blackfin][PATCH-2/2] Common files changed to support bf533 platform
46816
46817 commit 3f0606ad0b5639f7f22848fe5b4574e754d0470f
46818 Author: Aubrey.Li <aubrey.adi@gmail.com>
46819 Date:   Fri Mar 9 13:38:44 2007 +0800
46820
46821     [Blackfin]PATCH-1/2]: Remove obsolete blackfin port and add bf533 platform support
46822
46823 commit 992423ab43c2bcf6b704853bd00af77450915e20
46824 Author: Stefan Roese <sr@denx.de>
46825 Date:   Thu Mar 8 23:00:08 2007 +0100
46826
46827     ppc4xx: Fix file mode of sequoia.c
46828
46829     Signed-off-by: Stefan Roese <sr@denx.de>
46830
46831 commit eb92f613556800f7483666db09d9a237ad911d4a
46832 Author: Wolfgang Denk <wd@pollux.denx.de>
46833 Date:   Thu Mar 8 22:52:51 2007 +0100
46834
46835     Minor cleanup.
46836
46837 commit 8ce16f55c7b9752af3d8bed84521aec5337e2de1
46838 Author: John Otken john@softadvances.com <john@softadvances.com>
46839 Date:   Thu Mar 8 09:39:48 2007 -0600
46840
46841     ppc4xx: Clear Sequoia/Rainier security engine reset bits
46842
46843     Signed-off-by: John Otken john@softadvances.com <john@softadvances.com>
46844
46845 commit 650a330dd2539130c8c324791e2f9f75aed79d4e
46846 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
46847 Date:   Thu Mar 8 16:26:52 2007 +0100
46848
46849     [PATCH] I2C: add some more SPD eeprom decoding for DDR2 modules
46850
46851     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
46852
46853 commit d9fc703246840c4b268debf48c334ba55c597dc0
46854 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
46855 Date:   Thu Mar 8 16:25:47 2007 +0100
46856
46857     [PATCH] I2C: disable flat i2c commands when CONFIG_I2C_CMD_TREE is defined
46858
46859     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
46860
46861 commit ced5b9029043397348cdc88e0cfcd6b1f629250b
46862 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
46863 Date:   Thu Mar 8 16:23:11 2007 +0100
46864
46865     [PATCH] 4xx: allow CONFIG_I2C_CMD_TREE without CONFIG_I2C_MULTI_BUS
46866
46867     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
46868
46869 commit d8a8ea5c476d37006fc7f85b7f903142795c8b14
46870 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
46871 Date:   Thu Mar 8 16:20:32 2007 +0100
46872
46873     [PATCH] I2C: Add missing default CFG_SPD_BUS_NUM
46874
46875     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
46876
46877 commit f9fc6a5852a6335840882fa2111925010eea1abe
46878 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
46879 Date:   Wed Mar 7 15:32:01 2007 +0100
46880
46881     fixed ethernet phy configuration for plu405 board
46882
46883     Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
46884
46885 commit 769104c9356594deb2092e204a39c05b33202d6c
46886 Author: Wolfgang Denk <wd@pollux.denx.de>
46887 Date:   Thu Mar 8 21:49:27 2007 +0100
46888
46889     Minor cleanup
46890
46891 commit 00cdb4ce5e1b42248e7e6522ad0da3421b988afa
46892 Author: Stefan Roese <sr@denx.de>
46893 Date:   Thu Mar 8 10:13:16 2007 +0100
46894
46895     [PATCH] Update AMCC Luan 440SP eval board support
46896
46897     The AMCC Luan now uses the common 440SP(e) DDR SPD code for DDR
46898     inititializition. This includes DDR auto calibration and support
46899     for different DIMM modules, instead of the fixed setup used in
46900     the earlier version.
46901
46902     This patch also enables the cache in FLASH for the startup
46903     phase of U-Boot (while running from FLASH). After relocating to
46904     SDRAM the cache is disabled again. This will speed up the boot
46905     process, especially the SDRAM setup, since there are some loops
46906     for memory testing (auto calibration).
46907
46908     Signed-off-by: Stefan Roese <sr@denx.de>
46909
46910 commit 2f5df47351910a2936c7741cf111855829200943
46911 Author: Stefan Roese <sr@denx.de>
46912 Date:   Thu Mar 8 10:10:18 2007 +0100
46913
46914     [PATCH] Update AMCC Yucca 440SPe eval board support
46915
46916     The AMCC Yucca now uses the common 440SP(e) DDR SPD code for DDR
46917     inititializition. This includes DDR auto calibration and support
46918     for different DIMM modules, instead of the fixed setup used in
46919     the earlier version.
46920
46921     Signed-off-by: Stefan Roese <sr@denx.de>
46922
46923 commit 2721a68a9ea91f1e494649ce68b2577261f578e2
46924 Author: Stefan Roese <sr@denx.de>
46925 Date:   Thu Mar 8 10:07:18 2007 +0100
46926
46927     ppc4xx: Small AMCC Katmai 440SPe update
46928
46929     Signed-off-by: Stefan Roese <sr@denx.de>
46930
46931 commit df294497479b1dca6dd86318b2a912f72fede0df
46932 Author: Stefan Roese <sr@denx.de>
46933 Date:   Thu Mar 8 10:06:09 2007 +0100
46934
46935     ppc4xx: Update 440SP/440SPe DDR SPD setup code to support 440SP
46936
46937     Signed-off-by: Stefan Roese <sr@denx.de>
46938
46939 commit 83853178bd36bca6f0f8f1331476620c84a587fc
46940 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
46941 Date:   Wed Mar 7 12:14:50 2007 -0600
46942
46943     net - Support ping reply when processing net-loop
46944
46945     Add ICMP_ECHO_REQUEST packet support by responding with a ICMP_ECHO_REPLY.
46946
46947     This permits the ping command to test the phy interface when the phy
46948     is put in loopback mode (typically by setting register 0 bit 14).
46949
46950     It also allows the port to respond to an external ping when u-boot is
46951     processing some other net command (such as tftp).  This is useful when
46952     tftp appears to hang.
46953
46954     Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
46955     Signed-off-by: Ben Warren <bwarren@qstreams.com>
46956
46957 commit fa1aef15bcd47736687be1af544506e90fba545d
46958 Author: Stefan Roese <sr@denx.de>
46959 Date:   Wed Mar 7 16:43:00 2007 +0100
46960
46961     [PATCH] Use dynamic SDRAM TLB setup on AMCC Ocotea eval board
46962
46963     Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
46964     DDR memory are dynamically programmed matching the total size
46965     of the equipped memory (DIMM modules).
46966
46967     Signed-off-by: Stefan Roese <sr@denx.de>
46968
46969 commit e2ebe696818939e2b974628be9c921ea3fe9de13
46970 Author: Stefan Roese <sr@denx.de>
46971 Date:   Wed Mar 7 16:39:36 2007 +0100
46972
46973     [PATCH] Fix AMCC 44x SPD SDRAM init code to support 2 DIMM's
46974
46975     This patch fixes a problem that occurs when 2 DIMM's are
46976     used. This problem was first spotted and fixed by Gerald Jackson
46977     <gerald.jackson@reaonixsecurity.com> but this patch fixes the
46978     problem in a little more clever way.
46979
46980     This patch also adds the nice functionality to dynamically
46981     create the TLB entries for the SDRAM (tlb.c). So we should
46982     never run into such problems with wrong (too short) TLB
46983     initialization again on these platforms.
46984
46985     As this feature is new to the "old" 44x SPD DDR driver, it
46986     has to be enabled via the CONFIG_PROG_SDRAM_TLB define.
46987
46988     Signed-off-by: Stefan Roese <sr@denx.de>
46989
46990 commit 39218433983417b9df087976a79e3f80dd5e83d6
46991 Author: Wolfgang Denk <wd@denx.de>
46992 Date:   Wed Mar 7 16:33:44 2007 +0100
46993
46994     UC101: fix compiler warnings
46995
46996 commit 8d7e2732221bc2d64df14f700c64c23e0a4c3dce
46997 Author: Wolfgang Denk <wd@pollux.denx.de>
46998 Date:   Wed Mar 7 16:19:46 2007 +0100
46999
47000     HMI1001: fix build error, cleanup compiler warnings.
47001
47002 commit ad5bb451ade552c44bef9119d907929ebc2c126f
47003 Author: Wolfgang Denk <wd@pollux.denx.de>
47004 Date:   Tue Mar 6 18:08:43 2007 +0100
47005
47006     Restructure POST directory to support of other CPUs, boards, etc.
47007
47008 commit a5284efd125967675b2e9c6ef7b95832268ad360
47009 Author: Wolfgang Denk <wd@pollux.denx.de>
47010 Date:   Tue Mar 6 18:01:47 2007 +0100
47011
47012     Fix HOSTARCH handling.
47013     Patch by Mike Frysinger, Mar 05 2007
47014
47015 commit 07b7b0037aac5102939917d7cbe561b5c0d5aa44
47016 Author: Stefan Roese <sr@denx.de>
47017 Date:   Tue Mar 6 07:47:04 2007 +0100
47018
47019     [PATCH] Speed optimization of AMCC Sequoia/Rainier DDR2 setup
47020
47021     As provided by the AMCC applications team, this patch optimizes the
47022     DDR2 setup for 166MHz bus speed. The values provided are also save
47023     to use on a "normal" 133MHz PLB bus system. Only the refresh counter
47024     setup has to be adjusted as done in this patch.
47025
47026     For this the NAND booting version had to include the "speed.c" file
47027     from the cpu/ppc4xx directory. With this addition the NAND SPL image
47028     will just fit into the 4kbytes of program space. gcc version 4.x as
47029     provided with ELDK 4.x is needed to generate this optimized code.
47030
47031     Signed-off-by: Stefan Roese <sr@denx.de>
47032
47033 commit 647d3c3eed0da1d1505eecabe0b0fab96f956e68
47034 Author: Wolfgang Denk <wd@pollux.denx.de>
47035 Date:   Sun Mar 4 01:36:05 2007 +0100
47036
47037     Some code cleanup.
47038
47039 commit 781e026c8aa6f7e9eb5f0e72cc4d20971219b148
47040 Author: Kim Phillips <kim.phillips@freescale.com>
47041 Date:   Wed Feb 28 00:02:04 2007 -0600
47042
47043     mpc83xx: fix implicit declaration of function 'ft_get_prop' warnings
47044
47045     (cherry picked from c5bf13b02284c3204a723566a9bab700e5059659 commit)
47046
47047 commit 4feab4de7bfc2cb2fed36ad76f93c3a69659bbaf
47048 Author: Kumar Gala <galak@kernel.crashing.org>
47049 Date:   Tue Feb 27 23:51:42 2007 -0600
47050
47051     mpc83xx: Fix config of Arbiter, System Priority, and Clock Mode
47052
47053     The config value for:
47054     * CFG_ACR_PIPE_DEP
47055     * CFG_ACR_RPTCNT
47056     * CFG_SPCR_TSEC1EP
47057     * CFG_SPCR_TSEC2EP
47058     * CFG_SCCR_TSEC1CM
47059     * CFG_SCCR_TSEC2CM
47060
47061     Were not being used when setting the appropriate register
47062
47063     Added:
47064     * CFG_SCCR_USBMPHCM
47065     * CFG_SCCR_USBDRCM
47066     * CFG_SCCR_PCICM
47067     * CFG_SCCR_ENCCM
47068
47069     To allow full config of the SCCR.
47070
47071     Also removed random CFG_SCCR settings in MPC8349EMDS, TQM834x, and sbc8349
47072     that were just bogus.
47073
47074     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47075
47076 commit d51b3cf371cd441030460ef19d36b2924c361b1a
47077 Author: Kim Phillips <kim.phillips@freescale.com>
47078 Date:   Thu Feb 22 20:06:57 2007 -0600
47079
47080     mpc83xx: update [local-]mac-address properties on UEC based devices
47081
47082     8360 and 832x weren't updating their [local-]mac-address
47083     properties. This patch fixes that.
47084
47085     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47086
47087 commit 61f4f912acbe60776c5e00df1ec94094ce672957
47088 Author: Timur Tabi <timur@freescale.com>
47089 Date:   Tue Feb 13 10:41:42 2007 -0600
47090
47091     mpc83xx: write MAC address to mac-address and local-mac-address
47092
47093     Some device trees have a mac-address property, some have local-mac-address,
47094     and some have both.  To support all of these device trees, this patch
47095     updates ftp_cpu_setup() to write the MAC address to mac-address if it exists.
47096     This function already updates local-mac-address.
47097
47098     Signed-off-by: Timur Tabi <timur@freescale.com>
47099
47100 commit 22d71a71f57fd5d38b27ac3848e50d790360a598
47101 Author: Kim Phillips <kim.phillips@freescale.com>
47102 Date:   Tue Feb 27 18:41:08 2007 -0600
47103
47104     mpc83xx: add command line editing by default
47105
47106 commit 3fc0bd159103b536e1c54c6f4457a09b3aba66ca
47107 Author: Kim Phillips <kim.phillips@freescale.com>
47108 Date:   Wed Feb 14 19:50:53 2007 -0600
47109
47110     mpc83xx: Disable G1TXCLK, G2TXCLK h/w buffers
47111
47112     Disable G1TXCLK, G2TXCLK h/w buffers. This patch
47113     fixes a networking timeout issue with MPC8360EA (Rev.2) PBs.
47114
47115     Verified on Rev. 1.1, Rev. 1.2, and Rev. 2.0 boards.
47116
47117     Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47118     Signed-off-by: Emilian Medve <Emilian.Medve@freescale.com>
47119
47120 commit d61853cf2472e0b8bcbd131461a93d1c49ff0c1f
47121 Author: Xie Xiaobo <r63061@freescale.com>
47122 Date:   Wed Feb 14 18:27:17 2007 +0800
47123
47124     mpc83xx: Add DDR2 controller fixed/SPD Init for MPC83xx
47125
47126     The code supply fixed and SPD initialization for MPC83xx DDR2 Controller.
47127     it pass DDR/DDR2 compliance tests.
47128
47129     Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
47130
47131 commit b110f40bd180c6b560276589beedf753e97c46ce
47132 Author: Xie Xiaobo <r63061@freescale.com>
47133 Date:   Wed Feb 14 18:27:06 2007 +0800
47134
47135     mpc83xx: Add the cpu specific code for MPC8360E rev2.0 MDS
47136
47137     MPC8360E rev2.0 have new spridr,and PVR value,
47138     The MDS board for MPC8360E rev2.0 has 32M bytes Flash and 256M DDR2 DIMM.
47139
47140     Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
47141
47142 commit 8d172c0f0d85998a256a95b7459a5403a30380ed
47143 Author: Xie Xiaobo <r63061@freescale.com>
47144 Date:   Wed Feb 14 18:26:44 2007 +0800
47145
47146     mpc83xx: Add the cpu and board specific code for MPC8349E rev3.1 MDS
47147
47148     MPC8349E rev3.1 have new spridr,and PVR value,
47149     The MDS board for MPC8349E rev3.1 has 32M bytes Flash and 256M DDR2 DIMM.
47150
47151     Signed-off-by: Xie Xiaobo<X.Xie@freescale.com>
47152
47153 commit f6f5f709e5c8e4564c4dfeecfdf2279244f9c83b
47154 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
47155 Date:   Wed Jan 31 11:04:19 2007 +0100
47156
47157     mpc83xx: Fix empty i2c reads/writes in fsl_i2c.c
47158
47159     Fix empty i2c reads/writes, i2c_write(0x50, 0x00, 0, NULL, 0)
47160     which is used to se if an slave will ACK after receiving its address.
47161
47162     Correct i2c probing to use this method as the old method could upset
47163     a slave as it wrote a data byte to it.
47164
47165     Add a small delay in i2c_init() to let the controller
47166     shutdown any ongoing I2C activity.
47167
47168     Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
47169
47170 commit 7a78f148d6a7298e4fface680dc7eacd877b1aba
47171 Author: Timur Tabi <timur@freescale.com>
47172 Date:   Wed Jan 31 15:54:29 2007 -0600
47173
47174     mpc83xx: Add support for the MPC8349E-mITX-GP
47175
47176     Add support for the MPC8349E-mITX-GP, a stripped-down version of the
47177     MPC8349E-mITX.  Bonus features include support for low-boot (BMS bit in
47178     HRCW is 0) for the ITX and a README for the ITX and the ITX-GP.
47179
47180     Signed-off-by: Timur Tabi <timur@freescale.com>
47181
47182 commit fab16807adad350f618024350c6950165c247c72
47183 Author: Timur Tabi <timur@freescale.com>
47184 Date:   Wed Jan 31 15:54:20 2007 -0600
47185
47186     mpc83xx: Delete sdram_init() for MPC8349E-mITX
47187
47188     There is no SDRAM on any of the 8349 ITX variants, so function sdram_init()
47189     never does anything.  This patch deletes it.
47190
47191     Signed-off-by: Timur Tabi <timur@freescale.com>
47192
47193 commit a87c856eb411b9365937d0d4b9c21e46adbe1c14
47194 Author: Dave Liu <daveliu@freescale.com>
47195 Date:   Fri Jan 19 10:43:26 2007 +0800
47196
47197     mpc83xx: Fix the LAW1/3 bug
47198
47199     The patch solves the alignment problem of the local bus access windows to
47200     render accessible the memory bank and PHY registers of UPC 1 (starting at
47201     0xf801 0000). What we actually did was to adjust the sizes of the bus
47202     access windows so that the base address alignment requirement would be met.
47203
47204     Signed-off-by: Chereji Marian <marian.chereji@freescale.com>
47205     Signed-off-by: Gridish Shlomi <gridish@freescale.com>
47206     Signed-off-by: Dave Liu <daveliu@freescale.com>
47207
47208 commit 97c4b397dce236a7318b304667bf89e59d08b17c
47209 Author: Kim Phillips <kim.phillips@freescale.com>
47210 Date:   Tue Jan 30 16:15:31 2007 -0600
47211
47212     mpc83xx: don't hang if watchdog configured on 8360, 832x
47213
47214     don't hang if watchdog configured on 8360, 832x
47215
47216     The watchdog programming model is the same across all 83xx devices;
47217     make the code reflect that.
47218
47219 commit b70047478570e371ce7223be342ce98afea0f7d6
47220 Author: Kim Phillips <kim.phillips@freescale.com>
47221 Date:   Tue Jan 30 16:15:21 2007 -0600
47222
47223     mpc83xx: protect memcpy to bad address if a local-mac-address is missing from dt
47224
47225     protect memcpy to bad address if a local-mac-address is missing from dt
47226
47227 commit 6752ed088c75c26a89b70c46b7326a4cd6015f29
47228 Author: Kim Phillips <kim.phillips@freescale.com>
47229 Date:   Tue Jan 30 16:15:04 2007 -0600
47230
47231     mpc83xx: make 8360 default environment fdt be 8360 (not 8349)
47232
47233     make 8360 default environment fdt be 8360 (not 8349)
47234
47235 commit a28899c910024a0226331df07207b1038c300c93
47236 Author: Emilian Medve <Emilian.Medve@freescale.com>
47237 Date:   Tue Jan 30 16:14:50 2007 -0600
47238
47239     mpc83xx: Fix alternating tx error / tx buffer not ready bug in QE UEC
47240
47241     The problem is not gcc4 but the code itself. The BD_STATUS() macro can't
47242     be used for busy-waiting since it strips the 'volatile' property from
47243     the bd variable. gcc3 was working by pure luck.
47244
47245     This is a follow on patch to "Fix the UEC driver bug of QE"
47246
47247 commit 3e78a31cfe3d3022f46f67eb88e1281d5cc2eb89
47248 Author: Kumar Gala <galak@kernel.crashing.org>
47249 Date:   Tue Jan 30 14:08:30 2007 -0600
47250
47251     mpc83xx: Replace CONFIG_MPC8349 and use CONFIG_MPC834X instead
47252
47253     The code that is ifdef'd with CONFIG_MPC8349 is actually applicable to all
47254     MPC834X class processors.  Change the protections from CONFIG_MPC8349 to
47255     CONFIG_MPC834X so they are more generic.
47256
47257     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47258
47259 commit ae246dc6c1937c291014eadd90b6d48c438c7cb0
47260 Author: Kim Phillips <kim.phillips@freescale.com>
47261 Date:   Thu Jan 25 13:40:55 2007 -0600
47262
47263     mpc83xx: add MPC832XEMDS and sbc8349 to MAKEALL
47264
47265 commit 4decd84e8f04279c5cfff7f8e907465ef8d8a3fb
47266 Author: Kim Phillips <kim.phillips@freescale.com>
47267 Date:   Wed Jan 24 17:18:37 2007 -0600
47268
47269     mpc83xx: sort Makefile targets
47270
47271     reordered targets alphabetically
47272
47273 commit 91e25769771c1164ed63ffca0add49f934ae3343
47274 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
47275 Date:   Tue Jan 16 11:38:14 2007 -0500
47276
47277     mpc83xx: U-Boot support for Wind River SBC8349
47278
47279     I've redone the SBC8349 support to match git-current, which
47280     incorporates all the MPC834x updates from Freescale since the 1.1.6
47281     release,  including the DDR changes.
47282
47283     I've kept all the SBC8349 files as parallel as possible to the
47284     MPC8349EMDS ones for ease of maintenance and to allow for easy
47285     inspection of what was changed to support this board.  Hence the SBC8349
47286     U-Boot has FDT support and everything else that the MPC8349EMDS has.
47287
47288     Fortunately the Freescale updates added support for boards using CS0,
47289     but I had to change spd_sdram.c to allow for board specific settings for
47290     the sdram_clk_cntl (it is/was hard coded to zero, and that remains the
47291     default if the board doesn't specify a value.)
47292
47293     Hopefully this should be mergeable as-is and require no whitespace
47294     cleanups or similar, but if something doesn't measure up then let me
47295     know and I'll fix it.
47296
47297     Thanks,
47298     Paul.
47299
47300 commit 05031db456ab227f3e3752f37b9b812b65bb83ad
47301 Author: Sam Song <samsongshu@yahoo.com.cn>
47302 Date:   Thu Dec 14 19:03:21 2006 +0800
47303
47304     mpc83xx: Remove a redundant semicolon in mpc8349itx.c
47305
47306     A redundant semicolon existed in mpc8349itx.c
47307     should be removed.
47308
47309     Signed-off-by: Sam Song <samsongshu@yahoo.com.cn>
47310
47311 commit f35f358241c549be3f75cfe2eaa642914275b7ba
47312 Author: Jerry Van Baren <gerald.vanbaren@comcast.net>
47313 Date:   Wed Dec 6 21:23:55 2006 -0500
47314
47315     mpc83xx: Put the version (and magic) after the HRCW.
47316
47317     Put the version (and magic) after the HRCW.  This puts it in a fixed
47318     location in flash, not at the start of flash but as close as we can get.
47319
47320     Signed-off-by: Jerry Van Baren <vanbaren@cideas.com>
47321
47322 commit 48aecd969171a6e99a55fae04933857787f9a5bd
47323 Author: Dave Liu <r63238@freescale.com>
47324 Date:   Thu Dec 7 21:14:51 2006 +0800
47325
47326     mpc83xx: Add the MPC832XEMDS board readme
47327
47328     Add the MPC832XEMDS board readme
47329
47330     Signed-off-by: Dave Liu <daveliu@freescale.com>
47331
47332 commit 24c3aca3f1358b113d3215adb5433b156e99f72b
47333 Author: Dave Liu <r63238@freescale.com>
47334 Date:   Thu Dec 7 21:13:15 2006 +0800
47335
47336     mpc83xx: Add support for the MPC832XEMDS board
47337
47338     This patch supports DUART, ETH3/4 and PCI etc.
47339
47340     Signed-off-by: Dave Liu <daveliu@freescale.com>
47341
47342 commit e080313c32322e15ab5a18eb896a252858c57284
47343 Author: Dave Liu <r63238@freescale.com>
47344 Date:   Thu Dec 7 21:11:58 2006 +0800
47345
47346     mpc83xx: streamline the 83xx immr head file
47347
47348     For better format and style, I streamlined the 83xx head files,
47349     including immap_83xx.h and mpc83xx.h. In the old head files, 1)
47350     duplicated macro definition appear in the both files; 2) the structure
47351     of QE immr is duplicated in the immap_83xx.h and immap_qe.h; 3) The
47352     macro definition put inside the each structure. So, I cleaned up the
47353     structure of QE immr from immap_83xx.h, deleted the duplicated stuff and
47354     moved the macro definition to mpc83xx.h, Just like MPC8260.
47355
47356     CHANGELOG
47357
47358     *streamline the 83xx immr head file
47359
47360     Signed-off-by: Dave Liu <daveliu@freescale.com>
47361
47362 commit ddd02492f43db5408f5ab9f823b0ba5796e28ef0
47363 Author: Dave Liu <r63238@freescale.com>
47364 Date:   Wed Dec 6 11:38:17 2006 +0800
47365
47366     mpc83xx: Fix the UEC driver bug of QE
47367
47368     The patch prevents the GCC tool chain from striping useful code for
47369     optimization. It will make UEC ethernet driver workable, Otherwise the
47370     UEC will fail in tx when you are using gcc4.x. but the driver can work
47371     when using gcc3.4.3.
47372
47373     CHANGELOG
47374
47375     *Prevent the GCC from striping code for optimization, Otherwise the UEC
47376     will tx failed when you are using gcc4.x.
47377
47378     Signed-off-by: Dave Liu <daveliu@freescale.com>
47379
47380 commit ba58e4c9a9a917ce795dd16d4ec8d515f9f7aa35
47381 Author: Stefan Roese <sr@denx.de>
47382 Date:   Thu Mar 1 21:11:36 2007 +0100
47383
47384     [PATCH] Update AMCC Katmai 440SPe eval board support
47385
47386     This patch updates the recently added Katmai board support. The biggest
47387     change is the support of ECC DIMM modules in the 440SP(e) SPD DDR2
47388     driver.
47389
47390     Please note, that still some problems are left with some memory
47391     configurations. See the driver for more details.
47392
47393     Signed-off-by: Stefan Roese <sr@denx.de>
47394
47395 commit 8c12045a3b06c5b6675d3fe02fbc9f545988129a
47396 Author: Stefan Roese <sr@denx.de>
47397 Date:   Thu Mar 1 07:03:25 2007 +0100
47398
47399     [PATCH] I2C: Add missing default CFG_RTC_BUS_NUM & CFG_DTT_BUS_NUM
47400
47401     Signed-off-by: Stefan Roese <sr@denx.de>
47402
47403 commit ccbc7036648e465697ca298ba51e0e76dda352a0
47404 Author: Wolfgang Denk <wd@pollux.denx.de>
47405 Date:   Wed Feb 28 01:28:53 2007 +0100
47406
47407     SC3: fix typo in default environment
47408
47409 commit e344568b1b46af85ec32d815586f91bc115d6223
47410 Author: Sergei Poselenov <sposelenov@emcraft.com>
47411 Date:   Tue Feb 27 20:15:30 2007 +0300
47412
47413     MCC200: Fixes for update procedure
47414
47415     - fix logic error in image type handling
47416     - make sure file system images (cramfs etc.) get stored in flash
47417       with image header stripped so they can be mounted through MTD
47418
47419 commit 743571145b37182757d4e688a77860b36ee77573
47420 Author: Wolfgang Denk <wd@pollux.denx.de>
47421 Date:   Tue Feb 27 14:26:04 2007 +0100
47422
47423     Minor code cleanup.
47424
47425 commit 638dd1458bbdc2a55d4b9e25c5c4e1f838a5dc72
47426 Author: Sergei Poselenov <sposelenov@emcraft.com>
47427 Date:   Tue Feb 27 12:40:16 2007 +0300
47428
47429     MCC200 update - add LCD Progress Indicator
47430
47431 commit 6c7cac8c4fce0ea2bf8e15ed8658d87974155b44
47432 Author: Stefan Roese <sr@denx.de>
47433 Date:   Thu Feb 22 07:43:34 2007 +0100
47434
47435     [PATCH] get_dev() now unconditionally uses manual relocation
47436
47437     Since the relocation fix is not included yet and we're not sure how
47438     it will be added, this patch removes code that required relocation
47439     to be fixed for now.
47440
47441     Signed-off-by: Stefan Roese <sr@denx.de>
47442
47443 commit 8274ec0bd01d2feb2c7f095eba78d42ea009798b
47444 Author: Stefan Roese <sr@denx.de>
47445 Date:   Thu Feb 22 07:40:23 2007 +0100
47446
47447     [PATCH] Change systemace driver to select 8 & 16bit mode
47448
47449     As suggested by Grant Likely this patch enables the Xilinx SystemACE
47450     driver to select 8 or 16bit mode upon startup.
47451
47452     Signed-off-by: Stefan Roese <sr@denx.de>
47453
47454 commit 3a197b2fe49d6fa03978e60af2394efe9c70b527
47455 Author: Haiying Wang <Haiying.Wang@freescale.com>
47456 Date:   Wed Feb 21 16:52:31 2007 +0100
47457
47458     [PATCH v3] Add sync to ensure flash_write_cmd is fully finished
47459
47460     Some CPUs like PPC, BLACKFIN need sync() to ensure cfi flash write command
47461     is fully finished. The sync() is defined in each CPU's io.h file. For
47462     those CPUs which do not need sync for now, a dummy sync() is defined in
47463     their io.h as well.
47464
47465     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
47466
47467 commit da04995c7dc6772013a9a0dc5c767f190c402478
47468 Author: Stefan Roese <sr@denx.de>
47469 Date:   Wed Feb 21 13:44:34 2007 +0100
47470
47471     [PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)
47472
47473     Signed-off-by: Stefan Roese <sr@denx.de>
47474
47475 commit 751bb57107d78978ae08e697c3deba816f5be091
47476 Author: Stefan Roese <sr@denx.de>
47477 Date:   Tue Feb 20 13:21:57 2007 +0100
47478
47479     [PATCH] Fix relocation problem with "new" get_dev() function
47480
47481     This patch enables the "new" get_dev() function for block devices
47482     introduced by Grant Likely to be used on systems that still suffer
47483     from the relocation problems (manual relocation neede because of
47484     problems with linker script).
47485
47486     Hopefully we can resolve this relocation issue soon for all platform
47487     so we don't need this additional code anymore.
47488
47489     Signed-off-by: Stefan Roese <sr@denx.de>
47490
47491 commit d93e2212f962668b3dce091ff5edc33f2347fe37
47492 Author: Stefan Roese <sr@denx.de>
47493 Date:   Tue Feb 20 13:17:42 2007 +0100
47494
47495     [PATCH] Update SystemACE driver for 16bit access
47496
47497     This patch removes some problems when the Xilinx SystemACE driver
47498     is used with 16bit access on an big endian platform (like the
47499     AMCC Katmai).
47500
47501     Signed-off-by: Stefan Roese <sr@denx.de>
47502
47503 commit 874bb7b88fe9b4648e1288a387af2e31014a72f3
47504 Author: Stefan Roese <sr@denx.de>
47505 Date:   Tue Feb 20 13:15:40 2007 +0100
47506
47507     [PATCH] Clean up Katmai (440SPe) linker script
47508
47509     Signed-off-by: Stefan Roese <sr@denx.de>
47510
47511 commit 4745acaa1a603b67f6b9b7970365ebadd7d6586f
47512 Author: Stefan Roese <sr@denx.de>
47513 Date:   Tue Feb 20 10:57:08 2007 +0100
47514
47515     [PATCH] Add support for the AMCC Katmai (440SPe) eval board
47516
47517     Signed-off-by: Stefan Roese <sr@denx.de>
47518
47519 commit 0dc018ece13effc689e47479ea9ebf1c98a507f5
47520 Author: Stefan Roese <sr@denx.de>
47521 Date:   Tue Feb 20 10:51:26 2007 +0100
47522
47523     [PATCH] I2C: Add support for multiple I2C busses for RTC & DTT
47524
47525     This patch switches to the desired I2C bus when the date/dtt
47526     commands are called. This can be configured using the
47527     CFG_RTC_BUS_NUM and/or CFG_DTT_BUS_NUM defines.
47528
47529     Signed-off-by: Stefan Roese <sr@denx.de>
47530
47531 commit 4037ed3b63923cfcec27f784a89057c3cbabcedb
47532 Author: Stefan Roese <sr@denx.de>
47533 Date:   Tue Feb 20 10:43:34 2007 +0100
47534
47535     [PATCH] PPC4xx: Add 440SP(e) DDR2 SPD DIMM support
47536
47537     This patch adds support for the DDR2 controller used on the
47538     440SP and 440SPe. It is tested on the Katmai (440SPe) eval
47539     board and works fine with the following DIMM modules:
47540
47541     - Corsair CM2X512-5400C4 (512MByte per DIMM)
47542     - Kingston ValueRAM KVR667D2N5/512 (512MByte per DIMM)
47543     - Kingston ValueRAM KVR667D2N5K2/2G (1GByte per DIMM)
47544
47545     This patch also adds the nice functionality to dynamically
47546     create the TLB entries for the SDRAM (tlb.c). So we should
47547     never run into such problems with wrong (too short) TLB
47548     initialization again on these platforms.
47549
47550     Signed-off-by: Stefan Roese <sr@denx.de>
47551
47552 commit 36d830c9830379045f5daa9f542ac1c990c70068
47553 Author: Stefan Roese <sr@denx.de>
47554 Date:   Tue Feb 20 10:35:42 2007 +0100
47555
47556     [PATCH] PPC4xx: Split 4xx SPD SDRAM init routines into 2 files
47557
47558     Since the existing 4xx SPD SDRAM initialization routines for the
47559     405 SDRAM controller and the 440 DDR controller don't have much in
47560     common this patch splits both drivers into different files.
47561
47562     This is in preparation for the 440 DDR2 controller support (440SP/e).
47563
47564     Signed-off-by: Stefan Roese <sr@denx.de>
47565
47566 commit 79b2d0bb2eae09602448f7a7cb56530d2f31e6c6
47567 Author: Stefan Roese <sr@denx.de>
47568 Date:   Tue Feb 20 10:27:08 2007 +0100
47569
47570     [PATCH] PPC4xx: Add support for multiple I2C busses
47571
47572     This patch adds support for multiple I2C busses on the PPC4xx
47573     platforms. Define CONFIG_I2C_MULTI_BUS in the board config file
47574     to make use of this feature.
47575
47576     It also merges the 405 and 440 i2c header files into one common
47577     file 4xx_i2c.h.
47578
47579     Also the 4xx i2c reset procedure is reworked since I experienced
47580     some problems with the first access on the 440SPe Katmai board.
47581
47582     Signed-off-by: Stefan Roese <sr@denx.de>
47583
47584 commit eb867a76238fb38e952c37871b16d0d7fd61c95f
47585 Author: Grant Likely <grant.likely@secretlab.ca>
47586 Date:   Tue Feb 20 09:05:45 2007 +0100
47587
47588     [PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write buffer pointers
47589
47590     Block device read/write is anonymous data; there is no need to use a
47591     typed pointer.  void * is fine.  Also add a hook for block_read functions
47592
47593     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47594
47595 commit 53758fa20e935cc87eeb0519ed365df753a6f289
47596 Author: Grant Likely <grant.likely@secretlab.ca>
47597 Date:   Tue Feb 20 09:05:38 2007 +0100
47598
47599     [PATCH 8_9] Add block_write hook to block_dev_desc_t
47600
47601     Preparation for future patches which support block device writing
47602
47603     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47604
47605 commit f4852ebe6ca946a509667eb68be42026f837be76
47606 Author: Grant Likely <grant.likely@secretlab.ca>
47607 Date:   Tue Feb 20 09:05:31 2007 +0100
47608
47609     [PATCH 7_9] Replace ace_readw_ace_writeb functions with macros
47610
47611     Register read/write does not need to be wrapped in a full function.  The
47612     patch replaces them with macros.
47613
47614     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47615
47616 commit 3a8ce9af6fcb5744a7851b4440c07688acc40844
47617 Author: Grant Likely <grant.likely@secretlab.ca>
47618 Date:   Tue Feb 20 09:05:23 2007 +0100
47619
47620     [PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.c
47621
47622     The code in this file is not a command; it is a device driver.  Put it in
47623     the correct place.  There are zero functional changes in this patch, it
47624     only moves the file.
47625
47626     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47627
47628 commit 984618f3e7794c783ec8d1511e74c6ee2d69bfe4
47629 Author: Grant Likely <grant.likely@secretlab.ca>
47630 Date:   Tue Feb 20 09:05:16 2007 +0100
47631
47632     [PATCH 5_9] Whitespace fixup on common_cmd_ace.c (using Lindent)
47633
47634     This patch is in preparation of additional changes to the sysace driver.
47635     May as well take this opportunity to fixup the inconsistent whitespace since
47636     this file is about to undergo major changes anyway.
47637
47638     There are zero functional changes in this patch.  It only cleans up the
47639     the whitespace.
47640
47641     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47642
47643 commit 80ba981d940471fe7e539e64fa3d2bd80002beda
47644 Author: Grant Likely <grant.likely@secretlab.ca>
47645 Date:   Tue Feb 20 09:05:07 2007 +0100
47646
47647     [PATCH 4_4] Remove local implementation of isprint() in ft_build.c
47648
47649     isprint is already defined in ctype.c
47650
47651     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47652
47653 commit c95c4280d751ca078c2ff58228d2f2b44ccf0600
47654 Author: Grant Likely <grant.likely@secretlab.ca>
47655 Date:   Tue Feb 20 09:05:00 2007 +0100
47656
47657     [PATCH 3_9] Move buffer print code from md command to common function
47658
47659     Printing a buffer is a darn useful thing.  Move the buffer print code
47660     into print_buffer() in lib_generic/
47661
47662     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47663
47664 commit 99b0f0fd3fbf2572ae1a7723dd90cffc8e85130a
47665 Author: Grant Likely <grant.likely@secretlab.ca>
47666 Date:   Tue Feb 20 09:04:52 2007 +0100
47667
47668     [PATCH 2_4] Use config.h, not xparameters.h, for xilinx targets
47669
47670     Change the xilinx device drivers and board code to include config.h
47671     instead of xparameters.h directly.  config.h always includes the
47672     correct xparameters file.  This change reduces the posibility of
47673     including the wrong file when adding a new xilinx board port
47674
47675     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47676
47677 commit 735dd97b1b20e777d059c7b389fe9d70cd3f80c7
47678 Author: Grant Likely <grant.likely@secretlab.ca>
47679 Date:   Tue Feb 20 09:04:34 2007 +0100
47680
47681     [PATCH 1_4] Merge common get_dev() routines for block devices
47682
47683     Each of the filesystem drivers duplicate the get_dev routine.  This change
47684     merges them into a single function in part.c
47685
47686     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
47687
47688 commit f5fcc3c20b65554e98a165542c36ee0c610a2d81
47689 Author: Wolfgang Denk <wd@pollux.denx.de>
47690 Date:   Mon Feb 19 23:09:51 2007 +0100
47691
47692     MCC200: Software Updater: allow both "ramdisk" and "filesystem" types
47693     as root file system images.
47694
47695 commit 489c696ae7211218961d159e43e722d74c36fcbc
47696 Author: Sergei Poselenov <sposelenov@emcraft.com>
47697 Date:   Wed Feb 14 14:30:28 2007 +0300
47698
47699     MCC200: Extensions to Software Update Mechanism
47700
47701     Update / extend Software Update Mechanism for MCC200 board:
47702
47703     - Add support for rootfs image added. The environment variables
47704       "rootfs_st" and "rootfs_nd" can be used to override the default
47705       values of the image start and end.
47706     - Remove excessive key check code.
47707     - Code cleanup.
47708
47709 commit 4be23a12f23f1372634edc3215137b09768b7949
47710 Author: Stefan Roese <sr@denx.de>
47711 Date:   Mon Feb 19 08:23:15 2007 +0100
47712
47713     [PATCH] Update Sequoia EBC configuration (NOR FLASH)
47714
47715     As spotted by Matthias Fuchs, the READY input should not be
47716     enabled for the NOR FLASH on the Sequoia board.
47717
47718     Signed-off-by: Stefan Roese <sr@denx.de>
47719
47720 commit 2605e90bf676d48123afe5719a846d2b52b24aac
47721 Author: Heiko Schocher <hs@pollux.denx.de>
47722 Date:   Fri Feb 16 07:57:42 2007 +0100
47723
47724     [PATCH] Added support for the jupiter board.
47725
47726     Signed-off-by: Heiko Schocher <hs@denx.de>
47727
47728 commit 497d012e5be0194e1084073d0081eb1a844796b2
47729 Author: Gary Jennejohn <garyj@pollux.denx.de>
47730 Date:   Mon Feb 12 13:11:50 2007 +0100
47731
47732     LPC2292: patch from Siemens.
47733
47734 commit b0b1a920aebead0d44146e73676ae9d80fffc8e2
47735 Author: Stefan Roese <sr@denx.de>
47736 Date:   Sat Feb 10 08:49:31 2007 +0100
47737
47738     [PATCH] Add missing p3mx.h file to repository (ups)
47739
47740     Signed-off-by: Stefan Roese <sr@denx.de>
47741
47742 commit 53d4a4983fb9b3ae5f7b2f10c599aca2b1b4034a
47743 Author: Bartlomiej Sieka <tur@semihalf.com>
47744 Date:   Fri Feb 9 10:45:42 2007 +0100
47745
47746     [Motion-PRO] Preliminary support for the Motion-PRO board.
47747
47748 commit 5a753f98c6a01bd1c61a9a3f95e8329a35f62994
47749 Author: Stefan Roese <sr@denx.de>
47750 Date:   Wed Feb 7 16:51:08 2007 +0100
47751
47752     [PATCH] Update some AMCC 4xx board config files (set initrd_high)
47753
47754     Some boards that can have more than 768MBytes of SDRAM need to
47755     set "initrd_high", so that the initrd can be accessed by the
47756     Linux kernel.
47757
47758     Signed-off-by: Stefan Roese <sr@denx.de>
47759
47760 commit 7372ca68227930d03cffa548310524cad5b96733
47761 Author: Stefan Roese <sr@denx.de>
47762 Date:   Fri Feb 2 12:44:22 2007 +0100
47763
47764     [PATCH] Correctly display PCI arbiter en-/disabled on some 4xx boards
47765
47766     Previously the strapping DCR/SDR was read to determine if the internal PCI
47767     arbiter is enabled or not. This strapping bit can be overridden, so now
47768     the current status is read from the correct DCR/SDR register.
47769
47770     Signed-off-by: Stefan Roese <sr@denx.de>
47771
47772 commit 2aa54f651a42d198673318f07a20c89a43e4d197
47773 Author: Stefan Roese <sr@denx.de>
47774 Date:   Fri Feb 2 12:42:08 2007 +0100
47775
47776     [PATCH] Change configuration output of Sycamore, Yellowstone & Rainier
47777
47778     Signed-off-by: Stefan Roese <sr@denx.de>
47779
47780 commit 23744d6b5bf17592eb6a0ef4f318f6089f55993b
47781 Author: Stefan Roese <sr@denx.de>
47782 Date:   Thu Feb 1 13:22:41 2007 +0100
47783
47784     [PATCH] Remove PCI-PNP configuration from Sequoia/Rainier config file
47785
47786     When PCI PNP is enabled the pci pnp configuration routine is called
47787     which sets the PCI_CACHE_SIZE_LINE to 8. This seems to generate some
47788     problems with some PCI cards. For now disable the PCI PNP configuration.
47789
47790     Signed-off-by: Stefan Roese <sr@denx.de>
47791
47792 commit 2902fadade3be7659467e8d074048c6b7068f5c0
47793 Author: Stefan Roese <sr@denx.de>
47794 Date:   Wed Jan 31 16:56:10 2007 +0100
47795
47796     [PATCH] Update 440EPx/440GRx cpu detection
47797
47798     Signed-off-by: Stefan Roese <sr@denx.de>
47799
47800 commit d5ea287b02a6945c3977410e364a879dd1a555c8
47801 Author: Stefan Roese <sr@denx.de>
47802 Date:   Wed Jan 31 16:38:04 2007 +0100
47803
47804     [PATCH] Update esd cpci5200 files
47805
47806     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
47807
47808 commit 8b7d1f0ab7d7c4fe3160bbf74a7e9690d9f3a3ab
47809 Author: Stefan Roese <sr@denx.de>
47810 Date:   Wed Jan 31 16:37:34 2007 +0100
47811
47812     [PATCH] Add support for esd mecp5200 board
47813
47814     Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
47815
47816 commit 71a4e5fda8b60044ab9f46069fa1cfa26bdd07ff
47817 Author: Stefan Roese <sr@denx.de>
47818 Date:   Wed Jan 31 12:38:50 2007 +0100
47819
47820     [PATCH] Remove unneccessary yellowstone board config file
47821
47822     Signed-off-by: Stefan Roese <sr@denx.de>
47823
47824 commit e802594b6fa1b166308820c276b96dc0d7cc731c
47825 Author: Stefan Roese <sr@denx.de>
47826 Date:   Tue Jan 30 17:06:10 2007 +0100
47827
47828     [PATCH] Update Sequoia (440EPx) config file
47829
47830     The config file now handles the 2nd target, the Rainier (440GRx)
47831     evaluation board better. Additionally the PPC input clock was
47832     adjusted to match the correct value of 33.0 MHz.
47833
47834     Signed-off-by: Stefan Roese <sr@denx.de>
47835
47836 commit 700200c67e73b83751418abe7815840dca8fd6cb
47837 Author: Stefan Roese <sr@denx.de>
47838 Date:   Tue Jan 30 17:04:19 2007 +0100
47839
47840     [PATCH] Merge Yosemite & Yellowstone board ports
47841
47842     Now the AMCC eval boards Yosemite (440EP) and Yellowstone (440GR)
47843     share one config file and all board specific files. This way we
47844     don't have to maintain two different sets of files for nearly
47845     identical boards.
47846
47847     Signed-off-by: Stefan Roese <sr@denx.de>
47848
47849 commit 1bbf5eae322f5f1f6427ecc3ac13a0cb7dba8ad6
47850 Author: Stefan Roese <sr@denx.de>
47851 Date:   Tue Jan 30 15:01:49 2007 +0100
47852
47853     [PATCH] Update Prodrive SCPU (PDNB3 variant) board
47854
47855     SCPU doesn't use redundant environment in flash.
47856
47857     Signed-off-by: Stefan Roese <sr@denx.de>
47858
47859 commit 6304430ed642ea8fa15c9e5af965ac2e033eec45
47860 Author: Stefan Roese <sr@denx.de>
47861 Date:   Tue Jan 30 12:51:07 2007 +0100
47862
47863     [PATCH] alpr: Update alpr board config file
47864
47865     Signed-off-by: Stefan Roese <sr@denx.de>
47866
47867 commit f8db84f132b1e335f20f96138a1f09ed97b08664
47868 Author: Wolfgang Denk <wd@pollux.denx.de>
47869 Date:   Tue Jan 30 00:50:40 2007 +0100
47870
47871     LPC2292 SODIMM port coding style cleanup.
47872
47873 commit 6bd2447ee47ee23c18d2b3c7ccd5a20f7626f5b3
47874 Author: Gary Jennejohn <garyj@pollux.denx.de>
47875 Date:   Wed Jan 24 12:16:56 2007 +0100
47876
47877     Add port for the lpc2292sodimm evaluation board from EmbeddedArtists
47878
47879 commit 2daf046ba627f85f44195815778140039636244e
47880 Author: Bartlomiej Sieka <tur@semihalf.com>
47881 Date:   Tue Jan 23 17:22:06 2007 +0100
47882
47883     [iDMR] Add MTD and JFFS2 support, also add default partition definition.
47884
47885 commit f7db33101fbc9c8f0a10738ce87034875a17aeb9
47886 Author: Bartlomiej Sieka <tur@semihalf.com>
47887 Date:   Tue Jan 23 14:21:14 2007 +0100
47888
47889     [iDMR] Flash driver on initialisation write-protects some sectors,
47890     currently sectors 0-3. Sector 3 does not need to be protected, though
47891     (U-boot occupies sectors 0-1 and the environment sector 2). This commit
47892     fixes this, i.e., only sectors 0-2 are protected.
47893
47894 commit 0ed47bb119cd2c4c16edb2548789148f9e6dc9de
47895 Author: Bartlomiej Sieka <tur@semihalf.com>
47896 Date:   Tue Jan 23 14:11:22 2007 +0100
47897
47898     [iDMR] Using MII-related commands on iDRM board doesn't work now (e.g.,
47899     "mii device" results in "Unexpected exception"). Fixing this properly
47900     requires some clean-up in the FEC drivers infrastructure for ColdFire, so
47901     this commit disables MII commads for now.
47902
47903 commit 363d1d8f9c99b63daef81f5985cab3fc00edde5c
47904 Author: Bartlomiej Sieka <tur@semihalf.com>
47905 Date:   Tue Jan 23 13:25:22 2007 +0100
47906
47907     [ColdFire MCF5271 family] Add CPU detection based on the value of Chip
47908     Identification Register (CIR).
47909
47910 commit fdef388758506765d4d6a7155c8f1584c63ff581
47911 Author: roy zang <tie-fei.zang@freescale.com>
47912 Date:   Mon Jan 22 13:19:21 2007 +0800
47913
47914     use  CFG_WRITE_SWAPPED_DATA define instead of define CFG_FLASH_CFI_SWAP
47915     The patch by Heiko Schocher <hs@pollux.denx.de> on Jan, 19, 2007
47916     fixes cfi_driver bug for mpc7448hpc2 board. The default cfi_driver can support
47917     mpc7448hpc2 board.
47918
47919 commit a4012396645533aef218354eeba754dff0deace8
47920 Author: Wolfgang Denk <wd@pollux.denx.de>
47921 Date:   Fri Jan 19 23:08:39 2007 +0100
47922
47923     Minor code cleanup.
47924
47925 commit f539b7ba7d7ef6dd187c8209609001cb1cd95e39
47926 Author: Heiko Schocher <hs@pollux.denx.de>
47927 Date:   Fri Jan 19 19:57:10 2007 +0100
47928
47929     [PATCH] SC3 board: added CFG_CMD_AUTOSCRIPT.
47930
47931     Signed-off-by: Heiko Schocher <hs@denx.de>
47932
47933 commit d0b6e14087ddd8789f224a48e1d33f2a5df4d167
47934 Author: Heiko Schocher <hs@pollux.denx.de>
47935 Date:   Fri Jan 19 18:05:26 2007 +0100
47936
47937     [PATCH] CFI: define CFG_WRITE_SWAPPED_DATA for the CFI-Flash driver
47938                  if you must swap the bytes between reading/writing.
47939                  (Needed for the SC3 board)
47940
47941     Signed-off-by: Heiko Schocher <hs@denx.de>
47942
47943 commit 9d8d5a5bfb64768f29a0cb47fc37cd6f4c40e276
47944 Author: Stefan Roese <sr@denx.de>
47945 Date:   Thu Jan 18 16:05:47 2007 +0100
47946
47947     [PATCH] Add support for Prodrive SCPU (PDNB3 variant) board
47948
47949     Signed-off-by: Stefan Roese <sr@denx.de>
47950
47951 commit 0057d758e3e874cbe7f24745d0cce8c1cb6c207e
47952 Author: Stefan Roese <sr@denx.de>
47953 Date:   Thu Jan 18 11:54:52 2007 +0100
47954
47955     [PATCH] Update Prodrive P3Mx support
47956
47957     Signed-off-by: Stefan Roese <sr@denx.de>
47958
47959 commit 34167a36c29ee946b727465db5c014746a08e978
47960 Author: Stefan Roese <sr@denx.de>
47961 Date:   Thu Jan 18 11:48:10 2007 +0100
47962
47963     [PATCH] Add missing Taishan config file
47964
47965     Signed-off-by: Stefan Roese <sr@denx.de>
47966
47967 commit cb4820725e9fc409c5cbc8e83054a6ed522d2111
47968 Author: Heiko Schocher <hs@pollux.denx.de>
47969 Date:   Thu Jan 18 11:28:51 2007 +0100
47970
47971     [PATCH] Fix: Compilerwarnings for SC3 board.
47972                  The EBC Configuration Register is now by CFG_EBC_CFG definable
47973                  Added JFFS2 support for the SC3 board.
47974
47975     Signed-off-by: Heiko Schocher <hs@denx.de>
47976
47977 commit 5fb692cae57d1710c8f52a427cf7f39a37383fcd
47978 Author: Stefan Roese <sr@denx.de>
47979 Date:   Thu Jan 18 10:25:34 2007 +0100
47980
47981     [PATCH] Add support for AMCC Taishan PPC440GX eval board
47982
47983     Signed-off-by: Stefan Roese <sr@denx.de>
47984
47985 commit 6d3e0107235aa0e6a6dcb77f9884497280bf85ad
47986 Author: Wolfgang Denk <wd@pollux.denx.de>
47987 Date:   Tue Jan 16 18:30:50 2007 +0100
47988
47989     Raname solidcard3 into sc3; add redundant env for sc3
47990
47991 commit 1bbbbdd20fcec9933697000dcf55ff7972622596
47992 Author: Wolfgang Denk <wd@pollux.denx.de>
47993 Date:   Tue Jan 16 12:46:35 2007 +0100
47994
47995     Update default environment for Solidcard3
47996
47997 commit 5a5c56986a9ccf71642c8b6374eb18487b15fecd
47998 Author: Stefan Roese <sr@denx.de>
47999 Date:   Mon Jan 15 09:46:29 2007 +0100
48000
48001     [PATCH] Fix 440SPe rev B detection from previous patch
48002
48003     Signed-off-by: Stefan Roese <sr@denx.de>
48004
48005 commit a443d31410c571ee8f970da819a44d698fdd6b1f
48006 Author: Heiko Schocher <hs@pollux.denx.de>
48007 Date:   Sun Jan 14 13:35:31 2007 +0100
48008
48009         [FIX] correct I2C Writes for the LM81 Sensor.
48010
48011         Signed-off-by: Heiko Schocher <hs@denx.de>
48012
48013 commit 0bba5452835f19a61204edcda3a58112fd8e2208
48014 Author: Wolfgang Denk <wd@pollux.denx.de>
48015 Date:   Sat Jan 13 11:17:10 2007 +0100
48016
48017     Undo commit 3033ebb2: reset command does not take any arguments
48018
48019     Haiying Wang's modification to the reset command was broken, undo it.
48020
48021     Signed-off-by: Wolfgang Denk <wd@denx.de>
48022
48023 commit 95981778cff0038fd9941044d6a3eda810e33258
48024 Author: Stefan Roese <sr@denx.de>
48025 Date:   Sat Jan 13 08:01:03 2007 +0100
48026
48027     [PATCH] Update 440SP(e) cpu revisions
48028
48029     Also display enabled/disabled RAID 6 support for 440SP/440SPe PPC's.
48030
48031     Signed-off-by: Stefan Roese <sr@denx.de>
48032
48033 commit 77ddc5b9afb325262fd88752ba430a1dded1f0c7
48034 Author: Stefan Roese <sr@denx.de>
48035 Date:   Sat Jan 13 07:59:56 2007 +0100
48036
48037     [PATCH] Update Yellowstone (440GR) to display board rev and PCI bus speed
48038
48039     Now the board revision and the current PCI bus speed are printed after
48040     the board message.
48041
48042     Also the EBC initialising is now done via defines in the board config
48043     file.
48044
48045     Signed-off-by: Stefan Roese <sr@denx.de>
48046
48047 commit 36adff362c2c0141ff8a810d42a7e478f779130f
48048 Author: Stefan Roese <sr@denx.de>
48049 Date:   Sat Jan 13 07:59:19 2007 +0100
48050
48051     [PATCH] Update Yosemite (440EP) to display board rev and PCI bus speed
48052
48053     Now the board revision and the current PCI bus speed are printed after
48054     the board message.
48055
48056     Also the EBC initialising is now done via defines in the board config
48057     file.
48058
48059     Signed-off-by: Stefan Roese <sr@denx.de>
48060
48061 commit e0b9ea8c8a294de6a5350ae638879d24b5b709d6
48062 Author: Stefan Roese <sr@denx.de>
48063 Date:   Sat Jan 13 07:57:51 2007 +0100
48064
48065     [PATCH] Update Sequoia (440EPx) to display board rev and PCI bus speed
48066
48067     Now the board revision and the current PCI bus speed are printed after
48068     the board message.
48069
48070     Signed-off-by: Stefan Roese <sr@denx.de>
48071
48072 commit ca43ba18e910206ef8063e4b22d282630bff3fd2
48073 Author: Heiko Schocher <hs@pollux.denx.de>
48074 Date:   Thu Jan 11 15:44:44 2007 +0100
48075
48076         Added support for the SOLIDCARD III board from Eurodesign
48077
48078         Signed-off-by: Heiko Schocher <hs@denx.de>
48079
48080 commit 6abaee42621c07e81a2cd189ad4368b5e8c50280
48081 Author: Reinhard Thies <Reinhard.Thies@web.de>
48082 Date:   Wed Jan 10 14:41:14 2007 +0100
48083
48084     Adjusted default environment for cam5200 board.
48085
48086 commit bab5a90d4ccc1a46a8127b867fa59028cc623ad9
48087 Author: Wolfgang Denk <wd@pollux.denx.de>
48088 Date:   Wed Jan 10 15:35:52 2007 +0100
48089
48090     Update CHANGELOG
48091
48092 commit 787fa15860a57833e50bd30555079a9cd4e519b8
48093 Author: Wolfgang Denk <wd@pollux.denx.de>
48094 Date:   Wed Jan 10 01:28:39 2007 +0100
48095
48096     Fix auto_update for MCC200 board.
48097
48098     The invocation of do_auto_update() is moved to the end of the
48099     misc_init_r() function, after the flash mappings have been
48100     initialized. Please find attached a patch that implements that
48101     change.
48102
48103     Also correct the decoding of the keypad status. With this update, the
48104     key that will trigger the update is Column 2, Row 2.
48105
48106 commit d9384de2f571046e71081bae22b49e3d5ca2e3d5
48107 Author: Marian Balakowicz <m8@semihalf.com>
48108 Date:   Wed Jan 10 00:26:15 2007 +0100
48109
48110     CAM5200 flash driver modifications:
48111     - use CFI driver (replaces custom flash driver) for main 'cam5200' target
48112     - add second build target 'cam5200_niosflash' which still uses custom driver
48113
48114 commit 67fea022fa957f59653b5238c7496f80a6b70432
48115 Author: Markus Klotzbuecher <mk@denx.de>
48116 Date:   Tue Jan 9 16:02:48 2007 +0100
48117
48118     SPC1920: cleanup memory contoller setup
48119
48120 commit 8fc2102faa23593c80381437c09f7745a14deb40
48121 Author: Markus Klotzbuecher <mk@denx.de>
48122 Date:   Tue Jan 9 14:57:14 2007 +0100
48123
48124     Fix the cpu speed setup to work with all boards.
48125
48126 commit 9295acb77481cf099ef9b40e1fa2d145b3c7490c
48127 Author: Markus Klotzbuecher <mk@denx.de>
48128 Date:   Tue Jan 9 14:57:13 2007 +0100
48129
48130     SPC1920: add support for the FM18L08 Ramtron FRAM
48131
48132 commit 38ccd2fdf3364a53fe80e9b365303ecdafc9e223
48133 Author: Markus Klotzbuecher <mk@denx.de>
48134 Date:   Tue Jan 9 14:57:13 2007 +0100
48135
48136     SPC1920: update the HPI register addresses to work with the second
48137     generation of hardware
48138
48139 commit 5921e5313fc3eadd42770c2b99badd7fae5ecf1e
48140 Author: Markus Klotzbuecher <mk@creamnet.de>
48141 Date:   Tue Jan 9 14:57:13 2007 +0100
48142
48143     Miscellanious spc1920 related cleanups
48144
48145 commit e4c2d37adc8bb1bf69dcf600cbc6c75f916a6120
48146 Author: Markus Klotzbuecher <mk@denx.de>
48147 Date:   Tue Jan 9 14:57:12 2007 +0100
48148
48149     SPC1920 GO/NOGO led should be set to color red in U-Boot
48150
48151 commit 0be62728aac459ba268d6d752ed49ec0e2bc7348
48152 Author: Markus Klotzbuecher <mk@creamnet.de>
48153 Date:   Tue Jan 9 14:57:12 2007 +0100
48154
48155     Add support for the DS3231 RTC
48156
48157 commit 8139567b60d678584b05f0718a681f2047c5e14f
48158 Author: Markus Klotzbuecher <mk@creamnet.de>
48159 Date:   Tue Jan 9 14:57:11 2007 +0100
48160
48161     SMC1 uses external CLK4 instead of BRG on spc1920
48162
48163 commit d8d9de1a02fbd880b613d607143d1f57342affc7
48164 Author: Markus Klotzbuecher <mk@creamnet.de>
48165 Date:   Tue Jan 9 14:57:10 2007 +0100
48166
48167     Update the SPC1920 CMB PLD driver
48168
48169 commit 3f34f869162750e5e999fd140f884f5de952bcfe
48170 Author: Markus Klotzbuecher <mk@creamnet.de>
48171 Date:   Tue Jan 9 14:57:10 2007 +0100
48172
48173     Add / enable I2C support on the spc1920 board
48174
48175 commit d28707dbce1e9ac2017ad051da4133bf22b4204f
48176 Author: Markus Klotzbuecher <mk@creamnet.de>
48177 Date:   Tue Jan 9 14:57:10 2007 +0100
48178
48179     Add support for the tms320671x host port interface (HPI)
48180
48181 commit f4eb54529bb3664c3a562e488b460fe075f79d67
48182 Author: Wolfgang Denk <wd@pollux.denx.de>
48183 Date:   Sun Jan 7 00:13:11 2007 +0100
48184
48185     Prepare for release 1.2.0
48186
48187 commit f07ae7a9daef27a3d0213a4f3fe39d5342173c02
48188 Author: Stefan Roese <sr@denx.de>
48189 Date:   Sat Jan 6 15:58:09 2007 +0100
48190
48191     [PATCH] 44x: Fix problem with DDR controller setup (refresh rate)
48192
48193     This patch fixes a problem with an incorrect setup for the refresh
48194     timer of the 44x DDR controller in the file cpu/ppc4xx/sdram.c
48195
48196     Signed-off-by: Stefan Roese <sr@denx.de>
48197
48198 commit f16c1da9577f06c5fc08651a4065537407de4635
48199 Author: Stefan Roese <sr@denx.de>
48200 Date:   Sat Jan 6 15:56:13 2007 +0100
48201
48202     [PATCH] Update ALPR board files
48203
48204     This update brings the ALPR board support to the newest version.
48205     It also fixes a problem with the NAND driver.
48206
48207     Signed-off-by: Stefan Roese <sr@denx.de>
48208
48209 commit cd1d937f90250a32988c37b2b4af8364d25de8ed
48210 Author: Stefan Roese <sr@denx.de>
48211 Date:   Fri Jan 5 11:46:05 2007 +0100
48212
48213     [PATCH] nand: Fix problem with oobsize calculation
48214
48215     Here the description from Brian Brelsford <Brian_Brelsford@dell.com>:
48216
48217     The Hynix part returns a 0x1d in the 4th ID byte. The Samsung part
48218     returns a 0x15. In the code fragment below bits [1:0] determine the
48219     page size, it is ANDed via "(extid & 0x3)" then shifted out. The
48220     next field is also ANDed with 0x3. However this is a one bit field
48221     as defined in the Hynix and Samsung parts in the 4th ID byte that
48222     determins the oobsize, not a two bit field. It works on Samsung as
48223     bits[3:2] are 01. However for the Hynix there is a 11 in these two
48224     bits, so the oob size gets messed up.
48225
48226     I checked the correct linux code and the suggested fix from Brian is
48227     also available in the linux nand mtd driver.
48228
48229     Signed-off-by: Stefan Roese <sr@denx.de>
48230
48231 commit a78bc443ae5a4a8ba87590587d5e35bf5a787b2e
48232 Author: Stefan Roese <sr@denx.de>
48233 Date:   Fri Jan 5 10:40:36 2007 +0100
48234
48235     [PATCH] Clear PLB4A0_ACR[WRP] on Sequoia (440EPx)
48236
48237     This fix will make the MAL burst disabling patch for the Linux
48238     EMAC driver obsolete.
48239
48240     Signed-off-by: Stefan Roese <sr@denx.de>
48241
48242 commit 023889838282b6237b401664f22dd22dfba2c066
48243 Author: Stefan Roese <sr@denx.de>
48244 Date:   Fri Jan 5 10:38:05 2007 +0100
48245
48246     [PATCH] Add DDR2 optimization code for Sequoia (440EPx) board
48247
48248     This code will optimize the DDR2 controller setup on a board specific
48249     basis.
48250
48251     Note: This code doesn't work right now on the NAND booting image for the
48252     Sequoia board, since it doesn't fit into the 4kBytes for the SPL image.
48253
48254     Signed-off-by: Stefan Roese <sr@denx.de>
48255
48256 commit cce4acbb68398634b8d011ed7bb0d12269c84230
48257 Author: Bartlomiej Sieka <tur@semihalf.com>
48258 Date:   Thu Dec 28 19:08:21 2006 +0100
48259
48260     Few V38B changes:
48261       - fix a typo in V38B config file
48262       - move watchdog initialisation earlier in the boot process
48263       - add "wdt=off" to default kernel command line (disables kernel watchdog)
48264
48265 commit 92eb729bad876725aeea908d2addba0800620840
48266 Author: Wolfgang Denk <wd@pollux.denx.de>
48267 Date:   Wed Dec 27 01:26:13 2006 +0100
48268
48269     Fix bug in adaption of Stefano Babic's CFI driver patch.
48270
48271 commit 9c0f42ecfe25f7ffce8ec7a815f03864d723ffe3
48272 Author: Wolfgang Denk <wd@pollux.denx.de>
48273 Date:   Sun Dec 24 01:42:57 2006 +0100
48274
48275     Minor code cleanup.
48276
48277 commit d784fdb05900ada3686d5778783e1fb328e9fb66
48278 Author: Stefano Babic <sbabic@denx.de>
48279 Date:   Tue Dec 12 00:22:42 2006 +0100
48280
48281     Fix cfi failure with Spansion Flash (Spansion Flash Devices have a different offset to go into CFI mode)
48282
48283 commit 1b3c360c235dc684ec06c2d5f183f0a282ce45e2
48284 Author: Stefan Roese <sr@denx.de>
48285 Date:   Fri Dec 22 14:29:40 2006 +0100
48286
48287     [PATCH] Fix sequoia flash autodetection (finally correct)
48288
48289     Now 32MByte and 64MByte FLASH is know to work and other
48290     configurations should work too.
48291
48292     Signed-off-by: Stefan Roese <sr@denx.de>
48293
48294 commit 82e5236a8b719543643fd26d5827938ab2b94818
48295 Author: Wolfgang Denk <wd@pollux.denx.de>
48296 Date:   Fri Dec 22 10:30:26 2006 +0100
48297
48298     Minor code cleanup; update CHANGELOG.
48299
48300 commit fa23044564091f05d9695beb7b5b9a931e7f41a4
48301 Author: Heiko Schocher <hs@pollux.denx.de>
48302 Date:   Thu Dec 21 17:17:02 2006 +0100
48303
48304     Added support for the TQM8272 board from TQ
48305
48306     Signed-off-by: Heiko Schocher <hs@denx.de>
48307
48308 commit 6dedf3d49dd14c3bf541c8ecee7ffaac5f0e1d6c
48309 Author: Heiko Schocher <hs@pollux.denx.de>
48310 Date:   Thu Dec 21 16:14:48 2006 +0100
48311
48312     [PATCH] Add support for the UC101 board from MAN.
48313
48314     Signed-off-by: Heiko Schocher <hs@denx.de>
48315
48316 commit c84bad0ef60e7055ab0bd49b93069509cecc382a
48317 Author: Bartlomiej Sieka <tur@semihalf.com>
48318 Date:   Wed Dec 20 00:29:43 2006 +0100
48319
48320     Fix to make the baudrate changes immediate for the MCF52x2 family.
48321
48322 commit daa6e418bcc0c717752e8de939c213c790286096
48323 Author: Bartlomiej Sieka <tur@semihalf.com>
48324 Date:   Wed Dec 20 00:27:32 2006 +0100
48325
48326     Preliminary support for the iDMR board (ColdFire).
48327
48328 commit cdb97a6678826f85e7c69eae6a1c113d034c9b10
48329 Author: Andrei Safronov <safronov@pollux.denx.de>
48330 Date:   Fri Dec 8 16:23:08 2006 +0100
48331
48332     automatic update mechanism
48333
48334 commit 9d27b3a0685ff99fc477983f315c04d49f657a8a
48335 Author: roy zang <tie-fei.zang@freescale.com>
48336 Date:   Mon Dec 4 17:56:59 2006 +0800
48337
48338     Slight code clean up.
48339     Add comments, delete duplicate define and remove spaces.
48340     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
48341
48342 commit 4dbcd69e3e2776ea334590d5768e3692c5fae5c1
48343 Author: roy zang <tie-fei.zang@freescale.com>
48344 Date:   Mon Dec 4 17:54:21 2006 +0800
48345
48346     Introduce PLL_CFG[0:4] table for processor 7448/7447A/7455/7457. The original
48347     multiplier table can not refect the real PLL clock behavior of these
48348     processors. Please refer to the hardware specification for detailed
48349     information of the corresponding processors.
48350     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
48351
48352 commit 4efe20c9579011d9987f62ed7d35ee8cdc1cf0e0
48353 Author: roy zang <tie-fei.zang@freescale.com>
48354 Date:   Mon Dec 4 14:46:23 2006 +0800
48355
48356     Remove the static MAC address, ip address, server ip, netmask and
48357     gateway ip for network setting.
48358     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
48359
48360 commit 6f12c61cf31ed73d72ddfcfc712a854a3a177aaf
48361 Author: roy zang <tie-fei.zang@freescale.com>
48362 Date:   Mon Dec 4 14:33:08 2006 +0800
48363
48364     Remove the duplicate memory test code for mpc744ihpc2 board.
48365     If a memory test is needed, please use the functions in
48366     post/memory.c or memtest command.
48367     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
48368
48369 commit c9c1eeed7dd193fa65fb194654132040d49d4d3a
48370 Author: roy zang <tie-fei.zang@freescale.com>
48371 Date:   Fri Dec 1 19:01:25 2006 +0800
48372
48373     Fix the exception occuring in RAM table search issue.
48374     The original search_one_table() function code can only processes the search
48375     for the exception occurring in FLASH/ROM, because the exception and fixup
48376     table usually locate in FLASH. If the exception address is also in
48377     FLASH, it will be OK.
48378     If the exception occurs in RAM, after the u-boot relocation, a
48379     relocation offset should be added.
48380
48381     clean up the code in cpu/74xx_7xx/cpu.c
48382
48383     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
48384
48385 commit ee311214e0d216f904feea269599d0934bf71f23
48386 Author: roy zang <tie-fei.zang@freescale.com>
48387 Date:   Fri Dec 1 11:47:36 2006 +0800
48388
48389     Clean up the code according to codestyle:
48390     (1) remove some C++ comments.
48391     (2) remove trailing white space.
48392     (3) remove trailing empty line.
48393     (4) Indentation by table.
48394     (5) remove {} in one line condition.
48395     (6) add space before '(' in function call.
48396     Remove some weird printf () output.
48397     Add necessary comments.
48398     Modified Makefile to support building in a separate directory.
48399
48400 commit dd520bf314c7add4183c5191692180f576f96b60
48401 Author: Wolfgang Denk <wd@pollux.denx.de>
48402 Date:   Thu Nov 30 18:02:20 2006 +0100
48403
48404     Code cleanup.
48405
48406 commit 8d9a8610b8256331132227e9e6585c6bd5742787
48407 Author: Wolfgang Denk <wd@pollux.denx.de>
48408 Date:   Thu Nov 30 01:54:07 2006 +0100
48409
48410     Code cleanup. Update CHANGELOG.
48411
48412 commit 726e90aacf0b1ecb0e7055be574622fbe3e450ba
48413 Author: Grant Likely <grant.likely@secretlab.ca>
48414 Date:   Wed Nov 29 16:23:42 2006 +0100
48415
48416     [PATCH] [MPC52xx] Use IPB bus frequency for SOC peripherals
48417
48418     The soc node of the mpc52xx needs to be loaded with the IPB bus frequency,
48419     not the XLB frequency.
48420
48421     This patch depends on the previous patches for MPC52xx device tree support
48422
48423     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
48424     Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
48425
48426 commit 1eac2a71417b6675b11aace72102a2e7fde8f5c6
48427 Author: Stefan Roese <sr@denx.de>
48428 Date:   Wed Nov 29 15:42:37 2006 +0100
48429
48430     [PATCH] Add support for Prodrive P3M750 & P3M7448 (P3Mx) boards
48431
48432     This patch adds support for the Prodrive P3M750 (PPC750 & MV64460)
48433     and the P3M7448 (MPC7448 & MV64460) PMC modules. Both modules are
48434     quite similar and share the same board directory "prodrive/p3mx"
48435     and the same config file "p3mx.h".
48436
48437     Signed-off-by: Stefan Roese <sr@denx.de>
48438
48439 commit 1bdd46832aeb569f5e04b1f20f64318525b6525a
48440 Author: Stefan Roese <sr@denx.de>
48441 Date:   Wed Nov 29 12:53:15 2006 +0100
48442
48443     [PATCH] common/cmd_elf.c: Enable loadaddr as parameter in bootvx command
48444
48445     In the bootvx command the load address was only read from the env
48446     variable "loadaddr" and not optionally passed as paramter as described
48447     in the help. This is fixed with this patch. The behaviour is now the
48448     same as in the bootelf command.
48449
48450     Signed-off-by: Stefan Roese <sr@denx.de>
48451
48452 commit 4e26f1074c3ac1bd8fd094f0dc4a1c4a0b15a592
48453 Author: Stefan Roese <sr@denx.de>
48454 Date:   Wed Nov 29 12:03:57 2006 +0100
48455
48456     [PATCH] include/ppc440.h minor error affecting interrupts
48457
48458     Fixed include/ppc440.c for UIC address Bug
48459
48460     Corrects bug affecting the addresses for the universal interrupt
48461     controller UIC2 and UIC3 on the PPC440 Epx, GRx, and SPE chips.
48462
48463     Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
48464     Signed-off-by: Stefan Roese <sr@denx.de>
48465
48466 commit 1939d969443ccf316cab2bf32ab1027d4db5ba1a
48467 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
48468 Date:   Tue Nov 28 16:17:27 2006 -0600
48469
48470     Make fsl-i2c not conflict with SOFT I2C
48471
48472     Signed-off-by: Timur Tabi <timur@freescale.com>
48473
48474 commit 14198bf768fdc958e3c1afd2404e5262208e98d7
48475 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
48476 Date:   Tue Nov 28 16:17:18 2006 -0600
48477
48478     Fix I2C master address initialization.
48479
48480     Signed-off-by: Timur Tabi <timur@freescale.com>
48481
48482 commit cf3d045e51ca8dcc6cf759827140861d6ac25c04
48483 Author: Kim Phillips <kim.phillips@freescale.com>
48484 Date:   Tue Nov 28 23:31:19 2006 -0600
48485
48486     Assign maintainers for mpc8349emds and mpc8360emds
48487
48488     Dave for mpc8360emds, and me for mpc8349emds.
48489
48490 commit 1aa934c81b77f2080d3ca4b226eab67b17a33961
48491 Author: Kim Phillips <kim.phillips@freescale.com>
48492 Date:   Tue Nov 28 23:28:33 2006 -0600
48493
48494     Eliminate gcc 4 'used uninitialized' warnings in drivers/qe/uccf.c
48495
48496     give initial values for reg_num, shift, p_cmxucr in ucc_set_clk_src
48497     since they are passed by reference to ucc_get_cmxucr_reg and assigned.
48498
48499 commit e857a5bdb3954b896c0920cb9d8d2b1b9c107ce5
48500 Author: Timur Tabi <timur@freescale.com>
48501 Date:   Tue Nov 28 12:09:35 2006 -0600
48502
48503     mpc83xx: Miscellaneous code style fixes
48504
48505     Implement various code style fixes and similar changes.
48506
48507     Signed-off-by: Timur Tabi <timur@freescale.com>
48508
48509 commit e59581c56ab5d6e0207ddac3b2c1d55cb36ec706
48510 Author: Stefan Roese <sr@denx.de>
48511 Date:   Tue Nov 28 17:55:49 2006 +0100
48512
48513     [PATCH] Enable the IceCube/lite5200 variants to pass a device tree to Linux.
48514
48515     This patch adds the code and configuration necessary to boot with an
48516     arch/powerpc Linux kernel.
48517
48518     Signed-off-by: Grant Likely <grant.likely@gmail.com>
48519     Acked-by: Jon Loeliger <jdl@freescale.com>
48520
48521 commit e732faec95a83cb468b4850ae807c8301dde8f6a
48522 Author: Stefan Roese <sr@denx.de>
48523 Date:   Tue Nov 28 16:09:24 2006 +0100
48524
48525     [PATCH] PPC4xx: 440SP Rev. C detection added
48526
48527     Signed-off-by: Stefan Roese <sr@denx.de>
48528
48529 commit e7f3e9ff01fbd7fa72eb42a9675fbed6bc4736b0
48530 Author: Stefan Roese <sr@denx.de>
48531 Date:   Tue Nov 28 11:04:45 2006 +0100
48532
48533     [PATCH] nand: Fix patch merge problem
48534
48535     Signed-off-by: Stefan Roese <sr@denx.de>
48536
48537 commit 58e3b14c18ed3288ceef8d086946dbf3df64ccf2
48538 Author: Stefan Roese <sr@denx.de>
48539 Date:   Tue Nov 28 11:04:45 2006 +0100
48540
48541     [PATCH] nand: Fix patch merge problem
48542
48543     Signed-off-by: Stefan Roese <sr@denx.de>
48544
48545 commit 4f4b602ec7524a032bdf3c6d28c7f525a4a67eaa
48546 Author: Wolfgang Denk <wd@pollux.denx.de>
48547 Date:   Mon Nov 27 22:53:53 2006 +0100
48548
48549     Update CHANGELOG
48550
48551 commit f6e495f54cdb8fe340b9c03deab40ad746d52fae
48552 Author: Stefan Roese <sr@denx.de>
48553 Date:   Mon Nov 27 17:43:25 2006 +0100
48554
48555     [PATCH] 4xx_enet.c: Correct the setting of zmiifer register
48556
48557     Patch below corrects the setting of the zmiifer register, it was
48558     overwritting the register rather than ORing the settings.
48559
48560     Signed-off-by: Neil Wilson <NWilson@airspan.com>
48561     Signed-off-by: Stefan Roese <sr@denx.de>
48562
48563 commit d1a72545296800b7e219f93104ad5836f0003d66
48564 Author: Stefan Roese <sr@denx.de>
48565 Date:   Mon Nov 27 17:34:10 2006 +0100
48566
48567     [PATCH] Select NAND embedded environment from board configuration
48568
48569     The current NAND Bootloader setup forces the environment
48570     variables to be in line with the bootloader. This change
48571     enables the configuration to be made in the board include
48572     file instead so that it can be individually enabled.
48573
48574     Signed-off-by: Nick Spence <nick.spence@freescale.com>
48575     Signed-off-by: Stefan Roese <sr@denx.de>
48576
48577 commit 15784862857c3c2214498defcfed84ff137fb81e
48578 Author: Stefan Roese <sr@denx.de>
48579 Date:   Mon Nov 27 17:22:19 2006 +0100
48580
48581     [PATCH] nand_wait() timeout fixes
48582
48583     Two fixes for the nand_wait() function in
48584     drivers/nand/nand_base.c:
48585
48586     1. Use correct timeouts. The original timeouts in Linux
48587     source are 400ms and 20ms not 40s and 20s
48588
48589     2. Return correct error value in case of timeout. 0 is
48590     interpreted as OK.
48591
48592     Signed-off-by: Rui Sousa <rui.sousa@laposte.net>
48593     Signed-off-by: Stefan Roese <sr@denx.de>
48594
48595 commit da5553b095bf04f4f109ad7e565dae3aba47b230
48596 Author: Stefan Roese <sr@denx.de>
48597 Date:   Mon Nov 27 17:04:06 2006 +0100
48598
48599     [PATCH] Allow CONFIG_OF_FLAT_TREE to boot a non-arch/powerpc kernel
48600
48601     This patch allows an arch/ppc kernel to be booted by just passing 1 or 2
48602     arguments to bootm.  It removes the getenv("disable_of") test that used
48603     to be used for this purpose.
48604
48605     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
48606     Acked-by: Jon Loeliger <jdl@freescale.com>
48607
48608 commit a9398e018593782c5fa7d0741955fc1256b34c1e
48609 Author: Wolfgang Denk <wd@pollux.denx.de>
48610 Date:   Mon Nov 27 15:32:42 2006 +0100
48611
48612     Minor code cleanup. Update CHANGELOG.
48613
48614 commit 1729b92cde575476684bffe819d0b7791b57bff2
48615 Author: Stefan Roese <sr@denx.de>
48616 Date:   Mon Nov 27 14:52:04 2006 +0100
48617
48618     [PATCH] 4xx: Fix problem with board specific reset code (now for real)
48619
48620     Signed-off-by: Stefan Roese <sr@denx.de>
48621
48622 commit cc5ee8a92a0e3ca6f727af71b8fd206460c7afd7
48623 Author: Stefan Roese <sr@denx.de>
48624 Date:   Mon Nov 27 14:49:51 2006 +0100
48625
48626     [PATCH] alpr: remove unused board specific flash driver
48627
48628     Signed-off-by: Stefan Roese <sr@denx.de>
48629
48630 commit 1f94d162e2b5f0edc28d9fb11482502c44d218e1
48631 Author: Stefan Roese <sr@denx.de>
48632 Date:   Mon Nov 27 14:48:41 2006 +0100
48633
48634     [PATCH] 4xx: Fix problem with board specific reset code
48635
48636     Signed-off-by: Stefan Roese <sr@denx.de>
48637
48638 commit ec0c2ec725aec9524a177a77ce75559e644a931a
48639 Author: Stefan Roese <sr@denx.de>
48640 Date:   Mon Nov 27 14:46:06 2006 +0100
48641
48642     [PATCH] Remove testing 4xx enet PHY setup
48643
48644     Signed-off-by: Stefan Roese <sr@denx.de>
48645
48646 commit 1c2ce2262069510f31c7d3fd7efd3d58b8c0c148
48647 Author: Stefan Roese <sr@denx.de>
48648 Date:   Mon Nov 27 14:12:17 2006 +0100
48649
48650     [PATCH] Update Prodrive ALPR board support (440GX)
48651
48652     Signed-off-by: Stefan Roese <sr@denx.de>
48653
48654 commit 58b485776698c3d71ec5a215e392123b4c15afa3
48655 Author: Markus Klotzbuecher <mk@denx.de>
48656 Date:   Mon Nov 27 11:51:21 2006 +0100
48657
48658     Add a small README with information on the generic ohci driver.
48659
48660 commit ae3b770e4eae8e98b6e9e29662e18c47fdf0171f
48661 Author: Markus Klotzbuecher <mk@denx.de>
48662 Date:   Mon Nov 27 11:46:46 2006 +0100
48663
48664     Fix some endianness issues related to the generic ohci driver
48665
48666 commit 7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418
48667 Author: Markus Klotzbuecher <mk@denx.de>
48668 Date:   Mon Nov 27 11:44:58 2006 +0100
48669
48670     Introduced the configuration option CONFIG_USB_OHCI_NEW in order to be able
48671     to choose between the old and the generic OHCI drivers.
48672
48673 commit 53e336e9ffc51035bdc4e5867631b3378761b4df
48674 Author: Markus Klotzbuecher <mk@denx.de>
48675 Date:   Mon Nov 27 11:43:09 2006 +0100
48676
48677     Modified the mpc5xxx and the ppc4xx cpu to use the generic OHCI driver
48678     and adapted board configs TQM5200 and yosemite accordingly. This commit
48679     also makes the maximum number of root hub ports configurable
48680     (CFG_USB_OHCI_MAX_ROOT_PORTS).
48681
48682 commit 78d620ebb5871d252270dedfad60c6568993b780
48683 Author: Wolfgang Denk <wd@atlas.denx.de>
48684 Date:   Thu Nov 23 22:58:58 2006 +0100
48685
48686     Updates for TQM5200 modules:
48687     - fix off-by-one error in board/tqm5200/cam5200_flash.c error message
48688     - simplify "udate" definitions
48689
48690 commit 2053283304eeddf250d109e6791eb6fa4cad14f7
48691 Author: Stefan Roese <sr@denx.de>
48692 Date:   Wed Nov 22 13:20:50 2006 +0100
48693
48694     [PATCH] PPC4xx start.S: Fix for processor errata
48695
48696     Fixed cpu/ppc4xx/start.S for 440EPx Errata: further corrects PPC440EPx
48697     errata 1.12: 440_33 by moving patch up in code.
48698
48699     Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
48700     Signed-off-by: Stefan Roese <sr@denx.de>
48701
48702 commit 4ef6251403f637841000e0fef9e832aa01339822
48703 Author: Stefan Roese <sr@denx.de>
48704 Date:   Mon Nov 20 20:39:52 2006 +0100
48705
48706     [PATCH] Update AMCC Sequoia config file to support 64MByte NOR FLASH
48707
48708     Signed-off-by: Stefan Roese <sr@denx.de>
48709
48710 commit e4bbd8da164b976d38616bd9c69c5e86e193cdf0
48711 Author: Wolfgang Denk <wd@pollux.denx.de>
48712 Date:   Mon Nov 20 10:28:30 2006 +0100
48713
48714     Update CHANGELOG
48715
48716 commit 260421a21e934a68d31fb6125b0fbd2631a8ca20
48717 Author: Stefan Roese <sr@denx.de>
48718 Date:   Mon Nov 13 13:55:24 2006 +0100
48719
48720     [PATCH] CFI driver AMD Command Set Top boot geometry reversal, etc. [Updated]
48721
48722        * Adds support for AMD command set Top Boot flash geometry reversal
48723        * Adds support for reading JEDEC Manufacturer ID and Device ID
48724        * Adds support for displaying command set, manufacturer id and
48725          device ids (flinfo)
48726        * Makes flinfo output to be consistent when CFG_FLASH_EMPTY_INFO defined
48727        * Removes outdated change history (refer to git log instead)
48728
48729     Signed-off-by: Tolunay Orkun <listmember@orkun.us>
48730     Signed-off-by: Stefan Roese <sr@denx.de>
48731
48732 commit b21b511d4c50408f4853f46f06b601272196223f
48733 Author: Wolfgang Denk <wd@pollux.denx.de>
48734 Date:   Sun Nov 12 21:13:23 2006 +0100
48735
48736     Update CHANGELOG
48737
48738 commit ce3f1a40c507afbab06c5eb58ccdc6713eda3245
48739 Author: Bartlomiej Sieka <tur@semihalf.com>
48740 Date:   Sat Nov 11 22:48:22 2006 +0100
48741
48742     Disable the watchdog in the default config for the V38B board.
48743
48744 commit 44a47e6db2694841211f1c8fdbafd36992e9cd1a
48745 Author: Bartlomiej Sieka <tur@semihalf.com>
48746 Date:   Sat Nov 11 22:43:00 2006 +0100
48747
48748     Change the GPIO pin multiplexing configuration for V38B. The USB GPIO pin
48749     group is enabled for USB earlier (in cpu_init_f() instead of
48750     usb_lowlevel_init()).
48751
48752 commit 91650b3e4de688038d4f71279c44858e3e2c6870
48753 Author: Wolfgang Denk <wd@pollux.denx.de>
48754 Date:   Mon Nov 6 17:06:36 2006 +0100
48755
48756     Sequential accesses to non-existent memory must be synchronized,
48757     at least on G2 cores.
48758
48759     This fixes get_ram_size() problems on MPC5200 Rev. B boards.
48760
48761 commit be5e61815d5a1fac290ce9c0ef09cb6a8e4288fa
48762 Author: Timur Tabi <timur@freescale.com>
48763 Date:   Fri Nov 3 19:15:00 2006 -0600
48764
48765     mpc83xx: Update 83xx to use fsl_i2c.c
48766
48767     Update the 83xx tree to use I2C support in drivers/fsl_i2c.c.  Delete
48768     cpu/mpc83xx/i2c.c, include/asm-ppc/i2c.h, and all references to those files.
48769     Added multiple I2C bus support to fsl_i2c.c.
48770
48771     Signed-off-by: Timur Tabi <timur@freescale.com>
48772
48773 commit d239d74b1c937984bc519083a8e7de373a390f06
48774 Author: Timur Tabi <timur@freescale.com>
48775 Date:   Fri Nov 3 12:00:28 2006 -0600
48776
48777     mpc83xx: Replace CFG_IMMRBAR with CFG_IMMR
48778
48779     Replace all instances of CFG_IMMRBAR with CFG_IMMR, so that the 83xx
48780     tree matches the other 8xxx trees.
48781
48782     Signed-off-by: Timur Tabi <timur@freescale.com>
48783
48784 commit f7fb2e703ec9688541416962724adff70a7322cb
48785 Author: Kim Phillips <kim.phillips@freescale.com>
48786 Date:   Thu Nov 2 19:47:11 2006 -0600
48787
48788     mpc83xx: Lindent and clean up cpu/mpc83xx/speed.c
48789
48790 commit 90f30a710a3c619b5405860a686c4ddfc495d4b6
48791 Author: Dave Liu <daveliu@freescale.com>
48792 Date:   Thu Nov 2 18:05:50 2006 -0600
48793
48794     mpc83xx: Fix the incorrect dcbz operation
48795
48796     The 834x rev1.x silicon has one CPU5 errata.
48797
48798     The issue is when the data cache locked with
48799     HID0[DLOCK], the dcbz instruction looks like no-op inst.
48800
48801     The right behavior of the data cache is when the data cache
48802     Locked with HID0[DLOCK], the dcbz instruction allocates
48803     new tags in cache.
48804
48805     The 834x rev3.0 and later and 8360 have not this bug inside.
48806
48807     So, when 834x rev3.0/8360 are working with ECC, the dcbz
48808     instruction will corrupt the stack in cache, the processor will
48809     checkstop reset.
48810
48811     However, the 834x rev1.x can work with ECC with these code,
48812     because the sillicon has this cache bug. The dcbz will not
48813     corrupt the stack in cache.
48814     Really, it is the fault code running on fault sillicon.
48815
48816     This patch fix the incorrect dcbz operation. Instead of
48817     CPU FP writing to initialise the ECC.
48818
48819     CHANGELOG:
48820     * Fix the incorrect dcbz operation instead of CPU FP
48821     writing to initialise the ECC memory. Otherwise, it
48822     will corrupt the stack in cache, The processor will checkstop
48823     reset.
48824
48825     Signed-off-by: Dave Liu <daveliu@freescale.com>
48826
48827 commit bf0b542d6773a5a1cbce77691f009b06d9aeb57d
48828 Author: Kim Phillips <kim.phillips@freescale.com>
48829 Date:   Wed Nov 1 00:10:40 2006 -0600
48830
48831     mpc83xx: add OF_FLAT_TREE bits to 83xx boards
48832
48833     add ft_pci_setup, OF_CPU, OF_SOC, OF_TBCLK, and
48834     STDOUT_PATH configuration bits to mpc8349emds,
48835     mpc8349itx, and mpc8360emds board code.
48836
48837     redo environment to use bootm with the fdtaddr
48838     for booting ARCH=powerpc kernels by default,
48839     and provide default fdtaddr values.
48840
48841 commit 48041365b3420589ad464ebc7752e0053538b729
48842 Author: Kim Phillips <kim.phillips@freescale.com>
48843 Date:   Wed Nov 1 00:07:25 2006 -0600
48844
48845     mpc83xx: change ft code to modify local-mac-address property
48846
48847     Update 83xx OF code to update local-mac-address properties
48848     for ethernet instead of the obsolete 'address' property.
48849
48850 commit 9ca880a250870a7d55754291b5591d2b5fe89b54
48851 Author: Timur Tabi <timur@freescale.com>
48852 Date:   Tue Oct 31 21:23:16 2006 -0600
48853
48854     mpc83xx: Fix dual I2C support for the MPC8349ITX, MPC8349EMDS, TQM834x, and MPC8360EMDS
48855
48856     This patch also adds an improved I2C set_speed(), which handles all clock
48857     frequencies.
48858
48859     Signed-off-by: Timur Tabi <timur@freescale.com>
48860
48861 commit ac4b5622ce050b5ee1e154b98df630d778661632
48862 Author: Dave Liu <daveliu@freescale.com>
48863 Date:   Tue Oct 31 19:54:59 2006 -0600
48864
48865     mpc83xx: add the README.mpc8360emds
48866
48867     add doc/README.mpc8360emds to accompany the new board support
48868
48869 commit 7737d5c658c606f999dfbe3e86b0fed49e5c50ef
48870 Author: Dave Liu <daveliu@freescale.com>
48871 Date:   Fri Nov 3 12:11:15 2006 -0600
48872
48873     mpc83xx: add QE ethernet support
48874
48875     this patch adds support for the QUICC Engine based UCC gigabit ethernet device.
48876
48877 commit 5f8204394e39bbe8cd9f08b8f8d145b6c01f7c73
48878 Author: Dave Liu <daveliu@freescale.com>
48879 Date:   Fri Nov 3 19:33:44 2006 -0600
48880
48881     mpc83xx: Add MPC8360EMDS basic board support
48882
48883     Add support for the Freescale MPC8360EMDS board.
48884     Includes DDR, DUART, Local Bus, PCI.
48885
48886 commit 23892e49352de74f7fac36ff90bb1be143d195e3
48887 Author: Dave Liu <daveliu@freescale.com>
48888 Date:   Tue Oct 31 19:30:40 2006 -0600
48889
48890     mpc83xx: add the QUICC Engine (QE) immap file
48891
48892     common QE immap file.  Also required for 8360.
48893
48894 commit b701652a4992bdcc62fb1a6038a85beef9e55da4
48895 Author: Dave Liu <daveliu@freescale.com>
48896 Date:   Tue Oct 31 19:25:38 2006 -0600
48897
48898     mpc83xx: Add 8360 specifics to 83xx immap
48899
48900     Mainly add QE device dependencies, with appropriate 8360 protection.
48901     Lindent also run.
48902
48903 commit 988833324a7fda482c8ac3ca23eb539f8232e404
48904 Author: Timur Tabi <timur@freescale.com>
48905 Date:   Tue Oct 31 19:14:41 2006 -0600
48906
48907     mpc83xx: Fix PCI, USB, bootargs for MPC8349E-mITX
48908
48909     PREREQUISITE PATCHES:
48910
48911     * This patch can only be applied after the following patches have been applied:
48912
48913       1) DNX#2006092142000015 "Add support for the MPC8349E-mITX  1/2"
48914       2) DNX#2006092142000024 "Add support for the MPC8349E-mITX  2/2"
48915
48916     CHANGELOG:
48917
48918     * For the 8349E-mITX, fix some size values in pci_init_board(), enable
48919       the clock for the 2nd USB board (Linux kernel will hang otherwise),
48920       and fix the CONFIG_BOOTARGS macro.
48921
48922     Signed-off-by: Timur Tabi <timur@freescale.com>
48923
48924 commit 2ad6b513b31070bd0c003792ed1c3e7f5d740357
48925 Author: Timur Tabi <timur@freescale.com>
48926 Date:   Tue Oct 31 18:44:42 2006 -0600
48927
48928     mpc83xx: Add support for the MPC8349E-mITX
48929
48930     PREREQUISITE PATCHES:
48931
48932     * This patch can only be applied after the following patches have been applied:
48933
48934       1) DNX#2006090742000024 "Add support for multiple I2C buses"
48935       2) DNX#2006090742000033 "Multi-bus I2C implementation of MPC834x"
48936       3) DNX#2006091242000041 "Additional MPC8349 support for multibus i2c"
48937       4) DNX#2006091242000078 "Add support for variable flash memory sizes on 83xx systems"
48938       5) DNX#2006091242000069 "Add support for Errata DDR6 on MPC 834x systems"
48939
48940     CHANGELOG:
48941
48942     * Add support for the Freescale MPC8349E-mITX reference design platform.
48943       The second TSEC (Vitesse 7385 switch) is not supported at this time.
48944
48945     Signed-off-by: Timur Tabi <timur@freescale.com>
48946
48947 commit 183da6d9b446cc12123455844ad1187e2375626f
48948 Author: Ben Warren <bwarren@qstreams.com>
48949 Date:   Tue Sep 12 10:15:53 2006 -0400
48950
48951     Additional MPC8349 support for multibus i2c
48952
48953     Hello,
48954
48955     Here is a patch for a file that was accidentally left out of a previous
48956     attempt.
48957
48958     It accompanies the patch with ticket DNX#2006090742000024
48959
48960     CHANGELOG:
48961             Change PCI initialization to use new multi-bus I2C API.
48962
48963     regards,
48964     Ben
48965
48966 commit b24f119d672b709d153ff2ac091d4aa63ec6877d
48967 Author: Ben Warren <bwarren@qstreams.com>
48968 Date:   Thu Sep 7 16:51:04 2006 -0400
48969
48970     Multi-bus I2C implementation of MPC834x
48971
48972     Hello,
48973
48974     Attached is a patch implementing multiple I2C buses on the MPC834x CPU
48975     family and the MPC8349EMDS board in particular.
48976     This patch requires Patch 1 (Add support for multiple I2C buses).
48977     Testing was performed on a 533MHz board.
48978
48979     /*** Note: This patch replaces ticket DNX#2006083042000027 ***/
48980
48981     Signed-off-by: Ben Warren <bwarren@qstreams.com>
48982
48983     CHANGELOG:
48984             Implemented driver-level code to support two I2C buses on the
48985     MPC834x CPU family and the MPC8349EMDS board.  Available I2C bus speeds
48986     are 50kHz, 100kHz and 400kHz on each bus.
48987
48988     regards,
48989     Ben
48990
48991 commit bb99ad6d8257bf828f150d40f507b30d80a4a7ae
48992 Author: Ben Warren <bwarren@qstreams.com>
48993 Date:   Thu Sep 7 16:50:54 2006 -0400
48994
48995     Add support for multiple I2C buses
48996
48997     Hello,
48998
48999     Attached is a patch providing support for multiple I2C buses at the
49000     command level.  The second part of the patch includes an implementation
49001     for the MPC834x CPU and MPC8349EMDS board.
49002
49003     /*** Note: This patch replaces ticket DNX#2006083042000018 ***/
49004
49005     Signed-off-by: Ben Warren <bwarren@qstreams.com>
49006
49007     Overview:
49008
49009     1. Include new 'i2c' command (based on USB implementation) using
49010     CONFIG_I2C_CMD_TREE.
49011
49012     2. Allow multiple buses by defining CONFIG_I2C_MULTI_BUS.  Note that
49013     the commands to change bus number and speed are only available under the
49014     new 'i2c' command mentioned in the first bullet.
49015
49016     3. The option CFG_I2C_NOPROBES has been expanded to work in multi-bus
49017     systems.  When CONFIG_I2C_MULTI_BUS is used, this option takes the form
49018     of an array of bus-device pairs.  Otherwise, it is an array of uchar.
49019
49020     CHANGELOG:
49021             Added new 'i2c' master command for all I2C interaction.  This is
49022     conditionally compiled with CONFIG_I2C_CMD_TREE.  New commands added for
49023     setting I2C bus speed as well as changing the active bus if the board
49024     has more than one (conditionally compiled with
49025     CONFIG_I2C_MULTI_BUS).  Updated NOPROBE logic to handle multiple buses.
49026     Updated README.
49027
49028     regards,
49029     Ben
49030
49031 commit bed85caf872714ebf53013967a695c9d63acfc68
49032 Author: Timur Tabi <timur@freescale.com>
49033 Date:   Tue Oct 31 18:13:36 2006 -0600
49034
49035     mpc83xx: Add support for Errata DDR6 on MPC 834x systems
49036
49037     CHANGELOG:
49038
49039     * Errata DDR6, which affects all current MPC 834x processors, lists changes
49040       required to maintain compatibility with various types of DDR memory.  This
49041       patch implements those changes.
49042
49043     Signed-off-by: Timur Tabi <timur@freescale.com>
49044
49045 commit afd6e470f639883002c7c59d562690a5cb0f4865
49046 Author: Timur Tabi <timur@freescale.com>
49047 Date:   Wed Oct 25 18:45:23 2006 -0500
49048
49049     mpc83xx: fix TQM build by defining a CFG_FLASH_SIZE for it
49050
49051 commit 31068b7c4abeefcb2c8fd4fbeccc8ec6c6d0475a
49052 Author: Timur Tabi <timur@freescale.com>
49053 Date:   Tue Aug 22 17:07:00 2006 -0500
49054
49055     mpc83xx: Add support for variable flash memory sizes on 83xx systems
49056
49057     CHANGELOG:
49058
49059     * On 83xx systems, use the CFG_FLASH_SIZE macro to program the LBC local access
49060        window registers, instead of using a hard-coded value of 8MB.
49061
49062     Signed-off-by: Timur Tabi <timur@freescale.com>
49063
49064 commit 2fc34ae66e73fa7841d1a006dc1b5dcbc1f78965
49065 Author: Tanya Jiang <tanya.jiang@freescale.com>
49066 Date:   Thu Aug 3 18:38:13 2006 +0800
49067
49068     mpc83xx: Unified TQM834x variable names with 83xx and consolidated macros
49069
49070     Unified TQM834x variable names with 83xx and consolidated macro
49071     in preparation for the 8360 and other upcoming 83xx devices.
49072
49073     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
49074
49075 commit f6eda7f80ccc13d658020268c507d7173cf2e8aa
49076 Author: Dave Liu <daveliu@freescale.com>
49077 Date:   Wed Oct 25 14:41:21 2006 -0500
49078
49079     mpc83xx: Changed to unified mpx83xx names and added common 83xx changes
49080
49081     Incorporated the common unified variable names and the changes in preparation
49082     for releasing mpc8360 patches.
49083
49084     Signed-off-by: Dave Liu <daveliu@freescale.com>
49085
49086 commit 3894c46c27c64891f93ac04edde86a9fa9758d92
49087 Author: Tanya Jiang <tanya.jiang@freescale.com>
49088 Date:   Thu Aug 3 18:36:02 2006 +0800
49089
49090     mpc83xx: Fix missing build for mpc8349emds pci.c
49091
49092     Make pci build for mpc8349emds
49093
49094     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
49095
49096 commit 09a81ff740b29deea1e2ab08a3c2ac136c2e6219
49097 Author: Tanya Jiang <tanya.jiang@freescale.com>
49098 Date:   Thu Aug 3 18:39:49 2006 +0800
49099
49100     mpc83xx: Removed unused file resetvec.S for mpc83xx cpu
49101
49102     Removed unused file resetvec.S for mpc83xx cpu
49103
49104     Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
49105
49106 commit 04f899fc465c3e44f2b55ecc70618f5696fc0ddf
49107 Author: Nick Spence <Nick.Spence@freescale.com>
49108 Date:   Sat Sep 30 00:32:59 2006 -0700
49109
49110     NAND Flash verify across block boundaries
49111
49112     This patch addresses a problem when CONFIG_MTD_NAND_VERIFY_WRITE is
49113     defined
49114     and the write crosses a block boundary. The pointer to the verification
49115     buffer (bufstart) is not being updated to reflect the starting of the
49116     new
49117     block so the verification of the second block fails.
49118
49119     CHANGELOG:
49120
49121     * Fix NAND FLASH page verification across block boundaries
49122
49123 commit f484dc791a3932537213c43c654cc1295c64b84c
49124 Author: Nick Spence <nick.spence@freescale.com>
49125 Date:   Thu Sep 7 07:39:46 2006 -0700
49126
49127     Added RGMII support to the TSECs and Marvell 881111 Phy
49128
49129     Added a phy initialization to adjust the RGMII RX and TX timing
49130     Always set the R100 bit in 100 BaseT mode regardless of the TSEC mode
49131
49132     Signed-off-by: Nick Spence <nick.spence@freescale.com>
49133
49134 commit 4831c8b8a97799da77923d6bbb4c260c0d45521c
49135 Author: roy zang <tie-fei.zang@freescale.com>
49136 Date:   Fri Nov 3 13:10:00 2006 +0800
49137
49138     Remove some unused CFG define.
49139     undef CFG_DRAM_TEST
49140
49141 commit 99c09c4dec34f77c243bf51bea532e3f339410ad
49142 Author: roy zang <tie-fei.zang@freescale.com>
49143 Date:   Fri Nov 3 13:07:36 2006 +0800
49144
49145     Change the TEXT_BASE from 0xFFF00000 to 0xFF000000.
49146     Both work. 0xFF000000 seems more reasonable.
49147
49148 commit c59200443072353044aa4bf737a5a60f9a9af231
49149 Author: Wolfgang Denk <wd@pollux.denx.de>
49150 Date:   Thu Nov 2 15:15:01 2006 +0100
49151
49152     Release U-Boot 1.1.6
49153
49154 commit c1fbe4103a0d6c8957f912af902d705ba67836f2
49155 Author: roy zang <tie-fei.zang@freescale.com>
49156 Date:   Thu Nov 2 19:14:48 2006 +0800
49157
49158     This patch comes from Yuli's posted patch on 8/8/2006
49159     titled "CFI Driver Little-Endian write Issue".
49160
49161     http://sourceforge.net/mailarchive/message.php?msg_id=36311999
49162
49163     If that patch applied, please discard this one.
49164     Until now , I do not see his patch is applied. So please apply this one.
49165
49166     Signed-off-by: Yuli Barcohen <yuli@arabellasw.com>
49167     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
49168
49169 commit b825f158e449e1e9cf74c08e572955e122394c96
49170 Author: roy zang <tie-fei.zang@freescale.com>
49171 Date:   Thu Nov 2 19:12:31 2006 +0800
49172
49173     Tsi108 on chip i2c support.
49174
49175     The i2c  Interface provides a master-only, serial interface that can be
49176     used for initializing Tsi108/Tsi109 registers from an EEPROM after a
49177     device reset.
49178
49179     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
49180     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
49181
49182 commit 9226e7d6f09b9a1ac074cd918c81225a4689bba8
49183 Author: roy zang <tie-fei.zang@freescale.com>
49184 Date:   Thu Nov 2 19:11:06 2006 +0800
49185
49186     Tsi108 on chip pci controller support.
49187
49188     If there is no pci card, the tsi108/109 pci configure read will
49189     cause a machine check exception to the processor. PCI error should
49190     also be cleared after the read.
49191
49192     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
49193     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
49194
49195 commit d1927cee977126e547ceeba23e4f978f377cfb8f
49196 Author: roy zang <tie-fei.zang@freescale.com>
49197 Date:   Thu Nov 2 19:08:55 2006 +0800
49198
49199     Tundra tsi108 on chip Ethernet controller support.
49200
49201     The following is a brief description of the Ethernet controller:
49202     The Tsi108/9 Ethernet Controller connects Switch Fabric to two independent
49203     Gigabit Ethernet ports,E0 and E1.  It uses a single Management interface
49204     to manage the two physical connection devices (PHYs).  Each Ethernet port
49205     has its own statistics monitor that tracks and reports key interface
49206     statistics.  Each port supports a 256-entry hash table for address
49207     filtering.  In addition, each port is bridged to the Switch Fabric
49208     through a 2-Kbyte transmit FIFO and a 4-Kbyte Receive FIFO.
49209
49210     Each Ethernet port also has a pair of internal Ethernet DMA channels to
49211     support the transmit and receive data flows.  The Ethernet DMA channels
49212     use descriptors set up in memory, the memory map of the device, and
49213     access via the Switch Fabric.  The Ethernet Controller?s DMA arbiter
49214     handles arbitration for the Switch Fabric.  The Controller also
49215     has a register businterface for register accesses and status monitor
49216     control.
49217
49218     The PMD (Physical Media Device) interface operates in MII, GMII, or TBI
49219     modes.  The MII mode is used for connecting with 10 or 100 Mbit/s PMDs.
49220     The GMII and TBI modes are used to connect with Gigabit PMDs.  Internal
49221     data flows to and from the Ethernet Controller through the Switch Fabric.
49222
49223     Each Ethernet port uses its transmit and receive DMA channels to manage
49224     data flows through buffer descriptors that are predefined by the
49225     system (the descriptors can exist anywhere in the system memory map).
49226     These descriptors are data structures that point to buffers filled
49227     with data ready to transmit over Ethernet, or they point to empty
49228     buffers ready to receive data from Ethernet.
49229
49230     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
49231     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
49232
49233 commit 78aa0c3427f3ecdeb34aabfbbe2dd23b6ad8f40e
49234 Author: roy zang <tie-fei.zang@freescale.com>
49235 Date:   Thu Nov 2 19:01:33 2006 +0800
49236
49237     Tundra tsi108 header file.
49238
49239     The Tundra Semiconductor Corporation (Tundra) Tsi108 is a host bridge for
49240     PowerPC processors that offers numerous system interconnect options for
49241     embedded application designers. The Tsi108 can interconnect 60x or
49242     MPX processors to PCI/X peripherals, DDR2-400 memory, Gigabit Ethernet,
49243     and Flash. Provided the macro define for tsi108 chip.
49244
49245     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
49246     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
49247
49248 commit 87c4db09699c6b89176b31004afcb83eb1585d47
49249 Author: roy zang <tie-fei.zang@freescale.com>
49250 Date:   Thu Nov 2 18:59:15 2006 +0800
49251
49252     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
49253     mpc7448hpc2 board support high level code:tsi108 init + mpc7448hpc2.
49254
49255     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
49256     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
49257
49258 commit 27801b8ab11c61b577e45742a515bb3b23b80241
49259 Author: roy zang <tie-fei.zang@freescale.com>
49260 Date:   Thu Nov 2 18:57:21 2006 +0800
49261
49262     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
49263     Make ,config.mk and link file for the mpc7448hpc2 board.
49264
49265     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
49266     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
49267
49268 commit c6411c0c3bbc79f9ba8aef58296a42d8f9d8a0a6
49269 Author: roy zang <tie-fei.zang@freescale.com>
49270 Date:   Thu Nov 2 18:55:04 2006 +0800
49271
49272     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
49273     The mpc7448hpc2 board support header file.
49274
49275     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
49276     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
49277
49278 commit 625bb5ddb50b243f931262ca8c46956409471917
49279 Author: roy zang <tie-fei.zang@freescale.com>
49280 Date:   Thu Nov 2 18:52:21 2006 +0800
49281
49282     Add  mpc7448hpc2  (mpc7448 + tsi108)  board associated code support.
49283     The mpc7448hpc2 board support low level assemble language init code.
49284
49285     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
49286     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
49287
49288 commit 4c52783b3d024e153c4972b97332e314bc3bdc46
49289 Author: roy zang <tie-fei.zang@freescale.com>
49290 Date:   Thu Nov 2 18:49:51 2006 +0800
49291
49292     General code modification for mpc7448hpc2 board support.
49293     1. Add 7447A and 7448 processor support.
49294     2. Add the following flags.
49295
49296     CFG_CONFIG_BUS_CLK : If the 74xx bus frequency can be configured dynamically
49297     (such as by switch on board), this flag should be set.
49298
49299     CFG_EXCEPTION_AFTER_RELOCATE: If an exception occurs after the u-boot
49300     relocates to RAM, this flag should be set.
49301
49302     CFG_SERIAL_HANG_IN_EXCEPTION: If the print out function will cause the
49303     system hang in exception, this flag should be set.
49304
49305     There is a design issue for tsi108/109 pci configure  read. When pci scan
49306     the slots, if there is no pci card, the tsi108/9 will cause a machine
49307     check exception for mpc7448 processor.
49308
49309     Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
49310     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
49311
49312 commit 69366bf42f22d67efce8da3f8c40a43d4a3c2695
49313 Author: roy zang <tie-fei.zang@freescale.com>
49314 Date:   Thu Nov 2 18:34:47 2006 +0800
49315
49316     Add README file for mpc7448hpc2 board.
49317     Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
49318
49319 commit 25721b5cec2be4bce79cfade17ec8f6aa1e67526
49320 Author: Bartlomiej Sieka <tur@semihalf.com>
49321 Date:   Wed Nov 1 02:04:38 2006 +0100
49322
49323     Finish up support for MarelV38B board
49324      - add watchdog support
49325      - enable GPIO_WKUP_7 pin for input
49326      - code cleanup
49327
49328 commit ffa150bc90c943ca265170bd1be3f293674dd5c7
49329 Author: Bartlomiej Sieka <tur@semihalf.com>
49330 Date:   Wed Nov 1 01:45:46 2006 +0100
49331
49332     - Fix issues related to the use of ELDK 4 when compiling for MarelV38B:
49333           * remove warnings when compiling ethaddr.c
49334           * adjust linker script (fixes a crash resulting from incorrect
49335           definition of __u_boot_cmd_start)
49336     - Some MarelV38B code cleanup.
49337
49338 commit dae80f3caf9754a6dd3ddf3cf903d0c46cbd4385
49339 Author: Bartlomiej Sieka <tur@semihalf.com>
49340 Date:   Wed Nov 1 01:38:16 2006 +0100
49341
49342     - Add MPC5XXX register definition MPC5XXX_WU_GPIO_DATA_I and change the
49343       MPC5XXX_WU_GPIO_DATA macro to MPC5XXX_WU_GPIO_DATA_O (per MPC5200 User's
49344       Manual). Replace the uses of MPC5XXX_WU_GPIO_DATA with
49345       MPC5XXX_WU_GPIO_DATA_O for affected boards.
49346
49347     - Add defintions for some MPC5XXX GPIO pins.
49348
49349 commit 82d9c9ec29a1bec1b03ba616425ebaed231072c8
49350 Author: Bartlomiej Sieka <tur@semihalf.com>
49351 Date:   Wed Nov 1 01:34:29 2006 +0100
49352
49353     Changed MarelV38B board make target to lowercase. Config file cleanup.
49354
49355 commit 1954be6e9c9421b45d0a9d05b10356acc7563150
49356 Author: Wolfgang Denk <wd@pollux.denx.de>
49357 Date:   Sun Oct 29 01:03:51 2006 +0200
49358
49359     Automatically adjust ARFLAGS so "make -s" is really silent.
49360
49361 commit fae684e89844856383bdf101440889557df3e6b1
49362 Author: Stefan Roese <sr@denx.de>
49363 Date:   Sat Oct 28 16:45:00 2006 +0200
49364
49365     [PATCH] omap925.c: Remove unused functions
49366
49367     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
49368     Signed-off-by: Stefan Roese <sr@denx.de>
49369
49370 commit 1265581502ab8ea8c08e8edbe9bf64fbd62fd776
49371 Author: Stefan Roese <sr@denx.de>
49372 Date:   Sat Oct 28 17:12:58 2006 +0200
49373
49374     [PATCH] Add some missing machtypes for netstar & voiceblue boards
49375
49376     Use MACH_TYPE_NETSTAR and MACH_TYPE_VOICEBLUE defines instead of
49377     numbers in code.
49378
49379     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
49380     Signed-off-by: Stefan Roese <sr@denx.de>
49381
49382 commit 856f054410cef52d868feb330168b2a4c4091328
49383 Author: Stefan Roese <sr@denx.de>
49384 Date:   Sat Oct 28 15:55:52 2006 +0200
49385
49386     [PATCH] NAND: Partition name support added to NAND subsystem
49387
49388     chpart, nboot and NAND subsystem related commands now accept also partition
49389     name to specify offset.
49390
49391     Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
49392     Signed-off-by: Stefan Roese <sr@denx.de>
49393
49394 commit 07a69a18c2ecfda904231fdf23e2523ea7792eb6
49395 Author: Wolfgang Denk <wd@pollux.denx.de>
49396 Date:   Sat Oct 28 02:29:44 2006 +0200
49397
49398     Update CHANGELOG.
49399
49400 commit 2751a95abd1b96911081c357e96a12fa97b40dee
49401 Author: Wolfgang Denk <wd@pollux.denx.de>
49402 Date:   Sat Oct 28 02:29:14 2006 +0200
49403
49404     Enable commandline editing and hush shell on all TQM boards.
49405
49406 commit 8078f1a5f63a739b8533478f6c2b62fb1e2f79d7
49407 Author: Wolfgang Denk <wd@pollux.denx.de>
49408 Date:   Sat Oct 28 02:28:02 2006 +0200
49409
49410     README says CFG_AUTO_COMPLETE, but ocde uses CONFIG_AUTO_COMPLETE
49411
49412 commit 471a7be7a042e95e440f5de969c9765214ae8d6e
49413 Author: Wolfgang Denk <wd@denx.de>
49414 Date:   Sat Oct 28 01:14:32 2006 +0200
49415
49416     Check for illegal character '=' in environment variable names.
49417
49418     Make sure the string passed as variable name does not contain a '='
49419     character. This not only prevents the common error or typing
49420     "setenv foo=bar" instead of "setenv foo bar", but (more importantly)
49421     also closes a backdoor which allowed to delete write-protected
49422     environment variables, for example by using "setenv ethaddr=".
49423
49424 commit 19973b6ad9863a56f5c5fbcfd90e20ab2490a2c2
49425 Author: Wolfgang Denk <wd@pollux.denx.de>
49426 Date:   Sat Oct 28 00:38:39 2006 +0200
49427
49428     Minor code cleanup.
49429
49430 commit e11887a77d81077416a2d1c5e0354916fee8c034
49431 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
49432 Date:   Thu Oct 26 17:55:31 2006 +0200
49433
49434     Don't pass any debug options directly to the assembler
49435
49436     When passing the -g option to gcc, gcc automatically selects a
49437     suitable --g<format> option to pass on to the assembler.
49438     Thus, there's no point in forcing a specific debug option on the
49439     assembler using the -Wa mechanism.
49440
49441     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
49442
49443 commit ea08ff6e14f9ebb8c07cfa79c51ef540eb087393
49444 Author: Jon Loeliger <jdl@freescale.com>
49445 Date:   Fri Oct 27 07:47:22 2006 -0500
49446
49447     MPC86xx: Cleaned up unused and conditionally used local variables.
49448
49449     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49450
49451 commit d38936cdae46bfd2623ff83f6ce9b616d36ab0f9
49452 Author: Wolfgang Denk <wd@pollux.denx.de>
49453 Date:   Fri Oct 27 11:55:21 2006 +0200
49454
49455     Fix "ar" flags in some Makefiles to allow for silent "make -s"
49456
49457 commit 4653f91c13ed51c21cc4c3855745d69a3fb1817f
49458 Author: Ben Warren <bwarren@qstreams.com>
49459 Date:   Thu Oct 26 14:38:25 2006 -0400
49460
49461     Fix TSEC driver (now for real): avoid crashes if PHY is not attached
49462     to a TSEC (e.g. a switch is connected via RMII) or
49463     if the PHY is defective/incorrectly configured.
49464
49465     Signed-off-by: Ben Warren <bwarren@qstreams.com>
49466
49467 commit b985b5d6e4fb88f508f7aa0f126c2e27ada2b999
49468 Author: Ben Warren <bwarren@qstreams.com>
49469 Date:   Thu Oct 26 14:38:25 2006 -0400
49470
49471     Fix TSEC driver: avoid crashes if PHY is not attached
49472     to a TSEC (e.g. a switch is connected via RMII) or
49473     if the PHY is defective/incorrectly configured.
49474
49475     Signed-off-by: Ben Warren <bwarren@qstreams.com>
49476
49477 commit 2b2a40bebbf1822506e80e631d7253e60f0e0fe6
49478 Author: Wolfgang Denk <wd@pollux.denx.de>
49479 Date:   Thu Oct 26 16:24:31 2006 +0200
49480
49481     Code cleanup.
49482
49483 commit 5e3b0bc19f07ed277d85324ad0427642c8981baf
49484 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
49485 Date:   Wed Oct 25 15:48:59 2006 +0200
49486
49487     Finish up support for the ATSTK1000/ATSTK1002 boards
49488
49489     Add atstk1002_config target to Makefile and move the AVR32 section
49490     down below Blackfin so that it doesn't end up in the middle of
49491     MIPS.
49492
49493     Drop the autogenerated linker script thing for now. Will have to
49494     revisit how to handle chips with different flash and RAM layout
49495     later.
49496
49497     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
49498
49499 commit c76f951a747cfb87ba826ef45b5aea82d5b5dbb4
49500 Author: Kumar Gala <galak@kernel.crashing.org>
49501 Date:   Tue Oct 24 23:47:37 2006 -0500
49502
49503     Added support for Multi-Image files that contain a device tree
49504
49505     If a Multi-Image file contains a third image we try to use it as a
49506     device tree.  The device tree image is assumed to be uncompressed in the
49507     image file.  We automatically allocate space for the device tree in memory
49508     and provide an 8k pad to allow more than a reasonable amount of growth.
49509
49510     Additionally, a device tree that was contained in flash will now automatically
49511     get copied to system memory as part of boot.  Previously an error was
49512     reported if one tried to boot a device tree that was in flash.
49513
49514     Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49515
49516 commit 7c52c4b943ff52bbe8796a7e2d3e476ceaf3f512
49517 Author: Wolfgang Denk <wd@denx.de>
49518 Date:   Tue Oct 24 21:35:55 2006 +0200
49519
49520     Switch to automatically generated CHANGELOG file.
49521     (use "make CHANGELOG" to update it from time to time)
49522
49523 commit 7ade0c634a979c32fa91a74e8f5775f24651fbe6
49524 Author: Stefan Roese <sr@denx.de>
49525 Date:   Tue Oct 24 18:06:48 2006 +0200
49526
49527     Fix bug in PPC440 NAND driver cpu/ppc4xx/ndfc.c
49528     Patch by Stefan Roese, 24 Oct 2006
49529
49530 commit 8ae3b713b2286e0c3213b7802062e4c1599010de
49531 Author: Wolfgang Denk <wd@pollux.denx.de>
49532 Date:   Tue Oct 24 17:24:55 2006 +0200
49533
49534     Merge with /home/wd/git/u-boot/master
49535
49536 commit 47a6989c10685d2ab3efcf95228ce50d2a496d3e
49537 Author: Wolfgang Denk <wd@pollux.denx.de>
49538 Date:   Tue Oct 24 15:32:57 2006 +0200
49539
49540     Code cleanup
49541
49542 commit 3a78e3e75b633ecb6413114ffd11e2f000c4f11e
49543 Author: Wolfgang Denk <wd@pollux.denx.de>
49544 Date:   Tue Oct 24 14:51:36 2006 +0200
49545
49546     Move atstk1000 files into vendor specific directory.
49547     Patch by Haavard Skinnemoen, 12 Sep 2006
49548
49549 commit 6ccec4492e77428fd6eafd3dfe94fbdf08e91d37
49550 Author: Wolfgang Denk <wd@pollux.denx.de>
49551 Date:   Tue Oct 24 14:42:37 2006 +0200
49552
49553     Add ATSTK1000 and ATSTK1002 board support
49554     Patch by Haavard Skinnemoen, 06 Sep 2006
49555
49556     This patch adds support for the ATSTK1000 with the ATSTK1002 CPU
49557     daughterboard.
49558
49559     ATSTK1000 is a full-featured development board for AT32AP CPUs. It
49560     has two ethernet ports, a high quality QVGA LCD panel, a loudspeaker,
49561     and connectors for USART, PS/2, VGA, USB, MMC/SD cards and
49562     CompactFlash cards. For more information, please see this page:
49563
49564     http://www.atmel.com/dyn/products/tools.asp?family_id=682
49565
49566     The ATSTK1002 is a daughterboard for the ATSTK1000 supporting the
49567     AT32AP7000 chip.
49568
49569     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
49570
49571 commit f93ae788c3640fcde5db383471d45548ff4060d0
49572 Author: Wolfgang Denk <wd@pollux.denx.de>
49573 Date:   Tue Oct 24 14:31:24 2006 +0200
49574
49575     Add common serial driver for Atmel AT32 and AT91 chips
49576     Patch by Haavard Skinnemoen, 06 Sep 2006
49577
49578     This is a first attempt at creating a common serial driver for Atmel
49579     chips. For now, it supports the AT32AP7000 AVR32 chip, but it should
49580     be possible to support AT91RM9200 and other ARM-based chips with some
49581     minor modifications.
49582
49583     There's nothing fundamentally AVR32-specific in this driver, but it
49584     does use some features which are currently only defined for the
49585     AT32AP CPU port:
49586       * pm_get_clock_freq: Obtain the clock frequency of a given domain
49587       * gd->console_uart: A "struct device" containing information about
49588         register mappings, gpio resources and clocks associated with the
49589         UART device.
49590
49591     For more information about these features, please see the "AT32AP
49592     CPU" patch.
49593
49594 commit 72a087e04705c26cad982879ebd06b5281bf825a
49595 Author: Wolfgang Denk <wd@pollux.denx.de>
49596 Date:   Tue Oct 24 14:27:35 2006 +0200
49597
49598     Add AT32AP CPU and AT32AP7000 SoC support
49599     Patch by Haavard Skinnemoen, 06 Sep 2006
49600
49601     This patch adds support for the AT32AP CPU family and the AT32AP7000
49602     chip, which is the first chip implementing the AVR32 architecture.
49603
49604     The AT32AP CPU core is a high-performance implementation featuring a
49605     7-stage pipeline, separate instruction- and data caches, and a MMU.
49606     For more information, please see the "AVR32 AP Technical Reference":
49607
49608     http://www.atmel.com/dyn/resources/prod_documents/doc32001.pdf
49609
49610     In addition to this, the AT32AP7000 chip comes with a large set of
49611     integrated peripherals, many of which are shared with the AT91 series
49612     of ARM-based microcontrollers from Atmel. Full data sheet is
49613     available here:
49614
49615     http://www.atmel.com/dyn/resources/prod_documents/doc32003.pdf
49616
49617     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
49618
49619 commit 7b64fef33c66be648826c0ff9758298ef13d0604
49620 Author: Wolfgang Denk <wd@pollux.denx.de>
49621 Date:   Tue Oct 24 14:21:16 2006 +0200
49622
49623     Add AVR32 architecture support
49624     Patch by Haavard Skinnemoen, 6 Sep 2006 16:23:02 +0200
49625
49626     This patch adds common infrastructure code for the Atmel AVR32
49627     architecture. See doc/README.AVR32 for details.
49628
49629     Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
49630
49631 commit 2da2d9a4766063b9848f3a35ad6025499cf87265
49632 Author: Wolfgang Denk <wd@pollux.denx.de>
49633 Date:   Tue Oct 24 13:57:33 2006 +0200
49634
49635     Use -g instead of -gstabs in AFLAGS_DEBUG
49636     Patch by Haavard Skinnemoen, 30 Aug 2006
49637
49638     In config.mk, -Wa,-gstabs is unconditionally appended to AFLAGS no
49639     matter what the target's preferred debugging format is. This patch
49640     simply replaces -gstabs with -g, so that the default debugging format
49641     for the architecture is used.
49642
49643 commit 965829872169c2996023840d98e1d85ad148d629
49644 Author: Wolfgang Denk <wd@pollux.denx.de>
49645 Date:   Tue Oct 24 13:55:18 2006 +0200
49646
49647     Fix/workaround broken dependency handling with make 3.81
49648     Based on patch by Haavard Skinnemoen, 29 Aug 2006 11:20:39 +0200
49649
49650 commit 8318fbf8cc30418b621ea9f39b84b4c1a08f003a
49651 Author: Marian Balakowicz <m8@semihalf.com>
49652 Date:   Mon Oct 23 22:17:05 2006 +0200
49653
49654     Fix sequoia separate object direcory building problems.
49655
49656 commit 3dfa9cfdcee78b30da3432318b32821ffabe974b
49657 Author: Jon Loeliger <jdl@freescale.com>
49658 Date:   Fri Oct 20 17:16:35 2006 -0500
49659
49660     Use generic I2C register block on 85xx and 86xx.
49661
49662     Replace private IMMAP I2C structures with generic reg block
49663     and allow 86xx to have multiple I2C device busses.
49664
49665     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49666
49667 commit f5012827df11ca0c9be1df5f8b153e188dc2fa7c
49668 Author: Jon Loeliger <jdl@freescale.com>
49669 Date:   Fri Oct 20 15:54:34 2006 -0500
49670
49671     Fix compilation warnings on a few 85xx boards.
49672
49673     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49674
49675 commit 2047672684cf85cb6f96a1fbc993180aaaf19a99
49676 Author: Jon Loeliger <jdl@freescale.com>
49677 Date:   Fri Oct 20 15:50:15 2006 -0500
49678
49679     Converted all 85xx boards to use a common FSL I2C driver.
49680     Introduced COFIG_FSL_I2C to select the common FSL I2C driver.
49681     And removed hard i2c path from a few u-boot.lds scipts too.
49682     Minor whitespace cleanups along the way.
49683
49684     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49685
49686 commit 4d45f69e362b05892c9e92a7907e5820995612aa
49687 Author: Jon Loeliger <jdl@freescale.com>
49688 Date:   Thu Oct 19 12:02:24 2006 -0500
49689
49690     Rewrite a series of goto statements as a sequences of
49691     conditional expressions instead.
49692
49693     Use consistent return code 0/-1 for good/bad indicators.
49694
49695     Include one fewer file if the driver isn't used at all.
49696
49697     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49698
49699 commit 7237c033b02fe295880435f1eb80819a0c987532
49700 Author: Jon Loeliger <jdl@freescale.com>
49701 Date:   Thu Oct 19 11:02:16 2006 -0500
49702
49703     Moved i2c driver out of cpu/mpc86xx/i2c.c into drivers/fsl_i2c.c
49704
49705     in an effort to begin to unify the umpteen FSL I2C drivers that
49706     are all otherwise very similar.
49707
49708     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49709
49710 commit 13a7fcdf37f6ea9429ae04c9df67f893364cfe4b
49711 Author: Jon Loeliger <jdl@freescale.com>
49712 Date:   Thu Oct 19 11:33:52 2006 -0500
49713
49714     * Fix a bunch of compiler warnings for gcc 4.0
49715
49716     Signed-off-by: Matthew McClintock <msm@freescale.com>
49717
49718 commit af9e1f5b9e6f9ce810f5e8bf2961c9542a5865c2
49719 Author: Stefan Roese <sr@denx.de>
49720 Date:   Tue Oct 17 06:14:31 2006 +0200
49721
49722     Add monitor functions for indirect access to PPC440 DCR's
49723     Patch by Leonid Baryudin, 12 Oct 2006
49724
49725 commit 5f3249a0a168e446a4cc9669b2bce0bc456f0a09
49726 Author: Jon Loeliger <jdl@freescale.com>
49727 Date:   Fri Oct 13 16:47:53 2006 -0500
49728
49729     Fixed leading whitespace issues.
49730     Removed spurious LAWAR thing.
49731
49732     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49733
49734 commit 0ee90cb77e01d6e8ccd37e1bd96678597875c391
49735 Author: Jon Loeliger <jdl@freescale.com>
49736 Date:   Thu Oct 12 10:42:36 2006 -0500
49737
49738     Remove unneeded include files and local variable.
49739
49740     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49741
49742 commit 1eaf3a5ff4960a46f3a9063568ba2af7883f07c5
49743 Author: Grant Likely <grant.likely@secretlab.ca>
49744 Date:   Tue Oct 10 00:23:32 2006 -0600
49745
49746     Fix possible uninitialized variable compiler warning.
49747
49748     When CONFIG_OF_FLAG_TREE is set, the compiler complains that 'len' in
49749     do_bootm_linux() may be uninitialized.  There is no possibility in the
49750     current code that len will get used uninitialized, but this fix follows
49751     the existing convention of setting both len and data to zero at the same
49752     time.
49753
49754     Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
49755
49756 commit 7376eb87aaa601f728f9b8e5e9cd2711a67f529e
49757 Author: Matthew McClintock <msm@freescale.com>
49758 Date:   Wed Oct 11 15:13:01 2006 -0500
49759
49760     * Fix a bunch of compiler warnings for gcc 4.0
49761
49762     Signed-off-by: Matthew McClintock <msm@freescale.com>
49763
49764 commit bf651baa365e5447246aad6a633ccd667cf24a39
49765 Author: Jon Loeliger <jdl@freescale.com>
49766 Date:   Wed Oct 11 10:10:43 2006 -0500
49767
49768     Move "ar" flags to config.mk to allow for silent "make -s"
49769
49770 commit 1fd5699a4a24f5c1dab1b32f480bace1ebb9fc3e
49771 Author: Jon Loeliger <jdl@freescale.com>
49772 Date:   Tue Oct 10 17:19:03 2006 -0500
49773
49774     Coding style changes to remove local varible blocks
49775     and reformat a bit nicer.
49776
49777 commit 8b283dbb3a08d1b8d406bc15f119e081b3e2606a
49778 Author: Jon Loeliger <jdl@freescale.com>
49779 Date:   Tue Oct 10 17:16:04 2006 -0500
49780
49781     Fix whitespace issues.
49782
49783 commit 7b382b7125f2397cce63253df62f183e3dfa2770
49784 Author: Jon Loeliger <jdl@freescale.com>
49785 Date:   Tue Oct 10 17:14:45 2006 -0500
49786
49787     Fix whitespace issues.
49788
49789 commit e10390ddd736b0dad1528eec4b0fe35c0827139a
49790 Author: Jon Loeliger <jdl@freescale.com>
49791 Date:   Tue Oct 10 17:06:53 2006 -0500
49792
49793     Fix whitespace issues.
49794
49795 commit 89875e96ba3f023157bf50d5f8e33bf254964a76
49796 Author: Jon Loeliger <jdl@freescale.com>
49797 Date:   Tue Oct 10 17:03:43 2006 -0500
49798
49799     Ran lindent and cleaned up whitespace issues.
49800     Format for 80-columns too.
49801
49802 commit 333961ae7095fc66d8a041fce1ac9ee873b09d86
49803 Author: Jon Loeliger <jdl@freescale.com>
49804 Date:   Tue Oct 10 17:02:22 2006 -0500
49805
49806     Fix whitespace and 80-col issues.
49807
49808 commit 5c912cb1c31266c66ca59b36f9b6f87296421d75
49809 Author: Stefan Roese <sr@denx.de>
49810 Date:   Sat Oct 7 11:36:51 2006 +0200
49811
49812     CFG_NAND_QUIET_TEST added to not warn upon missing NAND device
49813     Patch by Stefan Roese, 07 Oct 2006
49814
49815 commit 5bc528fa4da751d472397b308137238a6465afd2
49816 Author: Stefan Roese <sr@denx.de>
49817 Date:   Sat Oct 7 11:35:25 2006 +0200
49818
49819     Update ALPR code (NAND support working now)
49820     Patch by Stefan Roese, 07 Oct 2006
49821
49822 commit 77d5034847d328753b80c46b83f960a14a26f40e
49823 Author: Stefan Roese <sr@denx.de>
49824 Date:   Sat Oct 7 11:33:03 2006 +0200
49825
49826     Remove compile warnings in fpga code
49827     Patch by Stefan Roese, 07 Oct 2006
49828
49829 commit f3443867e90d2979a7dd1c65b0d537777e1f9850
49830 Author: Stefan Roese <sr@denx.de>
49831 Date:   Sat Oct 7 11:30:52 2006 +0200
49832
49833     Add CONFIG_BOARD_RESET to configure board specific reset function
49834     Patch by Stefan Roese, 07 Oct 2006
49835
49836 commit f55df18187e7a45cb73fec4370d12135e6691ae1
49837 Author: John Traill <john.traill@freescale.com>
49838 Date:   Fri Sep 29 08:23:12 2006 +0100
49839
49840     Fix missing tCycle/modfreq calculation.
49841
49842     Signed-off-by: John Traill <john.traill@freescale.com>
49843
49844 commit 8272dc2f58f2473d8995fcc9b916440cfba080f0
49845 Author: Andy Fleming <afleming@freescale.com>
49846 Date:   Wed Sep 13 10:33:35 2006 -0500
49847
49848     Updated config headers to add default FDT-based booting
49849
49850 commit 09f3e09e9ebcfa7919ca8931a4b5504fadd1f1d3
49851 Author: Andy Fleming <afleming@freescale.com>
49852 Date:   Wed Sep 13 10:34:18 2006 -0500
49853
49854     Add support for eTSEC 3 & 4 on 8548 CDS
49855
49856     * Added support for using eTSEC 3 and eTSEC 4 on the 8548 CDS.
49857       This will only work on rev 1.3 boards (but doesn't break older boards)
49858     * Cleaned up some comments to reflect the expanded role of tsec
49859       in other systems
49860
49861 commit 084d648b109c8984f83674043c1a7fa3885ef801
49862 Author: Andy Fleming <afleming@freescale.com>
49863 Date:   Wed Sep 13 10:33:56 2006 -0500
49864
49865     Added code to support 2.6.18 PCI changes in u-boot
49866
49867     * Added code to swizzle the IRQ map for the PCI
49868
49869 commit afbdc649f8751e4f4f1a6f527edfe139773f2c15
49870 Author: Jon Loeliger <jdl@freescale.com>
49871 Date:   Tue Sep 19 09:34:10 2006 -0500
49872
49873     Modified makefile for new build mechanism.
49874
49875     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49876
49877 commit d14ba6a798beb753e7a864500414fcc2d198b8bc
49878 Author: Jon Loeliger <jdl@freescale.com>
49879 Date:   Thu Sep 14 08:40:36 2006 -0500
49880
49881     Handle 86xx SVR values according to the new Reference Manual.
49882     Both 8641 and 8641D have SVR == 0x8090, and are distinguished
49883     by the byte in bits 16-23 instead.
49884     Thanks to Jason Jin for noticing.
49885
49886     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49887
49888 commit 88c8f4921fc47fb0eb2384b16586f1bd7f275be7
49889 Author: Zhang Wei <wei.zhang@freescale.com>
49890 Date:   Mon Aug 28 14:25:31 2006 +0800
49891
49892     Fixed an OF-tree off-by-one bug when adding a new property name.
49893     This bug will cause the kernel booting to pause a long time.
49894
49895     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
49896     (cherry picked from 2f15776ccc6dc32377d8ba9652b8f58059c27c6d commit)
49897
49898 commit 9bff7a69a885adebbd2bd45990494ec4cf998a30
49899 Author: Jon Loeliger <jdl@freescale.com>
49900 Date:   Tue Aug 29 11:05:09 2006 -0500
49901
49902     Remove trailing empty lines.
49903
49904 commit cd6d73d5b895a5935ac4fde0a356288142a584e0
49905 Author: Jon Loeliger <jdl@freescale.com>
49906 Date:   Tue Aug 29 09:48:49 2006 -0500
49907
49908     Remove bogus msync and use volatile asm.
49909
49910 commit 778d45049ce5927b65b3ff1d8e6692b654bdd49e
49911 Author: Jon Loeliger <jdl@freescale.com>
49912 Date:   Tue Aug 29 08:17:14 2006 -0500
49913
49914     Add myself as maintainer for MPC8641HPCN.
49915
49916 commit 2f15776ccc6dc32377d8ba9652b8f58059c27c6d
49917 Author: Zhang Wei <wei.zhang@freescale.com>
49918 Date:   Mon Aug 28 14:25:31 2006 +0800
49919
49920     Fixed an OF-tree off-by-one bug when adding a new property name.
49921     This bug will cause the kernel booting to pause a long time.
49922
49923     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
49924
49925 commit 5567806b67d0ae83493aa8823ad3b6c914f581d7
49926 Author: Haiying Wang <haiying.wang@freescale.com>
49927 Date:   Fri Aug 25 14:38:34 2006 -0400
49928
49929     Change ramdiskaddr and dtbaddr
49930     Remove PEX fluff commands.
49931
49932     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
49933     Signed-off-by: Jon Loeliger <jdl@freescale.com>
49934
49935 commit b2b78421d9db49c21a821af8a19c21c1f7dfb29e
49936 Author: Matthew McClintock <msm@freescale.com>
49937 Date:   Wed Aug 23 13:32:45 2006 -0500
49938
49939     * Another small fix for booting with disable_of
49940
49941     Signed-off-by: Matthew McClintock <msm@freescale.com>
49942
49943 commit 4a7cc0f21918e6ecf07ed57075d67df2c4a1299c
49944 Author: Jon Loeliger <jdl@freescale.com>
49945 Date:   Wed Aug 23 11:04:43 2006 -0500
49946
49947     Cleanup and lindent new AHCI driver.
49948
49949 commit dabf9ef8c10b4dead5ef2106ef742b1c06b542de
49950 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
49951 Date:   Wed Aug 23 19:15:12 2006 +0800
49952
49953     Add AHCI define and sata support for MPC8641HPCN board.
49954
49955     Signed-off-by:Jason Jin<jason.jin@freescale.com>
49956
49957 commit 4782ac80b02f0d01afd309e2200dd3c7037f2ba4
49958 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
49959 Date:   Wed Aug 23 19:10:44 2006 +0800
49960
49961     Add AHCI support to u-boot
49962
49963     Add AHCI support in u-boot, enable the sata disk controllers which
49964     following the AHCI protocol.
49965
49966     Signed-off-by:Jason Jin<jason.jin@freescale.com>
49967
49968 commit d8ea2acf5f137cae99417df4f573d036ee384668
49969 Author: Zhang Wei <wei.zhang@freescale.com>
49970 Date:   Wed Aug 23 17:54:32 2006 +0800
49971
49972     Add dtb boot-up parameter to default boot commands.
49973
49974     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
49975
49976 commit b93775c2036b99baa390ea425c4771895bbc63c4
49977 Author: Jon Loeliger <jdl@freescale.com>
49978 Date:   Tue Aug 22 18:26:08 2006 -0500
49979
49980     Cleanup even more poorly introduced whitespace.
49981
49982 commit ae6241685cbcf0c79a3636530d2ceab1fb291a94
49983 Author: Jon Loeliger <jdl@freescale.com>
49984 Date:   Tue Aug 22 18:07:00 2006 -0500
49985
49986     Cleanup more poorly introduced whitespace.
49987
49988 commit 2c33e8a1c535b3ae91cf0b284480600bf3f57c57
49989 Author: Jon Loeliger <jdl@freescale.com>
49990 Date:   Tue Aug 22 17:54:05 2006 -0500
49991
49992     Cleanup poorly introduced whitespace.
49993
49994 commit 80e955c7dd98f4b4fd23c2113caf75ed2b77b5b3
49995 Author: Jon Loeliger <jdl@freescale.com>
49996 Date:   Tue Aug 22 12:25:27 2006 -0500
49997
49998     General indent and whitespace cleanups.
49999
50000 commit ffff3ae56f5842ca3679e4ce7922b819a87aad9f
50001 Author: Jon Loeliger <jdl@freescale.com>
50002 Date:   Tue Aug 22 12:06:18 2006 -0500
50003
50004     General indent and whitespace cleanups.
50005
50006 commit 41a0e8b304d3ff55fe27a230507aac79684016ac
50007 Author: Jon Loeliger <jdl@freescale.com>
50008 Date:   Tue Aug 22 10:42:21 2006 -0500
50009
50010     Cleanup compiler warnings.
50011
50012 commit 5de62c47a8628b3da4d73f7c07027f32a3342d40
50013 Author: Matthew McClintock <msm@freescale.com>
50014 Date:   Tue Aug 22 09:31:59 2006 -0500
50015
50016     Fix disable_of booting
50017
50018     Signed-off-by: Matthew McClintock <msm@freescale.com>
50019
50020 commit 87a449c8ac396420cb24260f717ea9e6faa82047
50021 Author: Matthew McClintock <msm@freescale.com>
50022 Date:   Tue Aug 22 09:23:55 2006 -0500
50023
50024     Support for FDT in uImage format, error when using FDT from flash
50025
50026     Signed-off-by: Matthew McClintock <msm@freescale.com>
50027
50028 commit 75c299c38369d01addd5e054b8a16217b70f4a86
50029 Author: Haiying Wang <haiying.wang@freescale.com>
50030 Date:   Tue Aug 15 15:12:55 2006 -0400
50031
50032     Unlock cache before kernel starts up for MPC86xx
50033
50034 commit 67256678f00c09b0a7f19e862e5c1847553d31bc
50035 Author: Haiying Wang <haiying.wang@freescale.com>
50036 Date:   Tue Aug 15 15:13:15 2006 -0400
50037
50038     Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
50039
50040 commit 1c8f6d8fb028f156094d05f2d14298e6479364ac
50041 Author: Haiying Wang <haiying.wang@freescale.com>
50042 Date:   Tue Aug 15 15:12:55 2006 -0400
50043
50044     Unlock cache before kernel starts up for MPC86xx
50045
50046 commit 0d9ccc55edf9a7f3c5b2b6263580a6ea8d702a04
50047 Author: Haiying Wang <haiying.wang@freescale.com>
50048 Date:   Tue Aug 15 15:13:15 2006 -0400
50049
50050     Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
50051
50052 commit 86c8e17f25e972a7e272950a0735fad84e082b88
50053 Author: Matthew McClintock <msm@freescale.com>
50054 Date:   Wed Aug 16 13:59:47 2006 -0500
50055
50056     * Fix disable_of booting
50057
50058     Signed-off-by: Matthew McClintock <msm@freescale.com>
50059
50060 commit 25c751e9adc86e22fe3b5b47cf2806379b575db7
50061 Author: Matthew McClintock <msm@freescale.com>
50062 Date:   Wed Aug 16 10:54:09 2006 -0500
50063
50064     * Support for FDT in uImage format, error when using FDT from flash
50065
50066     Signed-off-by: Matthew McClintock <msm@freescale.com>
50067
50068 commit 899620c2d66d4eef3b2a0034d062e71d45d886c9
50069 Author: Stefan Roese <sr@denx.de>
50070 Date:   Tue Aug 15 14:22:35 2006 +0200
50071
50072     Add initial support for the ALPR board from Prodrive
50073     NAND needs some additional testing
50074     Patch by Heiko Schocher, 15 Aug 2006
50075
50076 commit f0ff4692ff3372dec55074a8eb444943ab095abb
50077 Author: Stefan Roese <sr@denx.de>
50078 Date:   Tue Aug 15 14:15:51 2006 +0200
50079
50080     Add FPGA Altera Cyclone 2 support
50081     Patch by Heiko Schocher, 15 Aug 2006
50082
50083 commit fecf1c7e4de1b2779edc18742b91c22bdc32b68b
50084 Author: Jon Loeliger <jdl@freescale.com>
50085 Date:   Mon Aug 14 15:33:38 2006 -0500
50086
50087     Fix BAT0 to actually be cacheable, non-guarded as documented.
50088
50089     Signed-off-by: Jon Loeliger <jdl@freescale.com>
50090
50091 commit 40bc83559db5745681909fd7382ae509567e116d
50092 Author: Jon Loeliger <jdl@freescale.com>
50093 Date:   Wed Aug 9 15:32:16 2006 -0500
50094
50095     Removed MPC8641HPCN DTS source file from build.
50096     It is no longer linked into U-Boot; its sources are
50097     now located in the kernel tree.
50098
50099     Signed-off-by: Jon Loeliger <jdl@freescale.com>
50100
50101 commit 34c3c0e01dbf1f8cc2bd08de92f2b89ba84921eb
50102 Author: Matthew McClintock <msm@freescale.com>
50103 Date:   Wed Jun 28 10:47:03 2006 -0500
50104
50105     * Switched default PCI speed for 8540 ADS back to 33MHz
50106
50107     * Added comments and a printf to warn that PCI-X won't
50108       work at 33MHz
50109       Patch by Andy Fleming 17-Mar-2006
50110
50111     Signed-off-by: Andy Fleming <afleming@freescale.com>
50112
50113 commit b6c5e1373b6ea0bb37a18e4aeecec00613d1cd39
50114 Author: Matthew McClintock <msm@freescale.com>
50115 Date:   Wed Jun 28 10:46:35 2006 -0500
50116
50117     * Fixed a bug where 8555 PCI code used the old variable and function names Patch by Andy Fleming 17-Mar-2006
50118
50119     Signed-off-by: Andy Fleming <afleming@freescale.com>
50120
50121 commit bf1dfffd8c26f8ecdd630a0ae4c834e751e4e452
50122 Author: Matthew McClintock <msm@freescale.com>
50123 Date:   Wed Jun 28 10:46:13 2006 -0500
50124
50125     * Added VIA configuration table
50126
50127     * Added support for PCI2 on CDS
50128       Patch by Andy Fleming 17-Mar-2006
50129
50130     Signed-off-by: Andy Fleming <afleming@freescale.com>
50131
50132 commit c88f9fe66b64247e5b6a38410ba315ca25596d16
50133 Author: Matthew McClintock <msm@freescale.com>
50134 Date:   Wed Jun 28 10:45:41 2006 -0500
50135
50136     * Fixed PCI memory definitions Patch by Andy Fleming 17-Mar-2006
50137
50138     Signed-off-by: Andy Fleming <afleming@freescale.com>
50139
50140 commit 97074ed9655309b64231bc2cee69fe85399f8055
50141 Author: Matthew McClintock <msm@freescale.com>
50142 Date:   Wed Jun 28 10:45:17 2006 -0500
50143
50144     * Added support for initializing second PCI bus on 85xx Patch by Andy Fleming 17-Mar-2006
50145
50146     Signed-off-by: Andy Fleming <afleming@freescale.com>
50147
50148 commit f0e6f57f71b3c4fdd13028eb03c3f3e91926dda2
50149 Author: Matthew McClintock <msm@freescale.com>
50150 Date:   Wed Jun 28 10:44:49 2006 -0500
50151
50152     * Added PCI-X #defines for PCI-X initialization Patch by Andy Fleming on 17-Mar-2006
50153
50154     Signed-off-by: Andy Fleming <afleming@freescale.com>
50155
50156 commit a4e11558b810ef2cddffdf7b9d86bc1130441960
50157 Author: Matthew McClintock <msm@freescale.com>
50158 Date:   Wed Jun 28 10:44:23 2006 -0500
50159
50160     * 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
50161
50162     Signed-off-by: Andy Fleming <afleming@freescale.com>
50163
50164 commit 0e16387db1d4aacd5bf35cb6d7c1942765c0347b
50165 Author: Matthew McClintock <msm@freescale.com>
50166 Date:   Wed Jun 28 10:43:36 2006 -0500
50167
50168     * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards Patch by Jon Loeliger 17-Jan-2006
50169
50170     Signed-off-by: Jon Loeliger <jdl@freescale.com>
50171
50172 commit 855e6fb073f9d04fe4a7f06c107ecbac6344ddd4
50173 Author: Matthew McClintock <msm@freescale.com>
50174 Date:   Wed Jun 28 10:43:00 2006 -0500
50175
50176     * 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
50177
50178 commit 5498d90312aad9f6bdbf047986027c35b03cd163
50179 Author: Matthew McClintock <msm@freescale.com>
50180 Date:   Wed Jun 28 10:42:24 2006 -0500
50181
50182     * Patch to modify ft_build.c to update flat device trees in place Patch by Matthew McClintock 26-June-2006
50183
50184 commit 0267768eddc5ca7bc1865bc40c866829ac5efbfe
50185 Author: Matthew McClintock <msm@freescale.com>
50186 Date:   Wed Jun 28 10:41:37 2006 -0500
50187
50188     * Modify bootm command to support booting with flat device trees Patch by Matthew McClintock 26-June-2006
50189
50190 commit 8fc8bd2cc479b6cd188fdede4010e0e052970b8a
50191 Author: John Traill <john.traill@freescale.com>
50192 Date:   Wed Aug 9 14:33:50 2006 +0100
50193
50194     Add Rapidio support for the MPC8641HPCN
50195
50196     Signed-off-by: John Traill <john.traill@freescale.com>
50197
50198 commit 91a414c7d1fb0eac912592cd995b30c9f23045c9
50199 Author: John Traill <john.traill@freescale.com>
50200 Date:   Tue Aug 8 11:32:43 2006 +0100
50201
50202     Fix caslat calculation
50203
50204     Signed-off-by: John Traill <john.traill@freescale.com>
50205
50206 commit 709d3073e74153278e7904a70819bbef7df50e1a
50207 Author: Jon Loeliger <jdl@freescale.com>
50208 Date:   Thu Aug 3 16:17:56 2006 -0500
50209
50210     Convert to mac-address in ethernet nodes.
50211
50212 commit 71748af833ca1017edf1415be376366ff2937d17
50213 Author: Haiying Wang <haiying.wang@freescale.com>
50214 Date:   Fri Jul 28 12:41:35 2006 -0400
50215
50216     Correct the irq value of DUART2
50217
50218 commit 9cb3e8816ae4d854e7dc22128c3eea3d70bb982c
50219 Author: Haiying Wang <haiying.wang@freescale.com>
50220 Date:   Fri Jul 28 12:41:41 2006 -0400
50221
50222     Change the space size of PEX IO in README
50223
50224 commit 239db37c94f7a92941c4465feceb867c609241c5
50225 Author: Haiying Wang <haiying.wang@freescale.com>
50226 Date:   Fri Jul 28 12:41:18 2006 -0400
50227
50228     Move get_board_sys_clk to board directory
50229
50230 commit 492900b985439fbce1a118afde1e35def870db03
50231 Author: John Traill <john.traill@freescale.com>
50232 Date:   Fri Jul 28 09:03:54 2006 +0100
50233
50234     Fix 8641HPCN pollution
50235
50236 commit 515ab8a62e8574e2babc6e8dcc43544ad221c5b2
50237 Author: John Traill <john.traill@freescale.com>
50238 Date:   Fri Jul 28 08:16:06 2006 +0100
50239
50240     Fix 8641HPCN timebase
50241
50242 commit c86360b830f1eecd7a72208575dde4f57879faea
50243 Author: Zhang Wei <wei.zhang@freescale.com>
50244 Date:   Fri Jul 28 00:01:34 2006 +0800
50245
50246     Fixed OF device tree of mpc86xxhpcn board.
50247
50248     The changes works in with kernel irq mapping rework.
50249
50250     Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
50251
50252 commit bea3f28d285942bf3f7ab339ce85178ded544225
50253 Author: Haiying Wang <haiying.wang@freescale.com>
50254 Date:   Wed Jul 12 10:48:05 2006 -0400
50255
50256     Add support for reading and writing mac addresses to or from ID EEPROM.
50257
50258     Added code for reading and writing Mac addresses to/from ID EEPROM(0x57).
50259     With attached patch, we can use command "mac/mac read/mac save/"
50260     to read and write EEPROM under u-boot prompt.
50261
50262     U-boot will calculate the checksum of EEPROM while bootup,
50263     if it is right, then u-boot will check whether the mac address
50264     of eTSEC0/1/2/3 is availalbe (non-zero).
50265
50266     If there is mac address availabe in EEPROM, u-boot will use it,
50267     otherewise, u-boot will use the mac address defined in
50268     MPC8641HPCN.h. This matches the requirement to set unique mac address
50269     for each TSEC port.
50270
50271     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
50272     Signed-off-by: York Sun <yorksun@freescale.com>
50273
50274 commit fcb28e763415e0e4e66b0f45842d1557ae198e5e
50275 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
50276 Date:   Thu Jul 13 10:35:10 2006 -0500
50277
50278     Fixed initrd issue by define big RAM
50279
50280     Signed-off-by:Jason Jin <Jason.jin@freescale.com>
50281
50282 commit e6cd2a1785d74ec3d30a86f1cb360be8de478151
50283 Author: Jason Jin <Jason.jin@freescale.com>
50284 Date:   Fri Jul 7 10:01:45 2006 -0500
50285
50286     We made a u-boot patch to fix the hang up issue
50287     when booting filesystem from ramdisk.
50288
50289     Signed-off-by:Jason Jin <Jason.jin@freescale.com>
50290
50291 commit 38433ccc5850ee70549af0b2bc5b920355ef5388
50292 Author: Matthew McClintock <msm@freescale.com>
50293 Date:   Wed Jun 28 10:47:03 2006 -0500
50294
50295     * Switched default PCI speed for 8540 ADS back to 33MHz
50296     * Added comments and a printf to warn that PCI-X won't
50297       work at 33MHz
50298       Patch by Andy Fleming 17-Mar-2006
50299
50300     Signed-off-by: Andy Fleming <afleming@freescale.com>
50301
50302 commit e4c2a0eb0c3e3ffbf824800184ee42bdc99d5b19
50303 Author: Matthew McClintock <msm@freescale.com>
50304 Date:   Wed Jun 28 10:46:35 2006 -0500
50305
50306     * Fixed a bug where 8555 PCI code used the old variable and
50307       function names
50308       Patch by Andy Fleming 17-Mar-2006
50309
50310     Signed-off-by: Andy Fleming <afleming@freescale.com>
50311
50312 commit cbfc7ce756b88eb26e5537bc7b625c445c6dcfac
50313 Author: Matthew McClintock <msm@freescale.com>
50314 Date:   Wed Jun 28 10:46:13 2006 -0500
50315
50316     * Added VIA configuration table
50317     * Added support for PCI2 on CDS
50318       Patch by Andy Fleming 17-Mar-2006
50319
50320     Signed-off-by: Andy Fleming <afleming@freescale.com>
50321
50322 commit 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc
50323 Author: Matthew McClintock <msm@freescale.com>
50324 Date:   Wed Jun 28 10:45:41 2006 -0500
50325
50326     * Fixed PCI memory definitions
50327       Patch by Andy Fleming 17-Mar-2006
50328
50329     Signed-off-by: Andy Fleming <afleming@freescale.com>
50330
50331 commit 087454609e47295443af793a282cddcd91a5f49c
50332 Author: Matthew McClintock <msm@freescale.com>
50333 Date:   Wed Jun 28 10:45:17 2006 -0500
50334
50335     * Added support for initializing second PCI bus on 85xx
50336       Patch by Andy Fleming 17-Mar-2006
50337
50338     Signed-off-by: Andy Fleming <afleming@freescale.com>
50339
50340 commit b636aaeb6fd516a442fb611bbeeddf3077a687fb
50341 Author: Matthew McClintock <msm@freescale.com>
50342 Date:   Wed Jun 28 10:44:49 2006 -0500
50343
50344     * Added PCI-X #defines for PCI-X initialization
50345       Patch by Andy Fleming on 17-Mar-2006
50346
50347     Signed-off-by: Andy Fleming <afleming@freescale.com>
50348
50349 commit 20abbc6fffa115690107cc942c7abf84bdc03a1b
50350 Author: Matthew McClintock <msm@freescale.com>
50351 Date:   Wed Jun 28 10:44:23 2006 -0500
50352
50353     * Made sure the code which disables prefetch for PCI devices
50354       sets the size of the prefetch region to 0
50355       Patch by Andy Fleming on 17-Mar-2006
50356
50357     Signed-off-by: Andy Fleming <afleming@freescale.com>
50358
50359 commit 40d5fa35d02df22580593bf0039ab173367e8ef0
50360 Author: Matthew McClintock <msm@freescale.com>
50361 Date:   Wed Jun 28 10:43:36 2006 -0500
50362
50363     * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards
50364       Patch by Jon Loeliger 17-Jan-2006
50365
50366     Signed-off-by: Jon Loeliger <jdl@freescale.com>
50367
50368 commit be7e8b0cb5a0c49dc180075b96df296a893bf146
50369 Author: Matthew McClintock <msm@freescale.com>
50370 Date:   Wed Jun 28 10:43:00 2006 -0500
50371
50372     * Removed the oftree.dts for stxxtx in light of the changes
50373       to the flat device tree handling code
50374       Patch by Matthew McClintock 26-June-2006
50375
50376 commit 1b380ec225665e73959677f3893dc658c5925e05
50377 Author: Matthew McClintock <msm@freescale.com>
50378 Date:   Wed Jun 28 10:42:24 2006 -0500
50379
50380     * Patch to modify ft_build.c to update flat device trees in place
50381       Patch by Matthew McClintock 26-June-2006
50382
50383 commit 98a9c4d468a942a09ebe8979bec508017f3e4462
50384 Author: Matthew McClintock <msm@freescale.com>
50385 Date:   Wed Jun 28 10:41:37 2006 -0500
50386
50387     * Modify bootm command to support booting with flat device trees
50388       Patch by Matthew McClintock 26-June-2006
50389
50390 commit da012ab661fd4ab169dd7b9b32201a4df62cf34a
50391 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
50392 Date:   Wed Jun 28 08:43:56 2006 -0500
50393
50394     Change Id to symbolic name for RTL8139
50395
50396     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
50397
50398 commit bc09cf3c2bfb8d54c659cbb332f79d0950982fd0
50399 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
50400 Date:   Tue Jun 27 18:12:10 2006 +0800
50401
50402     Fix RTL8139 in big endian
50403
50404     signed-off-by: Jason Jin <Jason.Jin@freescale.com>
50405     signed-off-by: Wei Zhang <wei.zhang@freescale.com>
50406
50407 commit fcfb9a57947fc203b99fe81ab0578f7286261f9f
50408 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
50409 Date:   Tue Jun 27 18:12:23 2006 +0800
50410
50411     Fix Tsec bug when no link
50412
50413      When tftp a non-exist file from the tftp server, u-boot will check
50414      the link of all eth port. The original file will return wrong link
50415      state on the no link ports.
50416
50417     signed-off-by: Jason Jin <Jason.Jin@freescale.com>
50418
50419 commit bd22c2b97514fbfb0e03bd9c72b3445e4dbd57e2
50420 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
50421 Date:   Tue Jun 27 18:12:02 2006 +0800
50422
50423     Fix bug for io_bar size during pci scan
50424
50425     During the pci scan process, Some devices return bar_reponse with the
50426     highest bytes 0, such as the pci bridge in uli1575 return bar_response
50427     with 0xffffff, So the bar_size should be manually set under 64K.
50428
50429     Signed-off-by: Jason Jin <jason.jin@freescale.com>
50430
50431 commit fa7db9c377bc2353a17bf1d381d65a6c418728f0
50432 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
50433 Date:   Tue Jun 27 18:11:54 2006 +0800
50434
50435     Enable PCIE1 for MPC8641HPCN board
50436
50437     Signed-off-by: Jason Jin <Jason.jin@freescale.com>
50438
50439 commit 99d70e3a47affb9bae041a2caece7cd516e213b3
50440 Author: Wolfgang Denk <wd@pollux.denx.de>
50441 Date:   Mon Jun 26 11:06:00 2006 +0200
50442
50443     More code cleanup
50444
50445 commit 684623ce92c5fd32e7db2d6e016945a67c5ffaba
50446 Author: Jon Loeliger <jdl@freescale.com>
50447 Date:   Thu Jun 22 08:51:46 2006 -0500
50448
50449     Fix bug in 8641hpcn reset command with no args.
50450
50451     Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
50452     Acked-by: Jon Loeliger <jdl@freescale.com>
50453
50454 commit 8be429a5ddbf0ebe2d94174ba58fcfc7a24285dc
50455 Author: Zhang Wei <wei.zhang@freescale.com>
50456 Date:   Tue Jun 20 17:47:15 2006 +0800
50457
50458     Reworked IRQ mapping in OF-tree.
50459
50460 commit 0e4c2a17ca34001ed36d259f13cb88ada4611a8c
50461 Author: Jon Loeliger <jdl@freescale.com>
50462 Date:   Thu Jun 15 21:33:37 2006 -0500
50463
50464     Do not enable address translation on secondary CPUs.
50465     Do not set up BATs on secondary CPUs.  Let Linux do the nasty.
50466
50467     Signed-off-by: Jon Loeliger <jdl@freescale.com>
50468
50469 commit 386eda022473394ad8f36b86f2bdc9b4cb816291
50470 Author: Wolfgang Denk <wd@pollux.denx.de>
50471 Date:   Wed Jun 14 18:14:56 2006 +0200
50472
50473     Code cleanup
50474
50475 commit 16c8d5e76ae0f78f39a60608574adfe0feb9cc70
50476 Author: Wolfgang Denk <wd@pollux.denx.de>
50477 Date:   Wed Jun 14 17:45:53 2006 +0200
50478
50479     Various USB related patches
50480     - Add support for mpc8xx USB device.
50481     - Add support for Common Device Class - Abstract Control Model USB console.
50482     - Add support for flow control in USB slave devices.
50483     - Add support for switching between gserial and cdc_acm using environment.
50484     - Minor changes to usbdcore_omap1510.c usbdcore_omap1510.h
50485     - Update usbcore slightly to ease host enumeration.
50486     - Fix non-portable endian problems in usbdcore and usbdcore_ep0.
50487     - Add AdderUSB_config as a defconfig to enable usage of the USB console
50488       by default with the Adder87x U-Boot port.
50489     Patches by Bryan O'Donoghue <bodonoghue@codehermit.ie>, 29 May 2006
50490
50491 commit 8ecc971618f56029ad99d3516f8b297a6ed58971
50492 Author: Jon Loeliger <jdl@jdl.com>
50493 Date:   Wed Jun 7 10:53:55 2006 -0500
50494
50495     Fix a get_board_sys_clk() use-before-def warning.
50496
50497     Signed-off-by: Jon Loeliger <jdl@jdl.com>
50498
50499 commit d9bf4858fca5aa4d651b283270f77da72ebadfd5
50500 Author: Jon Loeliger <jdl@jdl.com>
50501 Date:   Wed Jun 7 10:52:49 2006 -0500
50502
50503     Allow DTC path to be passed in.
50504
50505     Signed-off-by: Jon Loeliger <jdl@jdl.com>
50506
50507 commit c83ae9ea6d93abbe751bf8a3396236a084e56f87
50508 Author: Haiying Wang <haiying.wang@freescale.com>
50509 Date:   Tue Jun 6 16:54:29 2006 -0400
50510
50511     Modify the IRQ of DUART2
50512
50513 commit c934f655f9aeca70a5c5f88b465d9e9d57a8d22e
50514 Author: Jon Loeliger <jdl@jdl.com>
50515 Date:   Wed May 31 13:55:35 2006 -0500
50516
50517     Review cleanups.
50518
50519     Signed-off-by: Jon Loeliger <jdl@freescale.com>
50520
50521 commit cb5965fb95b77a49f4e6af95248e0c849f4af03e
50522 Author: Jon Loeliger <jdl@jdl.com>
50523 Date:   Wed May 31 12:44:44 2006 -0500
50524
50525     White space cleanup.
50526     Some 80-column cleanups.
50527     Convert printf() to puts() where possible.
50528     Use #include "spd_sdram.h" as needed.
50529     Enhanced reset command usage message a bit.
50530
50531     Signed-off-by: Jon Loeliger <jdl@freescale.com>
50532
50533 commit 3d5c5be547445dd3bd2eb7368d80df03ea437970
50534 Author: Jon Loeliger <jdl@jdl.com>
50535 Date:   Wed May 31 11:39:34 2006 -0500
50536
50537     Removed unneeded local_bus_init() from 8641HPCN board.
50538
50539     Signed-off-by: Jon Loeliger <jdl@freescale.com>
50540
50541 commit 4d3d729c16c392d2982d3266b659d333c927697d
50542 Author: Jon Loeliger <jdl@jdl.com>
50543 Date:   Wed May 31 11:24:28 2006 -0500
50544
50545     Moved mpc8641hpcn_board_reset() out of cpu/ into board/.
50546
50547     Signed-off-by: Jon Loeliger <jdl@freescale.com>
50548
50549 commit b2a941de060350ad15878d8219825f4950e9bb8e
50550 Author: Jon Loeliger <jdl@jdl.com>
50551 Date:   Wed May 31 10:07:28 2006 -0500
50552
50553     Remove dead debug code.
50554
50555     Signed-off-by: Jon Loeliger <jdl@jdl.com>
50556
50557 commit 126aa70f10ba3d20e0a6f4d32328250513b77770
50558 Author: Jon Loeliger <jdl@freescale.com>
50559 Date:   Tue May 30 17:47:00 2006 -0500
50560
50561     Move mpc86xx PIXIS code to board directory
50562
50563     First cut at moving the PIXIS platform code out of
50564     the 86xx cpu directory and into board/mpc8641hpcn
50565     where it belongs.
50566
50567     Signed-off-by: Jon Loeliger <jdl@freescale.com>
50568
50569 commit ddf83a2fcef1a670c45fc585119dcc1fe062c4a9
50570 Author: Markus Klotzbuecher <mk@denx.de>
50571 Date:   Tue May 30 16:56:14 2006 +0200
50572
50573     Support generic OHCI support for the s3c24x0 cpu.
50574
50575 commit 38cee12dcfcc257371c901c7e13e58ecab0a35d8
50576 Author: Haiying Wang <Haiying.Wang@freescale.com>
50577 Date:   Tue May 30 09:10:32 2006 -0500
50578
50579     Improve "reset" command's interaction with watchdog.
50580
50581         "reset altbank" will reset another bank WITHOUT watch dog timer enabled
50582         "reset altbank wd" will reset another bank WITH watch dog enabled
50583         "diswd" will disable watch dog after u-boot boots up successfully
50584
50585     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
50586
50587 commit 70205e5a6ddc8528b11db9eb4d3fa0209d9fce2a
50588 Author: Haiying Wang <Haiying.Wang@freescale.com>
50589 Date:   Tue May 30 08:51:19 2006 -0500
50590
50591     Fix two SDRAM setup bugs.
50592
50593         Fix ECC setup bug.
50594         Enable 1T/2T based on number of DIMMs present.
50595
50596     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
50597
50598 commit d11fec5015334deb2010e36ce00bb118cc5429a5
50599 Author: Haiying Wang <Haiying.Wang@freescale.com>
50600 Date:   Fri May 26 10:24:48 2006 -0500
50601
50602     Add first draft of the MPC8641HPCN doc/README.
50603
50604     Signed-off-by: Jon Loeliger <jdl@jdl.com>
50605
50606 commit ed45d6c930b5939718a87ee12e25cf9a05978d4a
50607 Author: Haiying Wang <Haiying.Wang@freescale.com>
50608 Date:   Fri May 26 10:13:04 2006 -0500
50609
50610     Added pci@8000 block.
50611     Updated ethernet interrupt mappings (moved up 48).
50612     Cleaned up a few comments.
50613
50614     Signed-off-by: Jon Loeliger <jdl@jdl.com>
50615
50616 commit 3033ebb20fd7c372c7bca3c9955a4692bb2240b7
50617 Author: Haiying Wang <Haiying.Wang@freescale.com>
50618 Date:   Fri May 26 10:01:16 2006 -0500
50619
50620     Allow args on reset command.
50621
50622     Signed-off-by: Jon Loeliger <jdl@jdl.com>
50623
50624 commit 301f1aa384d0edcae6a22fd9adb933ad71695ecc
50625 Author: Markus Klotzbuecher <mk@denx.de>
50626 Date:   Tue May 23 13:38:35 2006 +0200
50627
50628     Changed the mp2usb (at91rm9200) board to use the generic OHCI driver. Some
50629     fixes to the latter.
50630
50631 commit 24e37645e7378b20fa8f20e2996c8fb8e90c70c9
50632 Author: Markus Klotzbuecher <mk@denx.de>
50633 Date:   Tue May 23 10:33:11 2006 +0200
50634
50635     More cleanup for the delta board and the generic usb_ohci driver. Added
50636     CFG_USB_BOARD_INIT and CFG_USB_CPU_INIT for enabling board and cpu specific
50637     initialization and cleanup hooks respectively.
50638
50639 commit 3e326ece9eba8184f5d48aa4fb87760a8f6f0f10
50640 Author: Markus Klotzbuecher <mk@denx.de>
50641 Date:   Mon May 22 16:33:54 2006 +0200
50642
50643     This patch adds USB storage support for the delta board. This is the first
50644     board to make use of a generic OHCI driver, that calls hooks for board
50645     dependant initialization.
50646
50647 commit 14e37081ff3cac7ebe6e93836523429853b6b292
50648 Author: Jon Loeliger <jdl@jdl.com>
50649 Date:   Fri May 19 13:28:39 2006 -0500
50650
50651     Change arbitration to round-robin for SMP linux.
50652
50653 commit 9a655876e5995be80f49054e2509500e871e4d3a
50654 Author: Jon Loeliger <jdl@jdl.com>
50655 Date:   Fri May 19 13:26:34 2006 -0500
50656
50657     Enable dual DDR controllers and interleaving.
50658
50659 commit 586d1d5abd3e525f1e1d9b81e5a61a4da6b2fa3c
50660 Author: Jon Loeliger <jdl@jdl.com>
50661 Date:   Fri May 19 13:22:44 2006 -0500
50662
50663     Update 86xx address map and LAWBARs.
50664
50665 commit cccce5d0581bb0ba4602799a4b5112e58d1579cb
50666 Author: Jon Loeliger <jdl@jdl.com>
50667 Date:   Fri May 19 13:14:15 2006 -0500
50668
50669     Remove L2 Cache invalidate polling.
50670
50671 commit f35ec68fb066cec0e36294bfe07dec2d4e8ad3a8
50672 Author: Jon Loeliger <jdl@jdl.com>
50673 Date:   Fri May 19 12:33:09 2006 -0500
50674
50675     Enable 2nd CPU and I2C.
50676
50677 commit bf690dcb512d34c4fceec0eb1e5c0e88a9db5d54
50678 Author: Jon Loeliger <jdl@freescale.com>
50679 Date:   Mon May 15 07:26:56 2006 -0500
50680
50681     Update interrupt mapping.
50682
50683 commit 6cfea33477b04b63ed47386ed1629529484c33ba
50684 Author: Haiying Wang <Haiying.Wang@freescale.com>
50685 Date:   Wed May 10 09:38:06 2006 -0500
50686
50687     Remove unneeded INIT_RAM_LOCK cache twiddling.
50688     Correctly tracks r29 as global data pointer now.
50689
50690     Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
50691
50692 commit d4dd317b58c126a2a7e73f4764ecc1a7c97f876c
50693 Author: Jon Loeliger <jdl@freescale.com>
50694 Date:   Wed May 10 09:33:07 2006 -0500
50695
50696     Remove unnecessary flash.c file.
50697
50698 commit 18b6c8cd8af6cc7f35180cedc4adb3236cc1a1b8
50699 Author: Jon Loeliger <jdl@freescale.com>
50700 Date:   Tue May 9 08:23:49 2006 -0500
50701
50702     Get MPC8641HPCN flash images working.
50703
50704         Enable the CFI driver.
50705         Remove bogus LAWBAR7 cruft.
50706         Use correct TEXT_BASE, Fixup load script.
50707         Enable SPD EEPROM during DDR setup.
50708         Use generic RFC 1918 IP addresses by default.
50709
50710 commit 5c9efb36a6b5431423f52888a0e3b4b515fe7eca
50711 Author: Jon Loeliger <jdl@freescale.com>
50712 Date:   Thu Apr 27 10:15:16 2006 -0500
50713
50714     Cleanup whitespaces and style issues.
50715     Removed //-style comments.
50716     Use 80-column lines.
50717     Remove trailing whitespace.
50718     Remove dead code and debug cruft.
50719
50720 commit a2320a6bf8113a09544c42d160d10ac69d049a03
50721 Author: Jon Loeliger <jdl@freescale.com>
50722 Date:   Thu Apr 27 08:22:39 2006 -0500
50723
50724     Revert bad PCI prefetch limit change.
50725
50726 commit debb7354d1ea4f694154818df5e5b523f5c1cc1d
50727 Author: Jon Loeliger <jdl@freescale.com>
50728 Date:   Wed Apr 26 17:58:56 2006 -0500
50729
50730     Initial support for MPC8641 HPCN board.