]> git.ipfire.org Git - people/ms/u-boot.git/blob - CHANGELOG
Merge branch 'master' of ../work into next
[people/ms/u-boot.git] / CHANGELOG
1 commit f2352877cb2daac88115192fb09991a2397d0b27
2 Author: Peter Tyser <ptyser@xes-inc.com>
3 Date: Sun Dec 6 23:58:28 2009 -0600
4
5 MAKEALL: Fix return value
6
7 Previously MAKEALL would always return a value of 0, even if 1 or more
8 boards did not compile. This change causes MAKEALL to return 0 if all
9 boards were able to build, otherwise 1.
10
11 This change also requires changing the script interpreter from sh to
12 bash to support bash's PIPESTATUS variable.
13
14 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15
16 commit fbc1c8f6f6c972524197829c56dd8f2f5da0200a
17 Author: Peter Tyser <ptyser@xes-inc.com>
18 Date: Sun Dec 6 01:33:24 2009 -0600
19
20 tools/mkimage: Remove duplicate line of code
21
22 Recent commits 1a99de2cb4d08eb3bf9fb3f60a9d533150de8c0e and
23 6a590c5f5fd12cdd27f3153522acfac3854590e7 both fixed the same bug in the
24 same manner. Unfortunately git was "smart" enough to merge both changes
25 which resulted in some duplicate code.
26
27 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28
29 Reordered code and comment a bit.
30
31 Signed-off-by: Wolfgang Denk <wd@denx.de>
32
33 commit df002fa6b9cd475909ede35bf95b803c2289c6a4
34 Author: Heiko Schocher <hs@denx.de>
35 Date: Sat Dec 5 11:59:51 2009 +0100
36
37 i2c: fix dangling comment in do_i2c_mw()
38
39 commit bd3784df94bfeca43fbf34094df9cb1bd3ecca3b deleted some unused
40 code in do_i2c_mw(), but missed to also remove the respective
41 commment. This patch fixes this.
42
43 Signed-off-by: Heiko Schocher <hs@denx.de>
44
45 commit f8450829f921cf10667af98a8d08edfa3d998f04
46 Author: Heiko Schocher <hs@denx.de>
47 Date: Tue Dec 1 19:30:47 2009 +0100
48
49 52xx, manroland: add fdt_fixup_memory() in ft_board_setup()
50
51 To update the real memory size in the memory node on the
52 uc101 and mucmc52 boards call fdt_fixup_memory() in
53 ft_board_setup().
54
55 Signed-off-by: Heiko Schocher <hs@denx.de>
56
57 commit 0ec81db20294efdad2454a753e79f1fe244a43ca
58 Author: Daniel Hobi <daniel.hobi@schmid-telecom.ch>
59 Date: Tue Dec 1 14:05:55 2009 +0100
60
61 Fix computation in nand_util.c:get_len_incl_bad
62
63 Depending on offset, flash size and the number of bad blocks,
64 get_len_incl_bad may return a too small value which may lead to:
65
66 1) If there are no bad blocks, nand_{read,write}_skip_bad chooses the
67 bad block aware read/write code. This may hurt performance, but does
68 not have any adverse effects.
69
70 2) If there are bad blocks, the nand_{read,write}_skip_bad may choose
71 the bad block unaware read/write code (if len_incl_bad == *length)
72 which leads to corrupted data.
73
74 Signed-off-by: Daniel Hobi <daniel.hobi@schmid-telecom.ch>
75
76 commit aabb8cb0818e285aeed0cfaf243635997e07554d
77 Author: Evan Samanas <esamanas@xes-inc.com>
78 Date: Mon Nov 9 20:08:36 2009 -0600
79
80 nfs: NfsTimeout() updates
81
82 - NfsTimeout() does not correctly update the NFS timeout value which
83 results in NfsTimeout() only being called once in certain situations.
84 This can result in the 'nfs' command hanging indefinetly. For
85 example, the command:
86
87 nfs 192.168.0.1:/home/user/file
88
89 will not exit until ctrl-c is pressed if 192.168.0.1 does not have an
90 NFS server running.
91
92 This issue is resolved by reinitializting the NFS timeout value inside
93 NfsTimeout() when a timeout occurs.
94
95 - Make the 'nfs' command print the 'T' character when a timeout occurs.
96 Previously there was no indication that timeouts were occuring.
97
98 - Mimic the 'tftpboot' command and when a download fails print "Retry
99 count exceeded; starting again", and restart the download taking the
100 'netretry' environment variable into account.
101
102 Signed-off-by: Evan Samanas <esamanas@xes-inc.com>
103 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
104
105 Tested on TQM8xxL.
106
107 Tested by: Wolfgang Denk <wd@denx.de>
108
109 Tested on MPC8527DS.
110
111 Tested by: Ed Swarthout <Ed.Swarthout@freescale.com>
112
113 commit 224c90d1060bf1a83cbf33ca51d060b9d19e0294
114 Author: Peter Tyser <ptyser@xes-inc.com>
115 Date: Wed Nov 18 19:08:59 2009 -0600
116
117 bootm: Fix help message's sub-command ordering
118
119 The help message for the 'bootm' command listed the 'cmdline' and 'bdt'
120 sub-commands in the wrong order which resulted in the error below when
121 following the 'help' command's instructions:
122
123 "Trying to execute a command out of order"
124
125 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
126
127 commit a93c92cddaedd5f0720e0da15c6664f7a688b582
128 Author: Robert P. J. Day <rpjday@crashcourse.ca>
129 Date: Tue Nov 17 07:30:23 2009 -0500
130
131 help: Correct syntax of nandecc help output.
132
133 "nandecc" help output should not reproduce the command name, nor have
134 a trailing newline.
135
136 Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
137
138 commit c2fff331a32ceca837d76eb7827d6340da270d52
139 Author: Mike Rapoport <mike@compulab.co.il>
140 Date: Wed Nov 11 10:03:03 2009 +0200
141
142 smc911x: update SMC911X related configuration description
143
144 Since commit 736fead8fdbf8a8407048bebc373cd551d01ec98 "Convert SMC911X
145 Ethernet driver to CONFIG_NET_MULTI API" SMC911X configration options
146 are called CONFIG_SMC911X rather than CONFIG_DRIVER_SMC911X. Update
147 README to reflect that change.
148
149 Signed-off-by: Mike Rapoport <mike@compulab.co.il>
150
151 commit 45b6b65c6bf06a589ef3123192af94b0381db27b
152 Author: Mike Rapoport <mike@compulab.co.il>
153 Date: Wed Nov 11 10:03:09 2009 +0200
154
155 smc911x: fix typo in smc911x_handle_mac_address name
156
157 Signed-off-by: Mike Rapoport <mike@compulab.co.il>
158
159 commit f64ef9bb995687e24e0b61b52316f4eaa97c3bbc
160 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
161 Date: Thu Nov 19 02:47:28 2009 -0600
162
163 fix nfs symlink name corruption
164
165 An off by one error may cause nfs readlink lookup fail if
166 nfs_path_buff has non-zero data from a previous use.
167
168 Loading: *** ERROR: File lookup fail
169
170 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
171
172 commit e8fac25e83426fdf461c66aa8a2530ec28ec536e
173 Author: Wolfgang Denk <wd@denx.de>
174 Date: Mon Dec 7 21:06:40 2009 +0100
175
176 at91sam9261ek.c: fix minor coding style issue.
177
178 Signed-off-by: Wolfgang Denk <wd@denx.de>
179
180 commit 4713010adf5beda87410d637ebfc58db0db9a9db
181 Author: Wolfgang Denk <wd@denx.de>
182 Date: Sun Dec 6 01:21:28 2009 +0100
183
184 trab: fix warning: implicit declaration of function 'disable_vfd'
185
186 Signed-off-by: Wolfgang Denk <wd@denx.de>
187
188 commit a9f99ab44b473fb394169ba365f8b4380f981584
189 Author: Wolfgang Denk <wd@denx.de>
190 Date: Sun Dec 6 00:53:18 2009 +0100
191
192 zlib.c: avoid build conflicts for cradle board
193
194 Commit dce3d79710 updated the zlib code to v0.95; this caused
195 conflicts when building for the "cradle" board, because the (pretty
196 generic) preprocessor variable "OFF" was used in multiple files.
197 Make sure to avoid further conflicts by #undef'ing it in zlib.c
198 before redefining it.
199
200 Signed-off-by: Wolfgang Denk <wd@denx.de>
201 cc: Giuseppe Condorelli <giuseppe.condorelli@st.com>
202 cc: Angelo Castello <angelo.castello@st.com>
203 cc: Alessandro Rubini <rubini-list@gnudd.com>
204
205 commit 8cbf4e4f17121d732e78764f0ba317c9a1838ea6
206 Author: Wolfgang Denk <wd@denx.de>
207 Date: Sun Dec 6 00:26:19 2009 +0100
208
209 Fix out-of-tree building of "apollon" board.
210
211 Signed-off-by: Wolfgang Denk <wd@denx.de>
212
213 commit f68ab43de67f59925542efb6bcec30f4a84fe695
214 Author: Mike Frysinger <vapier@gentoo.org>
215 Date: Fri Dec 4 05:35:15 2009 -0500
216
217 lzma: ignore unset filesizes
218
219 The Linux kernel build system changed how it compresses things with LZMA
220 such that the header no longer contains the filesize (it is instead set to
221 all F's). So if we get a LZMA image that has -1 for the 64bit field,
222 let's just assume that the decompressed size is unknown and continue on.
223
224 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
225
226 commit cccfc2ab77877dbdd2abe26b28d4c1f467feb0c0
227 Author: Detlev Zundel <dzu@denx.de>
228 Date: Tue Dec 1 17:16:19 2009 +0100
229
230 README: Rearrange paragraphs to regain linear arrangement.
231
232 Two later additions to the Configuration Option section unfortunately
233 split the description of Show boot progress and the list of its call outs.
234
235 Signed-off-by: Detlev Zundel <dzu@denx.de>
236
237 commit c81296c16fd9d12422c9968cc0f1d9bf440a7d88
238 Author: Peter Tyser <ptyser@xes-inc.com>
239 Date: Tue Nov 24 16:42:10 2009 -0600
240
241 tools/mkimage: Print FIT image contents after creation
242
243 Previously, there was no indication to the user that a FIT image was
244 successfully created after executing mkimage. For example:
245
246 $ mkimage -f uImage.its uImage.itb
247 DTC: dts->dtb on file "uImage.its"
248
249 Adding some additional output after creating a FIT image lets the user
250 know exactly what is contained in their image, eg:
251
252 $ mkimage -f uImage.its uImage.itb
253 DTC: dts->dtb on file "uImage.its"
254 FIT description: Linux kernel 2.6.32-rc7-00201-g7550d6f-dirty
255 Created: Tue Nov 24 15:43:01 2009
256 Image 0 (kernel@1)
257 Description: Linux Kernel 2.6.32-rc7-00201-g7550d6f-dirty
258 Type: Kernel Image
259 Compression: gzip compressed
260 Data Size: 2707311 Bytes = 2643.86 kB = 2.58 MB
261 Architecture: PowerPC
262 OS: Linux
263 Load Address: 0x00000000
264 Entry Point: 0x00000000
265 Hash algo: crc32
266 Hash value: efe0798b
267 Hash algo: sha1
268 Hash value: ecafba8c95684f2c8fec67e33c41ec88df1534d7
269 Image 1 (fdt@1)
270 Description: Flattened Device Tree blob
271 Type: Flat Device Tree
272 Compression: uncompressed
273 Data Size: 12288 Bytes = 12.00 kB = 0.01 MB
274 Architecture: PowerPC
275 Hash algo: crc32
276 Hash value: a5cab676
277 Hash algo: sha1
278 Hash value: 168722b13e305283cfd6603dfe8248cc329adea6
279 Default Configuration: 'config@1'
280 Configuration 0 (config@1)
281 Description: Default Linux kernel
282 Kernel: kernel@1
283 FDT: fdt@1
284
285 This brings the behavior of creating a FIT image in line with creating a
286 standard uImage, which also prints out the uImage contents after
287 creation.
288
289 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
290
291 commit 8e1c89663cc8796b85588910046e03b388a7597c
292 Author: Peter Tyser <ptyser@xes-inc.com>
293 Date: Tue Nov 24 16:42:09 2009 -0600
294
295 tools/fit_image.c: Remove unused fit_set_header()
296
297 The FIT fit_set_header() function was copied from the standard uImage's
298 image_set_header() function during mkimage reorganization. However, the
299 fit_set_header() function is not used since FIT images use a standard
300 device tree blob header.
301
302 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
303
304 commit 1a99de2cb4d08eb3bf9fb3f60a9d533150de8c0e
305 Author: Peter Tyser <ptyser@xes-inc.com>
306 Date: Tue Nov 24 16:42:08 2009 -0600
307
308 tools/mkimage: Assume FDT image type for FIT images
309
310 When building a Flattened Image Tree (FIT) the image type needs to be
311 "flat_dt". Commit 89a4d6b12fd6394898b8a454cbabeaf1cd59bae5 introduced a
312 regression which caused the user to need to specify the "-T flat_dt"
313 parameter on the command line when building a FIT image. The "-T
314 flat_dt" parameter should not be needed and is at odds with the current
315 FIT image documentation.
316
317 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
318
319 commit 270737acca21f3939f814de5dcf350a1c3d80d83
320 Author: Michael Brandt <Michael.Brandt@emsyso.de>
321 Date: Sun Nov 22 14:13:27 2009 +0100
322
323 EXT2FS: fix inode size for ext2fs rev#0
324
325 extfs.c assumes that there is always a valid inode_size field in the
326 superblock. But this is not true for ext2fs rev 0. Such ext2fs images
327 are for instance generated by genext2fs. Symptoms on ARM machines are
328 messages like: "raise: Signal # 8 caught"; on PowerPC "ext2ls" will
329 print nothing.
330 This fix checks for rev 0 and uses then 128 bytes as inode size.
331
332 Signed-off-by: Michael Brandt <Michael.Brandt@emsyso.de>
333 Tested on: TQM5200S
334 Tested-by: Wolfgang Denk <wd@denx.de>
335 Signed-off-by: Wolfgang Denk <wd@denx.de>
336
337 commit bcb324d68f7955c1136dafc944eb55db8ebaa601
338 Author: Robert P. J. Day <rpjday@crashcourse.ca>
339 Date: Thu Nov 19 11:00:28 2009 -0500
340
341 Remove superfluous preprocessor tests from some cmd_*.c files.
342
343 A small number of common/cmd_*.c files contain preprocessor tests that
344 are apparently superfluous since those same tests are used in the
345 Makefile to control the compilation of those files. Those tests are
346 clearly redundant as long as they surround the entirety of the source
347 in those files.
348
349 Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
350
351 commit ad53226156fa64b6d04c0d1d6e91e09979cbea15
352 Author: Robert P. J. Day <rpjday@crashcourse.ca>
353 Date: Tue Nov 17 01:59:29 2009 -0500
354
355 README: Update the list of directories.
356
357 Bring the directory listing more into line with current content.
358
359 Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
360
361 commit bd3784df94bfeca43fbf34094df9cb1bd3ecca3b
362 Author: Pratap Chandu <pratap.rrke@gmail.com>
363 Date: Thu Nov 12 19:28:25 2009 +0530
364
365 Removes dead code in the file common/cmd_i2c.c
366
367 There is some dead code enclosed by #if 0 .... #endif in the file
368 common/cmd_i2c.c
369 This patch removes the dead code.
370
371 Signed-off-by: Pratap Chandu <pratap.rrke@gmail.com>
372
373 commit 64a480601a5614b441de692ae15a62c51e0bb381
374 Author: Mike Frysinger <vapier@gentoo.org>
375 Date: Wed Nov 11 17:51:56 2009 -0500
376
377 smc91111_eeprom: drop CONFIG stub protection
378
379 Since the Makefile now controls the compilation of this, there is no need
380 for CONFIG checking nor the stub function.
381
382 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
383
384 commit f3a7bddc06c927c36a1a99a97131299479ef207a
385 Author: Magnus Lilja <lilja.magnus@gmail.com>
386 Date: Wed Nov 11 19:56:58 2009 +0100
387
388 RTC: Fix return code in MC13783 RTC driver.
389
390 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
391
392 commit d52e3e0176a74c30549251e16c5c00a363c544d2
393 Author: Magnus Lilja <lilja.magnus@gmail.com>
394 Date: Wed Nov 11 19:56:36 2009 +0100
395
396 cmd_date: Fix spelling in error message.
397
398 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
399
400 commit c253122395753abb9e531d8906c5265dc8803fb1
401 Author: Peter Tyser <ptyser@xes-inc.com>
402 Date: Wed Nov 11 10:36:28 2009 -0600
403
404 Move do_irqinfo() to common/cmd_irq.c
405
406 cmd_irq.c is a much better home and it is already conditionally
407 compiled based on CONFIG_CMD_IRQ.
408
409 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
410
411 commit a5dd4dc64fe68e549c5ffcf6a048281b5ba94752
412 Author: Peter Tyser <ptyser@xes-inc.com>
413 Date: Wed Nov 11 10:36:19 2009 -0600
414
415 cmd_license: Remove unneeded #ifdef CONFIG_CMD_LICENSE
416
417 cmd_license is already conditionally compiled at the Makefile-level.
418
419 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
420
421 commit 06015146a15adc7455440c491d543f6a8091551d
422 Author: Peter Tyser <ptyser@xes-inc.com>
423 Date: Mon Nov 9 15:18:52 2009 -0600
424
425 m41t11: Remove unused functions
426
427 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
428
429 commit 9ef78511cda39987e5fc10febf386fd19f58ecf7
430 Author: Peter Tyser <ptyser@xes-inc.com>
431 Date: Mon Nov 9 15:17:50 2009 -0600
432
433 circbuf: Move to lib_generic and conditionally compile
434
435 circbuf could be used as a generic library and is only currently
436 needed when CONFIG_USB_TTY is defined.
437
438 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
439
440 commit 604f7ce55ad74694ef8743ad2e99933dc0265e46
441 Author: Sanjeev Premi <premi@ti.com>
442 Date: Mon Nov 9 22:43:00 2009 +0530
443
444 Fix build failure in examples/standalone
445
446 Some versions of 'make' do not handle trailing white-spaces
447 properly. Trailing spaces in ELF causes a 'fake' source to
448 be added to the variable COBJS; leading to build failure
449 (listed below). The problem was found with GNU Make 3.80.
450
451 Using text-function 'strip' as a workaround for the problem.
452
453 make[1]: Entering directory `/home/sanjeev/u-boot/examples/standalone'
454 arm-none-linux-gnueabi-gcc -g -Os -fno-common -ffixed-r8 -msoft-float
455 -D__KERNEL__ -DTEXT_BASE=0x80e80000 -I/home/sanjeev/u-boot/include
456 -fno-builtin -ffreestanding -nostdinc -isystem /opt/codesourcery/2009q1-
457 203/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -pipe -DCONFIG_
458 ARM -D__ARM__ -marm -mabi=aapcs-linux -mno-thumb-interwork -march=armv5
459 -Wall -Wstrict-prototypes -fno-stack-protector -g -Os -fno-common -ff
460 ixed-r8 -msoft-float -D__KERNEL__ -DTEXT_BASE=0x80e80000 -I/home/sanje
461 ev/u-boot/include -fno-builtin -ffreestanding -nostdinc -isystem /opt/co
462 desourcery/2009q1-203/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/includ
463 e -pipe -DCONFIG_ARM -D__ARM__ -marm -mabi=aapcs-linux -mno-thumb-inte
464 rwork -march=armv5 -I.. -Bstatic -T u-boot.lds -Ttext 0x80e80000 -o .c
465 arm-none-linux-gnueabi-gcc: no input files
466 make[1]: *** [.c] Error 1
467 make[1]: Leaving directory `/home/sanjeev/u-boot/examples/standalone'
468 make: *** [examples/standalone] Error 2
469 premi #
470
471 Signed-off-by: Sanjeev Premi <premi@ti.com>
472
473 Fixed typo (s/ElF/ELF/).
474 Signed-off-by: Wolfgang Denk <wd@denx.de>
475
476 commit af860962b544ddf323c4ff68454f00d31e44df0a
477 Author: Becky Bruce <beckyb@kernel.crashing.org>
478 Date: Wed Nov 4 18:30:08 2009 -0600
479
480 85xx: Remove unused CONFIG_ASSUME_AMD_FLASH from config files
481
482 A bunch of the 85xx boards have this cruft in them - it's not used
483 anywhere. Delete it.
484
485 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
486
487 commit deec1fbd4f704dded2e668bb9e368631981ea139
488 Author: Wolfgang Denk <wd@denx.de>
489 Date: Wed Dec 2 22:26:30 2009 +0100
490
491 MAINTAINERS: update responsible for MPC85xx/86xx
492
493 Signed-off-by: Wolfgang Denk <wd@denx.de>
494 Cc: Kumar Gala <galak@kernel.crashing.org>
495 Cc: Becky Bruce <beckyb@kernel.crashing.org>
496
497 commit 824d82997fbcf28e49081d36fdd5d3be1b92b03d
498 Author: Ira W. Snyder <iws@ovro.caltech.edu>
499 Date: Wed Nov 4 13:37:59 2009 -0800
500
501 Fix example FIT image source files
502
503 The example FIT image source files do not compile with the latest dtc and
504 mkimage. The following error message is produced:
505
506 DTC: dts->dtb on file "kernel.its"
507 Error: kernel.its 7:0 - 1:0 syntax error
508 FATAL ERROR: Unable to parse input tree
509 ./mkimage: Can't read kernel.itb.tmp: Invalid argument
510
511 The FIT image source files are missing the "/dts-v1/;" directive at the
512 beginning of the file. Add the directive to the examples.
513
514 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
515
516 commit fd66066ee3ce15c2966feb9b2be0f0d51a95db48
517 Author: Mike Frysinger <vapier@gentoo.org>
518 Date: Wed Nov 4 16:13:19 2009 -0500
519
520 img2srec: use standard types
521
522 The img2srec code creates a lot of typedefs with common names. These
523 easily clash with system headers that include these typedefs (like mingw).
524
525 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
526
527 commit 8204e068110e8abe5db9c3b7df9971b58cda8f26
528 Author: Mike Frysinger <vapier@gentoo.org>
529 Date: Wed Nov 4 16:03:25 2009 -0500
530
531 tools: gitignore *.exe binaries
532
533 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
534
535 commit 425d3b666eee5c58fdb82fb894a535dd71782a05
536 Author: Peter Tyser <ptyser@xes-inc.com>
537 Date: Tue Nov 3 23:31:07 2009 -0600
538
539 ppc: Move conditional compilation of kgdb.c to Makefile
540
541 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
542
543 commit e06ab6546b332acc55ac4e7c31338662328b0fb3
544 Author: Mike Frysinger <vapier@gentoo.org>
545 Date: Tue Nov 3 11:36:39 2009 -0500
546
547 spi_flash.h: pull in linux/types.h for u## types
548
549 commit 0008555f4d57c15ad86ee735861ca0d783042f61
550 Author: Mike Frysinger <vapier@gentoo.org>
551 Date: Tue Nov 3 11:36:26 2009 -0500
552
553 bootm: mark local boot_os[] table static
554
555 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
556
557 commit a8fa379d47f06c7d3ed75c8fb26ae43ee38e1fd7
558 Author: Nishanth Menon <nm@ti.com>
559 Date: Mon Nov 2 09:40:18 2009 -0600
560
561 mkconfig: deny messed up ARCH definition
562
563 Refuse to setup a platform if the command line ARCH= is not the same
564 as the one required for the board. This prevents any user with
565 prehistoric aliases from messing up their builds.
566
567 Reported in thread:
568 http://old.nabble.com/-U-Boot--Build-breaks-on-some-OMAP3-configs-to26132721.html
569
570 Inputs from: Mike Frysinger and Wolfgang Denk:
571 http://lists.denx.de/pipermail/u-boot/2009-November/063642.html
572
573 Cc: Wolfgang Denk <wd@denx.de>
574 Cc: Mike Frysinger <vapier@gentoo.org>
575 Cc: Anand Gadiyar <gadiyar@ti.com>
576 Cc: Dirk Behme <dirk.behme@googlemail.com>
577 Signed-off-by: Nishanth Menon <nm@ti.com>
578
579 commit 67b96e87da1b84660fa1e5b78cc760246d116814
580 Author: Remy Bohmer <linux@bohmer.net>
581 Date: Wed Oct 28 22:13:39 2009 +0100
582
583 Repair the 'netretry=once' option.
584
585 'netretry = once' does the same as 'netretry = yes', because it is not stored
586 when it was tried once.
587
588 Signed-off-by: Remy Bohmer <linux@bohmer.net>
589 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
590
591 commit b25e38fc36e13fa8037fa4d37fe909d1d6e6f372
592 Author: Remy Bohmer <linux@bohmer.net>
593 Date: Thu Oct 29 14:24:22 2009 +0100
594
595 Repair build fail in case CONFIG_PPC=n and CONFIG_FIT=y
596
597 Signed-off-by: Remy Bohmer <linux@bohmer.net>
598
599 commit 01826abc02ce160501534788e63629ccbe31b05c
600 Author: Grazvydas Ignotas <notasas@gmail.com>
601 Date: Thu Nov 12 11:46:07 2009 +0200
602
603 OMAP3: pandora: fix booting without serial attached
604
605 When the board is booted without serial cable attached (which
606 is how most of them will be used) UART RX is left floating and
607 sometimes picks noise, which interrupts countdown and enters
608 U-Boot prompt instead of booting the kernel.
609
610 Fix this by setting up internal pullup on UART RX pin. This
611 does not prevent serial from working as the internal pullup
612 is weak.
613
614 Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
615
616 commit 41dfd8a60324243dbe2dc313a607910824a68aa7
617 Author: Remy Bohmer <linux@bohmer.net>
618 Date: Wed Oct 28 22:13:37 2009 +0100
619
620 Add support for CS2 dataflash for Atmel-SPI.
621
622 The only missing chipselect line support is CS2, and I need it on
623 CS2...
624
625 Signed-off-by: Remy Bohmer <linux@bohmer.net>
626
627 commit faf36c1437c95e4a86835633d9801c5f6396a3c7
628 Author: Remy Bohmer <linux@bohmer.net>
629 Date: Wed Oct 28 22:13:36 2009 +0100
630
631 Fix mingw tools build
632
633 mkimage does not build due to missing strtok_r() and getline() implementation
634
635 Signed-off-by: Remy Bohmer <linux@bohmer.net>
636
637 commit 6a590c5f5fd12cdd27f3153522acfac3854590e7
638 Author: Remy Bohmer <linux@bohmer.net>
639 Date: Wed Oct 28 22:13:35 2009 +0100
640
641 Building of FIT images does not work.
642
643 The type is not set for generation of the FIT images, resulting
644 in no images being created without printing or returning an error
645
646 Signed-off-by: Remy Bohmer <linux@bohmer.net>
647
648 commit 0a7691e820e33b23f61c6ea0ef6fa72099d1a6ae
649 Author: Renato Andreola <renato.andreola@imagos.it>
650 Date: Mon Nov 23 16:45:14 2009 -0500
651
652 Nios2: do_boom_linux(): kernel gunzip input data integrity problem due to
653 missing cache flush.
654
655 Added instruction and data caches flush.
656
657 Signed-off-by: Scott McNutt <smcnutt@psyent.com>
658
659 commit de03825386eaedb5e17261dd87cde86e9a764ba9
660 Author: Scott McNutt <smcnutt@psyent.com>
661 Date: Mon Nov 23 16:29:40 2009 -0500
662
663 Nios2: Fix compiler warnings in lib_nios2/board.c (unused variables)
664
665 Signed-off-by: Scott McNutt <smcnutt@psyent.com>
666
667 commit 57baa379cf2f67df89a5c6052767fd25daff20bd
668 Author: Scott McNutt <smcnutt@psyent.com>
669 Date: Mon Nov 23 15:54:25 2009 -0500
670
671 Nios2/Nios: Remove unnecessary (residual) linker Nios command scripts from
672 the standalone examples.
673
674 Signed-off-by: Scott McNutt <smcnutt@psyent.com>
675
676 commit fcffb680e77fcb48598d4a9944dbe2d4503170e0
677 Author: Mike Frysinger <vapier@gentoo.org>
678 Date: Wed Oct 14 19:28:03 2009 -0400
679
680 sf: fix stmicro offset setup while erasing
681
682 Reported-by: Peter Gombos <gombos@protecta.hu>
683 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
684
685 commit d394a7795027d96ca55799df40bd5c4a13dbeebe
686 Author: Jason McMullan <mcmullan@netapp.com>
687 Date: Fri Oct 9 17:12:23 2009 -0400
688
689 sf: new driver for Winbond W25X16/32/64 devices
690
691 Signed-off-by: Jason McMullan <jason.mcmullan@gmail.com>
692 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
693
694 commit cada315100c88894b85972a91309a6f2413966b6
695 Author: Marcel Ziswiler <marcel@ziswiler.com>
696 Date: Thu Oct 1 23:55:17 2009 +0200
697
698 mpc8260: move FDT memory node fixup into common CPU code.
699
700 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
701 Tested-by: Heiko Schocher <hs@denx.de>
702
703 commit f2cea405f83da46b72098ea874fb3eefe185d312
704 Author: Po-Yu Chuang <ratbert.chuang@gmail.com>
705 Date: Wed Sep 23 15:52:35 2009 +0800
706
707 Add driver for FTRTC010 real time clock
708
709 Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
710
711 Edited commit message.
712 Signed-off-by: Wolfgang Denk <wd@denx.de>
713
714 commit c0356a88011330646e960dfac8a2c909bede3304
715 Author: Mark Jackson <mpfj-list@mimc.co.uk>
716 Date: Mon Aug 17 16:42:52 2009 +0100
717
718 MIMC200: set default fbmem value
719
720 This patch adds a default bootargs "fbmem" value to the
721 CONFIG_BOOTARGS string for the MIMC200 board.
722
723 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
724
725 commit 3ffc0d61bad7d986e344ce7062b37c5c8f04fb0e
726 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
727 Date: Tue Oct 27 19:58:09 2009 +0100
728
729 ppc4xx: Initialize magnetic coupler on VOM405 boards
730
731 This patch fixes an ugly behavior of the IL712 magnetic coupler
732 as used on VOM405. These parts will remember their last state
733 over a power cycle which might cause unwanted behavior.
734
735 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
736 Signed-off-by: Stefan Roese <sr@denx.de>
737
738 commit be0db3e3141c6c6b4e232b51091f35a284cc54e5
739 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
740 Date: Mon Oct 26 09:58:45 2009 +0100
741
742 ppc4xx: Initialize magnetic couplers in PLU405
743
744 This patch fixes an ugly behavior of the IL712 magnetic couplers
745 as used on PLU405. These parts will remember their last state
746 over a power cycle which might cause unwanted behavior.
747
748 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
749 Signed-off-by: Stefan Roese <sr@denx.de>
750
751 commit 067f54c66acd469870ef6946e1591bfcc02de1b3
752 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
753 Date: Mon Oct 26 09:55:40 2009 +0100
754
755 Add minimal SJA1000 header for basic CAN mode
756
757 This patch is in preparation for the upcoming PLU405 board fix.
758
759 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
760 Signed-off-by: Stefan Roese <sr@denx.de>
761
762 commit cdbdbe65f5f006cba208accee5a126c659d4b867
763 Author: Kumar Gala <galak@kernel.crashing.org>
764 Date: Fri Nov 13 08:52:21 2009 -0600
765
766 ppc/85xx: Fix how we determine the number of CAM entries
767
768 We were incorrectly use the max CAM size as the number of entries in
769 the array for setting up the addrmap. We should be using the NENTRY
770 field which is the low 12-bits of TLB1CFG.
771
772 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
773
774 commit fbd47b6753b08162436d9ccad1e63c8d43ede54c
775 Author: Mike Rapoport <mike@compulab.co.il>
776 Date: Thu Nov 12 15:35:08 2009 +0200
777
778 smc911x: make smc911x_initialize return correct value
779
780 Make smc911x_initialize return -1 on error and number of interfaces
781 detected otherwise.
782
783 Signed-off-by: Mike Rapoport <mike@compulab.co.il>
784 Acked-by: Mike Frysinger <vapier@gentoo.org>
785 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
786
787 commit c44efcf97b335dcef7d014f65b7d3094e79adb13
788 Author: Mike Frysinger <vapier@gentoo.org>
789 Date: Thu Nov 12 22:26:02 2009 -0500
790
791 smc911x_eeprom: fix building after smc911x overhaul
792
793 When the smc911x driver was converted to NET_MULTI, the smc911x eeprom was
794 missed. The config option needed updating as well as overhauling of the
795 rergister read/write functions.
796
797 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
798 Tested-by: Mike Rapoport <mike.rapoport@gmail.com>
799 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
800
801 commit 3ad95deb30ac73bd57e966d321215a17d3236f9f
802 Author: Dave Liu <daveliu@freescale.com>
803 Date: Thu Nov 12 07:26:37 2009 +0800
804
805 fsl-ddr: Fix the chip-select interleaving issue
806
807 commit 1542fbdeec0d1e2a6df13189df8dcb1ce8802be3
808 introduced one new bug to chip-select interleaving.
809
810 Single DDR controller also can do the chip-select
811 interleaving if there is dual-rank or qual-rank DIMMs.
812
813 Signed-off-by: Dave Liu <daveliu@freescale.com>
814 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
815
816 commit 651ef90fa6ca824c8e581aeef9e04bbbe7f7e9ce
817 Author: javier Martin <javier.martin@vista-silicon.com>
818 Date: Thu Oct 29 08:22:43 2009 +0100
819
820 mxc_fec: avoid free() calls to already freed pointers.
821
822 Sometimes, inside NetLoop, eth_halt() is called before eth_init() has
823 been called. This is harmless except for free() calls to pointers
824 which have not been allocated yet.
825
826 This patch initializes those pointers to NULL and allocates them only
827 the first time. This way we can get rid of free calls in halt callback.
828
829 This has been tested in i.MX27 Litekit board and eldk-4.2 toolchains.
830
831 Signed-off-by: Javier Martin <javier.martin@vista-silicon.com>
832 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
833
834 commit e8f1546a88b4ade6a910c4a7958a774ee1b40023
835 Author: javier Martin <javier.martin@vista-silicon.com>
836 Date: Thu Oct 29 08:18:34 2009 +0100
837
838 mxc_fec: fix some erroneous PHY accesses.
839
840 This patch fixes erroneous access to the ethernet PHY which broke the driver.
841 1. Selector field in the auto-negotiation register must be 0x00001 for
842 using 802.3, not 0x00000 which is reseved.
843 2. Access to the PHY address specified by CONFIG_FEC_MXC_PHYADDR, not
844 0x0 fixed address.
845
846 This has been tested in i.MX27 Litekit board and eldk-4.2 toolchains.
847
848 Now using proper defines for auto-negotiation register.
849
850 Signed-off-by: Javier Martin <javier.martin@vista-silicon.com>
851 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
852
853 commit f865fcbbb35851e75fee9c3a3fa8e0f71d9e6463
854 Author: Ron Lee <ron@debian.org>
855 Date: Wed Aug 5 20:14:01 2009 +0200
856
857 ARM Don't inline weak symbols
858
859 ------------------------------------------------------------------------
860
861 GCC 4.4 complains about this now.
862
863 Signed-off-by: Ron Lee <ron@debian.org>
864
865 commit d14c7ec2b51fb92c4a5218b299b772c3d186510d
866 Author: Ben Warren <biggerbadderben@gmail.com>
867 Date: Mon Nov 9 13:09:57 2009 -0800
868
869 Fix SMC91111 regression: lpd7a40x build failures
870
871 Both lpd7a400 and lpd7a404 failed to compile because they had
872 CONFIG_SMC_USE_IOFUNCS defined:
873
874 examples/standalone/smc91111_eeprom.c:388: undefined reference to `SMC_outw'
875
876 Also removed an orphaned paren in lpd7a404.h
877
878 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
879
880 commit 1031ae960ce6ce8332190278a06e2d72c2b2793e
881 Author: Ben Warren <biggerbadderben@gmail.com>
882 Date: Mon Nov 9 14:01:08 2009 -0800
883
884 SMC91111: Clean up SMC_inx macros on xsengine and xaeniax
885
886 This patch fixes the following warnings:
887
888 Configuring for xaeniax board...
889 smc91111_eeprom.c: In function 'print_macaddr':
890 smc91111_eeprom.c:278: warning: suggest parentheses around + or - in operand of &
891 smc91111_eeprom.c:281: warning: suggest parentheses around + or - in operand of &
892 ...
893 Configuring for xsengine board...
894 smc91111_eeprom.c: In function 'print_macaddr':
895 smc91111_eeprom.c:278: warning: suggest parentheses around + or - inside shift
896 smc91111_eeprom.c:281: warning: suggest parentheses around + or - inside shift
897
898 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
899
900 commit 830c7b6722c6a9762411bf52a7bf2fae4dc71dab
901 Author: Ben Warren <biggerbadderben@gmail.com>
902 Date: Mon Nov 9 11:43:18 2009 -0800
903
904 Fix CS8900 regression on impa7 board
905
906 The following error was seen on impa7 board, due to its use of a 32-bit bus
907 on CS8900.
908 cs8900.c:137:37: error: macro "get_reg_init_bus" passed 2 arguments, but takes just 1
909
910 This patch gives the macro the correct number of arguments
911
912 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
913
914 commit e5c5d9e0834bacf1c4787fa76cc4e369f2597cf5
915 Author: Mike Frysinger <vapier@gentoo.org>
916 Date: Sun Nov 1 22:39:56 2009 -0500
917
918 clarify eth driver halt/recv steps
919
920 The dev->halt() func can be called at any time, and the dev->recv() func
921 does not need to use NetRxPackets[] when calling NetReceive().
922
923 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
924 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
925
926 commit 497ab0eec5e1e2dfccc141a4485cd6b940e1424a
927 Author: Hui.Tang <zetalabs@gmail.com>
928 Date: Thu Nov 5 09:58:44 2009 +0800
929
930 Fix cs8900 dev->priv not init issue
931
932 Ensure all CS8900 data structures are assigned before accessing device
933
934 Signed-off-by: Hui.Tang <zetalabs@gmail.com>
935 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
936
937 commit 4fe5193d464ecdac26ddc71b1351be5b86bbff29
938 Author: Stefan Roese <sr@denx.de>
939 Date: Tue Nov 3 14:34:45 2009 +0100
940
941 ppc4xx: 44x_spd_ddr2.c: Fix register macro ECCCR -> ECCES (SDRAM_ECCES)
942
943 This error only appears when DEBUG is enabled in this driver. That's why
944 it went unnoticed till now.
945
946 Signed-off-by: Stefan Roese <sr@denx.de>
947
948 commit 916ed9444d3ab7b5cd6312557005f2a764a8baf7
949 Author: Stefan Roese <sr@denx.de>
950 Date: Thu Oct 29 18:37:45 2009 +0100
951
952 ppc4xx: Canyonlands: Change EBC bus config to drive always (no high-z)
953
954 This patch fixes a problem only seen very occasionally on Canyonlands.
955 The NOR flash interface (CFI driver) doesn't work reliably in all cases.
956 Erasing and/or programming sometimes doesn't work. Sometimes with
957 an error message, like "flash not erased" when trying to program an
958 area that should have just been erased. And sometimes without any error
959 messages. As mentioned above, this problem was only seen rarely and with
960 some PLL configuration (CPU speed, EBC speed).
961
962 Now I spotted this problem a few times, when running my Canyonlands with
963 the following setup (chip_config):
964
965 1000-nor - NOR CPU:1000 PLB: 200 OPB: 100 EBC: 100
966
967 Changing the EBC configuration to not release the bus into high
968 impedance state inbetween the transfers (ATC, DTC and CTC bits set to 1
969 in EBC0_CFG) seems to fix this problem. I haven't seen any failure
970 anymore with this patch applied.
971
972 Signed-off-by: Stefan Roese <sr@denx.de>
973 Cc: David Mitchell <dmitchell@amcc.com>
974 Cc: Jeff Mann <MannJ@embeddedplanet.com>
975
976 commit 25793f76bf9a7be59c9415ef0f78d034e8d53dae
977 Author: Remy Bohmer <linux@bohmer.net>
978 Date: Thu Oct 29 12:29:37 2009 +0100
979
980 ARM: Use Linux version for unaligned access code
981
982 The asm-arm/unaligned.h includes linux/unaligned/access_ok.h
983 This file is unsafe to be used on ARM, since it does an unaligned memory
984 accesses which fails on ARM.
985
986 Lookin at Linux the basic difference seems to be the header
987 "include/asm-arm/unaligned.h". The Linux version of "unaligned.h"
988 does *not* include "access_ok.h" at all. It includes "le_byteshift.h"
989 and "be_byteshift.h" instead.
990
991 Signed-off-by: Remy Bohmer <linux@bohmer.net>
992 Signed-off-by: Stefan Roese <sr@denx.de>
993 --
994 include/asm-arm/unaligned.h | 3 -
995 include/linux/unaligned/be_byteshift.h | 70 +++++++++++++++++++++++++++++++++
996 include/linux/unaligned/le_byteshift.h | 70 +++++++++++++++++++++++++++++++++
997 3 files changed, 142 insertions(+), 1 deletion(-)
998 create mode 100644 include/linux/unaligned/be_byteshift.h
999 create mode 100644 include/linux/unaligned/le_byteshift.h
1000
1001 commit 6d6e7c53d5c75e5e24841c5506f4ed9d82adee09
1002 Author: Kumar Gala <galak@kernel.crashing.org>
1003 Date: Wed Nov 4 18:02:10 2009 -0600
1004
1005 ppc/85xx: Fix inclusion of 83xx immap in 85xx builds
1006
1007 The nand_boot_fsl_elbc.c is shared between 83xx & 85xx however we should
1008 not be including the immap_83xx.h when building 85xx. We can just get
1009 this all from common.h
1010
1011 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1012
1013 commit 107b579c75256212d4bf8b99ee8d68e0078f3646
1014 Author: Becky Bruce <beckyb@kernel.crashing.org>
1015 Date: Wed Nov 4 17:34:04 2009 -0600
1016
1017 86xx: Remove redundant code in initdram
1018
1019 The same code exists both inside an #ifdef and outside of it.
1020 Remove the extra code for all the 86xx boards.
1021
1022 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
1023 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1024
1025 commit 715d8f7608f77c93f1807a032644893fd5b6d08b
1026 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
1027 Date: Mon Nov 2 09:05:49 2009 -0600
1028
1029 fsl_pci_init_port end-point initialization is broken
1030
1031 commit 70ed869e broke fsl pcie end-point initialization.
1032 Returning 0 is not correct. The function must return the first free
1033 bus number for the next controller.
1034
1035 fsl_pci_init() must still be called and a bus allocated even if the
1036 controller is an end-point.
1037
1038 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
1039 Acked-by: Vivek Mahajan <vivek.mahajan@freescale.com>
1040 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1041
1042 commit 01471d538fb163f472a769f21267d7676c91267c
1043 Author: Kumar Gala <galak@kernel.crashing.org>
1044 Date: Wed Nov 4 01:29:04 2009 -0600
1045
1046 Revert "ppc/85xx/pci: fsl_pci_init: pcie agent mode support"
1047
1048 This reverts commit 70ed869ea5f6b1d13d7b140c83ec0dcd8a127ddc.
1049
1050 There isn't any need to modify the API for fsl_pci_init_port to pass the
1051 status of host/agent(end-point) status. We can determine that
1052 internally to fsl_pci_init_port. Revert the patch that makes the API
1053 change.
1054
1055 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1056
1057 commit ff88229549e08fdd3f9127c1cc4db11a3576250f
1058 Author: Dave Liu <daveliu@freescale.com>
1059 Date: Sat Oct 31 07:59:55 2009 +0800
1060
1061 ppc/85xx: Fix misc L2 cache enabling bug
1062
1063 We need loop-check the flash clear lock and enable bit for L2 cache.
1064
1065 Signed-off-by: Dave Liu <daveliu@freescale.com>
1066 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1067
1068 commit 59434fe243962758742af5cb8e2ced976e17c302
1069 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1070 Date: Fri Oct 30 10:16:27 2009 +0900
1071
1072 sh: Update lowlevel_init.S of espt-giga
1073
1074 There was the point that did not use write macro.
1075 Change to write macro.
1076
1077 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1078
1079 commit f1cae1969d9e971fb72827a5731ce7e752464aa2
1080 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1081 Date: Fri Oct 30 10:01:25 2009 +0900
1082
1083 sh: Move some defs to convince 'pcrel too far'
1084
1085 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1086 Signed-off-by: Takashi Yoshii <yoshii.takashi@gmail.com>
1087
1088 commit 0f9eaf4b323ea0ca95944b84c7465b81ba575514
1089 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1090 Date: Thu Oct 15 13:36:34 2009 +0900
1091
1092 sh: Remove malloc_bin_reloc from lib_sh, lib_nios2 and lib_nios.
1093
1094 By "arm/microblaze/nios/nios2/sh: Remove relocation fixups"
1095 (commit: 0630535e2d062dd73c1ceca5c6125c86d1127a49", doesn't need
1096 malloc_bin_reloc function. This commit remove this.
1097
1098 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1099
1100 commit 0775437293a6963cb21244dfae6978cbf67c6bfe
1101 Author: Ben Warren <biggerbadderben@gmail.com>
1102 Date: Wed Oct 21 21:53:39 2009 -0700
1103
1104 Fix DM9000 MAC address handling
1105
1106 Proper behavior is to pull MAC address from NVRAM in the initialization() an
1107 stuff it in dev->address, then program the device from dev->address in
1108 the init() function.
1109
1110 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1111
1112 commit 98d92d8c9f4021629a45261ad5ec3f3595f3a27a
1113 Author: Wolfgang Denk <wd@denx.de>
1114 Date: Wed Oct 28 22:07:56 2009 +0100
1115
1116 sbc8349: fix incorrect comment
1117
1118 The comment for the BR0_PRELIM port size initialization incorrectly
1119 stated 32 bit, while it's actually 16 bit. The code is correct.
1120
1121 Reported-by: Guenter Koellner <guenter.koellner@nsn.com>
1122 Signed-off-by: Wolfgang Denk <wd@denx.de>
1123
1124 commit a38f85e180a30b6225808828ded1017b1a5418c6
1125 Author: Sandeep Paulraj <s-paulraj@ti.com>
1126 Date: Wed Oct 28 11:05:03 2009 -0400
1127
1128 Fix Compliation warning for TNY-A9260 and TNY-A9G20
1129
1130 The patch fixes a compilation warning by defining
1131 CONFIG_SYS_64BIT_VSPRINTF in the config file
1132
1133 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1134
1135 commit 264e42ee54f1d322805d9068168fd362b413fd09
1136 Author: Sandeep Paulraj <s-paulraj@ti.com>
1137 Date: Wed Oct 28 11:04:53 2009 -0400
1138
1139 Fix Compliation warning for SBC35-A9G20 board
1140
1141 The patch fixes a compilation warning by defining
1142 CONFIG_SYS_64BIT_VSPRINTF in the config file
1143
1144 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1145
1146 commit 353462f6ff9769091fb644d44d8025f20a4192d9
1147 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
1148 Date: Wed Oct 28 09:37:33 2009 -0500
1149
1150 galaxy5200: Add default environment variables
1151
1152 Extend bootdelay to 10 seconds. Set boot retry time to 120 seconds and use
1153 reset to retry. Define default bootcommand and bootargs for production.
1154
1155 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
1156
1157 commit fa36ae790eb10ce70935f9a78f07703719dca422
1158 Author: Stefan Roese <sr@denx.de>
1159 Date: Tue Oct 27 15:15:55 2009 +0100
1160
1161 cfi: Add weak default function for flash_cmd_reset()
1162
1163 Currently the CFI driver issues both AMD and Intel reset commands.
1164 This is because the driver doesn't know yet which chips are connected.
1165 This dual reset seems to cause problems with the M29W128G chips as
1166 reported by Richard Retanubun. This patch now introduces a weak default
1167 function for the CFI reset command, still with both resets. This can
1168 be overridden by a board specific version if necessary.
1169
1170 Signed-off-by: Stefan Roese <sr@denx.de>
1171 Cc: Richard Retanubun <RichardRetanubun@ruggedcom.com>
1172
1173 commit 4946775c6db52dba28f72ba3525764b54f1d4593
1174 Author: Wolfgang Denk <wd@denx.de>
1175 Date: Wed Oct 28 00:49:47 2009 +0100
1176
1177 Coding Style cleanup; update CHANGELOG, prepare -rc1
1178
1179 Signed-off-by: Wolfgang Denk <wd@denx.de>
1180
1181 commit 246c69225c7b962d5c93e92282b78ca9fc5fefee
1182 Author: Peter Tyser <ptyser@xes-inc.com>
1183 Date: Sun Oct 25 15:12:56 2009 -0500
1184
1185 Add 'editenv' command
1186
1187 The editenv command can be used to edit an environment variable.
1188 Editing an environment variable is useful when one wants to tweak an
1189 existing variable, for example fix a typo or change the baudrate in the
1190 'bootargs' environment variable.
1191
1192 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1193
1194 commit b0fa8e50632a628766db23f5c884ec63f1469552
1195 Author: Peter Tyser <ptyser@xes-inc.com>
1196 Date: Sun Oct 25 15:12:55 2009 -0500
1197
1198 setenv(): Delete 0-length environment variables
1199
1200 Previously setenv() would only delete an environment variable if it
1201 was passed a NULL string pointer as a value. It should also delete an
1202 environment variable when it encounters a valid string pointer of
1203 0-length.
1204
1205 This change/fix is generally useful and is necessary for the upcoming
1206 "editenv" command.
1207
1208 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1209
1210 commit ecc5500ee487170d8af6ff893fd1e0082380a01a
1211 Author: Peter Tyser <ptyser@xes-inc.com>
1212 Date: Sun Oct 25 15:12:54 2009 -0500
1213
1214 readline(): Add ability to modify a string buffer
1215
1216 If the 'buf' parameter is a non-0-length string, its contents will be
1217 edited. Previously, the initial contents of 'buf' were ignored and the
1218 user entered its contents from scratch.
1219
1220 This change is necessary to support the upcoming "editenv" command but
1221 could also be used for future commands which require a user to modify
1222 an existing string.
1223
1224 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1225
1226 commit f923943843cd617d681387e7fe81a48060cc6401
1227 Author: Peter Tyser <ptyser@xes-inc.com>
1228 Date: Sun Oct 25 15:12:53 2009 -0500
1229
1230 cread_line(): Remove unused variables
1231
1232 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1233
1234 commit e491a71e578e93bd3b2f8f20d8ef8f111c98010d
1235 Author: Peter Tyser <ptyser@xes-inc.com>
1236 Date: Sun Oct 25 15:12:52 2009 -0500
1237
1238 Check for NULL prompt in readline_into_buffer()
1239
1240 Previously, passing readline() or readline_into_buffer() a NULL 'prompt'
1241 parameter would result in puts() printing garbage when
1242 CONFIG_CMDLINE_EDITING was enabled.
1243
1244 Note that no board currently triggers this bug. Enabling
1245 CONFIG_CMDLINE_EDITING on some boards (eg bab7xx) would result in
1246 the bug appearing. This change is only intended to prevent someone
1247 from running into this issue in the future.
1248
1249 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1250
1251 commit 16d1c10783660f3fdbc3c19141f42f3b0d1834d3
1252 Author: Wolfgang Denk <wd@denx.de>
1253 Date: Sun Oct 25 23:00:09 2009 +0100
1254
1255 drivers/net/phy/miiphybb.c: fix warning: no newline at end of file
1256
1257 Add missing newline.
1258
1259 Signed-off-by: Wolfgang Denk <wd@denx.de>
1260 Cc: Luigi Mantellini <luigi.mantellini@idf-hit.com>
1261 Cc: Ben Warren <biggerbadderben@gmail.com>
1262
1263 commit a747a7f31059b9069e97c78bba5496409c33aa05
1264 Author: Wolfgang Denk <wd@denx.de>
1265 Date: Tue Oct 27 00:03:32 2009 +0100
1266
1267 Revert "env: only build env_embedded and envcrc when needed"
1268
1269 Breaks building on many boards, and no really clean fix available yet.
1270
1271 This reverts commit 6dab6add2d8ee80905234b326abc3de11be1d178.
1272
1273 commit 3fca80375981fe83d4674a0267183b469a1ea7ff
1274 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1275 Date: Thu Oct 15 17:47:16 2009 +0400
1276
1277 mpc85xx: Configure QE USB for MPC8569E-MDS boards
1278
1279 Setup QE pin multiplexing for USB function, configure needed BCSRs
1280 and add some fdt fixups.
1281
1282 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1283 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1284
1285 commit 14809b6c21c89dd65abaf3fea7627fb5ea0f78a3
1286 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1287 Date: Thu Oct 15 17:47:13 2009 +0400
1288
1289 mpc85xx: Configure QE UART for MPC8569E-MDS boards
1290
1291 To make QE UART usable by Linux we should setup pin multiplexing
1292 and turn UCC2 Ethernet node into UCC2 QE UART node.
1293
1294 Also, QE UART is mutually exclusive with UART0, so we can't enable
1295 it if eSDHC is in 4-bits mode on pilot boards, or if it's a prototype
1296 board with eSDHC in 1- or 4-bits mode.
1297
1298 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1299 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1300
1301 commit 70d665b1d230b9575a647948e8db3da1e6743e5c
1302 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1303 Date: Thu Oct 15 17:47:11 2009 +0400
1304
1305 mpc85xx: Setup QE pinmux for SPI Flash on MPC8569E-MDS boards
1306
1307 SPI Flash (M25P40) is connected to the SPI1 bus, we need a few
1308 qe_iop entries to actually enable SPI1 on these boards.
1309
1310 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1311 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1312
1313 commit 65dec3b4599a17e83ec69dfd059e4ea1e795ef37
1314 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1315 Date: Thu Oct 15 17:47:09 2009 +0400
1316
1317 mpc85xx: Setup SRIO memory region LAW for MPC8569E-MDS boards
1318
1319 This patch sets memory window for Serial RapidIO on MPC8569E-MDS
1320 boards.
1321
1322 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1323 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1324
1325 commit a29155e12286cc5ec2df72c1cab28e3659bfdad5
1326 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1327 Date: Thu Oct 15 17:47:08 2009 +0400
1328
1329 mpc85xx: Add eLBC NAND support for MPC8569E-MDS boards
1330
1331 Simply add some defines, and adjust TLBe setup to include some
1332 space for eLBC NAND.
1333
1334 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1335 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1336
1337 commit 7f52ed5ef1b490da282ace3316be381a6abf96a5
1338 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1339 Date: Thu Oct 15 17:47:06 2009 +0400
1340
1341 mpc85xx: Add eSDHC support for MPC8569E-MDS boards
1342
1343 eSDHC is mutually exlusive with UART0 (in 4-bits mode) and I2C2
1344 (in 1-bit mode). When eSDHC is used, we should switch u-boot console to
1345 UART1, and make the proper device-tree fixups.
1346
1347 Because of an erratum in prototype boards it is impossible to use eSDHC
1348 without disabling UART0 (which makes it quite easy to 'brick' the board
1349 by simply issung 'setenv hwconfig esdhc', and not able to interact with
1350 U-Boot anylonger).
1351
1352 So, but default we assume that the board is a prototype, which is a most
1353 safe assumption. There is no way to determine board revision from a
1354 register, so we use hwconfig.
1355
1356 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1357 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1358
1359 commit 48618126f78f05042dae428811809b594f747eb9
1360 Author: Peter Tyser <ptyser@xes-inc.com>
1361 Date: Fri Oct 23 15:55:48 2009 -0500
1362
1363 xpedite5370: Enable multi-core support
1364
1365 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1366 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1367
1368 commit 5ccd29c3679b3669b0bde5c501c1aa0f325a7acb
1369 Author: Peter Tyser <ptyser@xes-inc.com>
1370 Date: Fri Oct 23 15:55:47 2009 -0500
1371
1372 85xx: MP Boot Page Translation update
1373
1374 This change has 3 goals:
1375 - Have secondary cores be released into spin loops at their 'true'
1376 address in SDRAM. Previously, secondary cores were put into spin
1377 loops in the 0xfffffxxx address range which required that boot page
1378 translation was always enabled while cores were in their spin loops.
1379
1380 - Allow the TLB window that the primary core uses to access the
1381 secondary cores boot page to be placed at any address. Previously, a
1382 TLB window at 0xfffff000 was always used to access the seconary cores'
1383 boot page. This TLB address requirement overlapped with other
1384 peripherals on some boards (eg XPedite5370). By default, the boot
1385 page TLB will still use the 0xfffffxxx address range, but this can be
1386 overridden on a board-by-board basis by defining a custom
1387 CONFIG_BPTR_VIRT_ADDR. Note that the TLB used to map the boot page
1388 remains in use while U-Boot executes. Previously it was only
1389 temporarily used, then restored to its initial value.
1390
1391 - Allow Boot Page Translation to be disabled on bootup. Previously,
1392 Boot Page Translation was always left enabled after secondary cores
1393 were brought out of reset. This caused the 0xfffffxxx address range
1394 to somewhat "magically" be translated to an address in SDRAM. Some
1395 boards may not want this oddity in their memory map, so defining
1396 CONFIG_MPC8xxx_DISABLE_BPTR will turn off Boot Page Translation after
1397 the secondary cores are initialized.
1398
1399 These changes are only applicable to 85xx boards with CONFIG_MP defined.
1400
1401 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1402 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1403
1404 commit 70ed869ea5f6b1d13d7b140c83ec0dcd8a127ddc
1405 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
1406 Date: Tue Oct 27 12:18:55 2009 +0530
1407
1408 ppc/85xx/pci: fsl_pci_init: pcie agent mode support
1409
1410 Originally written by Jason Jin and Mingkai Hu for mpc8536.
1411
1412 When QorIQ based board is configured as a PCIe agent, then unlock/enable
1413 inbound PCI configuration cycles and init a 4K inbound memory window;
1414 so that a PCIe host can access the PCIe agents SDRAM at address 0x0
1415
1416 * Supported in fsl_pci_init_port() after adding pcie_ep as a param
1417 * Revamped copyright in drivers/pci/fsl_pci_init.c
1418 * Mods in 85xx based board specific pci init after this change
1419
1420 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
1421 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1422
1423 commit 273a28ad9ef59dcfcd4c056ec1f61f1e0896cfaa
1424 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
1425 Date: Tue Oct 27 09:36:38 2009 +0530
1426
1427 85xx/p1_p2_rdb: Fixing DDR configuration for 800MHz data rate
1428
1429 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
1430 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1431
1432 commit 924024c396761c267b948f38d78e9905f2036501
1433 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
1434 Date: Tue Oct 27 09:26:55 2009 +0530
1435
1436 85xx/p1_p2rdb: Fix crash while configuring 32 bit DDR i/f for P1020RDB.
1437
1438 The data being modified was in NOR flash which caused the crash.
1439
1440 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
1441 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1442
1443 commit 2c0c58b92dbb68007061bdc0edd23bdf142efebf
1444 Author: Sergey Mironov <ierton@gmail.com>
1445 Date: Wed Sep 23 16:47:38 2009 +0400
1446
1447 Fix bug in jumptable call stubs for SPARC.
1448
1449 Signed-off-by: Sergey Mironov <ierton@gmail.com>
1450 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
1451
1452 commit 3e303f748cf57fb23e8ec95ab7eac0074be50e2b
1453 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1454 Date: Thu Oct 15 17:47:04 2009 +0400
1455
1456 fdt_support: Add multi-serial support for stdout fixup
1457
1458 Currently fdt_fixup_stdout() is using hard-coded CONFIG_CONS_INDEX
1459 constant. With multi-serial support, the CONS_INDEX may no longer
1460 represent actual console, so we should try to extract port number
1461 from the current stdio device name instead of always hard-coding the
1462 constant value.
1463
1464 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1465 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
1466 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1467
1468 commit da0e5f7ee828f246d85997486fff308837069453
1469 Author: Leon Woestenberg <leon.woestenberg@gmail.com>
1470 Date: Mon Oct 26 10:03:32 2009 +0100
1471
1472 ppc/85xx: Fix crashes due to generation of SPE instruction
1473
1474 U-Boot crashed on the last instruction:
1475
1476 int parse_stream_outer(struct in_str *inp, int flag)
1477 {
1478 effa4784: 94 21 ff 38 stwu r1,-200(r1)
1479 effa4788: 7c 08 02 a6 mflr r0
1480 effa478c: 42 9f 00 05 bcl- 20,4*cr7+so,effa4790 <parse_stream_outer+0xc>
1481 effa4790: 7d 80 00 26 mfcr r12
1482 effa4794: 13 c1 b3 21 evstdd r30,176(r1)
1483
1484 ...which is a SPE instruction, although -mno-spe was used.
1485
1486 tmp/cross/ppce500v2/bin/powerpc-angstrom-linux-gnuspe-gcc --version
1487 powerpc-angstrom-linux-gnuspe-gcc (GCC) 4.3.3
1488
1489 Seems to be a known issue (since 2008-04?!)
1490
1491 Googled some, turns out this patch/workaround works for me on MPC8536DS.
1492
1493 See http://gcc.gnu.org/ml/gcc-patches/2008-04/msg00311.html for more info
1494
1495 Signed-off-by: Leon Woestenberg <leon@sidebranch.com>
1496 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1497
1498 commit 654ea1f3184235694306ddc5874baa27ad3018fe
1499 Author: Dave Liu <daveliu@freescale.com>
1500 Date: Thu Oct 22 00:10:23 2009 -0500
1501
1502 ppc/85xx: Make L2 support more robust
1503
1504 According the user manual, we need loop-check the L2 enable bit set.
1505
1506 Signed-off-by: Dave Liu <daveliu@freescale.com>
1507 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1508
1509 commit 613ad28c3da4c7fc6336ef9d94993b25a5d0586e
1510 Author: Kumar Gala <galak@kernel.crashing.org>
1511 Date: Mon Oct 26 21:21:25 2009 -0500
1512
1513 ppc/85xx: Fix compiler warning in nand_spl/.../p1_p2_rdb/nand_boot.c
1514
1515 nand_boot.c: In function 'board_init_f':
1516 nand_boot.c:44: warning: 'sys_clk' may be used uninitialized in this function
1517
1518 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1519
1520 commit e8967d96a0e8d09d91a3b7bd292746996dd8e7ac
1521 Author: Kumar Gala <galak@kernel.crashing.org>
1522 Date: Mon Oct 26 21:18:33 2009 -0500
1523
1524 ppc/85xx: Fix building NAND_SPL out of tree
1525
1526 We need to source files to exist in the O=<FOO> nand_spl dir when
1527 we build out of tree.
1528
1529 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1530
1531 commit f3ee25859e3920ee7c7cc519a3e6f60d70d7a53f
1532 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
1533 Date: Fri Oct 23 10:52:38 2009 +0200
1534
1535 License cleanup: Fix license header for some esd display configurations
1536
1537 These files were autogenerated by EPSON configuration tools.
1538 This patch replaces the autogenerated file headers by the GPL
1539 license notice.
1540
1541 This change is done with the explicit permission
1542 of Epson Research & Development / IC Software Development.
1543
1544 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
1545
1546 commit 4166ee58d30ada7b298b9c941067f0341c2dccbe
1547 Author: Mike Frysinger <vapier@gentoo.org>
1548 Date: Fri Oct 9 17:12:44 2009 -0400
1549
1550 sf: add GPL-2 license info
1551
1552 Some of the new spi flash files were missing explicit license lines.
1553
1554 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1555 CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
1556
1557 commit d535a493004fb701f131b132402a7704f9c9342d
1558 Author: Kumar Gala <galak@kernel.crashing.org>
1559 Date: Wed Oct 21 23:29:51 2009 -0500
1560
1561 fdt: Fix fdt padding issue for initrd mem_rsv
1562
1563 Its possible that we end up with a device tree that happens to be a
1564 particular size that after we call fdt_resize() we don't have any
1565 space left for the initrd mem_rsv.
1566
1567 Fix this be adding a second mem_rsv into the size calculation. We
1568 had one to cover the fdt itself and we have the potential of adding
1569 a second for the initrd.
1570
1571 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1572 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
1573
1574 commit 4bc3d2afb380e78fdbb9c501d9a8da6d59eb178e
1575 Author: Steve Sakoman <sakoman@gmail.com>
1576 Date: Tue Oct 20 18:21:18 2009 +0200
1577
1578 ARM: OMAP3: Refactors the SM911x driver
1579
1580 Move the test up in the function to not hang on systems without ethernet.
1581
1582 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
1583 Acked-by: Ben Warren <biggerbadderben@gmail.com>
1584
1585 commit f3807374787e4394efb767e2e8527887f57e51b8
1586 Author: Minkyu Kang <mk7.kang@samsung.com>
1587 Date: Thu Oct 15 11:19:15 2009 +0900
1588
1589 s5pc1xx: SMDKC100: fix compile warnings
1590
1591 fix the following compile warnings
1592 warning: dereferencing type-punned pointer will break strict-aliasing rules
1593
1594 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
1595
1596 commit 8003c361deec3ee651451662efd05352f1abdd40
1597 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
1598 Date: Tue Oct 6 08:44:22 2009 +0200
1599
1600 arm926ejs: 8-byte align stack to avoid LDRD/STRD problems
1601
1602 U-boot for Marvell Kirkwood boards no longer work after the EABI changes
1603 introduced in commit f772acf8a584067033eff1e231fcd1fb3a00d3d9. This
1604 turns out to be caused by a stack alignment issue. The armv5te
1605 instructions ldrd/strd instructions require 8-byte alignment to work
1606 properly (otherwise undefined behavior).
1607
1608 Tested on an OpenRD base board, where both printouts and ubifs stuff now
1609 works.
1610
1611 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
1612
1613 commit e63e5904b48528f3f3cc98317df6fc62fab25bf9
1614 Author: Tom Rix <Tom.Rix@windriver.com>
1615 Date: Sat Oct 17 12:41:06 2009 -0500
1616
1617 TI OMAP3 SDP3430: Initial Support
1618
1619 Start of support of
1620 Texas Instruments Software Development Platform(SDP)
1621 for OMAP3430 - SDP3430
1622
1623 Highlights of this platform are:
1624 Flash Memory devices:
1625 Sibley NOR, Micron 8bit NAND and OneNAND
1626 Connectivity:
1627 3 UARTs and expanded 4 UART ports + IrDA
1628 Ethernet, USB
1629 Other peripherals:
1630 TWL5030 PMIC+Audio+Keypad
1631 VGA display
1632 Expansion ports:
1633 Memory devices plugin boards (PISMO)
1634 Connectivity board for GPS,WLAN etc.
1635 Completely configurable boot sequence and device mapping
1636 etc.
1637
1638 Support default jumpering and:
1639 - UART1/ttyS0 console(legacy sdp3430 u-boot)
1640 - UART3/ttyS2 console (matching other boards,
1641 and SDP HW docs)
1642 - Ethernet
1643 - mmc0
1644 - NOR boot
1645
1646 Currently the UART1 is enabled by default. for
1647 compatibility with other OMAP3 u-boot platforms,
1648 enable the #define of CONSOLE_J9.
1649
1650 Conflicts:
1651
1652 Makefile
1653
1654 Fixed the conflict with smdkc100_config by moving omap_sdp3430_config
1655 to it is alphabetically sorted location above zoom1.
1656
1657 Signed-off-by: David Brownell <david-b@pacbell.net>
1658 Signed-off-by: Nishanth Menon <nm@ti.com>
1659 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
1660
1661 commit a4474ff8629be5f28aefb8a9f48d4411d62fb0d2
1662 Author: Sandeep Paulraj <s-paulraj@ti.com>
1663 Date: Tue Oct 13 19:35:11 2009 -0400
1664
1665 TI DaVinci: Adding Copyright for DM365 EVM
1666
1667 Forgot to add Copyright while submitting the patch.
1668 This patch adds the copyright.
1669
1670 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1671
1672 commit 11b0102218bbb50ac5c04f1521f2a22ed4e90cf1
1673 Author: Sandeep Paulraj <s-paulraj@ti.com>
1674 Date: Tue Oct 13 12:32:32 2009 -0400
1675
1676 TI DaVinci: Fix DM6467 EVM Compilation Warning
1677
1678 Due to new TI boards being added to U-Boot, the hardware.h
1679 is getting very messy. The warning being fixed is due to
1680 the EMIF addresses being redefined.
1681
1682 The long term solution(after 2009.11) to this is to
1683 have SOC specific header files.
1684
1685 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1686
1687 commit fac1ef4ba685606bf28349d18e050ea08b50e669
1688 Author: Sandeep Paulraj <s-paulraj@ti.com>
1689 Date: Tue Oct 13 12:01:52 2009 -0400
1690
1691 TI DaVinci: DM355 Leopard: Fix compilation warning
1692
1693 We get a compliation warning when we enable the NAND driver
1694 for DM355 leopard. The waring we get is that we have
1695 an implicit declaration of davinci_nand_init.
1696
1697 It is fixed by including the asm/arch/nand_defs.h header file
1698
1699 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1700
1701 commit f8a812aa656bc34622303a26fa5003d19c34aeed
1702 Author: Nishanth Menon <nm@ti.com>
1703 Date: Tue Oct 13 12:49:55 2009 -0400
1704
1705 TI OMAP3: make gpmc_config as const
1706
1707 gpmc_config should not be a variant as it is board specific
1708 hence make it a const parameter
1709
1710 Fixes issues identified by Dirk:
1711 - build issue for zoom2
1712 - warnings for all other OMAP3 platforms using nand/onenand etc
1713
1714 Signed-off-by: Nishanth Menon <nm@ti.com>
1715
1716 commit cfc25874624a328f53ad59b1206e2103f2e62d74
1717 Author: Stefan Roese <sr@denx.de>
1718 Date: Mon Oct 19 16:19:36 2009 +0200
1719
1720 ppc4xx: Sequoia: Add chip_config command
1721
1722 This patch removes the Sequoia "bootstrap" command and replaces it
1723 with the now common command "chip_config".
1724
1725 Please note that the patches with the dynamic PCI sync clock
1726 configuration have to be applied, before this one should go in.
1727 This is because Sequoia has 2 different bootstrap EEPROMs, and
1728 the old bootstrap command configured different values depending
1729 on the detected PCI async clock (33 vs. 66MHz). With the PCI sync
1730 clock patches, this is not necessary anymore. The PCI sync clock
1731 will be configured correctly on-the-fly now.
1732
1733 Signed-off-by: Stefan Roese <sr@denx.de>
1734
1735 commit c85b58397030e25e146ccf5085c86221c40c53b3
1736 Author: Stefan Roese <sr@denx.de>
1737 Date: Mon Oct 19 14:14:08 2009 +0200
1738
1739 ppc4xx: Yosemite/Yellowstone: Check and reconfigure the PCI sync clock
1740
1741 This patch now uses the 440EP(x)/GR(x) function to check and dynamically
1742 reconfigure the PCI sync clock.
1743
1744 Signed-off-by: Stefan Roese <sr@denx.de>
1745
1746 commit 23c51a2d6393cd3be9eb62cb42d92138ff6db8a9
1747 Author: Stefan Roese <sr@denx.de>
1748 Date: Mon Oct 19 14:10:50 2009 +0200
1749
1750 ppc4xx: Sequoia/Rainer: Check and reconfigure the PCI sync clock
1751
1752 This patch now uses the 440EP(x)/GR(x) function to check and dynamically
1753 reconfigure the PCI sync clock.
1754
1755 Signed-off-by: Stefan Roese <sr@denx.de>
1756
1757 commit 08c6a2628478ace808b3767db17e4148cac5a7fb
1758 Author: Stefan Roese <sr@denx.de>
1759 Date: Mon Oct 19 14:44:11 2009 +0200
1760
1761 ppc4xx: Print PCI synchronous clock frequency upon bootup
1762
1763 Some 4xx variants (e.g. 440EP(x)/GR(x)) have an internal
1764 synchronous PCI clock. Knowledge about the currently configured
1765 value might be helpful. So let's print it out upon bootup.
1766
1767 Signed-off-by: Stefan Roese <sr@denx.de>
1768
1769 commit 5e47f9535f53fd4cc05f32fb6166870f976fbb4e
1770 Author: Stefan Roese <sr@denx.de>
1771 Date: Mon Oct 19 14:06:23 2009 +0200
1772
1773 ppc4xx: Add function to check and dynamically change PCI sync clock
1774
1775 PPC440EP(x)/PPC440GR(x):
1776 In asynchronous PCI mode, the synchronous PCI clock must meet
1777 certain requirements. The following equation describes the
1778 relationship that must be maintained between the asynchronous PCI
1779 clock and synchronous PCI clock. Select an appropriate PCI:PLB
1780 ratio to maintain the relationship:
1781
1782 AsyncPCIClk - 1MHz <= SyncPCIclock <= (2 * AsyncPCIClk) - 1MHz
1783
1784 This patch now adds a function to check and reconfigure the sync
1785 PCI clock to meet this requirement. This is in preparation for
1786 some AMCC boards (Sequoia/Rainier and Yosemite/Yellowstone) using this
1787 function to not violate the PCI clocking rules.
1788
1789 Signed-off-by: Stefan Roese <sr@denx.de>
1790
1791 commit 92b8964bed0d1b779d9e26be4e16755b5c635415
1792 Author: Stefan Roese <sr@denx.de>
1793 Date: Fri Oct 16 10:01:09 2009 +0200
1794
1795 ppc4xx: Update flash size in reg property of the NOR flash node
1796
1797 Till now only the ranges in the ebc node are updated with the values
1798 currently configured in the PPC4xx EBC controller. With this patch now
1799 the NOR flash size is updated in the device tree blob as well. This is
1800 done by scanning the compatible nodes "cfi-flash" and "jedec-flash"
1801 for the correct chip select number.
1802
1803 This size fixup is enabled for all AMCC eval board right now. Other
1804 4xx boards may want to enable it as well, if this problem with multiple
1805 NOR FLASH sizes exists.
1806
1807 Signed-off-by: Stefan Roese <sr@denx.de>
1808 Cc: Wolfgang Denk <wd@denx.de>
1809
1810 commit 30d45c0d3ea2231f9131276ea113595959a0720e
1811 Author: Stefan Roese <sr@denx.de>
1812 Date: Wed Oct 21 11:59:52 2009 +0200
1813
1814 fdt: Add fdt_fixup_nor_flash_size() to fixup NOR FLASH size in dtb
1815
1816 This function can be used to update the size in the "reg" property
1817 of the NOR FLASH device nodes. This is necessary for boards with
1818 non-fixed NOR FLASH sizes.
1819
1820 Signed-off-by: Stefan Roese <sr@denx.de>
1821 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
1822 Acked-by: Wolfgang Denk <wd@denx.de>
1823
1824 commit 76706cb86b1c76954ff5353db6757ab99cfd95fb
1825 Author: Wolfgang Denk <wd@denx.de>
1826 Date: Tue Oct 20 23:12:13 2009 +0200
1827
1828 cpu/ppc4xx/fdt.c: avoid strcpy() to constant string
1829
1830 strcpy() was iused with the target address being a pointer to a
1831 constant string, which potentially is read-only. Use a (writable)
1832 array of characters instead.
1833
1834 Signed-off-by: Wolfgang Denk <wd@denx.de>
1835 Signed-off-by: Stefan Roese <sr@denx.de>
1836
1837 commit 0e1ac981194aa0d92eff0934442cec48a4f57834
1838 Author: Wolfgang Denk <wd@denx.de>
1839 Date: Tue Oct 20 23:07:04 2009 +0200
1840
1841 cpu/ppc4xx/fdt.c: avoid strcpy() to constant string
1842
1843 strcpy() was iused with the target address being a pointer to a
1844 constant string, which potentially is read-only. Use a (writable)
1845 array of characters instead.
1846
1847 Signed-off-by: Wolfgang Denk <wd@denx.de>
1848
1849 commit c55096c084308c08bf8891c190f90bdc3a232394
1850 Author: Daniel Mack <daniel@caiaq.de>
1851 Date: Wed Apr 8 13:23:38 2009 +0200
1852
1853 smc911x: add support for LAN9220
1854
1855 Signed-off-by: Daniel Mack <daniel@caiaq.de>
1856 Cc: Sascha Hauer <s.hauer@pengutronix.de>
1857 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1858
1859 commit f67066b6b0740b826ed862615c5ab022aaf4779a
1860 Author: Mike Frysinger <vapier@gentoo.org>
1861 Date: Sun Oct 18 20:43:14 2009 -0400
1862
1863 envcrc: check return value of fwrite()
1864
1865 Newer toolchains will often complain about unchecked fwrite():
1866 envcrc.c:117: warning: ignoring return value of `fwrite´, declared
1867 with attribute warn_unused_result
1868
1869 So check the return value to silence the warnings.
1870
1871 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1872
1873 commit efd988ebaa241bab265b1511052350207cb7aaa0
1874 Author: Wolfgang Denk <wd@denx.de>
1875 Date: Mon Oct 19 09:18:57 2009 +0200
1876
1877 mcc200: fix build error
1878
1879 Fix compile error:
1880 include/configs/mcc200.h:401:6: error: #elif with no expression
1881
1882 Signed-off-by: Wolfgang Denk <wd@denx.de>
1883
1884 commit 4e0539d2696992a5e32643a0c831e870cfe9a036
1885 Author: Nishanth Menon <nm@ti.com>
1886 Date: Tue Oct 13 12:47:39 2009 -0400
1887
1888 OMAP3: fix warnings when NAND/ONENAND is not used
1889
1890 Fix build warnings by putting specific used variables
1891 under required #ifdefs for removing:
1892 mem.c:227: warning: unused variable 'f_sec'
1893 mem.c:226: warning: unused variable 'f_off'
1894 mem.c:225: warning: unused variable 'size'
1895 mem.c:224: warning: unused variable 'base'
1896 mem.c:222: warning: unused variable 'gpmc_config'
1897
1898 Signed-off-by: Nishanth Menon <nm@ti.com>
1899
1900 commit 73db0c71da365a2d101878ae3aeb8ff3545a1828
1901 Author: Nishanth Menon <nm@ti.com>
1902 Date: Tue Oct 13 12:47:24 2009 -0400
1903
1904 OMAP3: export enable_gpmc_cs_config to board files
1905
1906 Export enable_gpmc_cs_config into common header to
1907 prevent warning:
1908
1909 warning: implicit declaration of function 'enable_gpmc_cs_config'
1910
1911 Signed-off-by: Nishanth Menon <nm@ti.com>
1912
1913 commit 96a27c6dc29abf11740632ecd8ccab607b209c5d
1914 Author: Tom Rix <Tom.Rix@windriver.com>
1915 Date: Mon Oct 12 12:07:40 2009 -0400
1916
1917 Zoom2 Fix serial gpmc setup
1918
1919 The offset to the chip select is incorrect.
1920
1921 The change 187af954cf7958c24efcf0fd62289bbdb4f1f24e,
1922
1923 omap3: embedd gpmc_cs into gpmc config struct
1924
1925 introduced a problem with the serial gpmc setup.
1926
1927 This patch reverts the chip select to its previous value.
1928
1929 The symptoms of this problem are that the Zoom2
1930 currently hangs.
1931
1932 This was run tested on Zoom2.
1933
1934 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
1935
1936 commit 64d945abe8cffbacdaeca5f63b9b84f895d2d9ab
1937 Author: Sandeep Paulraj <s-paulraj@ti.com>
1938 Date: Sun Oct 11 09:10:27 2009 -0400
1939
1940 TI DaVinci Sonata: Add Config option for 64 bit Support
1941
1942 Adding the CONFIG_SYS_64BIT_VSPRINTF fot the DM644x based Sonata
1943 Without this option enabled while performing NAND operations we will get
1944 wrong diagnostic messages.
1945 Example if the MTD NAND driver find a bad block while erasing from
1946 a certain address, it will say bad block skipped at 0x00000000.
1947
1948 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1949
1950 commit 54aa603d2ce1d9374a1f5c6336362037ad2d8b51
1951 Author: Sandeep Paulraj <s-paulraj@ti.com>
1952 Date: Sun Oct 11 09:14:58 2009 -0400
1953
1954 TI DaVinci DVEVM: Add Config option for 64 bit Support
1955
1956 Adding the CONFIG_SYS_64BIT_VSPRINTF in the DVEVM config.
1957 Without this option enabled while performing NAND operations we will get
1958 wrong diagnostic messages.
1959 Example if the MTD NAND driver find a bad block while erasing from
1960 a certain address, it will say bad block skipped at 0x00000000.
1961
1962 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1963
1964 commit b8d0aa0c78b8c0fa51acada3c486b81085924b53
1965 Author: Sandeep Paulraj <s-paulraj@ti.com>
1966 Date: Sat Oct 10 10:19:20 2009 -0400
1967
1968 TI DaVinci DM365: Add Config option for 64 bit Support
1969
1970 Adding the CONFIG_SYS_64BIT_VSPRINTF in the DM365 EVM config.
1971 Without this option enabled while performing NAND operations we will get
1972 wrong diagnostic messages.
1973 Example if the MTD NAND driver find a bad block while erasing from
1974 a certain address, it will say bad block skipped at 0x00000000.
1975
1976 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1977
1978 commit 86a725b9c8b829c217be90e590f3ca2c91fa1dca
1979 Author: Sandeep Paulraj <s-paulraj@ti.com>
1980 Date: Sat Oct 10 10:18:46 2009 -0400
1981
1982 TI DaVinci DM355: Add Config option for 64 bit Support
1983
1984 Adding the CONFIG_SYS_64BIT_VSPRINTF in the DM355 EVM config.
1985 Without this option enabled while performing NAND operations we will get
1986 wrong diagnostic messages.
1987 Example if the MTD NAND driver find a bad block while erasing from
1988 a certain address, it will say bad block skipped at 0x00000000.
1989
1990 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1991
1992 commit 9c44ddccb6602f620fc037974f3e4468ad8a7c0c
1993 Author: Sandeep Paulraj <s-paulraj@ti.com>
1994 Date: Wed Sep 9 11:50:40 2009 -0400
1995
1996 TI: OMAP3: Remove SZ_xx references
1997
1998 This patch removes dependency on the sizes.h header file
1999 and removes all references to SZ_xx.
2000
2001 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2002
2003 commit 13d2cb988ff07addce6e10ab2cb8965a9dd23c63
2004 Author: Steve Sakoman <sakoman@gmail.com>
2005 Date: Sat Oct 10 14:29:37 2009 -0400
2006
2007 OMAP3: Update Overo and Beagle environment
2008
2009 Update default environment to support new kernel DSS2 subsystem and
2010 simplify rootfs type and location changes.
2011
2012 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
2013 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
2014
2015 commit c73607c5525c6957c815e64f7e865fdd3baffe98
2016 Author: Sandeep Paulraj <s-paulraj@ti.com>
2017 Date: Sat Oct 10 13:46:26 2009 -0400
2018
2019 TI DaVinci: Maintainer for DM355 and DM365 EVM
2020
2021 Adding entries to the MAINTAINERS directory for the
2022 DM355 and DM365 EVM.
2023
2024 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2025
2026 commit 5df65cf56aeef9fdeab83a259c37aa7d23836dd3
2027 Author: Sandeep Paulraj <s-paulraj@ti.com>
2028 Date: Sat Oct 10 13:37:10 2009 -0400
2029
2030 TI: DaVinci: DM355 Leopard board support
2031
2032 This patch adds support for the leopard board which is
2033 based on the DM355 SOC.
2034
2035 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2036
2037 commit 6ab176d7091d21960a1bd89fcb7fd87b9e91aca1
2038 Author: Sandeep Paulraj <s-paulraj@ti.com>
2039 Date: Sat Oct 10 12:00:47 2009 -0400
2040
2041 TI DaVinci DM646x: Adding initial support for DM6467 EVM
2042
2043 This patch adds the initial support for DM6467 EVM.
2044 Other features like NET and NAND support will be added as follow up patches.
2045
2046 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2047
2048 commit d884f64a7b8482f6c9688600e0a4731fa5678e0c
2049 Author: Sandeep Paulraj <s-paulraj@ti.com>
2050 Date: Thu Oct 1 20:22:09 2009 -0400
2051
2052 TI DaVinci DM365: Fix Compilation warning for DM365 EVM
2053
2054 This patch fixes a compilation warning while compiling
2055 the DM365 EVM.
2056
2057 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2058
2059 commit 6fe5e87be4b944edf428835210056e020c8bb794
2060 Author: Sandeep Paulraj <s-paulraj@ti.com>
2061 Date: Thu Oct 1 20:21:13 2009 -0400
2062
2063 TI DaVinci DM355: Fix Compilation warning for DM355 EVM
2064
2065 This patch fixes a compilation warning while compiling
2066 the DM355 EVM.
2067
2068 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2069
2070 commit 513bbe1b1720682e6de0aba2d9db5e60f3a428bb
2071 Author: Eric Benard <eric@eukrea.com>
2072 Date: Mon Oct 12 10:15:39 2009 +0200
2073
2074 AT91 CPUAT91 Fix compiler warning
2075
2076 This change fixes the compiler warning
2077
2078 main.c: In function 'abortboot':
2079 main.c:122: warning: too few arguments for format
2080
2081 Signed-off-by: Eric Benard <eric@eukrea.com>
2082 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
2083
2084 commit b1e81f701d044eee3884202b127d5d1f0668bdb9
2085 Author: Eric Benard <eric@eukrea.com>
2086 Date: Mon Oct 12 10:15:40 2009 +0200
2087
2088 AT91 CPU9260 CPU9G20 Fix compile warnings
2089
2090 This change fixes the compiler warning
2091
2092 nand_util.c:45:2: warning: #warning Please define CONFIG_SYS_64BIT_VSPRINTF
2093 for correct output!
2094
2095 Signed-off-by: Eric Benard <eric@eukrea.com>
2096 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
2097
2098 commit 94d50c527a3cedb6a41fbe6773256cdd1855317f
2099 Author: Eric Benard <eric@eukrea.com>
2100 Date: Mon Oct 12 10:08:20 2009 +0200
2101
2102 AT91 CPU9260 Fix machine ID when using a CPU9G20.
2103
2104 Signed-off-by: Eric Benard <eric@eukrea.com>
2105 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
2106
2107 commit 8c0a92c8f4cf399e873c2611939f3617983785a9
2108 Author: Alessandro Rubini <rubini@unipv.it>
2109 Date: Sat Oct 10 11:51:26 2009 +0200
2110
2111 lcd: remove '#if 0' 32-bit scroll, now memcpy does it
2112
2113 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
2114 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
2115
2116 commit e3ea948d4588e7efddbf0ee92147d93f827d7cea
2117 Author: Alessandro Rubini <rubini@unipv.it>
2118 Date: Sat Oct 10 11:51:16 2009 +0200
2119
2120 lib_generic memset: fill one word at a time if possible
2121
2122 If the destination is aligned, fill ulong values until possible.
2123 Then fill remaining part by byte.
2124
2125 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
2126 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
2127 Acked-by: Mike Frysinger <vapier@gentoo.org>
2128
2129 commit ecd830b863e5c6ac5d804d3b3a92453a98d526fc
2130 Author: Alessandro Rubini <rubini@unipv.it>
2131 Date: Sat Oct 10 11:51:05 2009 +0200
2132
2133 lib_generic memcpy: copy one word at a time if possible
2134
2135 If source and destination are aligned, this copies ulong values
2136 until possible, trailing part is copied by byte. Thanks for the details
2137 to Wolfgang Denk, Mike Frysinger, Peter Tyser, Chris Moore.
2138
2139 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
2140 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
2141 Acked-by: Mike Frysinger <vapier@gentoo.org>
2142
2143 commit 9c5586aa19bbedf290d2a663813404d2db87dfa5
2144 Author: Alessandro Rubini <rubini@unipv.it>
2145 Date: Thu Oct 8 14:29:14 2009 +0200
2146
2147 setenv: do console redirection even if previously unset
2148
2149 If "stdout" is not previously set, doing "setenv stdout lcd" had no
2150 effect, since console redirection only worked if the environment
2151 variable was already set; the second time you run setenv it worked.
2152 Most default environments lack stdin/out/err definitions, so I'm sure
2153 I'm not alone with this problem.
2154
2155 This patch simply moves a block of code out of a conditional, to do
2156 the same work even if the variable was previously unset.
2157
2158 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
2159 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
2160
2161 commit c9ee39972a7758e883b73c6c0e3c3a14cd5b2f43
2162 Author: Martha Stan <mmarx@silicontkx.com>
2163 Date: Wed Oct 7 04:38:46 2009 -0400
2164
2165 mpc512x: fix System Clock Control constants for USB1 & USB2
2166
2167 Signer-off-by: Martha Stan <mmarx@silicontkx.com>
2168
2169 commit 87b22b7787f397fc3daad570d711e478b1a7d253
2170 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
2171 Date: Fri Oct 2 18:18:33 2009 -0400
2172
2173 mem_mtest: fix error reporting, allow escape with ^C
2174
2175 The basic memtest function tries to watch for ^C after each
2176 pattern pass as an escape mechanism, but if things are horribly
2177 wrong, we'll be stuck in an inner loop flooding the console with
2178 error messages and never check for ^C. To make matters worse,
2179 if the user waits for all the error messages to complete, we
2180 then incorrectly report the test passed without errors.
2181
2182 Adding a check for ^C after any error is printed will give
2183 the end user an escape mechanism from a console flood without
2184 slowing down the overall test speed on a slow processor.
2185
2186 Also, the more extensive memtest quit after just a single error,
2187 which is inconsistent with the normal memtest, and not useful if
2188 if you are doing dynamic environmental impact testing, such as
2189 heating/cooling etc.
2190
2191 Both tests now track the error count and report it properly
2192 at test completion.
2193
2194 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
2195 Acked-by: Mike Frysinger <vapier@gentoo.org>
2196
2197 commit 9f4a420663419dc13f08a0ce65b93033c6172c69
2198 Author: Mike Frysinger <vapier@gentoo.org>
2199 Date: Thu Oct 1 12:11:54 2009 -0400
2200
2201 new default shortcut to config & build a board
2202
2203 The majority of the time that I build things in U-Boot, I want to just
2204 build for the board. I don't make board config tweaks after selecting the
2205 board. So add a new pattern rule that allows people to combine two steps
2206 in one go:
2207 `make foo_config && make` => `make foo`
2208
2209 This shouldn't conflict with any existing make rules as the pattern rule
2210 is used only the rule doesn't already exist.
2211
2212 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2213
2214 commit 6dab6add2d8ee80905234b326abc3de11be1d178
2215 Author: Mike Frysinger <vapier@gentoo.org>
2216 Date: Wed Sep 30 15:29:58 2009 -0400
2217
2218 env: only build env_embedded and envcrc when needed
2219
2220 The env code is protected by the ENV_IS_EMBEDDED define, so attempting to
2221 compile the code when this isn't defined is pointless. Now that the env
2222 headers have unified around CONFIG_ENV_IS_EMBEDDED, convert the build
2223 system to only build the env objects when this is enabled. And now that
2224 the env code is conditionally compiled, we can drop the source code checks.
2225
2226 For people who want to extract the environment manually, add a new option
2227 CONFIG_BUILD_ENVCRC that only enables the envcrc utility.
2228
2229 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2230
2231 commit 78f4ca7976748159080c9d920d5eb542d1b32d4f
2232 Author: Daniel Mack <daniel@caiaq.de>
2233 Date: Mon Sep 28 11:40:38 2009 +0200
2234
2235 part_dos: check status flags of partitions
2236
2237 Only read partitions which have 0x00 or 0x80 set in their status field.
2238 All others are invalid.
2239
2240 Signed-off-by: Daniel Mack <daniel@caiaq.de>
2241
2242 commit 45def0ab9d1dedcd2a73939aad8373f760498762
2243 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
2244 Date: Fri Sep 25 17:47:43 2009 -0500
2245
2246 galaxy5200: change cs1 configuration
2247
2248 Correct the chip select configuration for the nand flash chip select.
2249
2250 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
2251
2252 commit 7936b51165b519a16ecf3db302fb88df8b8b3b3d
2253 Author: Niklaus Giger <niklaus.giger@netstal.com>
2254 Date: Wed Sep 23 08:12:14 2009 +0200
2255
2256 Cleanup: use constant
2257
2258 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
2259
2260 commit 7120c888101952b7e61b9e54bb42370904aa0e68
2261 Author: Kim Phillips <kim.phillips@freescale.com>
2262 Date: Mon Oct 12 11:06:19 2009 -0500
2263
2264 mpc83xx: mpc8313 - handle erratum IPIC1 (TSEC IRQ number swappage)
2265
2266 mpc8313e erratum IPIC1 swapped TSEC interrupt ID numbers on rev. 1
2267 h/w (see AN3545). The base device tree in use has rev. 1 ID numbers,
2268 so if on Rev. 2 (and higher) h/w, we fix them up here.
2269
2270 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2271 Reviewed-by: Roland Lezuo <roland.lezuo@chello.at>
2272
2273 commit 91525c67153fcf2c19b2fc8d9c6376ac1a019f52
2274 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
2275 Date: Mon Oct 12 23:55:39 2009 +0400
2276
2277 mpc85xx: Fix booting on various boards
2278
2279 commit 0e870980a64584a591af775bb9c9fe9450124df9 ("8xxx: Removed
2280 CONFIG_NUM_CPUS from 85xx/86xx") breaks U-Boot on various boards,
2281 namely the ones that call get_sys_info() from board_early_init_f().
2282
2283 get_sys_info() calls cpu_numcores(), which depends on probecpu()
2284 being called before. But probecpu() is called after board_early_init_f(),
2285 and so cpu_numcores() returns random values, which in turn crashes
2286 get_sys_info().
2287
2288 To fix the issue we place probecpu() before board_early_init_f()
2289 in an initialization sequence.
2290
2291 Booting on the following boards should be revived now:
2292 mpc8540ads
2293 mpc8541cds
2294 mpc8548cds
2295 mpc8555cds
2296 mpc8560ads
2297 mpc8568mds
2298 mpc8569mds
2299 and maybe more.
2300
2301 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
2302 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2303
2304 commit 26df6aa9916443077139f8f008fbc5f414ba05e5
2305 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
2306 Date: Fri Oct 2 18:48:07 2009 -0400
2307
2308 mpc86xx: delete unused MPC86xx_DDR_SDRAM_CLK_CNTL define
2309
2310 This is an orphaned legacy leftover that is just polluting
2311 the config file namespace.
2312
2313 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
2314 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2315
2316 commit fad15096e3b34927444ba5f6133742d40d78a425
2317 Author: Dipen Dudhat <dipen.dudhat@freescale.com>
2318 Date: Thu Oct 8 13:33:29 2009 +0530
2319
2320 ppc/P1_P2_RDB: On-chip BootROM support
2321
2322 On Chip BootROM support for P1 and P2 series RDB platforms.
2323
2324 This patch is derived from latest On Chip BootROM support on MPC8536DS
2325
2326 Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
2327 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2328
2329 commit f7780ec977e545b83bc5068e0957d640f1d98f13
2330 Author: Dipen Dudhat <dipen.dudhat@freescale.com>
2331 Date: Thu Oct 8 13:33:18 2009 +0530
2332
2333 ppc/P1_P2_RDB: NAND Boot Support
2334
2335 NAND Boot support for P1 and P2 series RDB platforms.
2336
2337 This patch is derived from NAND Boot support on MPC8536DS.
2338
2339 Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
2340 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2341
2342 commit d11823ca3cb551814ffcd926402c8bcf3a7eff35
2343 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
2344 Date: Wed Oct 7 16:34:28 2009 -0400
2345
2346 mpc8xxx: improve LAW error messages when setting up DDR
2347
2348 When setting up the LAWs for the DDR, if there was an error,
2349 you got the not-so-helpful error text "ERROR" and nothing
2350 else. Not only is it non-informative, but it is also
2351 pretty frustrating trying to grep for "ERROR" in the source.
2352
2353 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
2354 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2355
2356 commit a9946e3fc7089ddc6b7711a44e07a6b0827b79a7
2357 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
2358 Date: Wed Sep 30 16:12:31 2009 -0400
2359
2360 sbc8641d: fix LAW so board doesn't hang on DDR init
2361
2362 All versions between now and since this commit:
2363
2364 commit bd76729bcbfd64b5d016a9b936f058931fc06eaf
2365 MPC86xx: set CONFIG_MAX_MEM_MAPPED to 2G by default
2366
2367 will fail to allow the SBC8641D to get past DDR init, because the
2368 LAW config was overlapping. Eventually this board will do SPD
2369 EEPROM config, but for now this gets the board working again.
2370
2371 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
2372 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2373
2374 commit 3d1988ab47cc0e265272967e07d747ec600a44c9
2375 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
2376 Date: Sat Oct 10 13:34:09 2009 +0900
2377
2378 Clean-up of s3c24x0 nand driver
2379
2380 This patch re-formats the arm920t s3c24x0 nand driver in preparation for changes
2381 to add support for the Embest SBC2440-II Board.
2382
2383 The changes are as follows:
2384 - re-indent the code using Lindent
2385 - make sure register layouts are defined using a C struct
2386 - replace the upper-case typedef'ed C struct names with lower case
2387 non-typedef'ed ones
2388 - make sure registers are accessed using the proper accessor functions
2389 - run checkpatch.pl and fix any error reports
2390
2391 It assumes the following patch has been applied first:
2392 - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
2393 - patches 1/4, 2/4 and 3/4 of this series
2394
2395 Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
2396 any s3c2400 or s3c2410 boards but need this patch applying before I can submit
2397 patches for the SBC2440-II Board. Also, temporarily modified sbc2410x, smdk2400,
2398 smdk2410 and trab configs to use the mtd nand driver (which isn't used by any
2399 board at the moment), ran MAKEALL for all ARM9 targets and no new warnings or
2400 errors were found.
2401
2402 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
2403 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2404
2405 commit eb0ae7f549b7142826a8bcdd2dc945fac9c36349
2406 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
2407 Date: Sat Oct 10 13:33:11 2009 +0900
2408
2409 Clean-up of s3c24x0 drivers excluding nand driver
2410
2411 This patch re-formats the arm920t s3c24x0 driver files, excluding the nand
2412 driver, in preparation for changes to add support for the Embest SBC2440-II Board.
2413
2414 The changes are as follows:
2415 - re-indent the code using Lindent
2416 - make sure register layouts are defined using a C struct
2417 - replace the upper-case typedef'ed C struct names with lower case
2418 non-typedef'ed ones
2419 - make sure registers are accessed using the proper accessor functions
2420 - run checkpatch.pl and fix any error reports
2421
2422 It assumes the following patch has been applied first:
2423 - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
2424 - patches 1/4 and 2/4 of this series
2425
2426 Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
2427 any s3c2400 or s3c2410 boards but need this patch applying before I can submit
2428 patches for the SBC2440-II Board. Also, temporarily modified sbc2410x, smdk2400,
2429 smdk2410 and trab configs to use the mtd nand driver (which isn't used by any
2430 board at the moment), ran MAKEALL for all ARM9 targets and no new warnings or
2431 errors were found.
2432
2433 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
2434 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2435
2436 commit 8250d0bae84229abea397f6b474b3556b0f04e80
2437 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
2438 Date: Sat Oct 10 13:32:01 2009 +0900
2439
2440 Clean-up of s3c24x0 header files
2441
2442 This patch re-formats the arm920t s3c24x0 header files in preparation for
2443 changes to add support for the Embest SBC2440-II Board.
2444
2445 The changes are as follows:
2446 - re-indent the code using Lindent
2447 - make sure register layouts are defined using a C struct
2448 - replace the upper-case typedef'ed C struct names with lower case
2449 non-typedef'ed ones
2450 - make sure registers are accessed using the proper accessor functions
2451 - run checkpatch.pl and fix any error reports
2452
2453 It assumes the following patch has been applied first:
2454 - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
2455 - patch 1/4 of this series
2456
2457 Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
2458 any s3c2400 or s3c2410 boards but need this patch applying before I can submit
2459 patches for the SBC2440-II Board. Also, temporarily modified sbc2410x, smdk2400,
2460 smdk2410 and trab configs to use the mtd nand driver (which isn't used by any
2461 board at the moment), ran MAKEALL for all ARM9 targets and no new warnings or
2462 errors were found.
2463
2464 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
2465 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2466
2467 commit d67cce2dda3a40c3bd90a6c6e129fbb26dd4cfab
2468 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
2469 Date: Sat Oct 10 13:30:22 2009 +0900
2470
2471 Clean-up of cpu_arm920t and cpu_arm920t_s3c24x0 code
2472
2473 This patch re-formats the code in cpu/arm920t and cpu/arm920t/23c24x0 in
2474 preparation for changes to add support for the Embest SBC2440-II Board.
2475
2476 The changes are as follows:
2477 - re-indent the code using Lindent
2478 - make sure register layouts are defined using a C struct
2479 - replace the upper-case typedef'ed C struct names with lower case
2480 non-typedef'ed ones
2481 - make sure registers are accessed using the proper accessor functions
2482 - run checkpatch.pl and fix any error reports
2483
2484 It assumes the following patch has been applied first:
2485 - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
2486
2487 Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
2488 any s3c2400 or s3c2410 boards but need this patch applying before I can submit
2489 patches for the SBC2440-II Board. Also, ran MAKEALL for all ARM9 targets and no
2490 new warnings or errors were found.
2491
2492 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
2493 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2494
2495 commit cd85662b345c0c2248fd7637f65bb2fbb4d53dd9
2496 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
2497 Date: Sun Sep 6 00:33:13 2009 +0900
2498
2499 CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards
2500
2501 This sets CONFIG_SYS_HZ to 1000 for all boards that use the s3c2400 and
2502 s3c2410 cpu's which fixes various problems such as the timeouts in tftp being
2503 too short.
2504
2505 Tested on an Embest SBC2440-II Board with local u-boot patches as I don't
2506 have any s3c2400 or s3c2410 boards but need this patch applying before I can
2507 submit patches for the SBC2440-II Board. Also, ran MAKEALL for all ARM9 targets
2508 and no new warnings or errors were found.
2509
2510 It was originally submitted on 21/06/2009 but didn't get into the 2009.08
2511 release, and Jean-Pierre made one comment on the original patch (see
2512 http://lists.denx.de/pipermail/u-boot/2009-July/055470.html). I've made two
2513 changes to the original patch:
2514 - it's been re-based to the current release
2515 - I've re-named get_timer_raw() to get_ticks() in response to Jean-Pierre's comment
2516
2517 This affects the sbc2410, smdk2400, smdk2410 and trab boards. I've copied it
2518 directly to the maintainers of all except the sbc2410 which doesn't have an
2519 entry in MAINTAINERS.
2520
2521 Signed-off-by: Kevin Morfitt <kmorfitt@aselaptop-1.localdomain>
2522 Tested-by: Wolfgang Denk <wd@denx.de>
2523 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2524
2525 commit 8bc4ee9e8213abe4031ea1720aa02fa98d4402ad
2526 Author: Minkyu Kang <mk7.kang@samsung.com>
2527 Date: Thu Oct 1 17:20:40 2009 +0900
2528
2529 s5pc1xx: add support SMDKC100 board
2530
2531 Adds new board SMDKC100 that uses s5pc100 SoC
2532
2533 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2534 Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
2535
2536 commit dd2c9e6a3b67c8ff56694e515e6e3c7baddd8f52
2537 Author: Minkyu Kang <mk7.kang@samsung.com>
2538 Date: Thu Oct 1 17:20:28 2009 +0900
2539
2540 s5pc1xx: support serial driver
2541
2542 This patch includes the serial driver for s5pc1xx.
2543 s5pc1xx uart driver needs own register setting and clock configuration.
2544 So, need to special driver.
2545
2546 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2547
2548 commit 4678d674f0cacc983dca7f6b9933cd8291c9797c
2549 Author: Minkyu Kang <mk7.kang@samsung.com>
2550 Date: Thu Oct 1 17:20:08 2009 +0900
2551
2552 s5pc1xx: support onenand driver
2553
2554 This patch includes the onenand driver for s5pc100
2555
2556 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2557 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2558
2559 commit 399e5ae0d0b2eb4663fc5784201968c07d45afac
2560 Author: Minkyu Kang <mk7.kang@samsung.com>
2561 Date: Thu Oct 1 17:20:01 2009 +0900
2562
2563 s5pc1xx: support Samsung s5pc1xx SoC
2564
2565 This patch adds support for the Samsung s5pc100 and s5pc110
2566 SoCs. The s5pc1xx SoC is an ARM Cortex A8 processor.
2567
2568 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2569 Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
2570
2571 commit d087d19a994e741f0ce526124be117c90be482ae
2572 Author: Mike Frysinger <vapier@gentoo.org>
2573 Date: Tue Oct 13 21:58:26 2009 -0400
2574
2575 Blackfin: drop MAC display at boot
2576
2577 The default Blackfin boot would display the MAC address for the first NIC,
2578 but this relies on the environment. The current net multi stack no longer
2579 writes the default hardware settings to the environment, so most of the
2580 time the display shows all zeros. This can be pretty confusing and really
2581 doesn't add anything useful, so just drop it.
2582
2583 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2584
2585 commit 1f003cf4738a199d99c818124784058526d2d40e
2586 Author: Mike Frysinger <vapier@gentoo.org>
2587 Date: Fri Oct 9 02:24:33 2009 -0400
2588
2589 Blackfin: reset watchdog in udelay()
2590
2591 All arches apparently should reset the watchdog in their udelay loop as
2592 noted on the mailing list recently:
2593
2594 > A comment in flash_status_check() suggests that udelay() is
2595 > expected to reset the watchdog, but I can't find any architecture
2596 > where it does.
2597
2598 If this is missing in other architectures, it should be fixed at the
2599 root cause, i. e. in udelay() or in the respective support routines.
2600
2601 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2602
2603 commit 370ec734557d0b0f266e6d0953229ee12cae5edd
2604 Author: Mike Frysinger <vapier@gentoo.org>
2605 Date: Fri Oct 9 02:22:11 2009 -0400
2606
2607 Blackfin: Remove relocation fixups
2608
2609 Blackfin pieces like commit 0630535e2d062dd73c1ceca5c6125c86d1127a49.
2610
2611 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2612
2613 commit a380279b2abe130c2d3d2c8de36f8ff98bc6b3b0
2614 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
2615 Date: Tue Sep 29 08:03:12 2009 +0200
2616
2617 at91: Update MEESC board support
2618
2619 This patch implements several updates:
2620 -disable CONFIG_ENV_OVERWRITE
2621 -add new hardware style variants and set the arch numbers appropriate
2622 -pass the serial# and hardware revision to the kernel
2623 -removed unused macros from include/configs/meesc.h
2624 -fixed multiline comment style
2625
2626 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
2627
2628 commit 9df20ce211576aa7ac75710dcd8d0a6236abfd70
2629 Author: Simon Kagstrom <[simon.kagstrom@netinsight.net]>
2630 Date: Thu Oct 1 19:41:50 2009 +0530
2631
2632 arm: Correct build with CONFIG_SYS_HUSH_PARSER set
2633
2634 FLAG_PARSE_SEMICOLON is not defined without hush.h, so include that.
2635
2636 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
2637 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2638
2639 commit df3826262c0efd2baec4df23d44b3942af98f5a7
2640 Author: Olof Johansson <olof@lixom.net>
2641 Date: Tue Sep 29 10:22:45 2009 -0400
2642
2643 TI: OMAP3: Overo Tobi ethernet support
2644
2645 Add setup for ethernet on Tobi, allowing kernel/ramdisk to be loaded
2646 over tftp.
2647
2648 This also refactors the smc911x driver to allow for detecting when the
2649 chip is missing. I.e. the detect_chip() function is called earlier and
2650 will abort gracefully when the Chip ID read returns all 1's.
2651
2652 Signed-off-by: Olof Johansson <olof@lixom.net>
2653 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
2654 Acked-by: Ben Warren <biggerbadderben@gmail.com>
2655
2656 commit 2a6cc97b91997ae485312ac91ffbcea6a89b663a
2657 Author: Olof Johansson <olof@lixom.net>
2658 Date: Tue Sep 29 10:21:29 2009 -0400
2659
2660 SMC911X: Add chip auto detection
2661
2662 Refactor the smc911x driver to allow for detecting when the chip is missing.
2663 I.e. the detect_chip() function is called earlier and will abort gracefully
2664 when the Chip ID read returns all 1's.
2665
2666 Signed-off-by: Olof Johansson <olof@lixom.net>
2667 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
2668 Acked-by: Ben Warren <biggerbadderben@gmail.com>
2669
2670 commit 0297ec7e2a4039b8a28346f52f3ccca4db1ddc62
2671 Author: Tom Rix <Tom.Rix@windriver.com>
2672 Date: Tue Sep 29 10:19:49 2009 -0400
2673
2674 TI OMAP3 Use arm init sequence to initialize i2c
2675
2676 This changes fixes an early i2c error.
2677
2678 It appears that I2C is working because once a read or write
2679 error is detected, the omap24xx_i2c driver calls i2c_init
2680 inside its error handling check.
2681
2682 While it is ok to attempt error handling this way, the boards
2683 must not depend on this side effect to initialize it's i2c.
2684
2685 Instead of explicitly calling i2c_init for every board, use
2686 the generic arm initialization in lib_arm/board.c. By defining
2687 the config variable CONFIG_HARD_I2C, the omap3 i2c initialization
2688 is included in the init_sequence table.
2689
2690 Run tested on Beagle.
2691 Compile tested on the omap3's
2692
2693 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
2694 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
2695
2696 commit 4df30f3bb7285b2c962713a5c693c16fd90885e0
2697 Author: Sandeep Paulraj <s-paulraj@ti.com>
2698 Date: Tue Sep 29 09:43:04 2009 -0400
2699
2700 TI: DaVinci DM365: Enabling network Support on DM365 EVM
2701
2702 This patch enables EMAC on the DM365 EVM.
2703
2704 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2705 Acked-by: Tom Rix <Tom.Rix@windriver.com>
2706
2707 commit 00e1665a3cf956e09ac2ce86ef6ec459f6bfb33c
2708 Author: Sandeep Paulraj <s-paulraj@ti.com>
2709 Date: Tue Sep 29 10:02:38 2009 -0400
2710
2711 TI: DaVinci: GPIO header file and definitions
2712
2713 Some DaVinci SOC's use GPIOs to enable EMAC and DM9000.
2714 This patch adds some definitions for GPIO registers and also adds
2715 structures for GPIO.
2716 A separate header file is being added so that in future we
2717 can have a DaVinci GPIO driver similer to OMAP.
2718
2719 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2720 Acked-by: Tom Rix <Tom.Rix@windriver.com>
2721
2722 commit 95ae803afbdd9f673c94b992ea624a10d252afc2
2723 Author: Sandeep Paulraj <s-paulraj@ti.com>
2724 Date: Fri Sep 18 17:30:05 2009 -0400
2725
2726 TI: DaVinci DM646x: Update flag used to represent DM646x SOC's
2727
2728 In the DaVinci specific code, we use both CONFIG_SOC_DM646X and
2729 CONFIG_SOC_DM646x to represent DM646x specific code.
2730 This patch changes occurrences of CONFIG_SOC_DM646x to
2731 CONFIG_SOC_DM646X. This is because for DM644x series of SOCs we use
2732 the flag CONFIG_SOC_DM644X. We want some uniformity.
2733
2734 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2735 Acked-by: Tom Rix <Tom.Rix@windriver.com>
2736
2737 commit fc9165fdb3b021aa8ff02417692220fe9344072b
2738 Author: Olof Johansson <olof@lixom.net>
2739 Date: Mon Sep 28 08:19:30 2009 -0400
2740
2741 OMAP3: Clean up whitespace in mux configs
2742
2743 Switch from space-based indentation to tab-based in mux configs, as pointed
2744 out by WD at:
2745
2746 http://lists.denx.de/pipermail/u-boot/2009-September/061241.html
2747
2748 Nothing but whitespace changes in this patch (diff -w gives no output).
2749
2750 Signed-off-by: Olof Johansson <olof@lixom.net>
2751
2752 commit 9de0212bd7c4c82a7e8c2a2c8714f8c7abc57d08
2753 Author: Dirk Behme <dirk.behme@googlemail.com>
2754 Date: Mon Sep 28 08:17:50 2009 -0400
2755
2756 OMAP3 MMC: Fix warning dereferencing type-punned pointer
2757
2758 Fix warning
2759 Dereferencing type-punned pointer will break strict-aliasing rules
2760
2761 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
2762 CC: Steve Sakoman <sakoman@gmail.com>
2763 Acked-by: Tom Rix <Tom.Rix@windriver.com>
2764
2765 commit e92daeb5c2050438402b87c7d614e8a13c294348
2766 Author: Simon Kagstrom <[simon.kagstrom@netinsight.net]>
2767 Date: Tue Sep 22 04:01:01 2009 +0530
2768
2769 Support for the OpenRD base board
2770
2771 The implementation is borrowed from the sheevaplug board and the Marvell
2772 1.1.4 code. Unsupported (or untested) is the SD card, PCIe and SATA.
2773
2774 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
2775
2776 commit a62e78fc444c67f958be48891bef3dab0e9eb285
2777 Author: Prafulla Wadaskar <prafulla@marvell.com>
2778 Date: Mon Sep 21 20:15:17 2009 +0530
2779
2780 Kirkwood: mv88f6281gtw_ge: Add kwbimage build support
2781
2782 This patch adds kwbimage configuration file
2783 (used by mkimage utility)
2784 to support u-boot.kwb target on mv88f6281gtw_ge board.
2785
2786 To create Kirkwood boot image to be flashed on SPI Flash,
2787 additional parameter u-boot.kwb need to be passed during make.
2788
2789 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2790
2791 commit 5bc7cbc15b1890682c0b279f708914518bd25f8d
2792 Author: Prafulla Wadaskar <prafulla@marvell.com>
2793 Date: Mon Sep 21 18:23:11 2009 +0530
2794
2795 Kirkwood: rd6281a: Add kwbimage build support
2796
2797 This patch adds kwbimage configuration file
2798 (used by mkimage utility)
2799 to support u-boot.kwb target on rd6281a platform.
2800
2801 To create Kirkwood boot image to be flashed on NAND,
2802 additional parameter u-boot.kwb need to be passed during make.
2803
2804 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2805
2806 commit 23b80982a02a43bf4ead91574c9d6f1b647ccc8f
2807 Author: Tom Rix <Tom.Rix@windriver.com>
2808 Date: Sun Sep 27 11:10:09 2009 -0500
2809
2810 Add support for Eukrea CPU9260/CPU9G20 SBC
2811
2812 these boards are built around Atmel's AT91SAM9260/9G20 and have
2813 up to 64MB of NOR flash, up to 128MB of SDRAM, up to 2GB of NAND
2814 and include a 10/100 Ethernet PHY in RMII mode.
2815
2816 Signed-off-by: Eric Benard <eric@eukrea.com>
2817 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
2818
2819 commit d8380c9d35e88759c96e68a03738446ca0cb292f
2820 Author: Tom Rix <Tom.Rix@windriver.com>
2821 Date: Sun Sep 27 07:47:24 2009 -0500
2822
2823 Add support for Eukrea CPUAT91 SBC
2824
2825 CPUAT91 is built around Atmel's AT91RM9200 and has up to 16MB of NOR
2826 flash, up to 128MB of SDRAM, and includes a Micrel KS8721 PHY in RMII
2827 mode.
2828
2829 Signed-off-by: Eric Benard <eric@eukrea.com>
2830 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
2831
2832 commit eb95aa15e644c29b01832703aa4964fe419170f0
2833 Author: Sandeep Paulraj <s-paulraj@ti.com>
2834 Date: Mon Sep 14 14:57:47 2009 -0400
2835
2836 TI: DaVinci DM365: Minor config cleanup
2837
2838 The DM365 config was using the 'CONFIG_CMD_SAVEENV' flag.
2839 This is already included when we include the
2840 config_cmd_default.h header file. So this flag is removed.
2841 Also another flag to enable NAND functions was being
2842 enabled incorrectly.
2843
2844 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2845
2846 commit 5d783c1ffd691ffdadbc2c2f796c41481b7cdce7
2847 Author: Sandeep Paulraj <s-paulraj@ti.com>
2848 Date: Mon Sep 14 15:03:06 2009 -0400
2849
2850 TI DaVinci DM365: Removing header file which does not exist
2851
2852 The DaVinci DM365 EVM board specific code was including a header file
2853 which does not exist. So removing this header file.
2854
2855 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2856
2857 commit 409ec37bd8ae8822d276e77419d899571891b191
2858 Author: Sandeep Paulraj <s-paulraj@ti.com>
2859 Date: Tue Sep 8 18:08:06 2009 -0400
2860
2861 TI DaVinci: DM355: Config Cleanup and Update
2862
2863 This patch does the following
2864 1) Enables the NAND driver which is now available.
2865 2) Enables the 'CONFIG_MTD_DEVICE' as without this the
2866 compilation will fail
2867 3) We now have a safe place to store environment and defines
2868 an offset where this can be stored. This offset value is such that it is after
2869 the location where U-Boot is flashed using TI flash utilities.
2870 4) Enables Bootdelay
2871 5) Increases malloc() arena size. Manufacturers are coming out with
2872 NAND with large blocks sizes of upto 1 MiB. It has been noticed that
2873 as the block size of the NAND used is increased, if this particular
2874 value is not increased, the NAND driver will output out of memory
2875 errors.
2876
2877 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2878
2879 commit 7908c97a106765ad8816bf2271a5bf315728b274
2880 Author: Sandeep Paulraj <s-paulraj@ti.com>
2881 Date: Tue Sep 8 11:37:39 2009 -0400
2882
2883 TI DaVinci: DM646x: Initial Support for DM646x SOC
2884
2885 DM646x is an SOC from TI which has both an ARM and a DSP.
2886 There are multiple variants of the SOC mainly dealing with different
2887 core speeds.
2888 This patch adds the initial framework for the DM646x SOC.
2889
2890 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2891
2892 commit 5d0f53624c24eaf82d58368a6a5b8476392dd5c7
2893 Author: Sandeep Paulraj <s-paulraj@ti.com>
2894 Date: Wed Sep 9 15:26:00 2009 -0400
2895
2896 TI DaVinci: DM6446: Fix Compilation error in NAND mode
2897
2898 The Default mode that is built for the Davinci DVEVM happens
2899 to be the NOR mode.
2900 When we want to build for the NAND mode, we get a compilation
2901 error. This is overcome by defining the CONFIG_MTD_DEVICE
2902 flag in the NAND mode.
2903 The image built for NAND mode was successfully tested on the
2904 DaVinci DM6446 EVM.
2905
2906 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2907
2908 commit 7a2aa8b68120f333ed2edc33475ca195810d6cb1
2909 Author: Tom Rix <Tom.Rix@windriver.com>
2910 Date: Thu Sep 10 15:27:57 2009 -0400
2911
2912 OMAP3 Move cache routine to cache.S
2913
2914 v7_flush_dcache_all, because it depends on omap ROM code is not
2915 generic. Rename the function to 'invalidate_dcache' and move it
2916 to the omap cpu directory.
2917
2918 Collect the other omap cache routines l2_cache_enable and
2919 l2_cache_disable with invalide_dcache into cache.S. This
2920 means removing the old cache.c file that contained l2_cache_enable
2921 and l2_cache_disable.
2922
2923 The conversion from cache.c to cache.S was done most through
2924 disassembling the uboot binary. The only significant change was
2925 to change the comparision for the return of get_cpu_rev from
2926
2927 cmp r0, #0
2928 beq earlier_than_label
2929
2930 Which was lost information to
2931
2932 cmp r0, #CPU_3XX_ES20
2933 blt earlier_than_label
2934
2935 The paths through the enable routine were verified by
2936 adding an infinite loop and seeing the hang. Then
2937 removing the infinite loop and seeing it continue.
2938
2939 The disable routine is similar enough that it was not
2940 tested with this method.
2941
2942 Run tested by cold booting from nand on beagle and zoom1.
2943 Compile tested on MAKEALL arm.
2944
2945 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
2946
2947 commit a16df2c11188297eca43cf6080c70fb69b960232
2948 Author: Sandeep Paulraj <s-paulraj@ti.com>
2949 Date: Tue Sep 8 17:09:52 2009 -0400
2950
2951 TI DaVinci: Remove references to SZ_xx
2952
2953 This patch removes the asm/sizes.h header file from being
2954 included in the DaVinci SOC configs.
2955 References to SZ_xx have been replaced by appropriate
2956 bit shifted values.
2957
2958 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2959 Acked-by: Wolfgang Denk <wd@denx.de>
2960
2961 commit 285870f75378aca41c5063e4358ad93bf3014fd8
2962 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
2963 Date: Thu Oct 9 01:27:18 2008 -0500
2964
2965 Leave x86emu op code tables in default section
2966
2967 Forcing the tables into got2 caused extra relocation when using -mrelocatable.
2968 This patch requires any board defining CONFIG_BIOSEMU to use -mrelocatable.
2969
2970 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
2971 Acked-by: Jin Zhengxiong <Jason.Jin@freescale.com>
2972
2973 commit be2254423b86572841aa70ff05d20933d1b49823
2974 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
2975 Date: Sat Oct 10 12:42:22 2009 +0200
2976
2977 Update all board to support new bbmiiphy driver (with multibus support)
2978
2979 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
2980 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2981
2982 commit 310cecb8ccdbc8a9be580e75b2fd362179d78535
2983 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
2984 Date: Sat Oct 10 12:42:21 2009 +0200
2985
2986 Add bb_miiphy_init call before any ethernet bring-up code.
2987
2988 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
2989 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2990
2991 commit 4ba31ab33ac824635fcb49ac609070a9ebcab7f0
2992 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
2993 Date: Sat Oct 10 12:42:20 2009 +0200
2994
2995 Rewrite the miiphybb (Bit-banged MII bus driver) in order to support an arbitrary number of mii buses.
2996
2997 This feature is useful when your board uses different mii buses for different
2998 phys and all (or a part) of these buses are implemented via bit-banging mode.
2999
3000 The driver requires that the following macros should be defined into the board
3001 configuration file:
3002
3003 CONFIG_BITBANGMII - Enable the miiphybb driver
3004 CONFIG_BITBANGMII_MULTI - Enable the multi bus support
3005
3006 If the CONFIG_BITBANGMII_MULTI is not defined, the board's config file needs
3007 to define at least the following macros:
3008
3009 MII_INIT - Generic code to enable the MII bus (optional)
3010 MDIO_DECLARE - Declaration needed to access to the MDIO pin (optional)
3011 MDIO_ACTIVE - Activate the MDIO pin as out pin
3012 MDIO_TRISTATE - Activate the MDIO pin as input/tristate pin
3013 MDIO_READ - Read the MDIO pin
3014 MDIO(v) - Write v on the MDIO pin
3015 MDC_DECLARE - Declaration needed to access to the MDC pin (optional)
3016 MDC(v) - Write v on the MDC pin
3017
3018 The previous macros make the driver compatible with the previous version
3019 (that didn't support the multi-bus).
3020
3021 When the CONFIG_BITBANGMII_MULTI is also defined, the board code needs to fill
3022 the bb_miiphy_buses[] array with a record for each required bus and declare
3023 the bb_miiphy_buses_num variable with the number of mii buses.
3024 The record (struct bb_miiphy_bus) has the following fields/callbacks (see
3025 miiphy.h for details):
3026
3027 char name[] - The symbolic name that must be equal to the MII bus
3028 registered name
3029 int (*init)() - Initialization function called at startup time (just
3030 before the Ethernet initialization)
3031 int (*mdio_active)() - Activate the MDIO pin as output
3032 int (*mdio_tristate)() - Activate the MDIO pin as input/tristate pin
3033 int (*set_mdio)() - Write the MDIO pin
3034 int (*get_mdio)() - Read the MDIO pin
3035 int (*set_mdc)() - Write the MDC pin
3036 int (*delay)() - Delay function
3037 void *priv - Private data used by board specific code
3038
3039 The board code will look like:
3040
3041 struct bb_miiphy_bus bb_miiphy_buses[] = {
3042 { .name = miibus#1, .init = b1_init, .mdio_active = b1_mdio_active, ... },
3043 { .name = miibus#2, .init = b2_init, .mdio_active = b2_mdio_active, ... },
3044 ...
3045 int bb_miiphy_buses_num = sizeof(bb_miiphy_buses) /
3046 sizeof(bb_miiphy_buses[0]);
3047
3048 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
3049 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3050
3051 commit efaf6f1bf6ebdd8f16b0d0c2960abe8d06f95af4
3052 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
3053 Date: Fri Oct 2 18:54:20 2009 -0400
3054
3055 mpc83xx: cosmetic comment update relating to SPD EEPROM
3056
3057 commit 6d0f6bcf337c5261c08fabe12982178c2c489d76 did the big
3058 rename of CFG_ macros to CONFIG_SYS macros. But it missed
3059 a couple of instances within comments.
3060
3061 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
3062 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3063
3064 commit afc3ba0fc4195624e79e21244380ed7cc2fd6969
3065 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
3066 Date: Thu Oct 8 02:03:51 2009 +0200
3067
3068 relocation: Do not relocate NULL pointers.
3069
3070 NULL is an absolute value and should not be relocated.
3071 After this correction code like:
3072 void weak_fun(void) __attribute__((weak));
3073 printf("weak_fun:%p\n", weak_fun);
3074 will still print null after relocation.
3075
3076 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
3077
3078 commit 3beb40c2473f0dd373231c723d88c51e46ad96f7
3079 Author: Peter Tyser <ptyser@xes-inc.com>
3080 Date: Wed Oct 7 11:45:00 2009 -0500
3081
3082 85xx: Ensure BSS segment isn't linked at address 0
3083
3084 When U-Boot is relocated from flash to RAM pointers are modified
3085 accordingly. However, pointers initialzed with NULL values should not
3086 be modified so that they maintain their intended NULL value. If the
3087 BSS segment is linked at address 0 its address will not be
3088 updated as necessary during relocation.
3089
3090 This is a temporary workaround. The end goal is to add support to
3091 U-Boot to dynamically locate the BSS at an arbitrary address at
3092 runtime. When the ability to fixup the BSS inteligently is
3093 added, this workaround can be removed and the 85xx link script
3094 can put the BSS at a fixed address at link time.
3095
3096 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3097
3098 commit 95c44ec485b46ffb43dbdaa299f1491a500fdadf
3099 Author: Detlev Zundel <dzu@denx.de>
3100 Date: Wed Oct 7 16:38:05 2009 +0200
3101
3102 tqm5200: Correct comment and code in post_hotkeys_pressed.
3103
3104 This fixes the code and the comment according to the original intent of
3105 doing an intensive memory test when PSC6_3 is pulled low on the STK52xx.
3106 Notably PORT_CONFIG will be overridden with this correct code now,
3107 so beware.
3108
3109 The original code only worked by coincidence depending on the PORT_CONFIG
3110 setting from the header file. The new code was tested to ensure that the
3111 (undocumented) memory test still works on the STK52x.
3112
3113 Signed-off-by: Detlev Zundel <dzu@denx.de>
3114 CC: Martin Krause <Martin.Krause@tqs.de>
3115
3116 Minor white-space cleanup.
3117 Signed-off-by: Wolfgang Denk <wd@denx.de>
3118
3119 commit da01f53404f99db185d196867af79371725d4683
3120 Author: Wolfgang Denk <wd@denx.de>
3121 Date: Sun Oct 4 22:56:08 2009 +0200
3122
3123 mpc512x: fix fixed_sdram() init code.
3124
3125 Commit 054197ba and later fixes used an array to initialize some of
3126 the MDDRC parameters; however, the use of an array turned out to be a
3127 bad idea as it was not possible to correlate structure entries to
3128 array indices in readable and reliable way. Now we use a struct
3129 instead, which makes this self-explanatory.
3130
3131 Signed-off-by: Wolfgang Denk <wd@denx.de>
3132
3133 commit dbcc357166bed20df13450e93a501f30b197efd1
3134 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
3135 Date: Sun Oct 4 20:04:22 2009 +0200
3136
3137 ppc4xx: respect 80-chars per line in ppc*.h files
3138
3139 After running checkstyle.pl on the three previous patches I noted that in
3140 the *.h files there were a lot of long lines. This patch solves this problem.
3141
3142 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
3143 Signed-off-by: Stefan Roese <sr@denx.de>
3144
3145 commit 78d2a641371ec71cc3786b167a318c7b115fbb90
3146 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
3147 Date: Sun Oct 4 20:04:21 2009 +0200
3148
3149 ppc4xx: Rework cmd reginfo
3150
3151 The command "reginfo" got an overhaul for the ppc4xx. It dumps all the
3152 relevant HW configuration registers (address, symbolic name, content).
3153 This allows to easily detect errors in *.h files and changes in the HW
3154 configuration.
3155
3156 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
3157 Signed-off-by: Stefan Roese <sr@denx.de>
3158
3159 commit ddc922ff2c20ae0b7f9ce2df1ac28143e2f325bd
3160 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
3161 Date: Sun Oct 4 20:04:20 2009 +0200
3162
3163 ppc_4xx: Apply new HW register names
3164
3165 Modify all existing *.c files to use the new register names
3166 as seen in the AMCC manuals.
3167
3168 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
3169 Signed-off-by: Stefan Roese <sr@denx.de>
3170
3171 commit f80e61dcfe53fa3a5936659883415c9bd1b5a3d9
3172 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
3173 Date: Sun Oct 4 20:04:19 2009 +0200
3174
3175 ppc4xx: Cleanup some HW register names
3176
3177 Here you find all the changes in the include directory for new register names
3178 and adapting other ones to the names used by AMCC in their manuals, e.g.
3179 For 440EPx/GRPPC440EPx/GRX, Revision 1.15 – September 22, 2008
3180 For PPC405GP Embedded Processor, Revision 1.02 – March 22, 2006
3181
3182 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
3183 Signed-off-by: Stefan Roese <sr@denx.de>
3184
3185 commit 56f14818f66c68a8b9e45925f29ceb974405ad48
3186 Author: Stefan Roese <sr@denx.de>
3187 Date: Tue Oct 6 07:21:08 2009 +0200
3188
3189 ppc4xx: Add PPC405EX(r) Rev D support
3190
3191 Unfortunately some Rev D PPC405EX/405EXr PVR's are identical with older
3192 405EX(r) parts. Here a list:
3193
3194 0x12911475 - 405EX Rev D with Security *and* 405EX Rev A/B witout Sec
3195 0x12911473 - 405EX Rev D without Security *and* 405EXr Rev A/B with Sec
3196
3197 Since there are only a few older parts in the field, this patch now
3198 changes the PVR's above to represent the new Rev D versions.
3199
3200 Signed-off-by: Stefan Roese <sr@denx.de>
3201 Cc: Phong Vo" <pvo@amcc.com>
3202
3203 commit 06dfaeef52a5f773ae4292432e3c74ff52ead316
3204 Author: Stefan Roese <sr@denx.de>
3205 Date: Fri Oct 2 14:35:16 2009 +0200
3206
3207 ppc4xx: Fix msg "initialization as root-complex failed" upon PCIe scan
3208
3209 This message is printed upon PCIe bus scan, not only upon error, but also
3210 if no PCIe device is detected at all. Since this is not an error, let's
3211 remove this message in this case. We already have the message
3212 "link is not up." if there is no PCIe device present.
3213
3214 Signed-off-by: Stefan Roese <sr@denx.de>
3215 Acked-by: Wolfgang Denk <wd@denx.de>
3216
3217 commit 54f5f056aa1daa3e39bad1c5c3fb43a72cdb9e84
3218 Author: Mike Nuss <mike@terascala.com>
3219 Date: Mon Oct 5 12:33:28 2009 -0400
3220
3221 PPC4xx: Denali core: Fix incorrect DDR row bits
3222
3223 The SPD detection code for the Denali memory controller used on some
3224 ppc4xx
3225 processors incorrectly encodes DDR0_42. With certain memory
3226 configurations,
3227 this can cause the bootwrapper to incorrectly calculate the installed
3228 memory
3229 size, because the number of row bits is wrong. This patch fixes that
3230 encoding.
3231
3232 Signed-off-by: Mike Nuss <mike@terascala.com>
3233 Signed-off-by: Stefan Roese <sr@denx.de>
3234
3235 commit 99dbd4efd6d5ecc37d7e8f28b20d9be8c83055c7
3236 Author: Ben Warren <biggerbadderben@gmail.com>
3237 Date: Mon Oct 5 00:02:51 2009 -0700
3238
3239 Add information about return values of xxx_eth_register() in documentation
3240
3241 As discussed on mailing list, <0 indicates failure, >=0 indicates number
3242 of interfaces found.
3243
3244 Also added blurb about private data
3245
3246 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3247
3248 commit 1f1e774ec6242d4ea34e5cff57232deb5bb587e0
3249 Author: Mike Frysinger <vapier@gentoo.org>
3250 Date: Wed Sep 9 14:41:22 2009 -0400
3251
3252 document network driver framework
3253
3254 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3255 Acked-by: Wolfgang Denk <wd@denx.de>
3256 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3257
3258 commit aba8237257dd15b0e76cc517f0e741c0908ee0b9
3259 Author: Prafulla Wadaskar <prafulla@marvell.com>
3260 Date: Wed Sep 9 15:59:19 2009 +0530
3261
3262 net: kirkwood_egiga.c: fixed build warning
3263
3264 if link up detection code is disabled through config option, it gives build warning.
3265 This patch fixes the same
3266
3267 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3268 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3269
3270 commit 7194ab809532eeca3e2ee5dc12017cb901cc5842
3271 Author: Ben Warren <biggerbadderben@gmail.com>
3272 Date: Sun Oct 4 22:37:03 2009 -0700
3273
3274 Convert SMC91111 Ethernet driver to CONFIG_NET_MULTI API
3275
3276 All in-tree boards that use this controller have CONFIG_NET_MULTI
3277 added
3278 Also:
3279 - changed CONFIG_DRIVER_SMC91111 to CONFIG_SMC91111
3280 - cleaned up line lengths
3281 - modified all boards that override weak function in this driver
3282 - modified all eeprom standalone apps to work with new driver
3283 - updated blackfin standalone EEPROM app after testing
3284
3285 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3286 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3287
3288 commit 32e7f239dda8638377edb0d3e7ac269cabbafbe6
3289 Author: Prafulla Wadaskar <prafulla@marvell.com>
3290 Date: Mon Sep 21 20:28:18 2009 +0530
3291
3292 net: phy: mv88e61xx.c : fixed build warning
3293
3294 following build warning was observed
3295
3296 mv88e61xx.c: In function ‘mv88e61xx_busychk’:
3297 mv88e61xx.c:208: warning: dereferencing type-punned pointer will break strict-aliasing rules
3298
3299 This patch fixes the same
3300 Patch tested for rd6281a board build
3301
3302 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3303 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3304
3305 commit c0b46d8ead3c6c5b569c83544fd71b9d73356869
3306 Author: James Clough <james@rtetc.com>
3307 Date: Thu Sep 10 09:11:50 2009 +0200
3308
3309 net: Fix problem with 405EZ ethernet interrupt
3310
3311 On 405EZ the RX-/TX-interrupts are coalesced into one IRQ bit in the
3312 UIC. We need to acknowledge the RX-/TX-interrupts in the
3313 SDR0_ICINTSTAT reg as well.
3314
3315 This problem was introduced with commit
3316 d1631fe1 [ppc4xx: Consolidate PPC4xx UIC defines]
3317
3318 Signed-off-by: James Clough <james@rtetc.com>
3319 Signed-off-by: Stefan Roese <sr@denx.de>
3320 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3321
3322 commit 91b469c95faf92435e3d5d78292ba78075a3c5ca
3323 Author: Mike Frysinger <vapier@gentoo.org>
3324 Date: Wed Sep 2 04:18:55 2009 -0400
3325
3326 net: add random_port() prototype
3327
3328 The random_port() is meant to be used by other net code, but without a
3329 prototype, we get fun warnings like:
3330 dns.c: In function 'DnsSend':
3331 dns.c:89: warning: implicit declaration of function 'random_port'
3332
3333 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3334 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3335
3336 commit 3469424cb6d939c7aedf1e0efdec44a797c0a18c
3337 Author: Peter Tyser <ptyser@xes-inc.com>
3338 Date: Mon Sep 21 11:20:37 2009 -0500
3339
3340 ppc: Remove reloc_off field from global_data structure
3341
3342 Now that proper relocation is supported, the reloc_off field is no longer
3343 necessary.
3344
3345 Note that the location of the standalone application jump table pointer
3346 in the global data structure is affected by this change, breaking
3347 execution of standalone applications compiled for previous versions of
3348 U-Boot.
3349
3350 We therefore increment XF_VERSION to 6
3351
3352 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3353 Signed-off-by: Wolfgang Denk <wd@denx.de>
3354
3355 commit 0630535e2d062dd73c1ceca5c6125c86d1127a49
3356 Author: Peter Tyser <ptyser@xes-inc.com>
3357 Date: Tue Sep 22 09:27:55 2009 -0500
3358
3359 arm/microblaze/nios/nios2/sh: Remove relocation fixups
3360
3361 These architectures don't need relocation fixups, so reduce their
3362 codesize a bit by defining CONFIG_RELOC_FIXUP_WORKS.
3363
3364 Also remove the reloc_off field from their global data structures
3365 as it is no longer needed.
3366
3367 Note that the location of the standalone application jump table pointer
3368 in the global data structure is affected by this change, breaking
3369 execution of standalone applications compiled for previous versions of
3370 U-Boot. We will therefore increment XF_VERSION in the next commit,
3371 which also touches this area.
3372
3373 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3374 Signed-off-by: Wolfgang Denk <wd@denx.de>
3375
3376 commit 521af04d853361b49344b61892eb0618f9f713c5
3377 Author: Peter Tyser <ptyser@xes-inc.com>
3378 Date: Mon Sep 21 11:20:36 2009 -0500
3379
3380 Conditionally perform common relocation fixups
3381
3382 Add #ifdefs where necessary to not perform relocation fixups. This
3383 allows boards/architectures which support relocation to trim a decent
3384 chunk of code.
3385
3386 Note that this patch doesn't add #ifdefs to architecture-specific code
3387 which does not support relocation.
3388
3389 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3390
3391 commit 3cbcfa70b116df1bbdc90ba31c61adcaec058a8a
3392 Author: Peter Tyser <ptyser@xes-inc.com>
3393 Date: Mon Sep 21 11:20:35 2009 -0500
3394
3395 p3mx: Remove serial relocation fixups
3396
3397 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3398
3399 commit 80f73b92a19129854876ec3f1aef531a09e86d2d
3400 Author: Peter Tyser <ptyser@xes-inc.com>
3401 Date: Mon Sep 21 11:20:34 2009 -0500
3402
3403 lwmon, lwmon5: Remove sysmon POST relocation fixups
3404
3405 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3406
3407 commit 331ab60c4a418c39e5b1a05d4648a4155d0ad13e
3408 Author: Peter Tyser <ptyser@xes-inc.com>
3409 Date: Mon Sep 21 11:20:33 2009 -0500
3410
3411 mpl: Remove memory test relocation fixups
3412
3413 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3414
3415 commit 6385b28116f775da4771b768ba9bf93c3aaaf26e
3416 Author: Peter Tyser <ptyser@xes-inc.com>
3417 Date: Mon Sep 21 11:20:32 2009 -0500
3418
3419 fpga: Remove relocation fixups
3420
3421 PPC boards are the only users of the current FPGA code which is littered
3422 with manual relocation fixups. Now that proper relocation is supported
3423 for PPC boards, remove FPGA manual relocation.
3424
3425 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3426
3427 commit cd1011db80287eef933d1599b74cff1116c93134
3428 Author: Peter Tyser <ptyser@xes-inc.com>
3429 Date: Mon Sep 21 11:20:31 2009 -0500
3430
3431 tsec: Remove PHY command relocation fixups
3432
3433 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3434
3435 commit b5650c5d8c99100144d8e4e9af910405f857bb7a
3436 Author: Peter Tyser <ptyser@xes-inc.com>
3437 Date: Mon Sep 21 11:20:30 2009 -0500
3438
3439 ppc: Remove board-specific command table relocation fixups
3440
3441 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3442
3443 commit e6b05e774d7ce1641613cdeffb69c1d48139a869
3444 Author: Peter Tyser <ptyser@xes-inc.com>
3445 Date: Mon Sep 21 11:20:29 2009 -0500
3446
3447 ppc: Remove extable relocation fixups
3448
3449 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3450
3451 commit b32a894011b1436758905fa10e6a03b8539c43c9
3452 Author: Peter Tyser <ptyser@xes-inc.com>
3453 Date: Mon Sep 21 11:20:28 2009 -0500
3454
3455 ppc: Remove pci config table pointer relocation fixups
3456
3457 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3458
3459 commit a0e2066f392782730f0398095e583c87812d97f2
3460 Author: Peter Tyser <ptyser@xes-inc.com>
3461 Date: Mon Sep 21 11:20:27 2009 -0500
3462
3463 ppc: Remove board.c relocation fixups
3464
3465 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3466
3467 commit 244615197469dd6fe75ae082f38424b97c79aeaf
3468 Author: Peter Tyser <ptyser@xes-inc.com>
3469 Date: Mon Sep 21 11:20:26 2009 -0500
3470
3471 ppc: Check for compilers that don't support relocation
3472
3473 Certain ppc compilers are known not to generate the .fixup section
3474 properly. The .fixup section is necessary to create a relocatable
3475 U-Boot image. A basic check for the existence of the .fixup section
3476 should hopefully catch the majority of broken compilers which don't
3477 support relocation.
3478
3479 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3480
3481 commit 858290178f222d998b6425d85cf06822467918f3
3482 Author: Peter Tyser <ptyser@xes-inc.com>
3483 Date: Mon Sep 21 11:20:25 2009 -0500
3484
3485 ppc: Enable full relocation to RAM
3486
3487 The following changes allow U-Boot to fully relocate from flash to
3488 RAM:
3489 - Remove linker scripts' .fixup sections from the .text section
3490 - Add -mrelocatable to PLATFORM_RELFLAGS for all boards
3491 - Define CONFIG_RELOC_FIXUP_WORKS for all boards
3492
3493 Previously, U-Boot would partially relocate, but statically initialized
3494 pointers needed to be manually relocated.
3495
3496 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3497
3498 commit 3b4bd2d75c4b3c1a4570f47ffaaed66f56a78ff4
3499 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
3500 Date: Wed Sep 30 11:55:04 2009 +0200
3501
3502 ppc4xx: Add SDRAM detection for PMC440 boards
3503
3504 This patch adds support to detect the amount of DDR2 SDRAM
3505 on PMC440 modules. Detection is done by probing through
3506 a list of available and supported hardware configurations
3507 from 1GByte down to 256MB.
3508
3509 The static TLB entry is replaced by dynamically created entries.
3510
3511 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
3512 Signed-off-by: Stefan Roese <sr@denx.de>
3513
3514 commit fb95169e39f2d03270bed552d27bbb02627a443e
3515 Author: Stefan Roese <sr@denx.de>
3516 Date: Mon Sep 28 17:33:45 2009 +0200
3517
3518 ppc4xx: Merge PPC4xx DDR and DDR2 ECC handling
3519
3520 This patch merges the ECC handling (ECC parity byte writing) into one
3521 file (ecc.c) for all PPC4xx SDRAM controllers except for PPC440EPx/GRx.
3522 This exception is because only those PPC's use the completely different
3523 Denali SDRAM controller core.
3524
3525 Previously we had two routines to generate/write the ECC parity bytes.
3526 With this patch we now only have one core function left.
3527
3528 Tested on Kilauea (no ECC) and Katmai (with and without ECC).
3529
3530 Signed-off-by: Stefan Roese <sr@denx.de>
3531 Cc: Felix Radensky <felix@embedded-sol.com>
3532 Cc: Grant Erickson <gerickson@nuovations.com>
3533 Cc: Pieter Voorthuijsen <pv@prodrive.nl>
3534
3535 commit d24bd2517a2b847f773453eab0ee5b1c8ebc74ba
3536 Author: Felix Radensky <felix@embedded-sol.com>
3537 Date: Sun Sep 27 23:56:12 2009 +0200
3538
3539 ppc4xx: Reorganize DDR2 ECC handling
3540
3541 Reorganize DDR2 ECC handling to use common code for
3542 SPD DIMMs and soldered SDRAM. Also, use common code
3543 to display SDRAM info (ECC, CAS latency) for SPD and
3544 soldered SDRAM variants.
3545
3546 Signed-off-by: Felix Radensky <felix@embedded-sol.com>
3547 Signed-off-by: Stefan Roese <sr@denx.de>
3548
3549 commit 46a887949e11d2cddb91e17ca47e73341d71a379
3550 Author: Mike Frysinger <vapier@gentoo.org>
3551 Date: Wed Sep 30 03:09:16 2009 -0400
3552
3553 Blackfin: update default console= settings
3554
3555 The Linux kernel has changed the way it numbers serial ports, so update
3556 the default command line to match it.
3557
3558 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3559
3560 commit 4c5f307d58604dea001cccf388aa077a902ab0a5
3561 Author: Mike Frysinger <vapier@gentoo.org>
3562 Date: Mon Sep 21 18:04:49 2009 -0400
3563
3564 Blackfin: bf533-ezkit: update env location
3565
3566 The u-boot image has outgrown the current space and overflowed into the
3567 env sector. So move the env to the next available sector (we've already
3568 allocated the first few sectors anyways for u-boot).
3569
3570 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3571
3572 commit 24b17d8a3c3a4b9ceaf6363ebe0021011b0b8bd8
3573 Author: Kumar Gala <galak@kernel.crashing.org>
3574 Date: Wed Sep 30 08:39:44 2009 -0500
3575
3576 ppc/85xx: get_law_entry isn't used in CONFIG_NAND_SPL
3577
3578 Don't include get_law_entry as part of the NAND_SPL build since the
3579 code isnt used.
3580
3581 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3582
3583 commit 693a048d8ac191181f5b9adbff642d3f1bbd479f
3584 Author: Mingkai Hu <Mingkai.hu@freescale.com>
3585 Date: Wed Sep 23 15:20:39 2009 +0800
3586
3587 Add README.mpc8536ds
3588
3589 Add boot from NAND/eSDHC/eSPI description
3590
3591 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
3592 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3593
3594 commit e40ac4870c6e72302044e98338322f45c34435bd
3595 Author: Mingkai Hu <Mingkai.hu@freescale.com>
3596 Date: Wed Sep 23 15:20:38 2009 +0800
3597
3598 On-chip ROM boot: MPC8536DS support
3599
3600 The MPC8536E is capable of booting from the on-chip ROM - boot from
3601 eSDHC and boot from eSPI. When power on, the porcessor excutes the
3602 ROM code to initialize the eSPI/eSDHC controller, and loads the mian
3603 U-Boot image from the memory device that interfaced to the controller,
3604 such as the SDCard or SPI EEPROM, to the target memory, e.g. SDRAM or
3605 L2SRAM, then boot from it.
3606
3607 The memory device should contain a specific data structure with control
3608 word and config word at the fixed address. The config word direct the
3609 process how to config the memory device, and the control word direct
3610 the processor where to find the image on the memory device, or where
3611 copy the main image to. The user can use any method to store the data
3612 structure to the memory device, only if store it on the assigned address.
3613
3614 The on-chip ROM code will map the whole 4GB address space by setting
3615 entry0 in the TLB1, so the main image need to switch to Address space 1
3616 to disable this mapping and map the address space again.
3617
3618 This patch implements loading the mian U-Boot image into L2SRAM, so
3619 the image can configure the system memory by using SPD EEPROM.
3620
3621 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
3622 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3623
3624 commit 9a1a0aedbbd56f901bfbc124f18ec6d9dcefe282
3625 Author: Mingkai Hu <Mingkai.hu@freescale.com>
3626 Date: Wed Sep 23 15:20:37 2009 +0800
3627
3628 NAND boot: MPC8536DS support
3629
3630 MPC8536E can support booting from NAND flash which uses the
3631 image u-boot-nand.bin. This image contains two parts: a 4K
3632 NAND loader and a main U-Boot image. The former is appended
3633 to the latter to produce u-boot-nand.bin. The 4K NAND loader
3634 includes the corresponding nand_spl directory, along with the
3635 code twisted by CONFIG_NAND_SPL. The main U-Boot image just
3636 like a general U-Boot image except the parts that included by
3637 CONFIG_SYS_RAMBOOT.
3638
3639 When power on, eLBC will automatically load from bank 0 the
3640 4K NAND loader into the FCM buffer RAM where CPU can execute
3641 the boot code directly. In the first stage, the NAND loader
3642 copies itself to RAM or L2SRAM to free up the FCM buffer RAM,
3643 then loads the main image from NAND flash to RAM or L2SRAM
3644 and boot from it.
3645
3646 This patch implements the NAND loader to load the main image
3647 into L2SRAM, so the main image can configure the RAM by using
3648 SPD EEPROM. In the first stage, the NAND loader copies itself
3649 to the second to last 4K address space, and uses the last 4K
3650 address space as the initial RAM for stack.
3651
3652 Obviously, the size of L2SRAM shouldn't be less than the size
3653 of the image used. If so, the workaround is to generate another
3654 image that includes the code to configure the RAM by SPD and
3655 load it to L2SRAM first, then relocate the main image to RAM
3656 to boot up.
3657
3658 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
3659 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3660
3661 commit 07355700523203c5f72018712cf0d93683f255c8
3662 Author: Mingkai Hu <Mingkai.hu@freescale.com>
3663 Date: Wed Sep 23 15:19:32 2009 +0800
3664
3665 mpc8536: fix board config file line length
3666
3667 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
3668 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3669
3670 commit dd9ca98f2600000e5c2744735040100b770650e7
3671 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
3672 Date: Fri Sep 25 11:14:11 2009 -0400
3673
3674 sbc8548: reclaim wasted sector in boot flash
3675
3676 By nature of being based off the MPC8548CDS board, this
3677 board inherited an ENV_SIZE setting of 256k. But since
3678 it has a smaller flash device (8MB soldered on), it has
3679 a native sector size of 128k, and hence the ENV_SIZE was
3680 causing 2 sectors to be used for the environment.
3681
3682 By removing the unused sector, we can push TEXT_BASE up
3683 closer to the end of address space and reclaim that
3684 sector for any other application. This also fixes the
3685 mismatch between TEXT_BASE and MONITOR_LEN reported by
3686 Kumar earlier.
3687
3688 Since this board also supports the ability to boot off
3689 the 64MB SODIMM flash, this change is forward looking
3690 with that in mind; i.e. the settings for MONITOR_LEN
3691 and ENV_SIZE will work when the 512k sectors of the
3692 SODIMM flash are used for alternate boot in the future.
3693
3694 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
3695 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3696
3697 commit 8280912e0657e96a7b7d8da7003656d62b0fd109
3698 Author: Kumar Gala <galak@kernel.crashing.org>
3699 Date: Mon Sep 28 21:38:00 2009 -0500
3700
3701 ppc/85xx: Clean up immap_85xx.h
3702
3703 * Converted all white space to tabs
3704 * Converted all types to u8/u16/u32
3705 * Reduce lines to fit in 80 columns
3706 * Renamed MPC85xx_{Q,B}MAN -> FSL_CORENET_{Q,B}MAN
3707
3708 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3709
3710 commit d44e9c1736283f0abc5d3c5d28cfea8480c93a79
3711 Author: Scott Wood <scottwood@freescale.com>
3712 Date: Mon Sep 28 16:33:18 2009 -0500
3713
3714 NAND: davinci: Fix warnings when 4-bit ECC not used
3715
3716 I accidentally left v2 of "NAND: DaVinci:Adding 4 BIT ECC support"
3717 applied when I pushed the tree last merge window, and missed these fixes
3718 which were in v3 of that patch.
3719
3720 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
3721 Signed-off-by: Scott Wood <scottwood@freescale.com>
3722
3723 commit ca6189db484882798f2a35a476c07e618e21f6d3
3724 Author: Kyungmin Park <kmpark@infradead.org>
3725 Date: Tue Sep 22 09:05:00 2009 +0900
3726
3727 Refactor OneNAND IPL code
3728
3729 Refactoring the OneNAND IPL code
3730
3731 and some minor fixed:
3732 - Remove unnecessary header file
3733 - Fix wrong access at read interrupt
3734 - The recent OneNAND has 4KiB pagesize
3735
3736 Also Board can override OneNAND IPL image
3737
3738 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
3739
3740 commit a05e3f9a084fc8951d87745b3a91df246432df7d
3741 Author: Shinya Kuribayashi <skuribay@pobox.com>
3742 Date: Sat Sep 12 18:01:40 2009 +0900
3743
3744 MIPS: VCT: Remove read_spareram reference
3745
3746 The commit ecad289fc6bd9d89ef4d5093cc7b6fd712fd0d29 (OneNAND: Remove
3747 unused read_spareram and add unlock_all as kernel does) forgot to remove
3748 a local reference to read_spareram in board/micronas/vct/ebi_onenand.c,
3749 which causes the following build failure when configured with OneNAND:
3750
3751 ebi_onenand.c: In function 'onenand_board_init':
3752 ebi_onenand.c:196: error: 'struct onenand_chip' has no member named 'read_spareram'
3753 make[1]: *** [ebi_onenand.o] Error 1
3754 make[1]: *** Waiting for unfinished jobs....
3755 make: *** [board/micronas/vct/libvct.a] Error 2
3756
3757 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
3758 Acked-by: Stefan Roese <sr@denx.de>
3759 Cc: Kyungmin Park <kyungmin.park@samsung.com>
3760 Signed-off-by: Scott Wood <scottwood@freescale.com>
3761
3762 commit ef37c6835eac66206a9c7c11f0c7186f5d64bf91
3763 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
3764 Date: Fri Sep 25 14:05:57 2009 +0200
3765
3766 ubifs: Correct dereferencing of files-after-symlinks
3767
3768 Files in directories which are symlinked to were not dereferenced
3769 correctly in last commit. E.g., with a symlink
3770
3771 /boot/lnk -> /boot/real_dir
3772
3773 loading
3774
3775 /boot/lnk/uImage
3776
3777 will fail. This patch fixes that by simply seeing to it that the target
3778 base directory has a slash after it.
3779
3780 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
3781 Signed-off-by: Stefan Roese <sr@denx.de>
3782
3783 commit b306db2f1bf561b5823a655c677fe28cfad80cfb
3784 Author: Stefan Roese <sr@denx.de>
3785 Date: Thu Sep 24 14:10:30 2009 +0200
3786
3787 ppc4xx: Remove mtsdram0() marcos and use common mtsdram() instead
3788
3789 Additionally some whitespace coding style fixes.
3790
3791 Signed-off-by: Stefan Roese <sr@denx.de>
3792
3793 commit 95b602bab5fec2fffab07a01ea3947c70d1bacc1
3794 Author: Stefan Roese <sr@denx.de>
3795 Date: Thu Sep 24 13:59:57 2009 +0200
3796
3797 ppc4xx: Convert PPC4xx SDRAM defines from lower case to upper case
3798
3799 The latest PPC4xx register cleanup patch missed some SDRAM defines.
3800 This patch now changes lower case UIC defines to upper case. Also
3801 some names are changed to match the naming in the IBM/AMCC users
3802 manuals (e.g. mem_mcopt1 -> SDRAM0_CFG).
3803
3804 Signed-off-by: Stefan Roese <sr@denx.de>
3805
3806 commit 952e7760bfc5b0e3b142b9ce34e7fbb7d008c900
3807 Author: Stefan Roese <sr@denx.de>
3808 Date: Thu Sep 24 09:55:50 2009 +0200
3809
3810 ppc4xx: Convert PPC4xx UIC defines from lower case to upper case
3811
3812 The latest PPC4xx register cleanup patch missed the UIC defines.
3813 This patch now changes lower case UIC defines to upper case.
3814
3815 Signed-off-by: Stefan Roese <sr@denx.de>
3816
3817 commit d1c9e5b37901b53ffc1ce3f08ec8ed61bfd557b6
3818 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
3819 Date: Tue Sep 22 13:40:44 2009 +0200
3820
3821 fsl_i2c: Do not generate STOP after read.
3822
3823 __i2c_read always ends with a STOP condition thereby releasing
3824 the bus. It is cleaner to do the STOP magic in i2c_read(), like
3825 i2c_write() does. This may also help future multimaster systems which
3826 wants to hold on to the bus until all transactions are finished.
3827
3828 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
3829
3830 commit 99404202127346b9e91503bbd69deafa18c980c4
3831 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
3832 Date: Thu Sep 17 11:07:17 2009 +0200
3833
3834 fsl_i2c: Impl. AN2919, rev 5 to calculate FDR/DFSR
3835
3836 The latest AN2919 has changed the way FDR/DFSR should be calculated.
3837 Update the driver according to spec. However, Condition 2
3838 is not accounted for as it is not clear how to do so.
3839
3840 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
3841 Acked-by: Wolfgang Grandegger <wg@grandegger.com>
3842
3843 commit d01ee4db9302cfccaa5c548a1c4e873b415681a0
3844 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
3845 Date: Thu Sep 17 11:07:16 2009 +0200
3846
3847 fsl_i2c: Add CONFIG_FSL_I2C_CUSTOM_{DFSR/FDR}
3848
3849 Some boards need a higher DFSR value than the spec currently
3850 recommends so give these boards the means to define there own.
3851
3852 For completeness, add CONFIG_FSL_I2C_CUSTOM_FDR too.
3853
3854 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
3855
3856 commit 21f4cbb77299788e2b06c9b0f48cf20a5ab00d4a
3857 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
3858 Date: Thu Sep 17 11:07:15 2009 +0200
3859
3860 fsl_i2c: Wait for STOP condition to propagate
3861
3862 After issuing a STOP one must wait until the STOP has completed
3863 on the bus before doing something new to the controller.
3864
3865 Also add an extra read of SR as the manual mentions doing that
3866 is a good idea.
3867
3868 Remove surplus write of CR just before a write, isn't required and
3869 could potentially disturb the I2C bus.
3870
3871 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
3872
3873 commit c7190f028fa950d4d36b6d0b4bb3fc72602ec54c
3874 Author: Kim Phillips <kim.phillips@freescale.com>
3875 Date: Fri Sep 25 18:19:44 2009 -0500
3876
3877 mpc83xx: retain POR values of non-configured ACR, SPCR, SCCR, and LCRR bitfields
3878
3879 some LCRR bits are not documented throughout the 83xx family RMs.
3880 New board porters copying similar board configurations might omit
3881 setting e.g., DBYP since it was not documented in their SoC's RM.
3882
3883 Prevent them bricking their board by retaining power on reset values
3884 in bit fields that the board porter doesn't explicitly configure
3885 via CONFIG_SYS_<registername>_<bitfield> assignments in the board
3886 config file.
3887
3888 also move LCRR assignment to cpu_init_r[am] to help ensure no
3889 transactions are being executed via the local bus while CLKDIV is being
3890 modified.
3891
3892 also start to use i/o accessors.
3893
3894 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3895
3896 commit 00ec0ff549b8cb6fb6d40e275aeb5a460642a3bd
3897 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
3898 Date: Mon Sep 21 17:44:51 2009 -0400
3899
3900 sbc8349: tidy up Makefile to use new configuration script.
3901
3902 Commit 804d83a5 allows us to move all the configuration
3903 variation tweaks out of the top level Makefile and down
3904 into the board config header. This takes advantage of
3905 that for the sbc8349 board.
3906
3907 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
3908 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3909
3910 commit da6eea0f48c24a318e6de69d6bca0bb5ab70572b
3911 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3912 Date: Wed Sep 16 23:22:08 2009 +0400
3913
3914 mpc83xx: mpc8360emds: Add QE USB device tree fixups
3915
3916 With this patch we can change QE USB mode without need to hand-edit
3917 the device tree.
3918
3919 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
3920 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3921
3922 commit 89da44ce3fe1638312d71cb3add8c6a6d2c7c1f3
3923 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3924 Date: Wed Sep 16 23:21:59 2009 +0400
3925
3926 mpc83xx: mpc8360emds: Use RGMII-ID mode, add workarounds for rev. 2.1 CPUs
3927
3928 This patch fixes various ethernet issues with gigabit links handling
3929 in U-Boot. The workarounds originally implemented by Kim Phillips for
3930 Linux kernel.
3931
3932 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
3933 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3934
3935 commit 034477bb31948d698d18b84bc0834c3e25a14d04
3936 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3937 Date: Wed Sep 16 23:21:57 2009 +0400
3938
3939 mpc83xx: mpc8360emds: Don't use LBC SDRAM when DDR is available
3940
3941 Since commit 5c2ff323a94e27e481f70c44838d43fcd844dd46 ("mpc8360emds:
3942 rework LBC SDRAM setup"), LBC SDRAM is available for use in Linux.
3943
3944 Though, it appears that QE Ethernet in Gigabit mode can't transmit
3945 large packets when it tries to work with a data in LBC SDRAM (memtest
3946 didn't discover any issues, is LBC SDRAM just too slow?).
3947
3948 With this patch we can still use the board without DDR memory, but
3949 if DDR is available, we don't use LBC SDRAM.
3950
3951 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
3952 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3953
3954 commit d77c779bc23596aa3693d1c5c4d5b6e1072f93f2
3955 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3956 Date: Wed Sep 16 23:21:55 2009 +0400
3957
3958 net: uec: Fix uccf.h and uec.h headers to include headers they depend on
3959
3960 Headers should include headers containing prototypes and defines they
3961 depend on, don't assume that they're included by somebody else.
3962
3963 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
3964 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3965
3966 commit 6185f80c311cc3bdef2f8d5096c61e40ca6f48b2
3967 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3968 Date: Wed Sep 16 23:21:53 2009 +0400
3969
3970 net: uec_phy: Implement TXID and RXID RGMII modes for Marvell PHYs
3971
3972 This will be needed for MPC8360E-MDS boards with rev. 2.1 CPUs.
3973
3974 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
3975 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3976
3977 commit 984f10baac8ef6032df52f135943d6b0bc96f724
3978 Author: Wolfgang Denk <wd@denx.de>
3979 Date: Fri Sep 25 14:16:00 2009 +0200
3980
3981 mpc5121ads: fix breakage introduced when reordering elpida_mddrc_config[]
3982
3983 Signed-off-by: Wolfgang Denk <wd@denx.de>
3984
3985 commit 6e748ea004473cce99fbde6382dd580c10ffdb60
3986 Author: Ken MacLeod <ken@bitsko.slc.ut.us>
3987 Date: Fri Sep 11 15:16:18 2009 -0500
3988
3989 cmd_fdt.c: fix parse of byte streams and strings
3990
3991 Commit 4abd844d8e extended the fdt command parser to handle property
3992 strings which are split across multiple arguments but it was broken for
3993 byte streams and strings.
3994
3995 Byte stream parsing:
3996
3997 * Fixes where it would terminate early or go into an endless loop.
3998
3999 * Fixes a 0x00 being inserted into the data if there is a space after
4000 '[' or a separate argument.
4001
4002 * Fixes dereferencing the argument pointer after the last argument.
4003
4004 * Checks for bad characters.
4005
4006 String parsing:
4007
4008 * Treat multiple arguments as a string list. This fixes an issue where
4009 only the last argument was stored.
4010
4011 Signed-off-by: Ken MacLeod <ken@bitsko.slc.ut.us>
4012
4013 commit 3887c3fbdbbe6bbb4df60ed415c8e1ab9fe56b5e
4014 Author: Heiko Schocher <hs@denx.de>
4015 Date: Wed Sep 23 07:56:08 2009 +0200
4016
4017 mucmc52, uc101: delete ata@3a00 node, if no CF card is detected
4018
4019 U-Boot can detect if an IDE device is present or not.
4020 If not, and this new config option is activated, U-Boot
4021 removes the ATA node from the DTS before booting Linux,
4022 so the Linux IDE driver does not probe the device and
4023 crash. This is needed for buggy hardware (uc101) where
4024 no pull down resistor is connected to the signal IDE5V_DD7.
4025
4026 Signed-off-by: Heiko Schocher <hs@denx.de>
4027
4028 commit 7f625fc6d3ba8f890e843ac01717804c2462ed53
4029 Author: Heiko Schocher <hs@denx.de>
4030 Date: Wed Sep 23 07:56:04 2009 +0200
4031
4032 mpc5200, mucmc52, uc101: config cleanup
4033
4034 - As these boards are similiar, collect common config options
4035 in manroland/common.h and manroland/mpc52xx-common.h
4036 for mpc5200 specific common options for this manufacturer.
4037 - add OF support
4038 - update default environment
4039
4040 Signed-off-by: Heiko Schocher <hs@denx.de>
4041
4042 Minor edit of commit message.
4043
4044 Signed-off-by: Wolfgang Denk <wd@denx.de>
4045
4046 commit 9d142ea8f787882ab732fa531a34db091bfa363d
4047 Author: Wolfgang Denk <wd@denx.de>
4048 Date: Fri Sep 25 00:57:49 2009 +0200
4049
4050 Fix "ppc/85xx: Clean up use of LAWAR defines" breakage
4051
4052 Commit 002741ae86 modified include/asm-ppc/mmu.h such that the LAWAR_
4053 defines were only enabled for the 83xx platform, but they are also
4054 needed on MPC512x system. Enabling these for E300 systems seems thus
4055 more appropriate.
4056
4057 Signed-off-by: Wolfgang Denk <wd@denx.de>
4058
4059 commit a5aa3998ab6408a6ac738a3ce8005e647b9465f8
4060 Author: Martha M Stan <mmarx@silicontkx.com>
4061 Date: Mon Sep 21 14:08:00 2009 -0400
4062
4063 Add Elpida Memory Configuration to mpc5121ads Boards
4064
4065 Signed-off-by: Martha M Stan <mmarx@silicontkx.com>
4066
4067 Minor coding style cleanup.
4068
4069 Signed-off-by: Wolfgang Denk <wd@denx.de>
4070
4071 commit 054197ba8ee5ef1e41694df58531b6e53ec43f2d
4072 Author: Martha M Stan <mmarx@silicontkx.com>
4073 Date: Mon Sep 21 14:07:14 2009 -0400
4074
4075 mpc512x: Streamlined fixed_sdram() init sequence.
4076
4077 Signed-off-by: Martha M Stan <mmarx@silicontkx.com>
4078
4079 Minor cleanup:
4080
4081 Re-ordered default_mddrc_config[] to have matching indices.
4082
4083 This allows to use the same index "N" for source and target fields;
4084 before, we had code like this
4085
4086 out_be32(&im->mddrc.ddr_time_config2, mddrc_config[3]);
4087
4088 which always looked like a copy & paste error because 2 != 3.
4089
4090 Also, use NULL when meaning a null pointer.
4091
4092 Signed-off-by: Wolfgang Denk <wd@denx.de>
4093
4094 commit 39aaca1f66a0e5b1204b0789f6c0097938c00ad1
4095 Author: Kumar Gala <galak@kernel.crashing.org>
4096 Date: Thu Mar 19 02:46:19 2009 -0500
4097
4098 ppc/p4080: Determine various chip frequencies on CoreNet platforms
4099
4100 The means to determine the core, bus, and DDR frequencies are completely
4101 new on CoreNet style platforms. Additionally on p4080 we can have
4102 different frequencies for FMAN and PME IP blocks. We need to keep track
4103 of the FMAN & PME frequencies since they are used for time stamping
4104 capabilities inside each block.
4105
4106 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4107
4108 commit 3c2a67eec8a0facc865b400caca52e7f6b7adf01
4109 Author: Kumar Gala <galak@kernel.crashing.org>
4110 Date: Thu Sep 17 01:52:37 2009 -0500
4111
4112 ppc/p4080: Handle timebase enabling and frequency reporting
4113
4114 On CoreNet style platforms the timebase frequency is the bus frequency
4115 defined by 16 (on PQ3 it is divide by 8). Also on the CoreNet platforms
4116 the core not longer controls the enabling of the timebase. We now need
4117 to enable the boot core's timebase via CCSR register writes.
4118
4119 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4120
4121 commit 7e4259bba4c56536760e42d32dacfb3233f216fd
4122 Author: Kumar Gala <galak@kernel.crashing.org>
4123 Date: Thu Mar 19 02:39:17 2009 -0500
4124
4125 ppc/p4080: Add various p4080 related defines (and p4040)
4126
4127 There are various locations that we have chip specific info:
4128
4129 * Makefile for which ddr code to build
4130 * Added p4080 & p4040 to cpu_type_list and SVR list
4131 * Added number of LAWs for p4080
4132 * Set CONFIG_MAX_CPUS to 8 for p4080
4133
4134 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4135
4136 commit 39a7e7fd538cdf49e7e8a2f0634ea5e15e12b4ec
4137 Author: Kumar Gala <galak@kernel.crashing.org>
4138 Date: Thu Sep 17 01:44:39 2009 -0500
4139
4140 ppc/p4080: CoreNet platfrom style secondary core release
4141
4142 The CoreNet platform style of bringing secondary cores out of reset is
4143 a bit different that the PQ3 style. Mostly the registers that we use
4144 to setup boot translation, enable time bases, and boot release the cores
4145 have moved around.
4146
4147 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4148
4149 commit a880cf3e0e1c220d780eccd0b101170c4499485d
4150 Author: Kumar Gala <galak@kernel.crashing.org>
4151 Date: Thu Sep 17 01:44:00 2009 -0500
4152
4153 ppc/p4080: CoreNet platfrom style CCSRBAR setting
4154
4155 On CoreNet based platforms the CCSRBAR address is split between an high &
4156 low register and we no longer shift the address.
4157
4158 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4159 Signed-off-by: Scott Wood <scottwood@freescale.com>
4160
4161 commit 418ec8584343f04048e2cc7ee96b6b29be54ad97
4162 Author: Kumar Gala <galak@kernel.crashing.org>
4163 Date: Thu Mar 19 02:32:23 2009 -0500
4164
4165 ppc/p4080: Add support for CoreNet style platform LAWs
4166
4167 On CoreNet based platforms the LAW address is split between an high &
4168 low register and we no longer shift the address. Also, the target IDs
4169 on CoreNet platforms have been completely re-assigned.
4170
4171 Additionally, added a new find_law() API to which LAW an address hits in.
4172 This is need for the CoreNet style boot release code since it will need
4173 to determine what the target ID should be set to for boot window
4174 translation.
4175
4176 Finally, enamed LAWAR_EN to LAW_EN and moved to header so we can use
4177 it elsewhere.
4178
4179 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4180
4181 commit 01df521217957d77d53c2d570183eded7030938f
4182 Author: Kumar Gala <galak@kernel.crashing.org>
4183 Date: Wed Sep 16 09:43:12 2009 -0500
4184
4185 ppc/p4080: Add p4080 platform immap definitions
4186
4187 The p4080 SoC has a significant amount of commonality with the 85xx/PQ3
4188 platform. We reuse the 85xx immap and just add new definitions for
4189 local access and global utils. The global utils is now broken into
4190 global utils, clocking and run control/power management.
4191
4192 The offsets from CCSR for a number of blocks have also changed. We
4193 introduce the CONFIG_FSL_CORENET define to distinquish the PQ3 style of
4194 platform from the new p4080 platform. We don't use QoirQ as there are
4195 products (like p2020) that are PQ3 based platforms but have the QoirQ
4196 name.
4197
4198 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4199
4200 commit 25bacf7a2b096496e2c58f2de4e5b2bce8fba038
4201 Author: Kumar Gala <galak@kernel.crashing.org>
4202 Date: Tue Sep 22 15:45:44 2009 -0500
4203
4204 ppc/85xx: Fix enabling of L2 cache
4205
4206 We need to flash invalidate the locks in addition to the cache
4207 before we enable.
4208
4209 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4210
4211 commit cb0ff65c619efacdc0ba69aa8ee6ede7dd364a38
4212 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
4213 Date: Tue Sep 22 12:48:27 2009 +0530
4214
4215 85xx-fdt: Fixed l2-ctlr's compatible prop for QorIQ
4216
4217 The code assumed names where just numbers and always prefixed 'mpc'.
4218 However newer QorIQ don't follow the mpc naming scheme.
4219
4220 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
4221 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4222
4223 commit 234a89d911ce28e46372f555d7c14e28424f2b0d
4224 Author: Mingkai Hu <Mingkai.hu@freescale.com>
4225 Date: Tue Sep 22 14:53:21 2009 +0800
4226
4227 ppc/85xx: add cpu init config file for boot from NAND
4228
4229 When boot from NAND, the NAND flash must be connected to br/or0.
4230 Also init RAM(L2 SRAM or DDR SDRAM) for load the second image to
4231 it.
4232
4233 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
4234 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4235
4236 commit 266139b88b43ae1d87abb5f5431e6f57b801795f
4237 Author: Mingkai Hu <Mingkai.hu@freescale.com>
4238 Date: Tue Sep 22 14:53:34 2009 +0800
4239
4240 immap_85xx: add porpllsr's plat ratio definition
4241
4242 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
4243 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4244
4245 commit 098bcbae3172d73d24ca8ba196328d901eed4132
4246 Author: Mingkai Hu <Mingkai.hu@freescale.com>
4247 Date: Tue Sep 22 14:53:10 2009 +0800
4248
4249 ppc/85xx: add ld script file for boot from NAND
4250
4251 The first stage 4K image uses a seperate ld script file to
4252 generate 4K image. This patch moves it to the cpu/mpc85xx/*
4253 to make it avaliable for 85xx platform.
4254
4255 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
4256 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4257
4258 commit 8439f05cfd8cbb38485376a34d9fe297ba262737
4259 Author: Peter Tyser <ptyser@xes-inc.com>
4260 Date: Mon Sep 21 23:09:28 2009 -0500
4261
4262 mpc8610hpcd: Use common 86xx fdt fixup code
4263
4264 Using the common 86xx fdt fixups removes some board-specific code and
4265 should make the mpc8610hpcd easier to maintain in the long run.
4266
4267 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4268 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4269
4270 commit 928435d11b898870415910efff87a4d6399cecb8
4271 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4272 Date: Mon Sep 21 17:19:17 2009 -0400
4273
4274 sbc85x0: tidy up Makefile to use new configuration script.
4275
4276 Commit 804d83a5 allows us to move all the configuration
4277 variation tweaks out of the top level Makefile and down
4278 into the boards config header. This takes advantage of
4279 that for the sbc8540/sbc8560 boards.
4280
4281 There were a couple of cheezy comments pointing at incorrect
4282 files, or files that don't exist, so I've cleaned those up too.
4283
4284 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4285 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4286
4287 commit 2738bc8df65ec905094d83f62f87fed123a03b9c
4288 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4289 Date: Sun Sep 20 20:36:06 2009 -0400
4290
4291 sbc8548: allow enabling PCI via a make config option
4292
4293 Prior to this commit, to enable PCI, you had to go manually
4294 edit the board config header, and if you had 33MHz PCI, you
4295 had to manually change CONFIG_SYS_NS16550_CLK too, which was
4296 not real user friendly,
4297
4298 This adds the typical PCI and clock speed make targets to the
4299 toplevel Makefile in accordance with what is being done with
4300 other boards (i.e. using the "-t" to mkconfig).
4301
4302 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4303 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4304
4305 commit fdc7eb90b504daa020f290604d50da8f7cb70d8a
4306 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4307 Date: Sun Sep 20 20:36:05 2009 -0400
4308
4309 sbc8548: update PCI/PCI-e support code
4310
4311 The PCI/PCI-e support for the sbc8548 was based on an earlier
4312 version of what the MPC8548CDS board was using, and in its
4313 current state it won't even compile. This re-syncs it to match
4314 the latest codebase and makes use of the new shared PCI functions
4315 to reduce board duplication.
4316
4317 It borrows from the MPC8568MDS, in that it pulls the PCI-e I/O
4318 back to 0xe280_0000 (where PCI2 would be on MPC8548CDS), and
4319 similarly it coalesces the PCI and PCI-e mem into one single TLB.
4320
4321 Both PCI-x and PCI-e have been tested with intel e1000 cards
4322 under linux (with an accompanying dts change in place)
4323
4324 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4325 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4326
4327 commit a8b3e90f798e0cca5f11c912f9d0823a1c5b6c24
4328 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4329 Date: Sun Sep 20 20:36:01 2009 -0400
4330
4331 fsl_pci: create a SET_STD_PCI_INFO() helper wrapper
4332
4333 Recycle the recently added PCI-e wrapper used to reduce board
4334 duplication of code by creating a similar version for plain PCI.
4335
4336 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4337 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4338
4339 commit 11d5a629f8a40f9d7cffc74e58f4e3ed258e56ab
4340 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4341 Date: Sun Sep 20 20:36:04 2009 -0400
4342
4343 sbc8548: correct local bus SDRAM size from 64M to 128M
4344
4345 The size of the LB SDRAM on this board is 128MB, spanning CS3
4346 and CS4. It was previously only being configured for 64MB on
4347 CS3, since that was what the original codebase of the MPC8548CDS
4348 had. In addition to setting up BR4/OR4, this also adds the TLB
4349 entry for the second half of the SDRAM.
4350
4351 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4352 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4353
4354 commit 0c7e4d45d9fb3c9e503ee93d50572d346dae150e
4355 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4356 Date: Sun Sep 20 20:36:03 2009 -0400
4357
4358 sbc8548: use I/O accessors
4359
4360 Sweep throught the board specific file and replace the various
4361 register proddings with the equivalent I/O accessors.
4362
4363 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4364 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4365
4366 commit fc38eb98ff226f2c53eecbee033a6ab7619473dc
4367 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4368 Date: Sun Sep 20 20:36:02 2009 -0400
4369
4370 sbc8548: remove eTSEC3/4 voltage hack
4371
4372 With only eTSEC1 and 2 being brought out to RJ-45 connectors, we
4373 aren't interested in the eTSEC3/4 voltage hack on this board
4374
4375 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4376 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4377
4378 commit 9b3ba24f18900633a394416cc056c44a1a6eb754
4379 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4380 Date: Fri Sep 18 19:08:41 2009 -0400
4381
4382 sbc8548: enable access to second bank of flash
4383
4384 The sbc8548 has a 64MB SODIMM flash module off of CS6 that
4385 previously wasn't enumerated by u-boot. There were already
4386 BR6/OR6 settings for it [used by cpu_init_f()] but there
4387 was no TLB entry and it wasn't in the list of flash banks
4388 reported to u-boot.
4389
4390 The location of the 64MB flash is "pulled back" 8MB from
4391 a 64MB boundary, in order to allow address space for the
4392 8MB boot flash that is at the end of 32 bit address space.
4393 This means creating two 4MB TLB entries for the 8MB chunk,
4394 and then expanding the original boot flash entry to 64MB
4395 in order to cover the 8MB boot flash and the remainder
4396 (56MB) of the user flash.
4397
4398 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4399 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4400
4401 commit ded58f4153923dfff16d2f96495bd7acf1f7e10e
4402 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4403 Date: Wed Sep 23 17:30:57 2009 -0400
4404
4405 sbc8548: cosmetic line re-wrap
4406
4407 Fix the extra long lines to be consistent with u-boot coding style.
4408 No functional change here.
4409
4410 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4411
4412 commit 2c40acd3525b75db3fcd3f5a5bd40445679b5547
4413 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4414 Date: Fri Sep 18 19:08:40 2009 -0400
4415
4416 sbc8548: get_clock_freq is not valid for this board
4417
4418 The get_clock_freq() comes from freescale/common/cadmus.c and is
4419 only valid for the CDS based 85xx reference platforms. It would
4420 be nice if we could read the 33 vs. 66MHz status somehow, but in
4421 the meantime, tie it to CONFIG_SYS_CLK_FREQ like all the other
4422 non-CDS boards do.
4423
4424 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4425 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4426
4427 commit 7b1f1399e876587e0a268a5a471dd444bfbc3114
4428 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4429 Date: Fri Sep 18 19:08:39 2009 -0400
4430
4431 sbc8548: delete unused MPC8548CDS info carried over from port
4432
4433 There are a couple defines and PCI bridge quirks related to the PCI
4434 backplane of the MPC8548CDS that have no meaning in the context of
4435 the port to the sbc8548 board, so delete them.
4436
4437 Also, the form factor of the sbc8548 is a standalone board with a
4438 single PCI-X and a single PCI-e slot. That pretty much guarantees
4439 that it will never be a PCI agent itself, so the host/agent and root
4440 complex/end node distinctions have been removed.
4441
4442 Similarly, since there is no physical connector mapping to PCI2, so
4443 all references of PCI2 in the board support files have been removed
4444 as well.
4445
4446 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4447 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4448
4449 commit 94ca091456d5c3040ddd6351c80cf3e74393f9be
4450 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4451 Date: Fri Sep 18 19:08:44 2009 -0400
4452
4453 sbc8548: enable use of PCI network cards
4454
4455 Create a board_eth_init to allow a place to hook in
4456 the PCI ethernet init after all the eTSEC are up
4457 and configured.
4458
4459 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4460 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4461
4462 commit 82b7725b6d46d9ad2b962b4cdfa896bd5ee32fb5
4463 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
4464 Date: Sat Sep 19 17:50:17 2009 +0530
4465
4466 ppc/85xx: 32bit DDR changes for P1020/P1011
4467
4468 The P1020/P1011 SOCs support max 32bit DDR width as opposed to P2020/P2010
4469 where max DDR data width supported is 64bit.
4470
4471 As a next step the DDR data width initialization would be made more dynamic
4472 with more flexibility from the board perspective and user choice.
4473 Going forward we would also remove the hardcodings for platforms with onboard
4474 memories and try to use the FSL SPD code for DDR initialization.
4475
4476 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
4477 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4478
4479 commit bd42bbb858dde713f023fc2e4f512ec174a1a8d2
4480 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4481 Date: Fri Sep 18 19:08:46 2009 -0400
4482
4483 sbc8548: replace README with completely new document
4484
4485 The previous README.sbc8548 was pretty much content-free. Replace
4486 it with something that actually gives the end user some relevant
4487 hardware details, and also lists the u-boot configuration choices.
4488
4489 Also in the cosmetic department, fix the bogus line in the Makefile
4490 that was carried over from the SBC8560 Makefile, and the typo in
4491 the sbc8548.c copyright.
4492
4493 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4494 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4495
4496 commit 002741ae862c1c7e3dad89d020e392e6add1c05d
4497 Author: Kumar Gala <galak@kernel.crashing.org>
4498 Date: Sat Sep 19 11:20:54 2009 -0500
4499
4500 ppc/85xx: Clean up use of LAWAR defines
4501
4502 On 85xx platforms we shouldn't be using any LAWAR_* defines
4503 but using the LAW_* ones provided by fsl-law.h. Rename any such
4504 uses and limit the LAWAR_ to the 83xx platform as the only user so
4505 we will get compile errors in the future.
4506
4507 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4508
4509 commit f61dae7c9dc526410faec15ce352b11fc36a560b
4510 Author: Kumar Gala <galak@kernel.crashing.org>
4511 Date: Thu Sep 3 10:20:09 2009 -0500
4512
4513 ppc/85xx: Clean up mpc8572DS PCI setup code
4514
4515 Use new fsl_pci_init_port() that reduces amount of duplicated code in the
4516 board ports, use IO accessors and clean up printing of status info.
4517
4518 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4519
4520 commit 4958af8735207640181c4423e41b24ee7418361a
4521 Author: Kumar Gala <galak@kernel.crashing.org>
4522 Date: Thu Sep 3 09:42:01 2009 -0500
4523
4524 ppc/85xx: Clean up p2020ds PCI setup code
4525
4526 Use new fsl_pci_init_port() that reduces amount of duplicated code in the
4527 board ports, use IO accessors and clean up printing of status info.
4528
4529 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4530
4531 commit 93a83872c707891bad22f7776d79a650c870601f
4532 Author: Kumar Gala <galak@kernel.crashing.org>
4533 Date: Thu Sep 3 10:09:04 2009 -0500
4534
4535 ppc/85xx: Clean up p1_p2_rdb PCI setup
4536
4537 General code cleanup to use in/out IO accessors as well as making
4538 the code that prints out info sane between board and generic fsl pci
4539 code.
4540
4541 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4542
4543 commit 62ca21c442e18fec118ec83e183d64ea49966ce7
4544 Author: Kumar Gala <galak@kernel.crashing.org>
4545 Date: Thu Sep 10 16:31:53 2009 -0500
4546
4547 ppc/85xx: Simplify the top makefile for P1_P2_RDB boards
4548
4549 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4550
4551 commit a0f9e0e0f06033807de0ae017ad4d9cf5ddff84b
4552 Author: Kumar Gala <galak@kernel.crashing.org>
4553 Date: Thu Sep 10 16:26:37 2009 -0500
4554
4555 ppc/85xx: Simplify the top makefile for 36-bit config for P2020DS
4556
4557 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4558
4559 commit f9edcc10e6cb497dd7dcbaf691cfd1859abae27a
4560 Author: Kumar Gala <galak@kernel.crashing.org>
4561 Date: Thu Sep 10 16:23:45 2009 -0500
4562
4563 ppc/85xx: Simplify the top makefile for 36-bit config for MPC8572DS
4564
4565 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4566
4567 commit 0e905ac28b1e039d74e63232293972bff6b5a0ce
4568 Author: Mingkai Hu <Mingkai.hu@freescale.com>
4569 Date: Fri Sep 18 11:45:09 2009 +0800
4570
4571 ppc/85xx: simplify the top makefile for 36-bit config for mpc8536ds
4572
4573 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
4574 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4575
4576 commit 202d94875c98b7b573f136c4f353609758ed9733
4577 Author: Kumar Gala <galak@kernel.crashing.org>
4578 Date: Tue Sep 15 22:21:58 2009 -0500
4579
4580 ppc/85xx: Fix LCRR_CLKDIV defines
4581
4582 For some reason the CLKDIV field varies between SoC in how it interprets
4583 the bit values.
4584
4585 All 83xx and early (e500v1) PQ3 devices support:
4586 clk/2: CLKDIV = 2
4587 clk/4: CLKDIV = 4
4588 clk/8: CLKDIV = 8
4589
4590 Newer PQ3 (e500v2) and MPC86xx support:
4591 clk/4: CLKDIV = 2
4592 clk/8: CLKDIV = 4
4593 clk/16: CLKDIV = 8
4594
4595 Ensure that the MPC86xx and MPC85xx still get the same behavior and make
4596 the defines reflect their logical view (not the value of the field).
4597
4598 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4599 Acked-by: Peter Tyser <ptyser@xes-inc.com>
4600
4601 commit 55f786d8ba8ce58a81428536da34a2192b9bad9f
4602 Author: Peter Tyser <ptyser@xes-inc.com>
4603 Date: Mon Sep 21 12:04:33 2009 -0500
4604
4605 MAKEALL: Use POSIX math
4606
4607 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4608
4609 commit 40a28f0885e62b6607e12ed6baa6284927f5263e
4610 Author: Peter Tyser <ptyser@xes-inc.com>
4611 Date: Mon Sep 21 12:04:32 2009 -0500
4612
4613 MAKEALL: Add summary information
4614
4615 This change adds some basic summary information to the MAKEALL script.
4616 The summary information includes how many boards were compiled, how many
4617 boards had compile warnings or errors, and which specific boards had
4618 compile warnings or errors.
4619
4620 This information is useful when doing compile testing to quickly
4621 determine which boards are broken.
4622
4623 As a side benefit, no empty $BOARD.ERR files are generated by MAKEALL.
4624 Previously, each board had a corresponding $BOARD.ERR file, even if the
4625 board compiled cleanly.
4626
4627 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4628
4629 commit 71ce9bd7f551e44c4ddb4c985c095da6d3452d79
4630 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
4631 Date: Mon Sep 21 11:05:55 2009 -0500
4632
4633 galaxy5200: enable version environment variable
4634
4635 Add version environment variable configuration to the galaxy5200
4636 board header file.
4637
4638 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
4639
4640 Edited commit message.
4641
4642 Signed-off-by: Wolfgang Denk <wd@denx.de>
4643
4644 commit c569ad6e1e8768a0fec513ffc156412240b7eb35
4645 Author: Werner Pfister <werner.pfister@intercontrol.de>
4646 Date: Mon Sep 21 14:49:56 2009 +0200
4647
4648 digsy_mtc: Add TCR register value for RTC (DS1339)
4649
4650 Signed-off-by: Werner Pfister <werner.pfister@intercontrol.de>
4651 Signed-off-by: Detlev Zundel <dzu@denx.de>
4652
4653 commit b0078c8792badd81aed51b7eabe85e960036361c
4654 Author: Werner Pfister <werner.pfister@intercontrol.de>
4655 Date: Mon Sep 21 14:49:55 2009 +0200
4656
4657 rtc/ds1337.c: Allow to set TCR register
4658
4659 This is needed to correctly start the charging of an attached capacitor
4660 or battery.
4661
4662 Signed-off-by: Werner Pfister <werner.pfister@intercontrol.de>
4663 Signed-off-by: Detlev Zundel <dzu@denx.de>
4664
4665 commit 9d7952e4c636b8c99289a44dbe28c6f93c43b9f7
4666 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
4667 Date: Tue Sep 15 09:53:29 2009 +0200
4668
4669 ubifs: Add support for looking up directory and relative symlinks
4670
4671 This patch adds support for resolving symlinks to directories as well as
4672 relative symlinks. Symlinks are now always resolved during file lookup,
4673 so the load stage no longer needs to special-case them.
4674
4675 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
4676 Signed-off-by: Stefan Roese <sr@denx.de>
4677
4678 commit fcdb36b85ac033c09a9762a0a14808f7cb2ed54c
4679 Author: Rupjyoti Sarmah <rsarmah@amcc.com>
4680 Date: Mon Sep 21 11:26:19 2009 -0700
4681
4682 ppc4xx: Fix PCIE PLL lock on 440SPe Yucca board
4683
4684 u-boot reports a PCIE PLL lock error at boot time on Yucca board, and
4685 left PCIe nonfunctional. This is fixed by making u-boot function
4686 ppc4xx_init_pcie() to wait 300 uS after negating reset before the
4687 first check of the PLL lock.
4688
4689 Signed-off-by: Rupjyoti Sarmah <rsarmah@amcc.com>
4690 Signed-off-by: Stefan Roese <sr@denx.de>
4691
4692 commit 91d599044caac4a8c228115b16cf3b073f902080
4693 Author: Dirk Eibach <eibach@gdsys.de>
4694 Date: Mon Sep 21 13:27:14 2009 +0200
4695
4696 ppc4xx: Make DDR2 timing for intip more robust
4697
4698 DDR2 timing for intip was on the edge for some of the available chips
4699 for this board. Now it is verfied to work with all of them.
4700
4701 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
4702 Signed-off-by: Stefan Roese <sr@denx.de>
4703
4704 commit 184a3a27f5cd2c64666f74df94c86b94c4383ef8
4705 Author: Wolfgang Denk <wd@denx.de>
4706 Date: Tue Sep 15 00:26:02 2009 +0200
4707
4708 board/linkstation/ide.c: Fix compile warning
4709
4710 Fix warning: ide.c:60: warning: dereferencing type-punned pointer will
4711 break strict-aliasing rules
4712
4713 Signed-off-by: Wolfgang Denk <wd@denx.de>
4714 Cc: Guennadi Liakhovetski <lg@denx.de>
4715
4716 commit 004eca0c9ba328de457d5dc9ef8805639dfef893
4717 Author: Peter Tyser <ptyser@xes-inc.com>
4718 Date: Wed Sep 16 22:03:08 2009 -0500
4719
4720 ppc: Clean up calling of phy_reset() during init
4721
4722 Remove board-specific #ifdefs for calling phy_reset() during
4723 initializtion
4724
4725 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4726
4727 commit 3a8f28d0a6d9f8505017680233064c13e4587174
4728 Author: Peter Tyser <ptyser@xes-inc.com>
4729 Date: Wed Sep 16 22:03:07 2009 -0500
4730
4731 ppc: Clean up calling of misc_init_r() during init
4732
4733 Remove board-specific #ifdefs for calling misc_init_r() during
4734 initializtion
4735
4736 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4737 Acked-by: Heiko Schocher <hs@denx.de>
4738
4739 commit 3202d33169df04da5cf3dea8c5ab0a902b90ecaa
4740 Author: Peter Tyser <ptyser@xes-inc.com>
4741 Date: Wed Sep 16 21:38:10 2009 -0500
4742
4743 Remove deprecated 'autoscr' command/variables
4744
4745 The more standard 'source' command provides identical functionality to
4746 the autoscr command.
4747
4748 Environment variable names/values on the MVBC_P, MVBML7, kmeter1,
4749 mgcoge, and km8xx boards are updated to no longer refernce 'autoscr'.
4750
4751 The 'autoscript' and 'autoscript_uname' environment variables are
4752 also removed.
4753
4754 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4755 Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
4756 Acked-by: Heiko Schocher <hs@denx.de>
4757
4758 commit d3f4941874a20d8a390a36ba71335ae1db2f9ba0
4759 Author: Paul Gibson <paul.gibson2074@gmail.com>
4760 Date: Wed Sep 16 10:05:00 2009 +1000
4761
4762 mpc512x. Micron nand flash needs a reset before a read command is issued.
4763
4764 Micron nand flash needs a reset before a read command is issued.
4765 The current mpc5121_nfc driver ignores the reset command.
4766
4767 commit b55ae40249545eabb9d6bfb850b1400a32561b1f
4768 Author: Marcel Ziswiler <marcel@ziswiler.com>
4769 Date: Wed Sep 9 21:18:41 2009 +0200
4770
4771 FDT: remove obsolete OF_CPU and OF_SOC macros.
4772
4773 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
4774 Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
4775 Acked-by: Heiko Schocher <hs@denx.de>
4776
4777 commit 3b6a9267f0de7b85d387fa4123d0b58379363447
4778 Author: Wolfgang Denk <wd@denx.de>
4779 Date: Tue Sep 15 00:09:21 2009 +0200
4780
4781 board/flagadm/flash.c: fix compile warning
4782
4783 Fix warning: flash.c:531: warning: dereferencing type-punned pointer
4784 will break strict-aliasing rules
4785
4786 Signed-off-by: Wolfgang Denk <wd@denx.de>
4787 Cc: Kári Davíðsson <kd@flaga.is>
4788
4789 commit 0413cfecea350000eab5e591a0965c3e3ee0ff00
4790 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
4791 Date: Thu Sep 17 15:15:52 2009 +0200
4792
4793 Correct ffs/fls regression for PowerPC etc
4794
4795 Commits
4796
4797 02f99901ed1c9d828e3ea117f94ce2264bf8389e
4798 52d61227b66d4099b39c8309ab37cb67ee09a405
4799
4800 introduced a regression where platform-specific ffs/fls implementations
4801 were defined away. This patch corrects that by using PLATFORM_xxx
4802 instead of the name itself.
4803
4804 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
4805 Acked-by: Kumar Gala <galak@kernel.crashing.org>
4806 Acked-by: Stefan Roese <sr@denx.de>
4807
4808 commit e67af44d0167d8237dd2c2ddf8e301d19ca12914
4809 Author: Stefan Roese <sr@denx.de>
4810 Date: Mon Sep 14 11:13:34 2009 +0200
4811
4812 ppc4xx: Consolidate get_OPB_freq()
4813
4814 All 4xx variants had their own, mostly identical get_OPB_freq()
4815 function. Some variants even only had the OPB frequency calculated
4816 in this routine and not supplied the sys_info.freqOPB variable
4817 correctly (e.g. 405EZ). This resulted in incorrect OPB values passed
4818 via the FDT to Linux.
4819
4820 This patch now removes all those copies and only uses one function
4821 for all 4xx variants (except for IOP480 which doesn't have an OPB).
4822
4823 Signed-off-by: Stefan Roese <sr@denx.de>
4824
4825 commit 84a45d33c2cc261dbd5411f7c2ad45f6003025b6
4826 Author: Stefan Roese <sr@denx.de>
4827 Date: Fri Sep 11 17:09:45 2009 +0200
4828
4829 ppc4xx: Enable commands for FDT enabled Linux booting on AMCC Acadia
4830
4831 Acadia still used the "old" arch/ppc bootm commands for booting
4832 Linux images without FDT. This patch now enables these fdt-aware
4833 boot commands for Acadia as well.
4834
4835 Signed-off-by: Stefan Roese <sr@denx.de>
4836
4837 commit 95a4a593b577b6e2f1da2d4b0f5ec86975c33413
4838 Author: Stefan Roese <sr@denx.de>
4839 Date: Fri Sep 11 17:07:55 2009 +0200
4840
4841 ppc4xx: Fix 405EZ uart base baud calculation
4842
4843 With this fix, Linux correctly configures the baudrate when booting
4844 with FDT passed from U-Boot to Linux.
4845
4846 Signed-off-by: Stefan Roese <sr@denx.de>
4847
4848 commit 15fba3279b56333bdb65ead366f82c945ed320d1
4849 Author: Kumar Gala <galak@kernel.crashing.org>
4850 Date: Fri Sep 11 15:28:41 2009 -0500
4851
4852 ppc/85xx: Disable all async interrupt sources when we boot
4853
4854 We should make sure to clear MSR[ME, CE, DE] when we boot an OS image
4855 since we have changed the exception vectors and the OSes vectors might
4856 not be setup we should avoid async interrupts at all costs.
4857
4858 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4859
4860 commit 9f00409a9d04cf533305531da32437130802f3a3
4861 Author: Kumar Gala <galak@kernel.crashing.org>
4862 Date: Fri Sep 11 13:52:45 2009 -0500
4863
4864 ppc/85xx: Split out cpu_init_early into its own file for NAND_SPL
4865
4866 By pulling out cpu_init_early we can build just it and not all of
4867 cpu_init for NAND_SPL.
4868
4869 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4870
4871 commit 0456dbf3475d0aec42873a967ac97ed81f376119
4872 Author: Kumar Gala <galak@kernel.crashing.org>
4873 Date: Fri Sep 11 13:41:49 2009 -0500
4874
4875 ppc/85xx: Change cpu_init_early_f so we can use with NAND SPL
4876
4877 Use write_tlb and don't use memset so we can use the same code for
4878 cpu_init_early_f between NAND SPL and not.
4879
4880 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4881
4882 commit 6e1385d5f8d137e741dfef02465d7dc328040ad7
4883 Author: Mingkai Hu <Mingkai.hu@freescale.com>
4884 Date: Fri Sep 11 10:53:08 2009 +0800
4885
4886 NAND boot: change NAND loader's relocate SP to CONFIG param
4887
4888 So that we can set the NAND loader's relocate stack pointer
4889 to the value other than the relocate address + 0x10000.
4890
4891 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
4892 Acked-by: Kim Phillips <kim.phillips@freescale.com>
4893 Acked-by: Scott Wood <scottwood@freescale.com>
4894 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4895
4896 commit 7da53351d817c6d77364cfde922891f37d0e5ed8
4897 Author: Mingkai Hu <Mingkai.hu@freescale.com>
4898 Date: Fri Sep 11 14:19:10 2009 +0800
4899
4900 ppc/85xx: add boot from NAND/eSDHC/eSPI support
4901
4902 The MPC8536E is capable of booting form NAND/eSDHC/eSPI, this patch
4903 implements these three bootup methods in a unified way - all of these
4904 use the general cpu/mpc85xx/start.S, and load the main image to L2SRAM
4905 which lets us use the SPD to initialize the SDRAM.
4906
4907 For all three bootup methods, the bootup process can be divided into two
4908 stages: the first stage will initialize the corresponding controller,
4909 configure the L2SRAM, then copy the second stage image to L2SRAM and
4910 jump to it. The second stage image is just like the general U-Boot image
4911 to configure all the hardware and boot up to U-Boot command line.
4912
4913 When boot from NAND, the eLBC controller will first load the first stage
4914 image to internal 4K RAM buffer because it's also stored on the NAND
4915 flash. The first stage image, also call 4K NAND loader, will initialize
4916 the L2SRAM, load the second stage image to L2SRAM and jump to it. The 4K
4917 NAND loader's code comes from the corresponding nand_spl directory, along
4918 with the code twisted by CONFIG_NAND_SPL.
4919
4920 When boot from eSDHC/eSPI, there's no such a first stage image because
4921 the CPU ROM code does the same work. It will initialize the L2SRAM
4922 according to the config addr/word pairs on the fixed address and
4923 initialize the eSDHC/eSPI controller, then load the second stage image
4924 to L2SRAM and jump to it.
4925
4926 The macro CONFIG_SYS_RAMBOOT is used to control the code to produce the
4927 second stage image for all different bootup methods. It's set in the
4928 board config file when one of the bootup methods above is selected.
4929
4930 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
4931 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4932
4933 commit b2eec281a811bb52941f61203d8fe35256b3582c
4934 Author: Kumar Gala <galak@kernel.crashing.org>
4935 Date: Fri Sep 11 12:32:01 2009 -0500
4936
4937 ppc/85xx: Move code around to prep for NAND_SPL
4938
4939 If we move some of the functions in tlb.c around we need less
4940 ifdefs. The first stage loader just needs invalidate_tlb and
4941 init_tlbs.
4942
4943 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4944
4945 commit 206af3527c05e520e28d38a48a1d15433e34675d
4946 Author: Kumar Gala <galak@kernel.crashing.org>
4947 Date: Fri Sep 11 11:30:30 2009 -0500
4948
4949 ppc/85xx: Repack tlb_table to save space
4950
4951 We can pack the initial tlb_table in MAS register format and use
4952 write_tlb to set things up. This savings can be helpful for NAND
4953 style first stage boot loaders.
4954
4955 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4956
4957 commit d30f9043539d372cf66406bc2f21bb8c20e67009
4958 Author: Kumar Gala <galak@kernel.crashing.org>
4959 Date: Fri Sep 11 11:27:00 2009 -0500
4960
4961 ppc/85xx: Introduce low level write_tlb function
4962
4963 Factor out the code we use to actually write a tlb entry.
4964
4965 set_tlb is a logical view of the TLB while write_tlb is a low level
4966 matching the MAS registers.
4967
4968 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4969
4970 commit 0ead6f2ed7cf4e1f70dab5b529ad121e38359485
4971 Author: Roy Zang <tie-fei.zang@freescale.com>
4972 Date: Thu Sep 10 14:44:48 2009 +0800
4973
4974 ppc/85xx: Enable usb ehci support for p2020ds board
4975
4976 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
4977 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4978
4979 commit 6d8565a1ed5acb01bad4a4cd74a93be5f7fb7f7c
4980 Author: Kumar Gala <galak@kernel.crashing.org>
4981 Date: Thu Sep 10 14:54:55 2009 -0500
4982
4983 ppc/8xxx: Misc DDR related fixes
4984
4985 * Fix setting of ESDMODE (MR1) register - the bit shifting was wrong
4986 * Fix the format string to match size in a debug print
4987
4988 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4989
4990 commit 3e3c9c157b89eab2dc2f897899b1b95cd70c1a58
4991 Author: Scott Wood <scottwood@freescale.com>
4992 Date: Thu Aug 20 17:45:00 2009 -0500
4993
4994 ppc/85xx: Remove some bogus code from external interrupt handler.
4995
4996 Skipping the interrupted instruction will accomplish nothing other
4997 than turning a spurious interrupt into a crash.
4998
4999 External interrupts are not machine checks, so don't count them as such.
5000
5001 Signed-off-by: Scott Wood <scottwood@freescale.com>
5002
5003 commit dcc87dd58db466caa2d66755c5ec9455edf42fe8
5004 Author: Scott Wood <scottwood@freescale.com>
5005 Date: Thu Aug 20 17:45:05 2009 -0500
5006
5007 ppc/85xx: Ensure that MAS8 is zero when writing TLB entries.
5008
5009 Its reset value is random, and we sometimes read uninitialized TLB
5010 arrays. Make sure that we don't retain MAS8 from reading such an entry
5011 if the VF bit in MAS8 is set, attempts to use the mapping will trap.
5012
5013 Signed-off-by: Scott Wood <scottwood@freescale.com>
5014
5015 commit 1b72dbecca2d7ad7a21c92d80227daa2d8ec5a57
5016 Author: Scott Wood <scottwood@freescale.com>
5017 Date: Thu Aug 20 17:44:20 2009 -0500
5018
5019 ppc/85xx: Don't enable interrupts before we're ready
5020
5021 We cannot handle any exceptions while running in AS1, as the exceptions
5022 will transition back to AS0 without a valid mapping.
5023
5024 Signed-off-by: Scott Wood <scottwood@freescale.com>
5025
5026 commit 3ca55bce9c8bf00df06a20487fafc16fa2f8084b
5027 Author: Marcel Ziswiler <marcel@ziswiler.com>
5028 Date: Fri Sep 11 07:50:33 2009 -0400
5029
5030 mpc8260: remove Ethernet node fixup to use generic FDT code.
5031
5032 Remove Ethernet node fixup from mgcoge and muas3001 boards and modify its
5033 configs for the common mpc8260 code to use generic Ethernet fixup.
5034
5035 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
5036 Tested-by: Heiko Schocher <hs@denx.de>
5037
5038 commit 1c20e4a9fbc531e2149ae061e8583f5fad82f163
5039 Author: Mike Frysinger <vapier@gentoo.org>
5040 Date: Wed Sep 9 12:20:21 2009 -0400
5041
5042 tools/netconsole: use ncb automatically if available
5043
5044 The standard netcat, while ubiquitous, doesn't handle broadcast udp packets
5045 properly. The local ncb util does however. So if ncb can be located in
5046 the standard locations, automatically use that instead.
5047
5048 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5049
5050 commit 770931805d292908a57a3d2c5f9a4fcde888b5a2
5051 Author: Mike Frysinger <vapier@gentoo.org>
5052 Date: Wed Sep 9 12:20:20 2009 -0400
5053
5054 tools/netconsole: make a bit more robust
5055
5056 The netcat utility likes to exit when it receives an empty packet (as it
5057 thinks this means EOF). This can easily occur when working with command
5058 line editing as this behavior will be triggered when using backspace. Or
5059 with tabs and command line completion. So create two netcat processes -
5060 one to only listen (and put it into a loop), and one to do the sending.
5061 Once the user quits the transmitting netcat, the listening one will be
5062 killed automatically.
5063
5064 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5065
5066 commit a6e19d69f63c14b7672c65ca4b014621c6fd0201
5067 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
5068 Date: Mon Aug 24 09:10:16 2009 +0200
5069
5070 arm: Define test_and_set_bit and test_and_clear bit for ARM
5071
5072 Needed for (e.g.) ubifs support to work.
5073
5074 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
5075
5076 commit 52d61227b66d4099b39c8309ab37cb67ee09a405
5077 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
5078 Date: Mon Aug 24 09:10:12 2009 +0200
5079
5080 Define ffs/fls for all architectures
5081
5082 UBIFS requires fls(), which is not defined for arm (and some other
5083 architectures) and this patch adds it. The implementation is taken from
5084 Linux and is generic. ffs() is also defined for those that miss it.
5085
5086 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
5087
5088 commit 4b15de08fe4d2c9d12a3764394731018a763216b
5089 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
5090 Date: Mon Aug 24 09:10:03 2009 +0200
5091
5092 arm: Make arm bitops endianness-independent
5093
5094 Bring over the bitop implementations from the Linux
5095 include/asm-generic/bitops/non-atomic.h to provide
5096 endianness-independence.
5097
5098 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
5099
5100 commit 02f99901ed1c9d828e3ea117f94ce2264bf8389e
5101 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
5102 Date: Mon Aug 24 09:09:50 2009 +0200
5103
5104 Move __set/clear_bit from ubifs.h to bitops.h
5105
5106 __set_bit and __clear_bit are defined in ubifs.h as well as in
5107 asm/include/bitops.h for some architectures. This patch moves
5108 the generic implementation to include/linux/bitops.h and uses
5109 that unless it's defined by the architecture.
5110
5111 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
5112
5113 commit 557555fe0b82940ba7cc69f81d31d6ef4d4933b4
5114 Author: Mike Frysinger <vapier@gentoo.org>
5115 Date: Fri Sep 4 19:54:45 2009 -0400
5116
5117 standalone: convert to kbuild style
5118
5119 Clean up the arch/cpu/board/config checks as well as redundant setting of
5120 srec/bin variables by using the kbuild VAR-$(...) style.
5121
5122 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5123
5124 commit 804d83a563c47b55e1f14f5de3b6e9d7e2a7ef5e
5125 Author: Wolfgang Denk <wd@denx.de>
5126 Date: Tue Sep 15 22:12:31 2009 +0200
5127
5128 mkconfig: split the board make target to multiple config targets
5129
5130 To simplify the top level makefile it useful to be able to parse
5131 the top level makefile target to multiple individual target, then
5132 put them to the config.h, leave the board config file to handle
5133 the different targets.
5134
5135 Note that this method uses the '_'(underline) as the delimiter when
5136 splits the board make target.
5137
5138 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
5139
5140 This also reverts commit 511c02f611cb5afa1b8ca5980caaaabaa0de377f.
5141
5142 Signed-off-by: Wolfgang Denk <wd@denx.de>
5143
5144 commit ceb2d57c2205db5bbd868577f756c74a2568160c
5145 Author: Wolfgang Denk <wd@denx.de>
5146 Date: Tue Sep 15 21:13:27 2009 +0200
5147
5148 kwbimage.c: Fix compile warning when building on 64 bit systems (again)
5149
5150 Commit 51003b89 attempted to fix a build problem on 64 bit systems,
5151 but just turned it into a build problem on 32 bit systems (silly me).
5152
5153 Now do the Right Thing (TM) and use a "%zu" printf format.
5154
5155 Also fix spelling error.
5156
5157 Signed-off-by: Wolfgang Denk <wd@denx.de>
5158
5159 commit 6c7bc91fb3dba186d3398a1653f6db236510ffa7
5160 Author: Wolfgang Denk <wd@denx.de>
5161 Date: Fri Sep 11 11:30:34 2009 +0200
5162
5163 board/amcc/common/flash.c: Fix compile warning
5164
5165 Fix warning: ../common/flash.c:917: warning: dereferencing type-punned
5166 pointer will break strict-aliasing rules
5167
5168 Signed-off-by: Wolfgang Denk <wd@denx.de>
5169 Cc: Stefan Roese <sr@denx.de>
5170 Acked-by: Stefan Roese <sr@denx.de>
5171
5172 commit 70fb809c563c340538264d2a9436135e74c38bfe
5173 Author: Wolfgang Denk <wd@denx.de>
5174 Date: Fri Sep 11 11:47:07 2009 +0200
5175
5176 board/amcc/yucca/flash.c: Fix compile warning
5177
5178 Fix warning: flash.c:919: warning: dereferencing type-punned pointer
5179 will break strict-aliasing rules
5180
5181 Signed-off-by: Wolfgang Denk <wd@denx.de>
5182 Cc: Stefan Roese <sr@denx.de>
5183 Acked-by: Stefan Roese <sr@denx.de>
5184
5185 commit 030ec52f8cc83015f968db30208f4bd07feffa6c
5186 Author: Wolfgang Denk <wd@denx.de>
5187 Date: Fri Sep 11 11:44:39 2009 +0200
5188
5189 board/amcc/taihu/flash.c: Fix compile warning
5190
5191 Fix warnings:
5192 flash.c: In function 'write_word_1':
5193 flash.c:696: warning: dereferencing type-punned pointer will break strict-aliasing rules
5194 flash.c: In function 'write_word_2':
5195 flash.c:1044: warning: dereferencing type-punned pointer will break strict-aliasing rules
5196
5197 Signed-off-by: Wolfgang Denk <wd@denx.de>
5198 Cc: Stefan Roese <sr@denx.de>
5199 Acked-by: Stefan Roese <sr@denx.de>
5200
5201 commit 0fd3d902d920f3e60f88530c33f1ae7581260951
5202 Author: Wolfgang Denk <wd@denx.de>
5203 Date: Fri Sep 11 11:37:20 2009 +0200
5204
5205 board/etin/debris/phantom.c: Fix compile error
5206
5207 Fix build problem caused by commit e84aba13: "Replace BCD2BIN and
5208 BIN2BCD macros with inline functions"
5209
5210 phantom.c:163: error: redefinition of 'bcd2bin'
5211 /home/wd/git/u-boot/work/include/bcd.h:16: error: previous definition of 'bcd2bin' was here
5212 phantom.c:168: error: redefinition of 'bin2bcd'
5213 /home/wd/git/u-boot/work/include/bcd.h:21: error: previous definition of 'bin2bcd' was here
5214
5215 Signed-off-by: Wolfgang Denk <wd@denx.de>
5216 Cc: Sangmoon Kim <dogoil@etinsys.com>
5217
5218 commit 5168801f4b71c2f8dcd92a80cfcfda84246e67fe
5219 Author: Wolfgang Denk <wd@denx.de>
5220 Date: Fri Sep 11 11:28:21 2009 +0200
5221
5222 board/dave/common/flash.c: fix compile warning
5223
5224 Fix warning: ../common/flash.c:668: warning: dereferencing type-punned
5225 pointer will break strict-aliasing rules
5226
5227 Signed-off-by: Wolfgang Denk <wd@denx.de>
5228 Cc: Andrea Marson <andrea.marson@dave-tech.it>
5229
5230 commit 97138fc48091f2b063c4e32f36d05854b9d113fb
5231 Author: Wolfgang Denk <wd@denx.de>
5232 Date: Fri Sep 11 11:15:31 2009 +0200
5233
5234 board/esd/cpci750/ide.c: fix compile warning
5235
5236 Fix warning: ide.c:54: warning: dereferencing type-punned pointer will
5237 break strict-aliasing rules
5238
5239 Signed-off-by: Wolfgang Denk <wd@denx.de>
5240 Cc: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5241 Cc: Stefan Roese <sr@denx.de>
5242 Acked-by: Stefan Roese <sr@denx.de>
5243
5244 commit ba73060cf4163bd5eb1711020126e2f7f62d363e
5245 Author: Wolfgang Denk <wd@denx.de>
5246 Date: Fri Sep 11 10:13:26 2009 +0200
5247
5248 board/esd/common/flash.c: Fix compile warning
5249
5250 Fix warning: ../common/flash.c:635: warning: dereferencing type-punned
5251 pointer will break strict-aliasing rules
5252
5253 Signed-off-by: Wolfgang Denk <wd@denx.de>
5254 Cc: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5255 Cc: Stefan Roese <sr@denx.de>
5256 Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
5257 Acked-by: Stefan Roese <sr@denx.de>
5258
5259 commit 2d6d9f0848e952ea33c658dfba335685a2725b8b
5260 Author: Wolfgang Denk <wd@denx.de>
5261 Date: Fri Sep 11 09:36:31 2009 +0200
5262
5263 sk98lin: fix compile warnings
5264
5265 Fix warnings:
5266 skge.c: In function 'BoardInitMem':
5267 skge.c:1389: warning: dereferencing type-punned pointer will break strict-aliasing rules
5268 skge.c:1390: warning: dereferencing type-punned pointer will break strict-aliasing rules
5269 skge.c:1391: warning: dereferencing type-punned pointer will break strict-aliasing rules
5270 skgesirq.c: In function 'SkGePortCheckUpXmac':
5271 skgesirq.c:1301: warning: dereferencing type-punned pointer will break strict-aliasing rules
5272 skgesirq.c:1301: warning: dereferencing type-punned pointer will break strict-aliasing rules
5273 skgesirq.c:1398: warning: dereferencing type-punned pointer will break strict-aliasing rules
5274 skgesirq.c:1398: warning: dereferencing type-punned pointer will break strict-aliasing rules
5275 skrlmt.c: In function 'SkRlmtInit':
5276 skrlmt.c:661: warning: dereferencing type-punned pointer will break strict-aliasing rules
5277 skxmac2.c: In function 'SkMacPromiscMode':
5278 skxmac2.c:753: warning: dereferencing type-punned pointer will break strict-aliasing rules
5279 skxmac2.c:753: warning: dereferencing type-punned pointer will break strict-aliasing rules
5280 skxmac2.c: In function 'SkMacHashing':
5281 skxmac2.c:803: warning: dereferencing type-punned pointer will break strict-aliasing rules
5282 skxmac2.c:803: warning: dereferencing type-punned pointer will break strict-aliasing rules
5283 skxmac2.c: In function 'SkMacFlushTxFifo':
5284 skxmac2.c:1115: warning: dereferencing type-punned pointer will break strict-aliasing rules
5285 skxmac2.c:1115: warning: dereferencing type-punned pointer will break strict-aliasing rules
5286 skxmac2.c: In function 'SkMacFlushRxFifo':
5287 skxmac2.c:1145: warning: dereferencing type-punned pointer will break strict-aliasing rules
5288 skxmac2.c:1145: warning: dereferencing type-punned pointer will break strict-aliasing rules
5289 skxmac2.c: In function 'SkXmInitPauseMd':
5290 skxmac2.c:1987: warning: dereferencing type-punned pointer will break strict-aliasing rules
5291 skxmac2.c:1987: warning: dereferencing type-punned pointer will break strict-aliasing rules
5292 skxmac2.c: In function 'SkXmOverflowStatus':
5293 skxmac2.c:4236: warning: dereferencing type-punned pointer will break strict-aliasing rules
5294 skxmac2.c:4236: warning: dereferencing type-punned pointer will break strict-aliasing rules
5295 skxmac2.c:4242: warning: dereferencing type-punned pointer will break strict-aliasing rules
5296 skxmac2.c:4242: warning: dereferencing type-punned pointer will break strict-aliasing rules
5297
5298 Signed-off-by: Wolfgang Denk <wd@denx.de>
5299 Cc: Ben Warren <biggerbadderben@gmail.com>
5300
5301 commit 3708e4cdb1f1d3d5128cf87be040d7e6b85f60dd
5302 Author: Wolfgang Denk <wd@denx.de>
5303 Date: Fri Sep 11 09:13:58 2009 +0200
5304
5305 drivers/net/natsemi.c: fix compile warning
5306
5307 Fix warning: natsemi.c:757: warning: dereferencing type-punned pointer
5308 will break strict-aliasing rules
5309
5310 Signed-off-by: Wolfgang Denk <wd@denx.de>
5311 Cc: Ben Warren <biggerbadderben@gmail.com>
5312
5313 commit 78d19a398778a58d7b40b0c78e026515271b1a84
5314 Author: Michal Simek <monstr@monstr.eu>
5315 Date: Mon Sep 7 09:08:02 2009 +0200
5316
5317 net: emaclite: Cleanup license to be GPL compatible
5318
5319 Signed-off-by: Stephen Neuendorffer <stephen.neuendorffer@xilinx.com>
5320 Signed-off-by: Michal Simek <monstr@monstr.eu>
5321
5322 commit 0900bee9ab9818439b2d1298fa8909a88f74ec0d
5323 Author: Michal Simek <monstr@monstr.eu>
5324 Date: Fri Aug 14 13:41:17 2009 +0200
5325
5326 microblaze: Enable hush parser
5327
5328 With Hush parser is possible to change command line in dtb
5329
5330 Signed-off-by: Michal Simek <monstr@monstr.eu>
5331
5332 commit 13916abf996b127b681ddc26664c236ded28ba7f
5333 Author: Michal Simek <monstr@monstr.eu>
5334 Date: Thu Aug 20 22:44:02 2009 +0200
5335
5336 microblaze: Remove AtmarkTechno Suzaku board
5337
5338 Users should use microblaze-generic platform.
5339 This platform is longer not supported.
5340
5341 Signed-off-by: Michal Simek <monstr@monstr.eu>
5342
5343 commit 3ceba1d45d007144d10368f91ff9e36f3b5f39a1
5344 Author: Michal Simek <monstr@monstr.eu>
5345 Date: Thu Aug 20 22:36:20 2009 +0200
5346
5347 net: Remove old Xilinx Emac driver
5348
5349 Signed-off-by: Michal Simek <monstr@monstr.eu>
5350
5351 commit 2fddd44464d02e0f3ade06dabe0e165835fa61f0
5352 Author: Michal Simek <monstr@monstr.eu>
5353 Date: Wed Aug 19 08:10:08 2009 +0200
5354
5355 microblaze: Short size of global data and fix malloc size
5356
5357 If is full malloc area global, data are rewrite because
5358 there was bad size of malloc area.
5359
5360 Signed-off-by: Michal Simek <monstr@monstr.eu>
5361
5362 commit aedb4683097d3e5de8833f4a9e34664d3d2bd077
5363 Author: Michal Simek <monstr@monstr.eu>
5364 Date: Fri Aug 14 17:02:35 2009 +0200
5365
5366 microblaze: Add sbss, scommon and COMMON symbols for clearing
5367
5368 Signed-off-by: Michal Simek <monstr@monstr.eu>
5369
5370 commit 4c1883670acbf1cc83c04df1876235c3aedde128
5371 Author: Dirk Eibach <eibach@gdsys.de>
5372 Date: Wed Sep 9 12:36:07 2009 +0200
5373
5374 ppc4xx: Rename compactcenter to intip
5375
5376 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
5377 Signed-off-by: Stefan Roese <sr@denx.de>
5378
5379 commit d1c3b27525b664e8c4db6bb173eed51bfc8220de
5380 Author: Stefan Roese <sr@denx.de>
5381 Date: Wed Sep 9 16:25:29 2009 +0200
5382
5383 ppc4xx: Big cleanup of PPC4xx defines
5384
5385 This patch cleans up multiple issues of the 4xx register (mostly
5386 DCR, SDR, CPR, etc) definitions:
5387
5388 - Change lower case defines to upper case (plb4_acr -> PLB4_ACR)
5389 - Change the defines to better match the names from the
5390 user's manuals (e.g. cprpllc -> CPR0_PLLC)
5391 - Removal of some unused defines
5392
5393 Please test this patch intensive on your PPC4xx platform. Even though
5394 I tried not to break anything and tested successfully on multiple
5395 4xx AMCC platforms, testing on custom platforms is recommended.
5396
5397 Signed-off-by: Stefan Roese <sr@denx.de>
5398
5399 commit d8d8724be06df43772162dc344ae20dfa814dc72
5400 Author: Wolfgang Denk <wd@denx.de>
5401 Date: Fri Sep 11 09:05:32 2009 +0200
5402
5403 net/bootp.c: fix compile warning
5404
5405 Fix warning: bootp.c:695: warning: dereferencing type-punned pointer
5406 will break strict-aliasing rules
5407
5408 Signed-off-by: Wolfgang Denk <wd@denx.de>
5409 Cc: Ben Warren <biggerbadderben@gmail.com>
5410
5411 commit 51003b89816848cbe86a8fe48f970ba8b14005f5
5412 Author: Wolfgang Denk <wd@denx.de>
5413 Date: Fri Sep 11 08:58:11 2009 +0200
5414
5415 kwbimage.c: Fix compile warning when building on 64 bit systems
5416
5417 Fix this warning when building on 64 bit systems:
5418 tools/kwbimage.c: In function 'kwbimage_checksum32':
5419 tools/kwbimage.c:135: warning: format '%d' expects type 'int',
5420 but argument 4 has type 'long unsigned int'
5421
5422 Signed-off-by: Wolfgang Denk <wd@denx.de>
5423 Cc: Prafulla Wadaskar <prafulla@marvell.com>
5424
5425 commit e7963772eb78a6aa1fa65063d64eab3a8626daac
5426 Author: Marcel Ziswiler <marcel@ziswiler.com>
5427 Date: Wed Sep 9 21:11:18 2009 +0200
5428
5429 muas3001: remove BRG clock node fixup to use common mpc8260 code.
5430
5431 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
5432 Acked-by: Heiko Schocher <hs@denx.de>
5433
5434 commit c7c1dbbf7159b38f3302b845dd97d28a543ff91b
5435 Author: Marcel Ziswiler <marcel@ziswiler.com>
5436 Date: Wed Sep 9 21:09:00 2009 +0200
5437
5438 r7780mp: fix typo in Ethernet chip model number comment.
5439
5440 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
5441
5442 commit 45f89f340b4d8aa099fd022260dcb13cf3321b61
5443 Author: Marcel Ziswiler <marcel@ziswiler.com>
5444 Date: Wed Sep 9 21:22:08 2009 +0200
5445
5446 ep8248: add support for device tree and secondary Ethernet interface.
5447
5448 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
5449
5450 commit aa0c7a86cd236b8193218a09e1365c8991bb5ddc
5451 Author: Prafulla Wadaskar <prafulla@marvell.com>
5452 Date: Mon Sep 7 15:05:02 2009 +0530
5453
5454 mkimage: Add Kirkwood Boot Image support (kwbimage)
5455
5456 This patch adds support for "kwbimage" (Kirkwood Boot Image)
5457 image types to the mkimage code.
5458
5459 For details refer to docs/README.kwbimage
5460
5461 This patch is tested with Sheevaplug board
5462
5463 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5464 Acked-by: Ron Lee <ron@debian.org>
5465
5466 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5467
5468 commit 7809fbb9aafd60e3a6e5dfe456ae30b93ac61338
5469 Author: Prafulla Wadaskar <prafulla@marvell.com>
5470 Date: Mon Sep 7 14:59:09 2009 +0530
5471
5472 Kirkwood: Sheevaplug: Add kwimage configuration file
5473
5474 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5475
5476 commit b029dddc9ae958b1ccf875649f52c6db396a742d
5477 Author: Prafulla Wadaskar <prafulla@marvell.com>
5478 Date: Mon Sep 7 14:59:08 2009 +0530
5479
5480 mkimage: Make table_entry code global
5481
5482 - make get_table_entry_id() global
5483 - make get_table_entry_name() global
5484 - move struct table_entry to image.h
5485
5486 Currently this code is used by image.c only.
5487
5488 This patch makes this API global so it can be used by other parts of
5489 code, too.
5490
5491 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5492 Acked-by: Ron Lee <ron.debian.org>
5493
5494 Edit comments and commit message.
5495
5496 Signed-off-by: Wolfgang Denk <wd@denx.de>
5497
5498 commit f666dea8ab215c76c3c2a077ad299f90dd1ace7c
5499 Author: Prafulla Wadaskar <prafulla@marvell.com>
5500 Date: Mon Sep 7 14:59:07 2009 +0530
5501
5502 mkimage: Make genimg_print_size() global
5503
5504 Currently it is used by image.c only, but the the function can be
5505 used to support additional mkimage types like for example kwbimage,
5506 so make this function globally visible.
5507
5508 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5509
5510 Edited commit message.
5511
5512 Signed-off-by: Wolfgang Denk <wd@denx.de>
5513
5514 commit 37b801888cf73b18f78c1109140ff44e3e37914f
5515 Author: Prafulla Wadaskar <prafulla@marvell.com>
5516 Date: Mon Sep 7 14:59:06 2009 +0530
5517
5518 mkimage: Include missing files in build dependency calculations
5519
5520 Include default_image.o and fit_image.o into the build dependency
5521 calculations. This makes sure they get rebuilt if any of the headers
5522 they include are modified
5523
5524 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5525 Acked-by: Ron Lee <ron@debian.org>
5526
5527 Edited commit message.
5528
5529 Signed-off-by: Wolfgang Denk <wd@denx.de>
5530
5531 commit 3a2003f61ee79ac53d20c24cc896c2637a2dfc24
5532 Author: Wolfgang Denk <wd@denx.de>
5533 Date: Wed Aug 19 11:42:56 2009 +0200
5534
5535 tools/mkimage: fix compiler warnings, use "const"
5536
5537 This fixes some compiler warnings:
5538 tools/default_image.c:141: warning: initialization from incompatible pointer type
5539 tools/fit_image.c:202: warning: initialization from incompatible pointer type
5540 and changes to code to use "const" attributes in a few places where
5541 it's appropriate.
5542
5543 Signed-off-by: Wolfgang Denk <wd@denx.de>
5544
5545 commit 89a4d6b12fd6394898b8a454cbabeaf1cd59bae5
5546 Author: Prafulla Wadaskar <prafulla@marvell.com>
5547 Date: Wed Aug 19 17:36:46 2009 +0530
5548
5549 tools: mkimage: split code into core, default and FIT image specific
5550
5551 This is a first step towards reorganizing the mkimage code to make it
5552 easier to add support for additional images types. Current mkimage
5553 code is specific to generating uImage and FIT image files, but the
5554 same framework can be used to generate other image types like
5555 Kirkwood boot images (kwbimage-TBD). For this, the mkimage code gets
5556 reworked:
5557
5558 Here is the brief plan for the same:-
5559 a) Split mkimage code into core and image specific support
5560 b) Implement callback functions for image specific code
5561 c) Move image type specific code to respective C files
5562 Currently there are two types of file generation/list
5563 supported (i.e uImage, FIT), the code is abstracted from
5564 mkimage.c/.h and put in default_image.c and fit_image.c;
5565 all code in these file is static except init function call
5566 d) mkimage_register API is added to add new image type support
5567 All above is addressed in this patch
5568 e) Add kwbimage type support to this new framework (TBD)
5569 This will be implemented in a following commit.
5570
5571 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5572 Edit commit message, fix coding style and typos.
5573 Signed-off-by: Wolfgang Denk <wd@denx.de>
5574
5575 commit 449609f5b11cce6beba7338bc4ce0f3345376a0b
5576 Author: Prafulla Wadaskar <prafulla@marvell.com>
5577 Date: Sun Aug 16 05:28:19 2009 +0530
5578
5579 tools: mkimage: Fixed build warnings
5580
5581 uninitialized retval variable warning fixed
5582 crc32 APIs moved to crc.h (newly added) and build warnings fixed
5583
5584 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5585 Signed-off-by: Wolfgang Denk <wd@denx.de>
5586
5587 commit 14821d7dea8d7209f2457c3179fa6551c088ba71
5588 Author: Prafulla Wadaskar <prafulla@marvell.com>
5589 Date: Mon Aug 10 20:44:06 2009 +0530
5590
5591 tools: mkimage: Makefile sorted
5592
5593 The tools/Makefile is sorted for all entries,
5594
5595 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5596
5597 commit f7644c0bf3502529031657a869fa213cda5a2424
5598 Author: Prafulla Wadaskar <prafulla@marvell.com>
5599 Date: Mon Aug 10 18:49:37 2009 +0530
5600
5601 tools: mkimage : bugfix returns correct value for list command
5602
5603 List command always return "EXIT_SUCCESS" even in case of
5604 failure by any means.
5605
5606 This patch return 0 if list command is sucessful,
5607 returns negative value reported by check_header functions
5608
5609 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5610 Signed-off-by: Wolfgang Denk <wd@denx.de>
5611
5612 commit 511c02f611cb5afa1b8ca5980caaaabaa0de377f
5613 Author: Mingkai Hu <Mingkai.hu@freescale.com>
5614 Date: Tue Sep 8 15:07:12 2009 +0800
5615
5616 mkconfig: pass the board name to board config file
5617
5618 Then we can handle different config targets in the board file, which
5619 simplifies the top level Makefile for boards that have multiple
5620 config targets.
5621
5622 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
5623
5624 commit d640ac58dbf61c769864b3fe76314306b7336cf1
5625 Author: Wolfgang Denk <wd@denx.de>
5626 Date: Mon Sep 7 23:52:31 2009 +0200
5627
5628 Remove "atmel_df_pow2" binary with "make clean"
5629
5630 Commit 65f6f07b added support for the atmel_df_pow2 standalone program
5631 but missed to add a rule to remove it to the "clean" make target.
5632
5633 Signed-off-by: Wolfgang Denk <wd@denx.de>
5634
5635 commit 0b34dbbd0b6969c98c44313b291836d9056ec40a
5636 Author: Stefan Roese <sr@denx.de>
5637 Date: Mon Sep 7 10:52:24 2009 +0200
5638
5639 ppc4xx: Fix compilation warning in 4xx miiphy.c
5640
5641 This patch fixes the following compilation warning:
5642
5643 miiphy.c: In function 'emac4xx_miiphy_read':
5644 miiphy.c:353: warning: dereferencing type-punned pointer will break
5645 strict-aliasing rules
5646
5647 Signed-off-by: Stefan Roese <sr@denx.de>
5648
5649 commit 82379b5564819e62624a3c58fbc43f1afedf4f5f
5650 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
5651 Date: Mon Sep 7 17:00:41 2009 +0200
5652
5653 ppc4xx: Add CONFIG_PCI_4xx_PTM_OVERWRITE to some esd 4xx boards
5654
5655 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
5656 Signed-off-by: Stefan Roese <sr@denx.de>
5657
5658 commit 99bcf14d553f399148a7660b98f7acbd8cc72d80
5659 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
5660 Date: Mon Sep 7 17:00:40 2009 +0200
5661
5662 ppc4xx: Allow overwriting pci target registers for all 4xx boards
5663
5664 This patch adds the CONFIG_PCI_4xx_PTM_OVERWRITE option and replaces
5665 the ugly 'if defined(BOARD1) || ... || defined(BOARDn)' construct
5666 in 4xx pci code.
5667
5668 When CONFIG_PCI_4xx_PTM_OVERWRITE is defined the default ptm register
5669 setup can be overwritten through environment variables ptm1la, ptm1ms,
5670 ptm2la and ptm2ms to do application specific pci target BAR configuration.
5671
5672 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
5673 Signed-off-by: Stefan Roese <sr@denx.de>
5674
5675 commit cfab2ae322a99ad55364d054054f138f51130c2a
5676 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
5677 Date: Fri Sep 4 10:37:04 2009 +0200
5678
5679 ppc4xx: Fix PMC405DE support
5680
5681 This patch fixes PMC405DE support. Patch 85d6bf0b fixed out-of-tree
5682 building for this board but the loadpci object did not get linked
5683 after that.
5684
5685 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
5686 Signed-off-by: Stefan Roese <sr@denx.de>
5687
5688 commit c8355b9d9f778bd12ee19c8f34d88e13758a4efd
5689 Author: Detlev Zundel <dzu@denx.de>
5690 Date: Wed Sep 2 17:24:57 2009 +0200
5691
5692 amcc-common.h: Use filenames from environment variables for update procedure.
5693
5694 Using a separate "u-boot" environment variable allows to easily
5695 specify different filenames for the update procedure. This is also in
5696 line with many other board configurations defining an "update" script.
5697
5698 Signed-off-by: Detlev Zundel <dzu@denx.de>
5699 Acked-by: Wolfgang Denk <wd@denx.de>
5700 Signed-off-by: Stefan Roese <sr@denx.de>
5701
5702 commit 6c97a20d0b2f56cb4f3745d94b1f96986e8cced5
5703 Author: Kumar Gala <galak@kernel.crashing.org>
5704 Date: Wed Sep 9 11:40:41 2009 -0500
5705
5706 ppc/85xx: Introduce RESET_VECTOR_ADDRESS to handle non-standard link address
5707
5708 Some board ports place TEXT_BASE at a location that would cause the
5709 RESET_VECTOR_ADDRESS not to be at 0xfffffffc when we link. By default
5710 we assume RESET_VECTOR_ADDRESS will be 0xfffffffc if the board doesn't
5711 explicitly set it.
5712
5713 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5714 Acked-by: Wolfgang Denk <wd@denx.de>
5715
5716 commit c348322ac7f76318295cf25ffab2cc2a4900a234
5717 Author: Kumar Gala <galak@kernel.crashing.org>
5718 Date: Tue Sep 8 13:46:46 2009 -0500
5719
5720 ppc/85xx: Clean up do_reset
5721
5722 There is no reason to do a run time check for e500 v1 based cores to
5723 determine if we have the GUTs RSTCR facility. Only the first generation
5724 of PQ3 parts (MPC8540/41/55/60) do not have it. So checking to see if
5725 we are e500 v2 would miss future parts (like e500mc).
5726
5727 Just change this to be ifdef'd based on CONFIG_MPC85{40,41,55,60}.
5728
5729 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5730
5731 commit 21170c80a83f1e60ce7f6f83005e06a5c2d15a8e
5732 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
5733 Date: Thu Sep 3 19:42:40 2009 +0530
5734
5735 ppc/85xx/86xx: Bug fix: call to puts in probecpu() moved to checkcpu().
5736
5737 While in probecpu() UART is still not initialized.
5738
5739 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
5740 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5741
5742 commit f8027f6b4789e3340f10620d8fb6113b95b88d9c
5743 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
5744 Date: Wed Sep 2 19:40:36 2009 +0530
5745
5746 ppc/85xx/86xx: Device tree fixup for number of cores
5747
5748 Fixing the number of cores in the device tree based on the actual number of
5749 cores on the system. With this same device tree image can be used for dual
5750 core and single core members of otherwise exactly same SOC.
5751
5752 For example:
5753 * P2020RDB and P2010RDB
5754 * P1020RDB and P1011RDB
5755 * MPC8641D and MPC8641
5756
5757 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
5758 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5759
5760 commit 58442dc01e47cc8ce42af4f29486a34cad60b9d2
5761 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
5762 Date: Wed Sep 2 13:35:21 2009 +0530
5763
5764 ppc/85xx,86xx: Handling Unknown SOC version
5765
5766 Incase the system is detected with Unknown SVR, let the system boot
5767 with a default value and a proper message.
5768
5769 Now with dynamic detection of SOC properties from SVR, this is necessary
5770 to prevent a crash.
5771
5772 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
5773 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5774
5775 commit 3e7b6c1f2db5ec31f9e7dbc3e0cbca602167a46a
5776 Author: Kumar Gala <galak@kernel.crashing.org>
5777 Date: Wed Sep 2 09:03:08 2009 -0500
5778
5779 ppc/8xxx: Refactor code to determine if PCI is enabled & agent/host
5780
5781 Refactor the code into a simple bitmask lookup table that determines if
5782 a given PCI controller is enabled and if its in host/root-complex or
5783 agent/end-point mode.
5784
5785 Each processor in the PQ3/MPC86xx family specified different encodings
5786 for the cfg_host_agt[] and cfg_IO_ports[] boot strapping signals.
5787
5788 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5789
5790 commit 5052a771cf1722c37c732f3c340775b55fbe3a22
5791 Author: Kumar Gala <galak@kernel.crashing.org>
5792 Date: Wed Sep 2 09:00:50 2009 -0500
5793
5794 ppc/85xx: Cleanup makefile and related optional files
5795
5796 Cleaned up cpu/mpc85xx/Makefile to use CONFIG_* for those obvious cases
5797 we have like PCI, CPM2, QE. Also reworked it to use one line per file
5798 for everything and sorted in alphabetical order.
5799
5800 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5801
5802 commit 74c5dfd81f94a2a1f0d6990d17c491d718e8b9ea
5803 Author: Timur Tabi <timur@freescale.com>
5804 Date: Fri Sep 4 17:05:24 2009 -0500
5805
5806 fsl: add register read-back to set_law()
5807
5808 After programming a new LAW, we should read-back the LAWAR register so that
5809 we sync the writes. Otherwise, code that attempts to use the new LAW-mapped
5810 memory might fail right away.
5811
5812 Signed-off-by: Timur Tabi <timur@freescale.com>
5813 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5814
5815 commit c7259086816405fe0eb77f4dc22e76980a040cef
5816 Author: Kumar Gala <galak@kernel.crashing.org>
5817 Date: Thu Sep 3 08:41:31 2009 -0500
5818
5819 ppc/85xx: Fix bug in setup_mp code
5820
5821 Its possible that we try and copy the boot page code out of flash into a
5822 DDR location that doesn't have a TLB cover it. For example, if we have
5823 3G of DDR we typically only map the first 2G. In the cases of 4G+ this
5824 wasn't an issue since the reset page TLB mapping covered the last page
5825 of memory which we wanted to copy to.
5826
5827 We now change the physical address of the reset page TLB to map to the
5828 true physical location of the boot page code, copy and than set the
5829 TLB back to its 1:1 mapping of the reset page.
5830
5831 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5832
5833 commit c2287af1552bd630956568d3957c370f86801b7d
5834 Author: Kumar Gala <galak@kernel.crashing.org>
5835 Date: Thu Sep 3 08:20:24 2009 -0500
5836
5837 ppc/85xx: Add a simple function to search the TLB
5838
5839 Allow us to search the TLB array based on an address. This is useful
5840 if we want to change an entry but dont know where it happens to be
5841 located.
5842
5843 For example, the boot page mapping we use on MP or the flash TLB that
5844 we change the WIMGE settings for after we've relocated.
5845
5846 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5847
5848 commit 26f4cdba6b51deab4ec99d60be381244068ef950
5849 Author: Kumar Gala <galak@kernel.crashing.org>
5850 Date: Fri Aug 14 13:37:54 2009 -0500
5851
5852 85xx: Add support for setting IVORs to fixed offset defaults
5853
5854 In future Book-E implementations IVORs will most likely go away and be
5855 replaced with fixed offsets. The IVPR will continue to exist to allow
5856 for relocation of the interrupt vectors.
5857
5858 This code adds support to setup the IVORs as their fixed offset values
5859 per the ISA 2.06 spec when we transition from u-boot to another OS
5860 either via 'bootm' or a cpu release.
5861
5862 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5863
5864 commit da1cd955dfec35b0e15381ad1ee248fa194eed82
5865 Author: Dipen Dudhat <dipen.dudhat@freescale.com>
5866 Date: Wed Sep 2 11:25:08 2009 +0530
5867
5868 ppc/85xx: Fix up eSDHC controller clock frequency in the device tree
5869
5870 Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
5871 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5872
5873 commit 2abbd31da6d900473ed678ca50789ee58bc9bb00
5874 Author: Kumar Gala <galak@kernel.crashing.org>
5875 Date: Tue Sep 1 22:01:54 2009 -0500
5876
5877 ppc/8xxx: Remove ddr_pd_cntl register since it doesn't exist
5878
5879 The ddr_pd_cntl isn't defined in any reference manual and thus we wil
5880 remove especially since we set it to 0, which would most likely be its
5881 POR value.
5882
5883 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5884
5885 commit 13d46ab2572c0283d34f93bebc9a41295ef84ca5
5886 Author: Kumar Gala <galak@kernel.crashing.org>
5887 Date: Tue Sep 1 21:07:08 2009 -0500
5888
5889 ppc/8xxx: relocate cpu pointer in global data
5890
5891 Now that we have a pointer to the cpu struct we need to relocate it once
5892 we get into ram.
5893
5894 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5895
5896 commit 9c671e7062720074f894ee329eaa6995b0823727
5897 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
5898 Date: Wed Sep 2 02:17:24 2009 +0400
5899
5900 fsl: sys_eeprom: Fix 'may be used uninitialized' warning
5901
5902 The warning is bogus, so silence it by initializing the 'ret' variable.
5903
5904 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
5905 Acked-by: Timur Tabi <timur@freescale.com>
5906 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5907
5908 commit 6b9ea08c5010eab5ad1056bc9bf033afb672d9cc
5909 Author: Dipen Dudhat <dipen.dudhat@freescale.com>
5910 Date: Tue Sep 1 17:27:00 2009 +0530
5911
5912 ppc/85xx: Use CONFIG_FSL_ESDHC to enable sdhc clk
5913
5914 Enable eSDHC Clock based on generic CONFIG_FSL_ESDHC define instead of a
5915 platform define. This will enable all the 85xx platforms to use sdhc_clk
5916 based on CONFIG_FSL_ESDHC.
5917
5918 Signed-off-by: Gao Guanhua <B22826@freescale.com>
5919 Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
5920 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5921
5922 commit 92477a631bbda2dc0dd2194e03f9bd3ddb8b9c21
5923 Author: Timur Tabi <timur@freescale.com>
5924 Date: Fri Sep 4 16:28:35 2009 -0500
5925
5926 fsl_i2c: increase I2C timeout values and make them configurable
5927
5928 The value of I2C_TIMEOUT in fsl_i2c.c has several problems. First, it is
5929 defined as CONFIG_HZ/4, but it is used as a count of microseconds, so it makes
5930 no sense to derive it from a clock rate. Second, the current value (250) is
5931 too low for some boards, so it needs to be increased. Third, the timeout
5932 necessary for multiple-master arbitration is larger than the timeout for basic
5933 read/write operations, so we shouldn't have a single constant for both timeouts.
5934 Finally, it would be nice if we could override these values on a per-board
5935 basis.
5936
5937 Signed-off-by: Timur Tabi <timur@freescale.com>
5938 Acked-by: Wolfgang Denk <wd@denx.de>
5939 Tested-by: Peter Tyser <ptyser@xes-inc.com>
5940 Acked-by: Peter Tyser <ptyser@xes-inc.com>
5941
5942 commit 5da71efa18e8b4eac9afd8bfa13e3c7e7ddde1d0
5943 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
5944 Date: Thu Sep 3 08:09:44 2009 -0500
5945
5946 Reset i2c slave devices during init on mpc5xxx cpus
5947
5948 Reset any i2c devices that may have been interrupted during a system reset.
5949 Normally this would be accomplished by clocking the line until SCL and SDA
5950 are released and then sending a start condtiion (From an Atmel datasheet).
5951 There is no direct access to the i2c pins so instead create start commands
5952 through the i2c interface. Send a start command then delay for the SDA Hold
5953 time, repeat this by disabling/enabling the bus a total of 9 times.
5954
5955 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
5956
5957 commit 2d4072c06b5549444e4140231bba3d47d9b0bc53
5958 Author: Sandeep Paulraj <s-paulraj@ti.com>
5959 Date: Sat Aug 15 11:20:58 2009 -0400
5960
5961 ARM: DaVinci: Adding Support for DaVinci DM365 EVM
5962
5963 This patch adds support for the DM365 EVM.
5964 It has been tested on a DM365 EVM.
5965
5966 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
5967
5968 commit cf463091bce8b0f8951dd08f94754d08d64793b8
5969 Author: Sandeep Paulraj <s-paulraj@ti.com>
5970 Date: Sat Aug 15 11:20:44 2009 -0400
5971
5972 ARM: DaVinci: DaVinci DM365 SOC specific code
5973
5974 This patch adds support for DaVinci DM365 SOC.
5975
5976 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
5977
5978 commit e830b66b3592f115316600d370399f3ee148e909
5979 Author: Ilko Iliev <iliev@ronetix.at>
5980 Date: Sat Sep 5 02:51:34 2009 +0200
5981
5982 DM9000 init for pm9261
5983
5984 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
5985
5986 commit c35d7cf071f171bd6bba69f1563a6ac578a18ea6
5987 Author: Frederik Kriewitz <frederik@kriewitz.eu>
5988 Date: Sun Aug 23 12:56:42 2009 +0200
5989
5990 Add support for the DevKit8000 board
5991
5992 This patch adds support for the DevKit8000 board.
5993
5994 Signed-off-by: Frederik Kriewitz <frederik@kriewitz.eu>
5995
5996 commit 127f9ae575991aee3e105e1448c49b5b4e254998
5997 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5998 Date: Sun Aug 23 16:32:40 2009 +0200
5999
6000 omap3: move the other boards to board/
6001
6002 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6003
6004 commit 350f3ac5731faf0f02ca55ab016694b7c7269f97
6005 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6006 Date: Sun Aug 23 16:32:39 2009 +0200
6007
6008 arm: move Logicpd's boards to board/logicpd/
6009
6010 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6011
6012 commit 0a0e4bad9693ef1d2ca8c33ba551d395a4e3d641
6013 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6014 Date: Sun Aug 23 16:32:38 2009 +0200
6015
6016 omap: move TI's boards to board/ti/
6017
6018 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6019
6020 commit 9f23ca42b3ba19b24e66fade572f2b86d929b6e8
6021 Author: Wolfgang Denk <wd@denx.de>
6022 Date: Fri Sep 4 23:20:29 2009 +0200
6023
6024 ARM: Update mach-types
6025
6026 Signed-off-by: Wolfgang Denk <wd@denx.de>
6027
6028 commit 262ae0a6193f10b6a94e86d2f752e7f5510416fa
6029 Author: Mike Frysinger <vapier@gentoo.org>
6030 Date: Thu Sep 3 23:12:47 2009 -0400
6031
6032 push LOAD_ADDR out to arch mk files
6033
6034 Rather than maintain/extend the current ifeq($(ARCH)) mess that exists in
6035 the standalone Makefile, push the setting up of LOAD_ADDR out to the arch
6036 config.mk (and rename to STANDALONE_LOAD_ADDR in the process). This keeps
6037 the common code clean and lets the arch do whatever crazy crap it wants in
6038 its own area.
6039
6040 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6041
6042 commit 7662eb2b9d6fbc95ecb1fb3e5b5147215e251e7d
6043 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
6044 Date: Thu Sep 3 07:37:46 2009 -0400
6045
6046 zlib: fix code when DEBUG is defined
6047
6048 Removed stdio.h inclusion and moved trace macros to use printf avoiding to
6049 write debug informations to standard error.
6050
6051 Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
6052
6053 commit cfcbf8c4cf3da96b9e3f652506b664bfd766a520
6054 Author: Scott Wood <scottwood@freescale.com>
6055 Date: Wed Sep 2 16:45:31 2009 -0500
6056
6057 mxc_nand: Remove Freescale's "All Rights Reserved."
6058
6059 Signed-off-by: Scott Wood <scottwood@freescale.com>
6060
6061 commit 001d615681333569c555e6cde07d8d23e2c536fb
6062 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
6063 Date: Wed Sep 2 17:58:48 2009 +0400
6064
6065 mpc83xx/serdes: License cleanup: remove "All Rights Reserved" notice
6066
6067 "All Rights Reserved" conflicts with the GPL.
6068
6069 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
6070
6071 commit 46ff6d461321f5b565cc790e02679237ffd9a20f
6072 Author: Wolfgang Denk <wd@denx.de>
6073 Date: Wed Sep 2 14:57:27 2009 +0200
6074
6075 License cleanup: remove unintended "All Rights Reserved" notices.
6076
6077 Some files included my old standerd file header which had a "All
6078 Rights Reserved" part. As this has never been my intention, I remove
6079 these lines to make the files compatible with GPL v.2 and later.
6080
6081 Signed-off-by: Wolfgang Denk <wd@denx.de>
6082
6083 commit 37daa77f3cafb5ec9a974eff3db2af4a0560a9ef
6084 Author: Wolfgang Denk <wd@denx.de>
6085 Date: Wed Sep 2 10:21:20 2009 +0200
6086
6087 cmd_mtdparts.c: fix compiler warning in debug code
6088
6089 Fix warning messages:
6090 cmd_mtdparts.c:1429: warning: format '%08lx' expects type 'long
6091 unsigned int', but argument 6 has type 'u32'
6092 cmd_mtdparts.c:1429: warning: format '%08lx' expects type 'long
6093 unsigned int', but argument 7 has type 'u32'
6094
6095 Signed-off-by: Wolfgang Denk <wd@denx.de>
6096
6097 commit d8bc55a6fb28876abcbf4a3fc3b6c3ce429c1bb3
6098 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
6099 Date: Tue Sep 1 20:58:03 2009 +0400
6100
6101 Move uninitialized_var() macro from ubi_uboot.h to compiler.h
6102
6103 This is needed so that we could use this macro for non-UBI code.
6104
6105 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
6106
6107 commit d72871e1387094972569e4b77c25e88020f7b68f
6108 Author: Kumar Gala <galak@kernel.crashing.org>
6109 Date: Tue Sep 1 11:24:45 2009 -0500
6110
6111 arm: Remove -fno-strict-aliasing
6112
6113 -fno-strict-aliasing is hidding warnings.
6114
6115 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6116
6117 commit d6281ff0cc2ebb5d6a5c3e1021837334074f92ec
6118 Author: Kumar Gala <galak@kernel.crashing.org>
6119 Date: Tue Sep 1 11:24:44 2009 -0500
6120
6121 ppc: Remove -fno-strict-aliasing
6122
6123 -fno-strict-aliasing is hidding warnings.
6124
6125 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6126
6127 commit 795d246c278e70b4ba9868cc9f2c8fbada49d388
6128 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
6129 Date: Fri Aug 28 07:14:04 2009 -0500
6130
6131 galaxy5200: Add chip select region for an Epson S1D15313
6132
6133 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
6134
6135 commit 3dfad40a0459f63099e177dc15a1df39d048f860
6136 Author: Kumar Gala <galak@kernel.crashing.org>
6137 Date: Thu Aug 27 08:23:55 2009 -0500
6138
6139 Add ability for arch code to make changes before we boot
6140
6141 Added a arch_preboot_os() function that cpu specific code can implement to
6142 allow for various modifications to the state of the machine right before
6143 we boot. This can be useful to setup register state to a specific
6144 configuration.
6145
6146 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6147
6148 commit 9ea005fb4428c922536fa75991ce9972304a02fb
6149 Author: Roy Zang <tie-fei.zang@freescale.com>
6150 Date: Sat Aug 22 03:49:52 2009 +0800
6151
6152 Use different PBA value for E1000 PCI and PCIe cards
6153
6154 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
6155 Acked-by: André Schwarz <andre.schwarz@matrix-vision.de>
6156
6157 commit 5b34a296d47b236dafbcaf1c91ae11b5aeb1ef51
6158 Author: Graeme Russ <graeme.russ@gmail.com>
6159 Date: Sun Aug 23 12:59:58 2009 +1000
6160
6161 Add PCI support to eNET board
6162
6163 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6164
6165 commit f50b619d9cb297b0125fe78dcd6f255eb0d91659
6166 Author: Graeme Russ <graeme.russ@gmail.com>
6167 Date: Sun Aug 23 12:59:57 2009 +1000
6168
6169 i386: Moved PCI from #ifdef to conditional compile for sc520 boards
6170
6171 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6172
6173 commit ed7a1b681de1e31d18d5b92e2767ae8df3241687
6174 Author: Graeme Russ <graeme.russ@gmail.com>
6175 Date: Sun Aug 23 12:59:56 2009 +1000
6176
6177 i386: Replace [read, write]_mmcr_[byte, word, long] with memory mapped structure
6178
6179 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6180
6181 commit 9b32f96b5b92ba13fdb4b5eb637734752235f260
6182 Author: Graeme Russ <graeme.russ@gmail.com>
6183 Date: Sun Aug 23 12:59:55 2009 +1000
6184
6185 Misc sc520 cdp fixups
6186
6187 Now that the PCI, SATA et al compile problems have been resolved, the
6188 cludge that was applied to avoid them can be removed
6189
6190 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6191
6192 commit 91ee4e183cb7ac5f86e7673ead51400f19906635
6193 Author: Graeme Russ <graeme.russ@gmail.com>
6194 Date: Sun Aug 23 12:59:54 2009 +1000
6195
6196 Fixup sc520_spunk board
6197
6198 Primary intent is to resolve build errors for this board which has been
6199 neglected for a very long time. I do not have one of these boards, so I
6200 cannot test functionality
6201
6202 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6203
6204 commit 8907b8dbc5805094f1316d64737d3428b3863693
6205 Author: Graeme Russ <graeme.russ@gmail.com>
6206 Date: Sun Aug 23 12:59:53 2009 +1000
6207
6208 Misc ds1722 fixups
6209
6210 This patch is based on a patch submitted by Jean-Christophe PLAGNIOL-VILLARD
6211 on 18th May 2008 as part of a general i386 / sc520 fixup which was never
6212 applied
6213
6214 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6215
6216 commit a92510e7fae523145b58765cdc46110f1162260d
6217 Author: Graeme Russ <graeme.russ@gmail.com>
6218 Date: Sun Aug 23 12:59:52 2009 +1000
6219
6220 Misc ti_pci1410a fixups
6221
6222 Removed do_pinit() - now declared in cmd_pcmcia.c
6223
6224 Added #define CONFIG_CMD_PCMCIA around pcmcia_off() in line with other
6225 PCMCIA drivers
6226
6227 signed/unsigned type fixups
6228
6229 Added semi-colon after default: label as required by newer gcc
6230
6231 The only board that appears to use this driver is the sc520_spunk which
6232 is very old and very likely very broken anyway. I do not have one to test
6233 whether this patch breaks anything functionaly, I have can only check
6234 that it compiles without warning or error
6235
6236 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6237
6238 commit 31b9ab33d93d88ff89f3046aa45c68667a378a56
6239 Author: Graeme Russ <graeme.russ@gmail.com>
6240 Date: Sun Aug 23 12:59:51 2009 +1000
6241
6242 Misc SATA fixups
6243
6244 Cast first parameter to sata_cpy()
6245
6246 In /drivers/block/ata_piix.h, ata_id_has_lba48(), ata_id_has_lba(),
6247 ata_id_has_dma(), ata_id_u32(), ata_id_u64() are all defined in
6248 include/libata.h which is included in ata.h which is included by all files
6249 which include ata_piix.h (only ata_piix.c) so these definitions are
6250 supurflous to (and conlict with) this in libata.h. Interestingly, my
6251 compiler complains about ata_id_u64 already being defined, but not
6252 ata_id_u32
6253
6254 ata_dump_id() is defined in include/libata.h and should not be static
6255 (maybe should even use ata_dump_id() in libata.c
6256
6257 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6258
6259 commit d7549024098af093785151261266a02be19af633
6260 Author: Graeme Russ <graeme.russ@gmail.com>
6261 Date: Sun Aug 23 12:59:50 2009 +1000
6262
6263 i386: Misc PCI fixups
6264
6265 Change PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY (Originally done in
6266 commit ff4e66e93c1a, regressed by commit 6d7f610b09f8)
6267
6268 Cast PCI_ROM_ADDRESS_MASK to u32
6269
6270 Wrap probe_pci_video() call inside #ifdef CONFIG_VIDEO
6271
6272 Change call to pci_find_class() to pci_find_devices(). This is based on a
6273 patch submitted on 1st March 2007 (Patch that fixes the compilation errors
6274 for sc520_cdp board) by mushtaq_k
6275
6276 This patch requires that PCI_VIDEO_VENDOR_ID and PCI_VIDEO_DEVICE_ID be
6277 specified in the board config file. Dummy values have been added for the
6278 SC520 CDP board to enable compilation, but since I do not have one of these,
6279 I do know what the values should be
6280
6281 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6282
6283 commit 04ff9ab158714d43cdf2f4f6f0235c3ea9d241a2
6284 Author: Graeme Russ <graeme.russ@gmail.com>
6285 Date: Sun Aug 23 12:59:49 2009 +1000
6286
6287 Fix sc520 timer interrupt generation
6288
6289 The current implementation has the timer being started before the interrupt
6290 handler is installed. It the interrupt occurs before the handler is
6291 installed, the timer interrupt is never reset and the timer stops
6292
6293 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6294
6295 commit f3a8d6b29b1cd01fdd940e8ff7a62b1df0ebbf82
6296 Author: Graeme Russ <graeme.russ@gmail.com>
6297 Date: Sun Aug 23 12:59:48 2009 +1000
6298
6299 Fix environment configuration for eNET board
6300
6301 The current configuration of the Environment has the redundant copy of the
6302 environment in the Boot Flash - This was never the intent. The Environment
6303 should instead be in the first two sectors of the first Strata Flash
6304
6305 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6306
6307 commit ea0c37798c3823fdd77edfffd27b20191f8ca1f0
6308 Author: Graeme Russ <graeme.russ@gmail.com>
6309 Date: Sun Aug 23 12:59:47 2009 +1000
6310
6311 i386: Fix regression introduced by commit 8c63d47651f7
6312
6313 A local variable was deleted that should not have been
6314
6315 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6316
6317 commit cfb3a736ffcff3e3753b902cad536f22fcf8961d
6318 Author: Graeme Russ <graeme.russ@gmail.com>
6319 Date: Sun Aug 23 12:59:46 2009 +1000
6320
6321 i386: Change inline asm global symbols to local
6322
6323 gcc 4.3.2 optimiser creates multiple copies of inline asm (who knows why)
6324 Remove use of global names for labels to prevent 'symbol already defined'
6325 errors
6326
6327 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6328
6329 commit a3ab8caee696a1d53fc82fa321e2b2f179970168
6330 Author: Graeme Russ <graeme.russ@gmail.com>
6331 Date: Sun Aug 23 12:59:45 2009 +1000
6332
6333 i386: Add errno.h
6334
6335 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6336
6337 commit d4e8ada0f6d51e0e3b80790fb9375ac8910f5352
6338 Author: Peter Tyser <ptyser@xes-inc.com>
6339 Date: Fri Aug 21 23:05:21 2009 -0500
6340
6341 Consolidate arch-specific mem_malloc_init() implementations
6342
6343 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6344
6345 commit a483a167bc8d808145ca1224a2c238cda90aa60c
6346 Author: Peter Tyser <ptyser@xes-inc.com>
6347 Date: Fri Aug 21 23:05:20 2009 -0500
6348
6349 Standardize mem_malloc_init() implementation
6350
6351 This lays the groundwork to allow architectures to share a common
6352 mem_malloc_init().
6353
6354 Note that the x86 implementation was not modified as it did not fit the
6355 mold of all other architectures.
6356
6357 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6358
6359 commit 5e93bd1c9aaea886c5e5c7c1b6114ab36c30668f
6360 Author: Peter Tyser <ptyser@xes-inc.com>
6361 Date: Fri Aug 21 23:05:19 2009 -0500
6362
6363 Consolidate arch-specific sbrk() implementations
6364
6365 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6366
6367 commit 65f6f07b72a71b83d775c4d20d7ebcd6b2d2086d
6368 Author: Mike Frysinger <vapier@gentoo.org>
6369 Date: Thu Jul 23 16:37:03 2009 -0400
6370
6371 atmel_df_pow2: standalone to convert dataflashes to pow2
6372
6373 Atmel DataFlashes by default operate with pages that are slightly bigger
6374 than normal binary sizes (i.e. many are 1056 byte pages rather than 1024
6375 bytes). However, they also have a "power of 2" mode where the pages show
6376 up with the normal binary size. The latter mode is required in order to
6377 boot with a Blackfin processor, so many people wish to convert their
6378 DataFlashes on their development systems to this mode. This standalone
6379 application does just that.
6380
6381 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6382
6383 commit cb95c7a935ab9b52dac5d08e5ba4007c5a480f97
6384 Author: Mike Frysinger <vapier@gentoo.org>
6385 Date: Wed Sep 2 05:52:37 2009 -0400
6386
6387 Blackfin: cm-bf548: fix device->stdio_dev fallout
6388
6389 The recent 52cb4d4fb348 commit which renamed device to stdio_dev missed the
6390 cm-bf548's video board.
6391
6392 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6393
6394 commit c7bcdde46a7ef78628f0f09fdc6cb61bb1bd7e79
6395 Author: Mike Frysinger <vapier@gentoo.org>
6396 Date: Wed Sep 2 04:21:16 2009 -0400
6397
6398 Blackfin: enable 64bit printf for nand
6399
6400 Since the NAND code now uses 64bit code, make sure we enable support for
6401 ADI Blackfin boards in printf to avoid the warning:
6402 nand_util.c:45:2: warning: #warning Please define CONFIG_SYS_64BIT_VSPRINTF for correct output!
6403
6404 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6405
6406 commit 9c46e71af2b03ccd721c56b1dc906ead702d6fb5
6407 Author: Mike Frysinger <vapier@gentoo.org>
6408 Date: Mon Aug 24 20:48:04 2009 -0400
6409
6410 Blackfin: use scratch pad for exception stack
6411
6412 If the memory layout pushes the stack out of the default DCPLB coverage,
6413 the exception handler may trigger a double fault by trying to push onto
6414 the uncovered stack. So handle the exception stack similar to the kernel
6415 by using the top of the scratch pad SRAM.
6416
6417 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6418
6419 commit 69a25ce3578f34c8accb476f70089f3a44b78ed9
6420 Author: Mike Frysinger <vapier@gentoo.org>
6421 Date: Mon Aug 24 20:36:25 2009 -0400
6422
6423 Blackfin: increase default console size
6424
6425 The default console size indirectly applies to length of env vars, so a
6426 smaller length makes it hard to pass longer command lines to kernels.
6427
6428 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6429
6430 commit f541e1d6d99c22bbd4bc8c84fdb02baad0277847
6431 Author: Mike Frysinger <vapier@gentoo.org>
6432 Date: Mon Aug 24 19:03:18 2009 -0400
6433
6434 Blackfin: fix debug printf modifiers
6435
6436 The display_global_data() function generated warnings with pretty much
6437 every variable.
6438
6439 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6440
6441 commit 4640c2b8699bcdd2346a2c633486f07f061a2939
6442 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
6443 Date: Thu Aug 20 19:20:41 2009 -0400
6444
6445 Blackfin: cm-bf537u: new board port
6446
6447 The CM-BF537U is similar to the CM-BF537E module, but enough to need its
6448 own board port.
6449
6450 Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
6451 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6452
6453 commit c4db335c2e0805e1ce4c33d278b77492c0812353
6454 Author: Robin Getz <robin.getz@analog.com>
6455 Date: Mon Aug 17 15:23:02 2009 +0000
6456
6457 Blackfin: change global data register from P5 to P3
6458
6459 Since the Blackfin ABI favors higher scratch registers by default, use the
6460 last scratch register (P3) for global data rather than the first (P5).
6461 This allows the compiler's register allocator to use higher number scratch
6462 P registers, which in turn better matches the Blackfin instruction set,
6463 which reduces the size of U-Boot by more than 1024 bytes...
6464
6465 Signed-off-by: Robin Getz <robin.getz@analog.com>
6466 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6467
6468 commit 574b70df03fba0ea635e2fe71fbd7b97d19b706a
6469 Author: Robin Getz <robin.getz@analog.com>
6470 Date: Tue Aug 11 14:20:13 2009 +0000
6471
6472 Blackfin: enable more network commands for ADI dev boards
6473
6474 Add dns and ntp to default networking commands, and ask for more dhcp
6475 options to better configure the network environment.
6476
6477 Signed-off-by: Robin Getz <robin.getz@analog.com>
6478 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6479
6480 commit aa7b248a05323d4720969227603e39a22777ed95
6481 Author: Michael Hennerich <michael.hennerich@analog.com>
6482 Date: Thu Jun 18 09:12:50 2009 +0000
6483
6484 Blackfin: bf537-stamp: comment CF-Flash Card Support better
6485
6486 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
6487 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6488
6489 commit 69c6d268a29cf6d61e096d815abf5abf24136f45
6490 Author: Robin Getz <robin.getz@analog.com>
6491 Date: Fri Jul 10 18:37:15 2009 +0000
6492
6493 Blackfin: use +(filesize) to make sure we are only doing what is necessary
6494
6495 Signed-off-by: Robin Getz <robin.getz@analog.com>
6496 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6497
6498 commit 2dc851e3b0f07a56f83060f13882ff4b62cf5112
6499 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
6500 Date: Thu Aug 20 16:04:49 2009 +0200
6501
6502 Support for the Calao TNY-A9260/TNY-A9G20 boards
6503
6504 The Calao TNY-A9260 and TNY-9G20 are boards manufactured and sold by
6505 Calao Systems <http://www.calao-systems.com>. Their components are very
6506 similar to the AT91SAM9260EK board, so their configuration is based on
6507 the configuration of this board. There are however some differences:
6508 different clocks, no LCD, no ethernet. They also can use SPI EEPROM to
6509 store the environment.
6510
6511 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
6512 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6513
6514 commit 49d2cb4d6153a6c18249dccb5de5cffeb261a61c
6515 Author: Prafulla Wadaskar <prafulla@marvell.com>
6516 Date: Thu Aug 20 20:59:28 2009 +0530
6517
6518 arm: Kirkwood: add SYSRSTn Duration Counter Support
6519
6520 This feature can be used to trigger special command "sysrstcmd" using
6521 reset key long press event and environment variable "sysrstdelay" is set
6522 (useful for reset to factory or manufacturing mode execution)
6523
6524 Kirkwood SoC implements a hardware-based SYSRSTn duration counter.
6525 When SYSRSTn is asserted low, a SYSRSTn duration counter is running.
6526 The counter value is stored in the SYSRSTn Length Counter Register
6527 The counter is based on the 25-MHz reference clock (40ns)
6528 It is a 29-bit counter, yielding a maximum counting duration of
6529 2^29/25 MHz (21.4 seconds). When the counter reach its maximum value,
6530 it remains at this value until counter reset is triggered by setting
6531 bit 31 of KW_REG_SYSRST_CNT
6532
6533 Implementation:
6534 Upon long reset assertion (> ${sysrstdelay} in secs) sysrstcmd will be
6535 executed if pre-defined in environment variables.
6536 This feature will be disabled if "sysrstdelay" variable is unset.
6537
6538 for-ex.
6539 setenv sysrst_cmd "echo starting factory reset;
6540 nand erase 0xa0000 0x20000;
6541 echo finish ed sysrst command;"
6542 will erase particular nand sector if triggered by this event
6543
6544 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
6545
6546 commit 9453967e28c5e3abbf856f95735ea69bae1e77fa
6547 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
6548 Date: Mon Aug 24 18:03:26 2009 +0200
6549
6550 Add support for the Calao SBC35-A9G20 board
6551
6552 The Calao SBC35-A9G20 board is manufactured and sold by Calao Systems
6553 <http://www.calao-systems.com>. It is built around an AT91SAM9G20 ARM SoC
6554 running at 400MHz. It features an Ethernet port, an SPI RTC backed by an onboard
6555 battery , an SD/MMC slot, a CompactFlash slot, 64Mo of SDRAM, 256Mo of NAND
6556 flash, two USB host ports, and an USB device port. More informations can be
6557 found at <http://www.calao-systems.com/articles.php?lng=en&pg=5936>
6558
6559 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
6560
6561 commit 10bc241dfc15a0820d9c52469173b7ccafec0b84
6562 Author: Ilya Yanok <yanok@emcraft.com>
6563 Date: Tue Aug 11 02:32:09 2009 +0400
6564
6565 imx27lite: add support for imx27lite board from LogicPD
6566
6567 This patch adds support for i.MX27-LITEKIT development board from
6568 LogicPD. This board uses i.MX27 SoC and has 2MB NOR flash, 64MB NAND
6569 flash, FEC ethernet controller integrated into i.MX27.
6570
6571 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
6572 Acked-by: Wolfgang Denk <wd@denx.de>
6573
6574 commit 50b5fff55827946c86a60db8b21a9358be720666
6575 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
6576 Date: Tue Sep 1 11:26:20 2009 +0200
6577
6578 at91sam9260/afeb9260: Fix SPI initialization
6579
6580 Commit 7ebafb7ec1a0285af8380623c009576f92583b98 introduced a mistake in the spi
6581 init function call for those boards. This patch fixes this.
6582
6583 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
6584
6585 commit f3d4f8870e69e0fd177397778d97d0751bbd020a
6586 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
6587 Date: Tue Aug 18 11:13:44 2009 +0200
6588
6589 Remove duplicate set_cr
6590
6591 Remove duplicate set_cr
6592
6593 set_cr is defined in both asm-arm/proc-armv/system.h and
6594 include/asm-arm/system.h. This patch removes it (and some duplicate
6595 defines) from the former.
6596
6597 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
6598
6599 commit 3d35d87d5482de23cd5dc4d7721b1086107cae50
6600 Author: Wolfgang Denk <wd@denx.de>
6601 Date: Mon Aug 31 19:57:42 2009 +0200
6602
6603 Prepare 2009.08
6604
6605 Update CHANGELOG
6606
6607 Signed-off-by: Wolfgang Denk <wd@denx.de>
6608
6609 commit 632a6dd0b612eb7b143f789f2a0273917468c041
6610 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
6611 Date: Mon Aug 31 16:18:24 2009 +0200
6612
6613 Add common code dir for Matrix Vision boards.
6614
6615 This fixes current build failure.
6616
6617 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
6618
6619 mvblm7.c: fix warning: implicit declaration of function
6620 'mv_reset_environment'
6621
6622 Signed-off-by: Wolfgang Denk <wd@denx.de>
6623
6624 commit 52f6c34c85d6c16f2a41433b5000490ecf374992
6625 Author: David Brownell <dbrownell@users.sourceforge.net>
6626 Date: Sun Aug 30 11:05:29 2009 -0700
6627
6628 bugfix CONFIG_SYS_CONSOLE_INFO_QUIET
6629
6630 The "console: unify printing current devices" patch goofed:
6631 CONFIG_SYS_CONSOLE_INFO_QUIET is supposed to *REMOVE* boot
6632 time noise, not add it. Said patch changed the #ifndefs
6633 to #ifdef; this one restores them to the proper sense.
6634
6635 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
6636
6637 commit 2d04db088e6df8a008bb09f604876a45031df93b
6638 Author: Timur Tabi <timur@freescale.com>
6639 Date: Fri Aug 28 16:56:45 2009 -0500
6640
6641 fsl: simplify the "mac id" command, improve boot-time informational message
6642
6643 The "mac id" command took a 4-character parameter as the identifier string.
6644 However, for any given board, only one kind of identifier is acceptable, so it
6645 makes no sense to ask the user to type it in. Instead, if the user enters
6646 "mac id", the identifier (and also the version, if it's NXID) will
6647 automatically be set to the correct value.
6648
6649 Improve the message that is displayed when EEPROM is read during boot. It now
6650 displays "EEPROM:" and then either an error message or the EEPROM identifier
6651 if successful.
6652
6653 If the identifier in EEPROM is valid, then always reject a bad CRC, even if the
6654 CRC field has not been initialized.
6655
6656 Don't force the MAC address count to MAX_NUM_PORTS or less. Forcing the value
6657 to be changed resulting in an in-memory copy that does not match what's in
6658 hardware, even though the user did not request that change.
6659
6660 Finally, always update the CRC value in the in-memory copy after any field
6661 is changed, so that the CRC is always correct.
6662
6663 Signed-off-by: Timur Tabi <timur@freescale.com>
6664 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6665
6666 commit 33f3f34255bd7cf0be502275c59f0ff22dc50080
6667 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6668 Date: Fri Aug 21 07:29:58 2009 +0530
6669
6670 85xx: Added PCIe support for P1 P2 RDB
6671
6672 Call fsl_pci_init_port() to initialize all the PCIe ports on the board.
6673
6674 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6675 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6676
6677 commit 0d3d68b25a8e7790f58530ddccbd61f9fc0245ef
6678 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6679 Date: Fri Aug 21 07:29:42 2009 +0530
6680
6681 driver/fsl_pci: Add fsl_pci_init_port function to initialize a PCI controller
6682
6683 fsl_pci_init_port can be called from board specific PCI initialization
6684 routines to setup the PCI (or PCIe) controller. This will reduce code
6685 redundancy in most of the 85xx/86xx FSL board ports that setup PCI.
6686
6687 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6688 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6689
6690 commit 05f6f66474312ad03c39b4ca4875af46c87366bf
6691 Author: Timur Tabi <timur@freescale.com>
6692 Date: Thu Aug 20 17:41:11 2009 -0500
6693
6694 85xx: Improve MPIC initialization
6695
6696 The MPIC initialization code for Freescale e500 CPUs was not using I/O
6697 accessors, and it was not issuing a read-back to the MPIC after setting
6698 mixed mode. This may be the cause of a spurious interrupt on some systems.
6699
6700 Signed-off-by: Timur Tabi <timur@freescale.com>
6701 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6702
6703 commit c17b79fbd0c7923948331d65cb588734a9c681ff
6704 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6705 Date: Thu Aug 20 18:59:18 2009 +0530
6706
6707 85xx: Added support for P1011RDB and P2010RDB
6708
6709 P1011 and P2010 are single core variants of P1010 and P2020 respectively.
6710 The board(RDB) will be same.
6711
6712 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6713 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6714
6715 commit a713ba926b45da9a6f923f1ac9e60a66852e5f2d
6716 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6717 Date: Thu Aug 20 18:57:45 2009 +0530
6718
6719 85xx: Added single core members of FSL P1xx/P2xx processors series
6720
6721 P1011 - Single core variant of P1020
6722 P2010 - Single core variant of P2020
6723
6724 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6725 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6726
6727 commit bf488bc0949fc900d1296a7f35a38a6a28cb5fab
6728 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6729 Date: Thu Aug 20 18:57:02 2009 +0530
6730
6731 85xx: P1020RDB Support Added
6732
6733 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6734 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6735
6736 commit 3b1f243b8dad30a646a0f056b0268519eadbc3c5
6737 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6738 Date: Thu Aug 20 18:55:35 2009 +0530
6739
6740 85xx: Added CONFIG_MAX_CPUS for P1020
6741
6742 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6743 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6744
6745 commit 76b474e2f5a223fcabfeaa4f1c8fb699062b986c
6746 Author: Mingkai Hu <Mingkai.hu@freescale.com>
6747 Date: Tue Aug 18 15:37:15 2009 +0800
6748
6749 85xx: Add L2SRAM Register's macro definition
6750
6751 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
6752 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6753
6754 commit 158c6724c99368a4d8eef11ee7e3c7ad0ef03a15
6755 Author: Felix Radensky <felix@embedded-sol.com>
6756 Date: Sat Aug 15 15:08:37 2009 +0300
6757
6758 85xx: Fix memory test range on MPC8536DS
6759
6760 With current values of CONFIG_SYS_MEMTEST_START and CONFIG_SYS_MEMTEST_END
6761 memory test hangs if run without arguments. Set them to sane values, so
6762 that all available 512MB of RAM excluding exception vectors at the bottom
6763 and u-boot code and stack at the top can be tested.
6764
6765 Signed-off-by: Felix Radensky <felix@embedded-sol.com>
6766 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6767
6768 commit ef41f2a25c554604156b59f5945feadae2f3cb55
6769 Author: Kumar Gala <galak@kernel.crashing.org>
6770 Date: Wed Aug 12 00:10:44 2009 -0500
6771
6772 85xx: Removed BEDBUG support on P1_P2_RDB
6773
6774 To match all other 85xx platforms we are removing BEDBUG support.
6775
6776 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6777
6778 commit b560ab85edfb68da653bf2527c390c3e182392a1
6779 Author: Kumar Gala <galak@kernel.crashing.org>
6780 Date: Sat Aug 8 10:42:30 2009 -0500
6781
6782 85xx: Init pci ethernet cards if we enable any on MPC8572DS
6783
6784 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6785
6786 commit 1bb61b69f7aba4931ede35fdcabd8e5ecad121d7
6787 Author: Peter Tyser <ptyser@xes-inc.com>
6788 Date: Fri Aug 7 13:16:34 2009 -0500
6789
6790 xes: Use proper IO access functions
6791
6792 Also fix some minor whitespace oddities while we're cleaning up
6793
6794 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6795 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6796
6797 commit ec79d33b2c41ee8b6d1354cc0910217b769c5036
6798 Author: Kumar Gala <galak@kernel.crashing.org>
6799 Date: Fri Aug 7 13:00:55 2009 -0500
6800
6801 85xx: Move to a common linker script
6802
6803 There are really no differences between all the 85xx linker scripts so
6804 we can just move to a single common one. Board code is still able to
6805 override the common one if need be.
6806
6807 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6808
6809 commit 87c7661b42aa7672539b54b51d3d5c4013ec6f6c
6810 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6811 Date: Fri Jul 31 12:08:27 2009 +0530
6812
6813 85xx: Added P1020 Processor Support.
6814
6815 P1020 is another member of QorIQ series of processors which falls in ULE
6816 category. It is an e500 based dual core SOC.
6817
6818 Being a scaled down version of P2020 it has following differences:
6819 - 533MHz - 800MHz core frequency.
6820 - 256Kbyte L2 cache
6821 - Ethernet controllers with classification capabilities.
6822 Also the SOC is pin compatible with P2020
6823
6824 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6825 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6826
6827 commit 728ece343e8bb2a66ee977c49d455439e3b28da9
6828 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6829 Date: Wed Aug 5 13:29:24 2009 +0530
6830
6831 85xx: Add support for P2020RDB board
6832
6833 The code base adds P1 & P2 RDB platforms support.
6834 The folder and file names can cater to future SOCs of P1/P2 family.
6835 P1 & P2 processors are 85xx platforms, part of Freescale QorIQ series.
6836
6837 Tested following on P2020RDB:
6838 1. eTSECs
6839 2. DDR, NAND, NOR, I2C.
6840
6841 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6842 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6843
6844 commit 0e870980a64584a591af775bb9c9fe9450124df9
6845 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6846 Date: Fri Jul 31 12:08:14 2009 +0530
6847
6848 8xxx: Removed CONFIG_NUM_CPUS from 85xx/86xx
6849
6850 The number of CPUs are getting detected dynamically by checking the
6851 processor SVR value. Also removed CONFIG_NUM_CPUS references from all
6852 the platforms with 85xx/86xx processors.
6853
6854 This can help to use the same u-boot image across the platforms.
6855
6856 Also revamped and corrected few Freescale Copyright messages.
6857
6858 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6859 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6860
6861 commit 18bacc2027f8531d8dec15ba8da3242dfb4e63f3
6862 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6863 Date: Fri Jul 31 12:07:45 2009 +0530
6864
6865 8xxx: Refactored common cpu specific code for 85xx/86xx into one file.
6866
6867 Removed same code pieces from cpu/mpc85xx/cpu.c and cpu/mpc86xx/cpu.c
6868 and moved to cpu/mpc8xxx/cpu.c(new file)
6869
6870 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6871 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6872
6873 commit 7b18c227b847e4782eb1492219ebd555f521b08b
6874 Author: Alex Dubov <oakad@yahoo.com>
6875 Date: Fri Aug 7 15:28:32 2009 +1000
6876
6877 stx: create common vendor/board hierarchy for STx boards
6878
6879 Move files belonging to the STx boards into common vendor directory and
6880 update the Makefile to reflect this.
6881
6882 Signed-off-by: Alex Dubov <oakad@yahoo.com>
6883 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6884
6885 commit bafdf9aa9dbb69d937b72db17ed5800998c59523
6886 Author: Peter Tyser <ptyser@xes-inc.com>
6887 Date: Tue Aug 4 17:38:00 2009 -0500
6888
6889 85xx: Remove unused CONFIG_CLEAR_LAW0 defines
6890
6891 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6892 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6893
6894 commit 73aacc522849486b60a5611f678f0bf1c3053779
6895 Author: Kumar Gala <galak@kernel.crashing.org>
6896 Date: Thu Aug 6 18:38:43 2009 -0500
6897
6898 86xx: Remove redudant PLATFORM_CPPFLAGS
6899
6900 For historic reasons we had defined some additional PLATFORM_CPPFLAGS like:
6901
6902 PLATFORM_CPPFLAGS += -DCONFIG_MPC86xx=1
6903 PLATFORM_CPPFLAGS += -DCONFIG_MPC8641=1
6904
6905 However these are all captured in the config.h and thus redudant. Also
6906 moved common 86xx flags into cpu/mpc86xx/config.mk.
6907
6908 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6909
6910 commit 53efa1f1acacacb76fa9a21b09b3294783a11c03
6911 Author: Kumar Gala <galak@kernel.crashing.org>
6912 Date: Thu Aug 6 18:28:34 2009 -0500
6913
6914 85xx: Remove redudant PLATFORM_CPPFLAGS
6915
6916 For historic reasons we had defined some additional PLATFORM_CPPFLAGS
6917 like:
6918
6919 PLATFORM_CPPFLAGS += -DCONFIG_E500=1
6920 PLATFORM_CPPFLAGS += -DCONFIG_MPC85xx=1
6921 PLATFORM_CPPFLAGS += -DCONFIG_MPC8548=1
6922
6923 However these are all captured in the config.h and thus redudant.
6924
6925 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6926
6927 commit 337f9fde2e9317c1d9e85a4a8955a2f14730a00f
6928 Author: Kumar Gala <galak@kernel.crashing.org>
6929 Date: Thu Jul 30 15:54:07 2009 -0500
6930
6931 85xx: Add a 36-bit physical configuration for MPC8536DS
6932
6933 We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary
6934 to allow for larger memory sizes.
6935
6936 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6937 Acked-by: Wolfgang Denk <wd@denx.de>
6938
6939 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6940
6941 commit ecead84d56b0ced67b727f5ce21ba08c53b5f09e
6942 Author: Kumar Gala <galak@kernel.crashing.org>
6943 Date: Tue Aug 4 09:10:03 2009 -0500
6944
6945 85xx: Cleanup whitespace in mpc8536ds.c
6946
6947 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6948
6949 commit ad19e7a5d2de337064ce7728d6504df9648f5d31
6950 Author: Kumar Gala <galak@kernel.crashing.org>
6951 Date: Wed Aug 5 07:59:35 2009 -0500
6952
6953 pci/fsl_pci_init: Rework PCI ATMU setup to handle >4G of memory
6954
6955 The old PCI ATMU setup code would just mimic the PCI regions into the
6956 ATMU registers. For simple memory maps in which all memory, MMIO, etc
6957 space fit into 4G this works ok. However there are issues with we have
6958 >4G of memory as we know can't access all of memory and we need to
6959 ensure that PCICSRBAR (PEXCSRBAR on PCIe) isn't overlapping with
6960 anything since we can't turn it off.
6961
6962 We first setup outbound windows based on what the board code setup
6963 in the pci regions for MMIO and IO access. Next we place PCICSRBAR
6964 below the MMIO window. After which we try to setup the inbound windows
6965 to map as much of memory as possible.
6966
6967 On PCIe based controllers we are able to overmap the ATMU setup since
6968 RX & TX links are separate but report the proper amount of inbound
6969 address space to the region tracking to ensure there is no overlap.
6970
6971 On PCI based controllers we use as many inbound windows as available to
6972 map as much of the memory as possible.
6973
6974 Additionally we changed all the CCSR register access to use proper IO
6975 accessor functions. Also had to add CONFIG_SYS_CCSRBAR_PHYS to some
6976 86xx platforms that didn't have it defined.
6977
6978 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6979
6980 commit 8295b94400449586505ffe34ec024feb3d2c8fe4
6981 Author: Kumar Gala <galak@kernel.crashing.org>
6982 Date: Wed Aug 5 07:49:27 2009 -0500
6983
6984 pci/fsl_pci_init: Use PCIe capability to determine if controller is PCIe
6985
6986 Change the code to use the PCIe capabilities register to determine if we
6987 are a PCIe controller or not. Additionally cleaned up some white space
6988 and formatting in the file.
6989
6990 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6991
6992 commit cb151aa2cf5fbb1e412fc763a3a611758f066238
6993 Author: Kumar Gala <galak@kernel.crashing.org>
6994 Date: Mon Aug 3 21:02:02 2009 -0500
6995
6996 pci/fsl_pci_init: Fold fsl_pci_setup_inbound_windows into fsl_pci_init
6997
6998 Every platform that calls fsl_pci_init calls fsl_pci_setup_inbound_windows
6999 before it calls fsl_pci_init. There isn't any reason to just call it
7000 from fsl_pci_init and simplify things a bit.
7001
7002 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7003
7004 commit fb3143b35eb5890ec72e79d17a6068a84a057d47
7005 Author: Kumar Gala <galak@kernel.crashing.org>
7006 Date: Mon Aug 3 20:44:55 2009 -0500
7007
7008 pci/fsl_pci_init: Fold pci_setup_indirect into fsl_pci_init
7009
7010 Every platform that calls fsl_pci_init calls pci_setup_indirect before
7011 it calls fsl_pci_init. There isn't any reason to just call it from
7012 fsl_pci_init and simplify things a bit.
7013
7014 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7015
7016 commit 28887d831b02c66ccc10d7f1379204b5a62f4543
7017 Author: André Schwarz <andre.schwarz@matrix-vision.de>
7018 Date: Thu Aug 27 14:48:35 2009 +0200
7019
7020 Use common code for Matrix Vision boards
7021
7022 Clean up existing boards (mvBC-P/MPC5200 and mvBL-M7/MPC8343) by
7023 using common code.
7024
7025 Signed-off-by: André Schwarz <andre.schwarz@matrix-vision.de>
7026
7027 commit 05f91a65abc3180e2896cd8ddee7a34b1d1ce6e0
7028 Author: Kim Phillips <kim.phillips@freescale.com>
7029 Date: Wed Aug 26 21:27:37 2009 -0500
7030
7031 mpc83xx: mpc8349itx - accommodate larger kernel sizes & unzero the bootdelay
7032
7033 apparently the ITX was missed last round.
7034
7035 Also make bootdelay consistent with other boards, so as to give on the
7036 opportunity to fix mistakenly set bootcmd without having checked for an
7037 bootdelay zero setting first.
7038
7039 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7040
7041 commit cc861f7127f200e704baaf061a7f508e3c93f2a3
7042 Author: Kim Phillips <kim.phillips@freescale.com>
7043 Date: Wed Aug 26 21:25:46 2009 -0500
7044
7045 mpc83xx: match dtb filename references to their dts equivalents in the linux kernel
7046
7047 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7048
7049 commit 77b351cd0f20483eefa09bebebb3e0cbf5555b2c
7050 Author: Sandeep Paulraj <s-paulraj@ti.com>
7051 Date: Tue Aug 18 10:10:42 2009 -0400
7052
7053 NAND: DaVinci: V2 Adding 4 BIT ECC support
7054
7055 This patch adds 4 BIT ECC support in the DaVinci NAND
7056 driver. Tested on both the DM355 and DM365.
7057
7058 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
7059 Signed-off-by: Scott Wood <scottwood@freescale.com>
7060
7061 commit f83b7f9e8a5d1334e24506ea5953dd871596ea8a
7062 Author: Sandeep Paulraj <s-paulraj@ti.com>
7063 Date: Mon Aug 10 13:27:56 2009 -0400
7064
7065 MTD:NAND: ADD new ECC mode NAND_ECC_HW_OOB_FIRST
7066
7067 This patch adds the new mode NAND_ECC_HW_OOB_FIRST in the nand code to
7068 support 4-bit ECC on TI DaVinci devices with large page (up to 2K) NAND
7069 chips. This ECC mode is similar to NAND_ECC_HW, with the exception of
7070 read_page API that first reads the OOB area, reads the data in chunks,
7071 feeds the ECC from OOB area to the ECC hw engine and perform any
7072 correction on the data as per the ECC status reported by the engine.
7073
7074 This patch has been accepted by Andrew Morton and can be found at
7075
7076 http://userweb.kernel.org/~akpm/mmotm/broken-out/mtd-nand-add-new-ecc-mode-ecc_hw_oob_first.patch
7077
7078 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
7079 Signed-off-by: Sneha Narnakaje <nsnehaprabha@ti.com>
7080 Signed-off-by: Scott Wood <scottwood@freescale.com>
7081
7082 commit 36fab997d85d89ee7fd2c7fd6057fab786d556aa
7083 Author: Ilya Yanok <yanok@emcraft.com>
7084 Date: Tue Aug 11 02:32:54 2009 +0400
7085
7086 mxc_nand: add nand driver for MX2/MX3
7087
7088 Driver for NFC NAND controller found on Freescale's MX2 and MX3
7089 processors. Ported from Linux. Tested only with i.MX27 but should
7090 works with other MX2 and MX3 processors too.
7091
7092 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
7093 Signed-off-by: Scott Wood <scottwood@freescale.com>
7094
7095 commit a2c65b47effcb3d0aa23e58596538acd338ac7c5
7096 Author: Sandeep Paulraj <s-paulraj@ti.com>
7097 Date: Mon Aug 10 13:27:46 2009 -0400
7098
7099 NAND: ADD page Parameter to all read_page/read_page_raw API's
7100
7101 This patch adds a new "page" parameter to all NAND read_page/read_page_raw
7102 APIs. The read_page API for the new mode ECC_HW_OOB_FIRST requires the
7103 page information to send the READOOB command and read the OOB area before
7104 the data area.
7105
7106 This patch has been accepted by Andrew Morton and can be found at
7107 http://userweb.kernel.org/~akpm/mmotm/broken-out/mtd-nand-add-page-parameter-to-all-read_page-read_page_raw-apis.patch
7108
7109 WE would like this to become part of the u-boot GIT as well
7110
7111 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
7112 Signed-off-by: Sneha Narnakaje <nsnehaprabha@ti.com>
7113 Signed-off-by: Scott Wood <scottwood@freescale.com>
7114
7115 commit de4250929f37e6c16860741b74546bedbe0bdaba
7116 Author: Heiko Schocher <hs@denx.de>
7117 Date: Tue Jul 21 17:13:40 2009 +0200
7118
7119 83xx, kmeter1: added NAND support
7120
7121 Signed-off-by: Heiko Schocher <hs@denx.de>
7122 Signed-off-by: Scott Wood <scottwood@freescale.com>
7123
7124 commit ecad289fc6bd9d89ef4d5093cc7b6fd712fd0d29
7125 Author: Kyungmin Park <kmpark@infradead.org>
7126 Date: Tue Jul 21 11:58:04 2009 +0900
7127
7128 OneNAND: Remove unused read_spareram
7129
7130 Remove unused read_spareram and add unlock_all as kernel does
7131
7132 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7133 Signed-off-by: Scott Wood <scottwood@freescale.com>
7134
7135 commit 403ce1f759b5acec8514cd7e10ce76704fed519c
7136 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
7137 Date: Thu Jul 16 21:19:29 2009 +0200
7138
7139 KB9202: Add NAND support
7140
7141 Add KB9202 NAND driver
7142
7143 Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
7144 Signed-off-by: Scott Wood <scottwood@freescale.com>
7145
7146 commit ce3277a6f2c082f39596d3d3d88dd0a5bc91439d
7147 Author: Kyungmin Park <kmpark@infradead.org>
7148 Date: Tue Jul 21 11:58:04 2009 +0900
7149
7150 OneNAND: Remove unused read_spareram
7151
7152 Remove unused read_spareram and add unlock_all as kernel does
7153
7154 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7155
7156 commit 0d042037b3cf8693ea0f793d0c292430bfc5a95c
7157 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
7158 Date: Tue Aug 25 10:30:26 2009 -0500
7159
7160 galaxy5200: Cleanup typo and trailing whitespace
7161
7162 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
7163
7164 commit f6a309080b2da9e509b5ee8d091dca5e175415b7
7165 Author: TsiChung Liew <tsicliew@gmail.com>
7166 Date: Wed Jul 22 18:42:45 2009 +0000
7167
7168 ColdFire: Fix compile warning messages
7169
7170 Change %08lX to %08X in board.c. Remove unused variable
7171 'oscillator' in mcf5227x/cpu_init.c and 'scm2' in
7172 mcf532x/cpu_init.c. Provide argument type cast in
7173 drivers/dma/MCD_dmaApi.c.
7174
7175 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
7176
7177 commit 88c811b153771a3d1bfe958297c69722efb278e9
7178 Author: TsiChung Liew <tsicliew@gmail.com>
7179 Date: Wed Jul 22 16:32:39 2009 +0000
7180
7181 ColdFire: Fix missing _IO_BASE which caused compile error
7182
7183 The compile error was caused by a recent patch. Affected platforms -
7184 M5253DEMO.h, M5253EVBE.h, and M54455EVB.h. Adding the _IO_BASE
7185 automatically defined to 0 in asm-m68k/io.h if it isn't set in
7186 platform configuration file.
7187
7188 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
7189
7190 commit 3a7b2c21fb08b022e3e624cd071002b4aaed1606
7191 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
7192 Date: Wed Jul 22 17:13:24 2009 +0200
7193
7194 Support up to 7 banks for ids as specified in JEDEC JEP106Z
7195
7196 see http://www.jedec.org/download/search/jep106Z.pdf
7197 Add some second source legacy flash chips 256x8.
7198
7199 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
7200 Signed-off-by: Stefan Roese <sr@denx.de>
7201
7202 commit 0d071cdd782e917b43e04869843df31670231ffd
7203 Author: Kim Phillips <kim.phillips@freescale.com>
7204 Date: Mon Aug 24 14:32:26 2009 -0500
7205
7206 net: tsec - handle user interrupt while waiting for PHY auto negotiation to complete
7207
7208 if you don't have firmware installed for the PHY to come to life, this
7209 wait can be painful - let's give the option to avoid it if we want.
7210
7211 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7212 Acked-by: Andy Fleming <afleming@freescale.com>
7213 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7214
7215 commit 4fccb818e7ee1190602e79aa5729a23bc349bf0c
7216 Author: Robin Getz <rgetz@blackfin.uclinux.org>
7217 Date: Thu Aug 20 10:50:20 2009 -0400
7218
7219 Add Transfer Size Option to tftp
7220
7221 Optionally add RFC 2349 "Transfer Size Option", so we can minimize the
7222 time spent sending data over the UART (now print a single line during a
7223 tftp transfer).
7224
7225 - If turned on (CONFIG_TFTP_TSIZE), U-Boot asks for the size of the file.
7226 - if receives the file size, a single line (50 chars) are printed.
7227 one hash mark == 2% of the file downloaded.
7228 - if it doesn't receive the file size (the server doesn't support RFC
7229 2349, prints standard hash marks (one mark for each UDP frame).
7230
7231 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
7232 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7233
7234 commit 488feef85229c08cd3aa1fa183bc8f483d2ae832
7235 Author: Robin Getz <rgetz@blackfin.uclinux.org>
7236 Date: Mon Aug 24 10:33:39 2009 -0400
7237
7238 Add debug message for Blackfin Ethernet Rx function.
7239
7240 Add a simple print for the Blackfin's Ethernet Rx function,
7241 so we can debug incomming Ethernet functions easier.
7242
7243 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
7244 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7245
7246 commit b1c0eaac110bc919e5b4e88821348e714493f266
7247 Author: Ben Warren <biggerbadderben@gmail.com>
7248 Date: Tue Aug 25 13:09:37 2009 -0700
7249
7250 Convert CS8900 Ethernet driver to CONFIG_NET_MULTI API
7251
7252 All in-tree boards that use this controller have CONFIG_NET_MULTI added
7253 Also:
7254 - changed CONFIG_DRIVER_CS8900 to CONFIG_CS8900
7255 - changed CS8900_BASE to CONFIG_CS8900_BASE
7256 - changed CS8900_BUS?? to CONFIG_CS8900_BUS??
7257 - cleaned up line lengths
7258 - modified VCMA9 command function that accesses the device
7259 - removed MAC address initialization from lib_arm/board.c
7260
7261 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7262 Tested-by: Wolfgang Denk <wd@denx.de>
7263 Acked-by: Wolfgang Denk <wd@denx.de>
7264
7265 commit d47628a6ecf80cd4584a50b6c795b90c985a48e5
7266 Author: Alessandro Rubini <rubini-list@gnudd.com>
7267 Date: Fri Aug 7 13:59:26 2009 +0200
7268
7269 arm nomadik: activate defrag choose 4k transfer block size
7270
7271 This chooses 4kB data size for both TFTP and NFS, as an example
7272 about how to use support for IP fragments.
7273
7274 Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
7275 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7276
7277 commit bd931ca61c84039241d438ade4a9755ae0e5372f
7278 Author: Alessandro Rubini <rubini-list@gnudd.com>
7279 Date: Fri Aug 7 13:59:16 2009 +0200
7280
7281 nfs: accept CONFIG_NFS_READ_SIZE from config file
7282
7283 To take advantage of defragmented packets, the config file
7284 can define CONFIG_NFS_READ_SIZE to override the 1kB default.
7285 No support is there for an environment variable by now.
7286
7287 Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
7288 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7289
7290 commit 89ba81d1079a07b8430a98c1746c6d411312eb0d
7291 Author: Alessandro Rubini <rubini-list@gnudd.com>
7292 Date: Fri Aug 7 13:59:06 2009 +0200
7293
7294 tftp: get the tftp block size from config file and from the environment
7295
7296 Increasing the block size is useful if CONFIG_IP_DEFRAG is
7297 used. Howerver, the last fragments in a burst may overflow the
7298 receiving ethernet, so the default is left at 1468, with thre new
7299 CONFIG_TFTP_BLOCKSIZE for config files. Further, "tftpblocksize"
7300 can be set in the environment.
7301
7302 Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
7303 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7304
7305 commit 5cfaa4e54d0eb8232fa1cf092d955fdaed5b673d
7306 Author: Alessandro Rubini <rubini-list@gnudd.com>
7307 Date: Fri Aug 7 13:58:56 2009 +0200
7308
7309 net: defragment IP packets
7310
7311 The defragmenting code is enabled by CONFIG_IP_DEFRAG; the code is
7312 useful for TFTP and NFS transfers. The user can specify the maximum
7313 defragmented payload as CONFIG_NET_MAXDEFRAG (default 16k).
7314 Since NFS has a bigger per-packet overhead than TFTP, the static
7315 reassembly buffer can hold CONFIG_NET_MAXDEFRAG + the NFS overhead.
7316
7317 The packet buffer is used as an array of "hole" structures, acting as
7318 a double-linked list. Each new fragment can split a hole in two,
7319 reduce a hole or fill a hole. No support is there for a fragment
7320 overlapping two diffrent holes (i.e., thre new fragment is across an
7321 already-received fragment).
7322
7323 Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
7324 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7325
7326 commit 68e74567cf317318df52dbcb2ac170ffc5e7758a
7327 Author: Feng Kan <fkan@amcc.com>
7328 Date: Fri Aug 21 10:59:42 2009 -0700
7329
7330 ppc4xx: Fix ECC Correction bug with SMC ordering for NDFC driver
7331
7332 Fix ECC Correction bug where the byte offset location were double
7333 flipped causing correction routine to toggle the wrong byte location
7334 in the ECC segment. The ndfc_calculate_ecc routine change the order
7335 of getting the ECC code.
7336 /* The NDFC uses Smart Media (SMC) bytes order */
7337 ecc_code[0] = p[2];
7338 ecc_code[1] = p[1];
7339 ecc_code[2] = p[3];
7340 But in the Correction algorithm when calculating the byte offset
7341 location, the s1 is used as the upper part of the address. Which
7342 again reverse the order making the final byte offset address
7343 location incorrect.
7344 byteoffs = (s1 << 0) & 0x80;
7345 .
7346 .
7347 byteoffs |= (s0 >> 4) & 0x08;
7348 The order is change to read it in straight and let the correction
7349 function to revert it to SMC order.
7350
7351 Signed-off-by: Feng Kan <fkan@amcc.com>
7352 Acked-by: Victor Gallardo <vgallardo@amcc.com>
7353 Acked-by: Prodyut Hazarika <phazarika@amcc.com>
7354 Signed-off-by: Stefan Roese <sr@denx.de>
7355
7356 commit 307ecb6db04eebdc06b8c87d48bf48d3cbd5e9d7
7357 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
7358 Date: Thu Aug 13 08:32:37 2009 -0500
7359
7360 Add support for USB on PSC3 for the mpc5200
7361
7362 Support USB on PSC3 on the mpc5200. Before this patch, enabling USB support
7363 would reconfigure PSC4 and PSC5 to USB. The mpc5200 does not support USB
7364 enabled on both the standard USB port and PSC3. This patch masks the
7365 appropriate bits when enabling USB.
7366
7367 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
7368 Acked-by: Grant Likely <grant.likely@secretlab.ca>
7369 Acked-by: Remy Bohmer <linux@bohmer.net>
7370
7371 commit 6b8548b0f7068379ad1efa4fa28725f361b2d3cd
7372 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7373 Date: Thu Aug 13 19:12:44 2009 +0200
7374
7375 Add driver for the ST M41T94 SPI RTC
7376
7377 This RTC is used in some Calao boards. The driver code is taken from
7378 the linux rtc-m41t94 driver
7379
7380 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7381
7382 commit 885fc78c28fbe773bcb4edc9dd0fdac05ebb5b38
7383 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7384 Date: Thu Aug 13 15:31:12 2009 +0200
7385
7386 Switch from per-driver to common definition of bin2bcd and bcd2bin
7387
7388 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7389 Acked-by: Stefan Roese <sr@denx.de>
7390
7391 commit e84aba135ed7145299304ef550e92f08b2c99d7a
7392 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7393 Date: Thu Aug 13 15:31:11 2009 +0200
7394
7395 Replace BCD2BIN and BIN2BCD macros with inline functions
7396
7397 In the process, also remove backward-compatiblity macros BIN_TO_BCD and
7398 BCD_TO_BIN and update the sole board using them to use the new bin2bcd
7399 and bcd2bin instead
7400
7401 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7402 Acked-by: Stefan Roese <sr@denx.de>
7403 Acked-by: Detlev Zundel <dzu@denx.de>
7404
7405 commit 5b53b29bc2e82b80b669f1d2402068c60d7fecd0
7406 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
7407 Date: Thu Aug 13 10:14:21 2009 -0500
7408
7409 Add support for the galaxy5200
7410
7411 Add support for the DEKA Research and Development galaxy5200 board
7412
7413 The galaxy5200 is an Freescale mpc5200 based embedded industrial
7414 control board.
7415
7416 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
7417
7418 commit 0a9e4e772123fe3e2bb499d7d2160c4cfd8a3a8d
7419 Author: Mike Frysinger <vapier@gentoo.org>
7420 Date: Fri Jul 24 16:34:32 2009 -0400
7421
7422 unify {CONFIG_,}ENV_IS_EMBEDDED
7423
7424 Some boards have fallen out of sync by defining CONFIG_ENV_IS_EMBEDDED
7425 manually. While it is useful to have this available to the build system,
7426 let's do it automatically rather than forcing people to opt into it.
7427
7428 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7429 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7430 Signed-off-by: Wolfgang Denk <wd@denx.de>
7431
7432 commit 02c9aa1d41f73fdcf8383a36cc0cbbfaf952855d
7433 Author: Robin Getz <rgetz@blackfin.uclinux.org>
7434 Date: Mon Jul 27 00:07:59 2009 -0400
7435
7436 Add md5sum and sha1 commands...
7437
7438 Now that we have sha1 and md5 in lib_generic, allow people to use
7439 them on the command line, for checking downloaded files.
7440
7441 Signed-off-by: Robin Getz <rgetz@analog.com>
7442
7443 commit 30fc5cd3116cb112d0aab7e6d7c8eef1b67ed075
7444 Author: Wolfgang Denk <wd@denx.de>
7445 Date: Tue Aug 25 12:22:38 2009 +0200
7446
7447 include/s3c24x0.h: fix S3C24X0_SPI_CHANNEL declaration
7448
7449 The SPI controller on the S3C24X0 has 8 bit registers, not 32 bit.
7450
7451 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7452 Signed-off-by: Wolfgang Denk <wd@denx.de>
7453
7454 commit e637385e69f63bc73b9dfd2ddd8d0f383790ca28
7455 Author: Mike Frysinger <vapier@gentoo.org>
7456 Date: Thu Aug 20 19:17:59 2009 -0400
7457
7458 Blackfin: fix typos in gpio comments
7459
7460 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7461
7462 commit c2fbcb6ae86c10621a386c13be57eaa766221ed5
7463 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
7464 Date: Tue Aug 18 04:49:57 2009 -0400
7465
7466 Blackfin: cm-bf527/cm-bf537: increase flash sectors
7467
7468 Newer revisions of these boards have slightly larger flashes, so increase
7469 the configured number of sectors so that U-Boot works on all revisions.
7470
7471 Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
7472 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7473
7474 commit a794f59a75bf9fd4a44f1ad2349cae903c42b89c
7475 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7476 Date: Sun Aug 23 14:14:52 2009 +0200
7477
7478 sh/rsk7203: add missing include net.h
7479
7480 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7481
7482 commit 6ac9f47977a9fc1876979871eeb14f26ba1bdbe6
7483 Author: Mike Frysinger <vapier@gentoo.org>
7484 Date: Sun Aug 23 02:47:59 2009 -0400
7485
7486 start a linker script helper file
7487
7488 Start a common header file for common linker script code (such as
7489 workarounds for older linkers) rather than doing this in the build system.
7490
7491 As fallout, we no longer execute the linker every time config.mk is
7492 included by a build file (which can easily be 70+ times), but rather only
7493 execute it once.
7494
7495 This also fixes a bug in the major version checking by creating a macro to
7496 easily compare versions and keep people from making the same common
7497 mistake (forgetting to check major and minor together).
7498
7499 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7500
7501 commit 2ed0869d30602eb660569eababb8fedff36bd23a
7502 Author: Mike Frysinger <vapier@gentoo.org>
7503 Date: Sat Aug 22 19:50:22 2009 -0400
7504
7505 Blackfin: use common code to preprocess linker script
7506
7507 Now that the common code preprocesses the linker script, the Blackfin code
7508 no longer needs to do it.
7509
7510 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7511
7512 commit 4d3758c835c7e96da2a291e7fb5acfc19bc06e8e
7513 Author: Mike Frysinger <vapier@gentoo.org>
7514 Date: Sat Aug 22 19:48:56 2009 -0400
7515
7516 .gitignore: ignore generated u-boot.lds
7517
7518 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7519
7520 commit 79b91de958511840d2a7491be92d435b7ef43f17
7521 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7522 Date: Sat Aug 22 14:21:53 2009 +0200
7523
7524 include/mmc.h: Fix typo in IS_SD() macro
7525
7526 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7527
7528 commit 963f2f611741f8d9c38bd7caf20ae8c95cab7b3f
7529 Author: Wolfgang Denk <wd@denx.de>
7530 Date: Sat Aug 22 23:27:26 2009 +0200
7531
7532 Prepare 2009.08-rc3
7533
7534 Update CHANGELOG, minor Coding Style cleanup.
7535
7536 Signed-off-by: Wolfgang Denk <wd@denx.de>
7537
7538 commit 5b2da6a309266f21cbb68f06fcfdf9ba141022e7
7539 Author: Michal Simek <monstr@monstr.eu>
7540 Date: Fri Aug 21 06:52:25 2009 +1000
7541
7542 qemu-mips: Fix Qemu website
7543
7544 Signed-off-by: Michal Simek <monstr@monstr.eu>
7545 Signed-off-by: Michal Simek <michal.simek@petalogix.com>
7546 Acked-by: Shinya Kuribayashi <skuribay@pobox.com>
7547
7548 commit 79f516bccc3cff5a5cd4b3dffb7d254e746fdbde
7549 Author: Kim Phillips <kim.phillips@freescale.com>
7550 Date: Fri Aug 21 16:34:38 2009 -0500
7551
7552 mpc83xx: accommodate larger kernel sizes by default
7553
7554 linux mpc83xx_defconfig kernels are getting bigger, accommodate for
7555 their growth by adjusting default load and fdt addresses.
7556
7557 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7558
7559 commit 8eceeb7fd656d6d071c0a8b615e178aca5775fff
7560 Author: Kim Phillips <kim.phillips@freescale.com>
7561 Date: Fri Aug 21 16:33:15 2009 -0500
7562
7563 mpc83xx: mpc8377erdb - change DDR settings to those from latest bsp
7564
7565 when using Linus' 83xx_defconfig, the mpc8377rdb would hang at boot
7566 at either:
7567
7568 NET: Registered protocol family 16
7569
7570 or the
7571
7572 io scheduler cfq registered
7573
7574 message. Fixing up these DDR settings appears to fix the problem.
7575
7576 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7577
7578 commit 27c5248dd4c9ba4a36899689595956c5e59e349a
7579 Author: Kim Phillips <kim.phillips@freescale.com>
7580 Date: Fri Aug 21 16:31:20 2009 -0500
7581
7582 mpc83xx: tqm8349 - remove pci & flash window conflict
7583
7584 commit 9993e196da707a0a1cd4584f1fcef12382c1c144 "mpc83xx: convert all
7585 remaining boards over to 83XX_GENERIC_PCI" remapped pci windows on
7586 tqm834x to make it more consistent with the other 83xx boards. During
7587 that time however, the author failed to realize that FLASH_BASE was
7588 occupying the same range as what PCI1_MEM_BASE was being assigned.
7589
7590 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7591 Tested-by: Wolfgang Denk <wd@denx.de>
7592
7593 commit 6d2c26ac831f033b0025cfb256365a047f8dd115
7594 Author: Heiko Schocher <hs@denx.de>
7595 Date: Fri Aug 21 16:30:30 2009 -0500
7596
7597 mpc83xx: add missing CSCONFIG_ODT_WR_CFG for 832x CPUs
7598
7599 Signed-off-by: Heiko Schocher <hs@denx.de>
7600 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7601
7602 commit 193b4cb3f641ed0fd9bb79b8fa4671882c50ffdb
7603 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
7604 Date: Fri Aug 21 16:27:05 2009 -0500
7605
7606 mpc83xx: mpc8349 - delete unused SYS_MID_FLASH_JUMP
7607
7608 This was introduced with the MPC8349EMDS board, and then copied to
7609 a couple other boards by nature of being the reference implementation.
7610
7611 u-boot$git grep CONFIG_SYS_MID_FLASH_JUMP
7612 include/configs/MPC8349EMDS.h:#define CONFIG_SYS_MID_FLASH_JUMP 0x7F000000
7613 include/configs/sbc8349.h:#define CONFIG_SYS_MID_FLASH_JUMP 0x7F000000
7614 include/configs/vme8349.h:#define CONFIG_SYS_MID_FLASH_JUMP 0x7F000000
7615 u-boot$
7616
7617 It currently isn't used, so delete it before it spreads further.
7618
7619 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7620 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7621
7622 commit c0d660fbbede322648ec79d3e39389e48f5fab24
7623 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
7624 Date: Fri Aug 21 16:21:58 2009 -0500
7625
7626 mpc83xx: sbc8349 - make enabling PCI more user friendly
7627
7628 Prior to this commit, to enable PCI, you had to go manually
7629 edit the board config header, which isn't really user friendly.
7630 This adds the typical PCI make targets to the toplevel Makefile
7631 in accordance with what is being done with other boards.
7632
7633 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7634 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7635
7636 commit a3c5057a6c05b4c7235a270486220e4511366133
7637 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7638 Date: Fri Aug 7 23:37:54 2009 +0200
7639
7640 eeprom_m95xxx: remove unused variable i
7641
7642 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7643
7644 commit 8cf19b9fec92d8aa22b2fe4b4e6976743b1daa51
7645 Author: Ilya Yanok <yanok@emcraft.com>
7646 Date: Fri Jul 17 15:02:42 2009 +0400
7647
7648 jffs2: some fixes to summary support
7649
7650 This patch fixes some issues with JFFS2 summary support in U-Boot.
7651 1/ Summary support made compilation configurable (as summary support
7652 considered expiremental even in Linux).
7653 2/ Summary code can do unaligned 16-bit and 32-bit memory accesses.
7654 We need to get data byte by byte to exclude data aborts.
7655 3/ Make summary scan in two passes so we can safely fall back to full
7656 scan if we found unsupported entry in the summary.
7657
7658 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
7659
7660 commit 11906936e168d12d684bb3d2930a62693ba3d84e
7661 Author: Prafulla Wadaskar <prafulla@marvell.com>
7662 Date: Mon Aug 10 18:55:54 2009 +0530
7663
7664 arm: rd6281a: Fixed NAND specific warning
7665
7666 It is recommended to define the macro CONFIG_SYS_64BIT_VSPRINTF
7667 for NAND specific warning removal, same is done in this patch
7668
7669 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
7670
7671 commit b5ffb193330113d2e00489d96bf8ec1f541ed4e1
7672 Author: Wolfgang Denk <wd@denx.de>
7673 Date: Thu Aug 13 00:37:16 2009 +0200
7674
7675 TRAB: make independent of specific libgcc helper routines
7676
7677 The TRAB board references local libgcc helper routines
7678 (lib_arm/div0.o and lib_arm/_umodsi3.o) which cause build problems
7679 when we try to use the normal, compiler provided libgcc instead.
7680 Removing these references allows to build both with and without the
7681 local libgcc helper routines.
7682
7683 Signed-off-by: Wolfgang Denk <wd@denx.de>
7684
7685 commit 1aada9cd643567d351667138851e9231ccfa245a
7686 Author: Wolfgang Denk <wd@denx.de>
7687 Date: Mon Aug 17 14:00:53 2009 +0200
7688
7689 Fix all linker scripts for older binutils versions (pre-2.16)
7690
7691 Commit f62fb99941c6 fixed handling of all rodata sections by using a
7692 wildcard combined with calls to ld's builtin functions SORT_BY_ALIGNMENT()
7693 and SORT_BY_NAME(). Unfortunately these functions were only
7694 introduced with biunutils version 2.16, so the modification broke
7695 building with all tool chains using older binutils.
7696
7697 This patch makes it work again. This is done by omitting the use of
7698 these functions for such old tool chains. This will result in
7699 slightly larger target binaries, as the rodata sections are no longer
7700 in optimal order alignment-wise which reauls in unused gaps, but the
7701 effect was found to be insignificant - especially compared to the fact
7702 that you cannot build U-Boot at all in the current state.
7703
7704 As ld seems to have no support for conditionals we run the linker
7705 script through the C preprocessor which can be easily used to remove
7706 the unwanted function calls.
7707
7708 Note that the C preprocessor must be run with the "-ansi" (or a
7709 "-std=") option to make sure all the system-specific predefined
7710 macros outside the reserved namespace are suppressed. Otherise, cpp
7711 might for example substitute "powerpc" to "1", thus corrupting for
7712 example "OUTPUT_ARCH(powerpc)" etc.
7713
7714 Signed-off-by: Wolfgang Denk <wd@denx.de>
7715 Cc: Mike Frysinger <vapier@gentoo.org>
7716
7717 commit f772acf8a584067033eff1e231fcd1fb3a00d3d9
7718 Author: Wolfgang Denk <wd@denx.de>
7719 Date: Mon Aug 17 13:17:29 2009 +0200
7720
7721 ARM: compiler options cleanup - improve tool chain support
7722
7723 For some time there have been repeated reports about build problems
7724 with some ARM (cross) tool chains. Especially issues about
7725 (in)compatibility with the tool chain provided runtime support
7726 library libgcc.a caused to add and support a private implementation
7727 of such runtime support code in U-Boot. A closer look at the code
7728 indicated that some of these issues are actually home-made. This
7729 patch attempts to clean up some of the most obvious problems and make
7730 building of U-Boot with different tool chains easier:
7731
7732 - Even though all ARM systems basicy used the same compiler options
7733 to select a specific ABI from the tool chain, the code for this was
7734 distributed over all cpu/*/config.mk files. We move this one level
7735 up into lib_arm/config.mk instead.
7736
7737 - So far, we only checked if "-mapcs-32" was supported by the tool
7738 chain; if yes, this was used, if not, "-mabi=apcs-gnu" was
7739 selected, no matter if the tool chain actually understood this
7740 option. There was no support for EABI conformant tool chains.
7741 This patch implements the following logic:
7742
7743 1) If the tool chain supports
7744 "-mabi=aapcs-linux -mno-thumb-interwork"
7745 we use these options (EABI conformant tool chain).
7746 2) Otherwise, we check first if
7747 "-mapcs-32"
7748 is supported, and then check for
7749 "-mabi=apcs-gnu"
7750 If one test succeeds, we use the first found option.
7751 3) In case 2), we also test if "-mno-thumb-interwork", and use
7752 this if the test succeeds. [For "-mabi=aapcs-linux" we set
7753 "-mno-thumb-interwork" mandatorily.]
7754
7755 This way we use a similar logic for the compile options as the
7756 Linux kernel does.
7757
7758 - Some EABI conformant tool chains cause external references to
7759 utility functions like raise(); such functions are provided in the
7760 new file lib_arm/eabi_compat.c
7761
7762 Note that lib_arm/config.mk gets parsed several times, so we must
7763 make sure to add eabi_compat.o only once to the linker list.
7764
7765 Signed-off-by: Wolfgang Denk <wd@denx.de>
7766 Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7767 Cc: Dirk Behme <dirk.behme@googlemail.com>
7768 Cc: Magnus Lilja <lilja.magnus@gmail.com>
7769 Cc: Tom Rix <Tom.Rix@windriver.com>
7770 Cc: Prafulla Wadaskar <prafulla@marvell.com>
7771 Acked-by: Sergey Kubushyn <ksi@koi8.net>
7772 Tested-by: Magnus Lilja <lilja.magnus@gmail.com>
7773 Tested-by: Andrzej Wolski <awolski@poczta.fm>
7774 Tested-by: Gaye Abdoulaye Walsimou <walsimou@walsimou.com>
7775 Tested-by: Tom Rix <Tom.Rix@windriver.com>
7776 Tested-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7777
7778 commit 269610f6ba2e4a7bc27d2e53d43160614016964f
7779 Author: Mingkai Hu <Mingkai.hu@freescale.com>
7780 Date: Thu Jul 30 17:56:51 2009 +0800
7781
7782 NAND boot: fix nand_load overlap issue
7783
7784 The code copy data from NAND flash block by block, so when
7785 the data length isn't a whole-number multiple of the block
7786 size, it will overlap the rest space.
7787
7788 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
7789 Signed-off-by: Scott Wood <scottwood@freescale.com>
7790
7791 commit 1fc1d9aed08f2b3366d634fda6712a710b2cff9a
7792 Author: Giulio Benetti <giulio.benetti@micronovasrl.com>
7793 Date: Fri Jul 31 17:30:34 2009 -0500
7794
7795 add WATCHDOG_RESET() on nand write and read
7796
7797 Signed-off-by: giulio.benetti@micronovasrl.com
7798 Acked-by: Wolfgang Denk <wd@denx.de>
7799 Signed-off-by: Scott Wood <scottwood@freescale.com>
7800
7801 commit b1e849f2201bbbf3ca81fde164f154f9caf7f0e9
7802 Author: Peter Tyser <ptyser@xes-inc.com>
7803 Date: Wed Feb 4 15:14:05 2009 -0600
7804
7805 tsec: Wait for auto-negotiation to complete without link
7806
7807 Previously, waiting for auto-negotiation would only occur if a valid
7808 link had been detected. Problems arose when attempting to use a
7809 tsec immediately after bootup but before link was achieved, eg:
7810 => dhcp
7811 Auto-neg error, defaulting to 10BT/HD
7812 eTSEC1: No link.
7813 Auto-neg error, defaulting to 10BT/HD
7814 eTSEC2: No link.
7815 =>
7816
7817 With this patch applied the same operation as above resulted in:
7818 => dhcp
7819 Waiting for PHY auto negotiation to complete. done
7820 Enet starting in 1000BT/FD
7821 Speed: 1000, full duplex
7822
7823 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7824 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7825
7826 commit 477fa6378fbd3e47a5e2e83d0dd3970d5b1c8371
7827 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
7828 Date: Thu Aug 20 10:14:11 2009 +0200
7829
7830 arm: kirkwood: See to it that sent data is 8-byte aligned
7831
7832 U-boot might use non-8-byte-aligned addresses for sending data, which
7833 the kwgbe_send doesn't accept (bootp does this for me). This patch
7834 copies the data to be sent to a malloced temporary buffer if it is
7835 non-aligned.
7836
7837 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
7838 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7839
7840 commit cad713bf7548b9e90433dac8270165402a6c9cc3
7841 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
7842 Date: Thu Aug 20 10:13:06 2009 +0200
7843
7844 Wait for the link to come up on kirkwood network init
7845
7846 This patch makes the device wait for up to 5 seconds for the link to
7847 come up, similar to what many of the other network drivers do. This
7848 avoids confusing situations where, e.g., a tftp fails when initiated
7849 early after U-boot has started (before the link has come up).
7850
7851 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
7852 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7853
7854 commit bb1ca3b27f7fba8c73cb10279a6a8b8b69a308ff
7855 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
7856 Date: Thu Aug 20 10:12:28 2009 +0200
7857
7858 arm:kirkwood Define kirkwood phy address magic number
7859
7860 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
7861 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7862
7863 commit f81ecb5d3300bf92d17302d3712f30585c182da9
7864 Author: Timur Tabi <timur@freescale.com>
7865 Date: Mon Aug 17 15:55:38 2009 -0500
7866
7867 e1000: fix PCI memory addressing
7868
7869 The Intel E1000 driver was making assumptions about the relationship between
7870 some virtual, physical, and PCI addresses.
7871
7872 Also fix some bad usage of the DEBUGOUT macro
7873
7874 Signed-off-by: Timur Tabi <timur@freescale.com>
7875 Acked-by: Kumar Gala <galak@kernel.crashing.org>
7876 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7877
7878 commit b644006e1a7baa227aedc606ecdf0bb5eeb24cab
7879 Author: Ilya Yanok <yanok@emcraft.com>
7880 Date: Wed Aug 12 16:42:48 2009 +0400
7881
7882 jffs2: clean the cache in case of malloc fails in build_lists
7883
7884 We should call jffs2_clean_cache() if we return from jffs2_build_lists()
7885 with an error to prevent usage of incomplete lists. Also we should
7886 free() a local buffer to prevent memory leaks.
7887
7888 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
7889
7890 commit 7ff66bb0be80cadd681be22a72e5eb02ee14c878
7891 Author: Heiko Schocher <hs@denx.de>
7892 Date: Wed Aug 12 10:17:03 2009 +0200
7893
7894 ppc: trigger WDT before starting Linux
7895
7896 Signed-off-by: Heiko Schocher <hs@denx.de>
7897
7898 commit 918319c705d8a3d6251919a660baef32ff3a829a
7899 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7900 Date: Wed Jul 22 18:30:03 2009 +0200
7901
7902 Update the mtd driver name in bootargs for at91-based boards
7903
7904 The name of the atmel nand driver in the kernel changed from at91_nand
7905 to atmel_nand back in June 2008, but the at91-based boards config files
7906 still refer to at91_nand. This patch updates them with the new name
7907
7908 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7909
7910 commit 8fa656aa5289815d942ebdc26182ccb9f2b9c86f
7911 Author: Ben Goska <goskab@onid.oregonstate.edu>
7912 Date: Fri Aug 14 10:03:36 2009 -0700
7913
7914 omap3: Fixed a problem with hwecc
7915
7916 In commit 187af954cf7958c24efcf0fd62289bbdb4f1f24e there
7917 was a typo that offset all the ecc registers by 4 bytes, fixed that.
7918
7919 Signed-off-by: Ben Goska <goskab@onid.oregonstate.edu>
7920 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
7921
7922 commit 514bab6609acd1a2a19fdd75c2f6255178db7c96
7923 Author: Stefan Roese <sr@denx.de>
7924 Date: Mon Aug 17 16:57:53 2009 +0200
7925
7926 ppc4xx: Fix "chip_config" command for AMCC Arches
7927
7928 This patch fixes the "chip_config" command for I2C bootstrap EEPROM
7929 configuration. First it changes the I2C bootstrap EEPROM address to
7930 0x54 as this is used on Arches (instead of 0x52 on Canyonlands/
7931 Glacier). Additionally, the NAND bootstrap settings are removed
7932 for Arches since Arches doesn't support NAND-booting.
7933
7934 Signed-off-by: Stefan Roese <sr@denx.de>
7935
7936 commit 4af34177b657e91263919a307fd0b0865a299e52
7937 Author: Wolfgang Denk <wd@denx.de>
7938 Date: Sun Aug 16 23:40:13 2009 +0200
7939
7940 Monahans: avoid floating point calculations
7941
7942 Current code for the Monahans CPU defined OSCR_CLK_FREQ as 3.250 (MHz)
7943 which caused floating point operations to be used. This resulted in
7944 unresolved references to some FP related libgcc functions when using
7945 U-Boot's private libgcc functions.
7946
7947 Change the code to use fixed point math only.
7948
7949 Signed-off-by: Wolfgang Denk <wd@denx.de>
7950
7951 commit e393e2e9bc5cd3d5484e193d1380e7cd7587ab5c
7952 Author: Kumar Gala <galak@kernel.crashing.org>
7953 Date: Fri Aug 14 16:43:22 2009 -0500
7954
7955 85xx: Fix addrmap to include memory
7956
7957 When we init the addrmap based on the TLB we will not end up getting
7958 the TLB that covers memory if we are using SPD. The reason is we
7959 haven't relocated at the point that we setup the memory TLB and thus it
7960 will not get setup in the addrmap.
7961
7962 Instead we can just walk over the TLB array after we've relocated and
7963 see all the TLBs that have been set and use that information to populate
7964 the initial addrmap. By doing this we insure that we get the TLB
7965 entries that cover memory.
7966
7967 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7968
7969 commit 7dedefdf749ff02c1086f7ddb8cb83a77b00d030
7970 Author: John Schmoller <jschmoller@xes-inc.com>
7971 Date: Wed Aug 12 10:55:47 2009 -0500
7972
7973 flash: Fix CFI buffer size bug
7974
7975 Fix bug introduced by 9c048b523413ae5f3ff34e00cf57569c3368ab51.
7976
7977 The cfi_flash.c driver cast the flash buffer size to a uchar in
7978 flash_write_cfibuffer(). On some flash parts, (tested on Numonyx
7979 part PC32F512M29EWH), the buffer size is 1KB. Remove the cast to
7980 uchar to enable buffer sizes to be larger.
7981
7982 Signed-off-by: John Schmoller <jschmoller@xes-inc.com>
7983 Signed-off-by: Stefan Roese <sr@denx.de>
7984
7985 commit f6e3a1fa92f61083885178101e973c86b419a6f7
7986 Author: Mike Frysinger <vapier@gentoo.org>
7987 Date: Thu Aug 13 00:32:14 2009 -0400
7988
7989 trab: rename spi_init()
7990
7991 The local board-specific spi_init() function conflicts with the common SPI
7992 layer, so rename it to something board-specific.
7993
7994 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7995
7996 commit 253cb831f5861358a7fa673305cdf7ded1096f44
7997 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
7998 Date: Wed Jul 29 06:05:20 2009 -0400
7999
8000 zlib: add watchdog reset call
8001
8002 This patch adds watchdog reset call to allow its invokation during decompression
8003 phase. This control was present on old zlib version and here it is
8004 backported for those relevant routines. This patch is sent as a zlib separate
8005 one beacuse it was not tested due to specific board lack.
8006 zlib patches will be unified just in one when this will be validated through
8007 tests.
8008
8009 Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
8010
8011 commit dce3d797102b6618e8bdd4a09cfd35969f165d86
8012 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
8013 Date: Wed Jul 29 08:05:08 2009 -0400
8014
8015 zlib: updated to v.1.2.3
8016
8017 This patch updates zlib to the latest stable version.
8018 Only relevant zlib parts were ported to u-boot tree, as already did for the
8019 current zlib (0.95). New zlib guarantees a faster inflate performances
8020 other then others improvements as explained at www.zlib.net.
8021 It also includes Alessandro Rubini's patches to allow 0 as destination pointer
8022 and to call watchdog reset if required by architecture.
8023
8024 Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
8025 Reviewed-by: Angelo Castello <angelo.castello@st.com>
8026 Reviewed-by: Alessandro Rubini <rubini-list@gnudd.com>
8027
8028 commit 3426d65daab6af483b177ed502038f52ed2e5aef
8029 Author: Heiko Schocher <hs@denx.de>
8030 Date: Tue Aug 11 10:37:58 2009 +0200
8031
8032 dtt, lm81: move unneccessary printf into a debug printf
8033
8034 Signed-off-by: Heiko Schocher <hs@denx.de>
8035
8036 commit 54e399f110bbaa24e662e6dd9e88ddb86989d668
8037 Author: Mark Jackson <mpfj-list@mimc.co.uk>
8038 Date: Tue Aug 11 11:33:47 2009 +0100
8039
8040 MIMC200: reduce LCD pixclock
8041
8042 The initial pixclock for the MIMC200 board is wrong (and causes
8043 screen corruption due to DMA underruns).
8044
8045 This patch simply reduces the pixel clock to fix the problem.
8046
8047 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
8048
8049 commit 1443cd7e54d6893ab7cc51d93fe7759cdaa8b31f
8050 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
8051 Date: Wed Jul 1 14:04:05 2009 -0400
8052
8053 UEC FIXED PHY: Determine fixed-phy port using UEC interface name.
8054
8055 Fixed a misunderstanding in the original implementation, 'devnum' that
8056 was used in the cpu/ppc4xx/4xx_enet.c implementation was NOT the
8057 PHY's SMI address, rather it was the number of the MAC interface on
8058 the CPU. The equivalent of this for uec_phy will be the UEC number
8059 stored in mii_info->dev->name. Usage example is updated for uec.
8060
8061 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
8062 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8063
8064 commit 1a9519373b977ef3f7c9563ad3acb6c6f2424657
8065 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
8066 Date: Wed Jul 1 14:03:15 2009 -0400
8067
8068 Assigned a static SMI address to all UECs TBIPA address.
8069
8070 It is set to 0x1F by default and can be overwritten on the board
8071 header file by defining CONFIG_UTBIPAR_INIT_TBIPA. This allows
8072 the CPU to simply "reserve" one SMI address instead of using
8073 a different one for each UEC.
8074
8075 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
8076 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8077
8078 commit 9fd38a01cbc0ce4a8db41f72677103ed04b23db5
8079 Author: Prafulla Wadaskar <prafulla@marvell.com>
8080 Date: Mon Aug 10 19:43:06 2009 +0530
8081
8082 net: kirkwood: updates: used eth_setenv_enetaddr api
8083
8084 eth_setenv_enetaddr is avaible by upper layer
8085 using this saves 204 bytes on total image size
8086
8087 used Local OUI instead of Marvell OUI for
8088 random MAC address generation logic
8089
8090 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
8091 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8092
8093 commit ecbd2078a1f56c85b6c56afaaed862bf92ccd3f3
8094 Author: Roy Zang <tie-fei.zang@freescale.com>
8095 Date: Tue Aug 11 03:48:05 2009 +0800
8096
8097 Fix E1000 build warning on AP1000 board
8098
8099 Fix E1000 build warning on AP1000 board
8100 Fix the build warning on AP1000 board:
8101 e1000.c:131: warning: 'e1000_read_eeprom' used but never defined
8102 e1000.c:2012: warning: 'e1000_set_phy_mode' defined but not used
8103
8104 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
8105 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8106
8107 commit b3af1d698b031e721bacaee8715d79daaf823de6
8108 Author: Sandeep Paulraj <s-paulraj@ti.com>
8109 Date: Mon Aug 10 12:24:40 2009 -0400
8110
8111 ARM: Davinci DM355: Enabling DM9000 on DM355 EVM
8112
8113 Due to recent changes to the NET support on U-boot, DM9000
8114 is no longer detected on the DM355 EVM.
8115 This minor update enables DM9000 on the DM355 EVM.
8116 Tested on the DM355 EVM
8117
8118 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8119 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8120
8121 commit 08c2df33f1cd5935938486e968696f94ad406313
8122 Author: Prafulla Wadaskar <prafulla@marvell.com>
8123 Date: Mon Aug 10 19:23:19 2009 +0530
8124
8125 net: phy: bugfixes: mv88E61xx compiler warnings fixed
8126
8127 1. mv88E61xx driver compiler warnings fixed
8128 2. idstr if-else statements changed to switch() construct
8129 and added default case too.
8130 This fixed idstr may be uninitialized warning
8131
8132 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
8133 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8134
8135 commit 750326e5d540885e3ec36bda9464b8269249f6ce
8136 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
8137 Date: Mon Aug 10 11:00:00 2009 +0800
8138
8139 arm: A320: driver for FTMAC100 ethernet controller
8140
8141 This patch adds an FTMAC100 ethernet driver for Faraday A320 evaluation board.
8142
8143 Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
8144 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8145
8146 commit f90dc43fd67eea71124b999a7d5e617d0d86795b
8147 Author: Kumar Gala <galak@kernel.crashing.org>
8148 Date: Mon Aug 10 16:40:55 2009 -0500
8149
8150 85xx: Removed BEDBUG support from FSL 85xx boards
8151
8152 For some reason the MPC8544 enabled BEDBUG if PCI was enabled and that
8153 got copied int the MPC8536, MPC8572 and P2020 DS boards. The BEDBUG
8154 support has never been made to work completely on e500/85xx so we
8155 just disable it to save space and match the other FSL 85xx boards.
8156
8157 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8158
8159 commit eb1a4d0a471505c169bef19a73a60f8641f0b875
8160 Author: Wolfgang Denk <wd@denx.de>
8161 Date: Mon Aug 10 10:39:12 2009 +0200
8162
8163 Prepare 2009.08-rc2
8164
8165 Update CHANGELOG
8166
8167 Signed-off-by: Wolfgang Denk <wd@denx.de>
8168
8169 commit 53cc18c71b2b920cca171874c6663e274fa80556
8170 Author: Wolfgang Denk <wd@denx.de>
8171 Date: Mon Aug 10 10:38:34 2009 +0200
8172
8173 Minor coding style cleanup.
8174
8175 Signed-off-by: Wolfgang Denk <wd@denx.de>
8176
8177 commit d371708a1beda0f529756e614af785b30461379e
8178 Author: Wolfgang Denk <wd@denx.de>
8179 Date: Mon Aug 10 09:59:10 2009 +0200
8180
8181 net/tftp.c: fix warning: pointer targets differ in signedness
8182
8183 tftp.c:294: warning: pointer targets in passing argument 1 of 'strlen'
8184 differ in signedness
8185
8186 This was only visible for the utx8245 board which seems to have DEBUG
8187 enabled.
8188
8189 Signed-off-by: Wolfgang Denk <wd@denx.de>
8190
8191 commit 3ed9e943fdfe51174b23989d48563b8c1b7d2ea8
8192 Author: Dirk Behme <dirk.behme@googlemail.com>
8193 Date: Sat Aug 8 16:06:47 2009 +0200
8194
8195 ARM Cortex A8: Remove bogus config.mk entries
8196
8197 Remove bogus config.mk entry, fix newline and remove redundant
8198 omap3/config.mk
8199
8200 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8201
8202 commit cd3dcba1422d3441503251fbc69cf2437c440781
8203 Author: Dirk Behme <dirk.behme@googlemail.com>
8204 Date: Sat Aug 8 12:46:09 2009 +0200
8205
8206 OMAP3: Fix missing GPMC_CONFIG_CS0_BASE
8207
8208 Applying two indepenent OMAP3 patches resulted in missing
8209 GPMC_CONFIG_CS0_BASE. Patch "omap3: embedd gpmc_cs into gpmc
8210 config struct" removes GPMC_CONFIG_CS0_BASE, independent patch
8211 "omap3: bug fix for NOR boot support" introduces it's usage.
8212 Re-introduce GPMC_CONFIG_CS0_BASE.
8213
8214 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8215
8216 commit ba3dbaf281130029ecb970a922551902c1d80b50
8217 Author: Ilya Yanok <yanok@emcraft.com>
8218 Date: Mon Jun 8 04:12:49 2009 +0400
8219
8220 mxc-mmc: sdhc host driver for MX2 and MX3 proccessor
8221
8222 This is a port of Linux driver for SDHC host controller hardware
8223 found on Freescale's MX2 and MX3 processors. Uses new generic MMC
8224 framework (CONFIG_GENERIC_MMC) and it looks like there are some
8225 problems with a framework (at least on LE cpus). Some of these
8226 problems are addressed in the following patches.
8227
8228 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
8229
8230 commit 642d7b63c343633dcafc4e23a20e32604a05ff13
8231 Author: Alessandro Rubini <rubini-list@gnudd.com>
8232 Date: Fri Aug 7 12:35:47 2009 +0200
8233
8234 kirkwood/gpio.h: remove duplicate definition
8235
8236 Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
8237
8238 commit 3ac374c0f0b7d856f1a43317a286f2079106bd6a
8239 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
8240 Date: Fri Aug 7 12:37:36 2009 +0200
8241
8242 Add driver for the ST M95xxx SPI EEPROM
8243
8244 This chip is used in a number of boards manufactured by Calao-Systems
8245 which should be supported soon. This driver provides the necessary
8246 spi_read and spi_write functions necessary to communicate with the chip.
8247
8248 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
8249
8250 commit 30951960bae9a2c33e324a7165962a082e913f9e
8251 Author: Prafulla Wadaskar <prafulla@marvell.com>
8252 Date: Fri Aug 7 22:27:32 2009 +0530
8253
8254 arm: Sheevaplug: Fixed NAND specific warning
8255
8256 It is recommended to define the macro CONFIG_SYS_64BIT_VSPRINTF
8257 for NAND specific warning removal, same is done in this patch
8258
8259 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
8260
8261 commit 317734966e763fdee183898c0ed940c9bada2541
8262 Author: Josh Boyer <jwboyer@linux.vnet.ibm.com>
8263 Date: Fri Aug 7 13:53:20 2009 -0400
8264
8265 Dual-license IBM code contributions
8266
8267 It was brought to our attention that U-Boot contains code derived from the
8268 IBM OpenBIOS source code originally provided with some of the older PowerPC
8269 4xx development boards. As a result, the original license of this code has
8270 been carried in the various files for a number of years in the U-Boot project.
8271
8272 IBM is dual-licensing the IBM code contributions already present in U-Boot
8273 under either the terms of the GNU General Public License version 2, or the
8274 original code license already present.
8275
8276 Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
8277
8278 commit cfd700be9f5ed289fd57a9bd61e266319badcb0d
8279 Author: Kumar Gala <galak@kernel.crashing.org>
8280 Date: Wed Aug 5 09:03:54 2009 -0500
8281
8282 fdt: Fix fdt_pci_dma_ranges handling of 64-bit ranges
8283
8284 If the size of a region equal to 4G it can't be represnted in a 32-bit
8285 BAR so we should have marked that case as MEM64.
8286
8287 Additionally bump the number of inbound windows up to 4 to handle the
8288 fact that Freescale PPCs that have an implicit window for CCSRBAR.
8289
8290 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8291
8292 commit 59b4d7471c42e955bd9846892a0cc7478171778d
8293 Author: Wolfgang Denk <wd@denx.de>
8294 Date: Thu Aug 6 21:29:59 2009 +0200
8295
8296 ARM EABI: add new helper functions resp. function names
8297
8298 The ARM EABI defines new names for GCC helper functions,
8299 and GCC seems to need some new functions as well.
8300
8301 This patch is a minimal-invasive approach to fix problems with EABI
8302 conformant tool chains (to be used with "USE_PRIVATE_LIBGCC=yes").
8303
8304 Signed-off-by: Wolfgang Denk <wd@denx.de>
8305 Tested-by: Dirk Behme <dirk.behme@googlemail.com>
8306
8307 commit 197324d7d998a791e5137b8176981b4af25220ae
8308 Author: Peter Tyser <ptyser@xes-inc.com>
8309 Date: Wed Aug 5 16:18:44 2009 -0500
8310
8311 hush: Fix bogus free() call
8312
8313 An off-by-one error in hush.c resulted in an unintentional free() call
8314 every time a command was executed
8315
8316 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8317
8318 commit ff27650bb255e2275a212357b78c3b77cbf1d2e9
8319 Author: Detlev Zundel <dzu@denx.de>
8320 Date: Wed Aug 5 18:37:45 2009 +0200
8321
8322 digsy_mtc: Update default environment
8323
8324 Signed-off-by: Detlev Zundel <dzu@denx.de>
8325
8326 commit 0b40bd439a33bde9e3cccf1acb5744225d0c6103
8327 Author: Detlev Zundel <dzu@denx.de>
8328 Date: Wed Aug 5 18:37:44 2009 +0200
8329
8330 digsy_mtc: Add delay in SPI transfers to the companion controller.
8331
8332 While at it, remove initialization of variables which will be set
8333 before usage in all cases.
8334
8335 Signed-off-by: Detlev Zundel <dzu@denx.de>
8336
8337 commit 0bf00750e082a004e5fb058925622ae72890cc56
8338 Author: Anatolij Gustschin <agust@denx.de>
8339 Date: Wed Aug 5 18:37:43 2009 +0200
8340
8341 digsy_mtc: minor fixes for mtc command help
8342
8343 Add mtc state subcommand description to the
8344 help of mtc command.
8345
8346 Remove some newlines in description of commands
8347 for proper help formating.
8348
8349 Signed-off-by: Anatolij Gustschin <agust@denx.de>
8350
8351 commit 5cc69084189bf49aa99d13d57515be72d1844bdf
8352 Author: Grzegorz Bernacki <gjb@semihalf.com>
8353 Date: Wed Aug 5 18:37:42 2009 +0200
8354
8355 digsy_mtc: Add mtc state command.
8356
8357 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
8358
8359 commit 716655288a53c95fad203ebf21d0b8ffdc2f7525
8360 Author: Wolfgang Denk <wd@denx.de>
8361 Date: Tue Jul 28 22:35:39 2009 +0200
8362
8363 Partition support: remove newline from partition name
8364
8365 Remove bogus newline character that got added to the .name field of
8366 the disk_partition_t structure.
8367
8368 Signed-off-by: Wolfgang Denk <wd@denx.de>
8369
8370 commit 3f1649fb0dfb1e5c8890de154c332c394db5cdb5
8371 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
8372 Date: Tue Jul 28 09:33:17 2009 +0200
8373
8374 Fix LZMA string.h header inclusion issue and remove unused variables.
8375
8376 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
8377
8378 commit 1c6232f1e2eae87e0e36d489611eb6891dff21e1
8379 Author: Jens Scharsig <esw@bus-elektronik.de>
8380 Date: Mon Jul 27 15:28:42 2009 +0200
8381
8382 bus_vcxk.c: fix warning: unused variable 'lineptr'
8383
8384 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
8385
8386 commit 18304f7675e84252965b4e24cba279071f1da472
8387 Author: Mike Frysinger <vapier@gentoo.org>
8388 Date: Fri Jul 24 17:51:27 2009 -0400
8389
8390 env: kill off default_environment_size
8391
8392 The only environment type that uses this variable is spi flash, and that is
8393 only because it is reimplementing the common set_default_env() function.
8394 So fix the spi flash code and kill off the default_environment_size in the
8395 process.
8396
8397 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8398
8399 commit bedd8403f77f790e9876578885eab1200ba2f8d8
8400 Author: Mike Frysinger <vapier@gentoo.org>
8401 Date: Thu Jul 23 16:37:48 2009 -0400
8402
8403 export SPI functions to standalone apps
8404
8405 While we're here, fix the broken #ifdef handling in _exports.h.
8406
8407 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8408
8409 commit 3b9043a7c03290c9bdbef03848307263f5f3472c
8410 Author: Penda Naveen Kumar <pnaveen@ti.com>
8411 Date: Fri Jul 31 00:06:36 2009 +0530
8412
8413 omap3: bug fix for NOR boot support
8414
8415 This patch provides bug fix, when omap3 uses nor boot.
8416
8417 Signed-off-by: Penda Naveen Kumar<pnaveen@ti.com>
8418 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
8419
8420 commit 61c68ae0b43bb5d6ab32958c45289aa197b1a2d1
8421 Author: Michael Evans <horse_dung@hotmail.com>
8422 Date: Mon Jul 13 20:13:45 2009 +0100
8423
8424 Fix examples for OMAP3 boards...
8425
8426 The attached patch corrects an error in the examples/Makefile which
8427 causes the applications in the examples directory to hang on OMAP3
8428 based boards. The current Makefile sets -Ttext during linking to
8429 0x0c100000 which is outside of addressable SDRAM memory. The script
8430 corrects the existing ifeq...else...endif logic to look at the VENDOR
8431 tag rather than the CPU tag.
8432
8433 The patch affects the following configs: omap3_beagle_config,
8434 omap3_overo_config, omap3_evm_config, omap3_pandora_config,
8435 omap3_zoom1_config and omap3_zoom2_config.
8436
8437 Signed-off-by: Michael Evans <horse_dung@hotmail.com>
8438
8439 Edited commit message.
8440 Signed-off-by: Wolfgang Denk <wd@denx.de>
8441
8442 commit a3d1421dfd0bb1a729e171f8a093ac837f92cec6
8443 Author: Dirk Behme <dirk.behme@googlemail.com>
8444 Date: Sat Aug 8 09:30:23 2009 +0200
8445
8446 omap3: use only fixed-size types inside ctrl_structs
8447
8448 replace variable types in ctrl_structs for omap3 by those with
8449 fixed size (u8, u16, u32).
8450 Additional ifndef-protection is needed by examples which do not
8451 compile when including asm/types.h
8452
8453 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
8454 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8455
8456 commit 894113529e3a04871544dde977d6d7adee05d3bf
8457 Author: Dirk Behme <dirk.behme@googlemail.com>
8458 Date: Sat Aug 8 09:30:22 2009 +0200
8459
8460 omap3: replace all instances of gpmc config struct by one global
8461
8462 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
8463 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8464
8465 commit 97a099eaa48d5c762c4f73c52c3090c513b8b877
8466 Author: Dirk Behme <dirk.behme@googlemail.com>
8467 Date: Sat Aug 8 09:30:21 2009 +0200
8468
8469 omap3: remove typedefs for configuration structs
8470
8471 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
8472 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8473
8474 commit aa0707897c49c330b7d6b8d8362e44f60f224732
8475 Author: Roy Zang <tie-fei.zang@freescale.com>
8476 Date: Fri Jul 31 13:34:02 2009 +0800
8477
8478 Add Intel E1000 PCIE card support
8479
8480 Based on Intel PRO/1000 Network Driver 7.3.20-k2
8481 Add Intel E1000 PCIE card support. The following cards are added:
8482 INTEL_82571EB_COPPER
8483 INTEL_82571EB_FIBER,
8484 INTEL_82571EB_SERDES
8485 INTEL_82571EB_QUAD_COPPER
8486 INTEL_82571PT_QUAD_COPPER
8487 INTEL_82571EB_QUAD_FIBER
8488 INTEL_82571EB_QUAD_COPPER_LOWPROFILE
8489 INTEL_82571EB_SERDES_DUAL
8490 INTEL_82571EB_SERDES_QUAD
8491 INTEL_82572EI_COPPER
8492 INTEL_82572EI_FIBER
8493 INTEL_82572EI_SERDES
8494 INTEL_82572EI
8495 INTEL_82573E
8496 INTEL_82573E_IAMT
8497 INTEL_82573L
8498 INTEL_82546GB_QUAD_COPPER_KSP3
8499 INTEL_80003ES2LAN_COPPER_DPT
8500 INTEL_80003ES2LAN_SERDES_DPT
8501 INTEL_80003ES2LAN_COPPER_SPT
8502 INTEL_80003ES2LAN_SERDES_SPT
8503
8504 82571EB_COPPER dual ports,
8505 82572EI single port,
8506 82572EI_COPPER single port PCIE cards
8507 and
8508 82545EM_COPPER,
8509 82541GI_LF
8510 pci cards are tested on both P2020 board
8511 and MPC8544DS board.
8512
8513 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
8514
8515 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8516
8517 commit 86848a74c3c8eb2f8dd179d039ee604dc45288cf
8518 Author: Mike Frysinger <vapier@gentoo.org>
8519 Date: Wed Jul 15 21:31:28 2009 -0400
8520
8521 net: sync env ethaddr to device enetaddr in eth_init()
8522
8523 In the previous enetaddr refactoring, the assumption with commit 56b555a644
8524 was that the eth layer would handle the env -> device enetaddr syncing.
8525 This was not the case as eth_initialize() is called only once and the sync
8526 occurs there. So make sure the eth_init() function does the env -> device
8527 sync with every network init.
8528
8529 Reported-by: Andrzej Wolski <awolski@poczta.fm>
8530 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8531 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8532
8533 commit 0ebf04c607b54a352629dcf7e76b76f1785dae54
8534 Author: Robin Getz <rgetz@blackfin.uclinux.org>
8535 Date: Thu Jul 23 03:01:03 2009 -0400
8536
8537 minor debug cleanups in ./net
8538
8539 Minor ./net cleanups - no functional changes
8540 - change #ifdef DEBUG printf(); #endif to just debug()
8541 - changed __FUNCTION__ to __func__
8542 - got rid of extra whitespace between function and opening brace
8543 - removed unnecessary braces on if statements
8544
8545 gcc dead code elimination should make this functionally/size equivalent
8546 when DEBUG is not defined. (confirmed on Blackfin, with gcc 4.3.3).
8547
8548 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
8549
8550 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8551
8552 commit 187af954cf7958c24efcf0fd62289bbdb4f1f24e
8553 Author: Matthias Ludwig <mludwig@ultratronik.de>
8554 Date: Tue May 19 09:09:31 2009 +0200
8555
8556 omap3: embedd gpmc_cs into gpmc config struct
8557
8558 Embedd chip select configuration into struct for gpmc config
8559 instead of having it completely separated as suggested by
8560 Wolfgang Denk on
8561 http://lists.denx.de/pipermail/u-boot/2009-May/052247.html
8562
8563 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
8564
8565 commit 06bffc6ea52d4b390843d295d438b2037d12e5fd
8566 Author: David Brownell <david-b@pacbell.net>
8567 Date: Thu Jul 16 18:40:55 2009 -0700
8568
8569 rm9200 lowevel_init: don't touch reserved/readonly registers
8570
8571 For some reason the AT91rm9200 lowlevel init writes to a bunch of
8572 reserved or read-only addresses. All the boards seem to define the
8573 value-to-be-written values as zero ... but they shouldn't actually
8574 be writing *anything* there.
8575
8576 No documented erratum justifies these accesses. It looks like maybe
8577 some pre-release BDI-2000 setup code has been carried along by cargo
8578 cult programming since at least late 2004 (per GIT history).
8579
8580 Here's a patch disabling what seems to be bogosity. Tested on a
8581 csb337; there were no behavioral changes.
8582
8583 Signed-off-by: David Brownell <david-b@pacbell.net>
8584
8585 on RM9200ek
8586 Tested-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8587
8588 commit 301b7db88fbdf7d118efb79b371b2527a2c31868
8589 Author: David Hunter <hunterd42@gmail.com>
8590 Date: Thu Jul 30 14:32:49 2009 -0700
8591
8592 pxa: Fix typo in GCDR(x)
8593
8594 Fix a typo in the GCDR(x) macro. It's a good thing no one was using it.
8595
8596 Signed-off-by: David Hunter <hunterd42@gmail.com>
8597
8598 commit 3c448e648221879ae0e030e94508b4f9f63b7ab8
8599 Author: Eric Benard <eric@eukrea.com>
8600 Date: Sat Jul 18 23:45:15 2009 +0200
8601
8602 Add AT91SAM9260 to at91's lowlevel_init.S
8603
8604 Needed for AT91SAM9260 NOR Boot on Eukrea's CPU9260.
8605
8606 Signed-off-by: Eric Benard <eric@eukrea.com>
8607
8608 commit 56bdfa961242fc6acaeebc800640a12b28db3899
8609 Author: Dirk Eibach <eibach@gdsys.de>
8610 Date: Thu Jul 30 09:36:33 2009 +0200
8611
8612 ppc4xx: Remove check for PPC460EX from CompactCenter
8613
8614 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
8615 Signed-off-by: Stefan Roese <sr@denx.de>
8616
8617 commit c3fa4f0c8684c862ecd3fb622fab1e17e44e82e1
8618 Author: Stefan Roese <sr@denx.de>
8619 Date: Wed Jul 29 08:46:10 2009 +0200
8620
8621 ppc4xx: Add support for PPC460EX/460GT rev B chip to AMCC Canyonlands
8622
8623 This patch is based on a diff created by Phong Vo from AMCC.
8624
8625 Signed-off-by: Phong Vo <pvo@amcc.com>
8626 Signed-off-by: Stefan Roese <sr@denx.de>
8627
8628 commit 89bcc4875007ef6608297dc11e7a0d1fbd9900d2
8629 Author: Stefan Roese <sr@denx.de>
8630 Date: Wed Jul 29 08:45:27 2009 +0200
8631
8632 ppc4xx: Add basic support for AMCC PPC460EX/460GT rev B chips
8633
8634 This patch is based on a diff created by Phong Vo from AMCC.
8635
8636 Signed-off-by: Phong Vo <pvo@amcc.com>
8637 Signed-off-by: Stefan Roese <sr@denx.de>
8638
8639 commit 82a7edc7ea8f5fe55fed4ff7e127469569e539c4
8640 Author: Stefan Roese <sr@denx.de>
8641 Date: Tue Jul 28 15:12:04 2009 +0200
8642
8643 ppc4xx: Canyonlands-NAND-boot: Support 2 Crucial 512MByte SODIMM's
8644
8645 Some Canyonlands boards are equipped with different SODIMM's. This is no
8646 problem with the "normal" NOR booting Canyonlands U-Boot, since it
8647 automatically detects the SODIMM's via SPD data and correctly configures
8648 them. But the NAND booting version is different. Here we only have 4k
8649 of image size to completely setup the hardware, including DDR2 setup.
8650 So we need to use a fixed DDR2 setup here. This doesn't work for different
8651 SODIMM's right now.
8652
8653 Currently only this Crucial SODIMM is support:
8654 CT6464AC667.8FB (dual ranked)
8655
8656 Now some boards are shipped with this SODIMM:
8657 CT6464AC667.4FE (single ranked)
8658
8659 This patch now supports both SODIMM's by configuring first for the dual
8660 ranked DIMM. A quick shows, if this module is really installed. If this test
8661 fails, the DDR2 controller is re-configured for the single
8662 ranked SODIMM.
8663
8664 Tested with those SODIMM's:
8665
8666 CT6464AC667.8FB (dual ranked)
8667 CT6464AC667.4FE (single ranked)
8668
8669 Signed-off-by: Stefan Roese <sr@denx.de>
8670
8671 commit 27dd5f8e1062684f1ba685760409d9b2ab6691bf
8672 Author: Stefan Roese <sr@denx.de>
8673 Date: Tue Jul 28 10:56:03 2009 +0200
8674
8675 ppc4xx: amcc: Move "kernel_addr_r" etc to higher locations (> 16MB)
8676
8677 This patch moves the load addresses for kernel, fdt and ramdisk to higher
8678 addresses (>= 16MB). This enables booting of bigger kernel images (e.g.
8679 lockdep enabled).
8680
8681 Signed-off-by: Stefan Roese <sr@denx.de>
8682
8683 commit 6942efc2be1b90054fa4afa5cda7023469fe08b9
8684 Author: Stefan Roese <sr@denx.de>
8685 Date: Tue Jul 28 10:50:32 2009 +0200
8686
8687 ppc4xx: amcc: Set CONFIG_SYS_BOOTMAPSZ to 16MB for big kernels
8688
8689 This patch changes CONFIG_SYS_BOOTMAPSZ from 8MB to 16MB which is the
8690 initial TLB on 40x PPC's in the Linux kernel. With this change even bigger
8691 Linux kernels (> 8MB) can be booted.
8692
8693 This patch also sets CONFIG_SYS_BOOTM_LEN to 16MB (default 8MB) to enable
8694 decompression of bigger images.
8695
8696 Signed-off-by: Stefan Roese <sr@denx.de>
8697
8698 commit 901be89a27e11b2627c132ee87c7761bd6886091
8699 Author: Heiko Schocher <hs@denx.de>
8700 Date: Tue Jul 28 14:53:44 2009 +0200
8701
8702 83xx, kmeter1, fix: update in the DTS the correct size for the first flash
8703
8704 When updating the "reg" in the "/localbus/flash@f0000000,0" node
8705 size was wrong updated for the first flash, because the total
8706 size was filled in, instead of the right size for it.
8707
8708 Signed-off-by: Heiko Schocher <hs@denx.de>
8709 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
8710
8711 commit 4c2e3da82dc2b7f8b39b7f1d57f570e4bc5caa6d
8712 Author: Kumar Gala <kumar.gala@freescale.com>
8713 Date: Tue Jul 28 21:49:52 2009 -0500
8714
8715 Update Freescale copyrights to remove "All Rights Reserved"
8716
8717 "All Rights Reserved" conflicts with the GPL.
8718
8719 Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
8720
8721 commit bb4291e62579dbc611e84eaaf973631e0bf129c7
8722 Author: Alessandro Rubini <rubini@unipv.it>
8723 Date: Fri Jul 24 11:27:14 2009 +0200
8724
8725 arm nomadik: add i2c
8726
8727 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
8728 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
8729 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8730
8731 commit 60cbfbfd0fbebb4682f10ba96f622bfe17317598
8732 Author: Alessandro Rubini <rubini@unipv.it>
8733 Date: Fri Jul 24 11:27:03 2009 +0200
8734
8735 arm nomadik: add gpio support
8736
8737 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
8738 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
8739 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8740
8741 commit 549b98306d897ae5991362d6096a36df50efe686
8742 Author: Tom Rix <Tom.Rix@windriver.com>
8743 Date: Sun Jun 28 12:52:32 2009 -0500
8744
8745 OMAP3 Remove twl4030 defines
8746
8747 These defines have been subplanted by the equivelent defines in
8748 include/twl4030.h
8749
8750 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8751 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8752 Acked-by: Heiko Schocher <hs@denx.de>
8753
8754 commit fccc0fcaaae5154612f8259365d26d04f204859f
8755 Author: Tom Rix <Tom.Rix@windriver.com>
8756 Date: Sun Jun 28 12:52:31 2009 -0500
8757
8758 OMAP3 Move twl4030 mmc function
8759
8760 Because twl4030 now has its own device files, move and rename
8761 twl4030_mmc_config.
8762
8763 twl4030_mmc_config initializes the twl4030 power setting to
8764 the mmc device. Because it is in the twl4030 power domain, move
8765 it out of drivers/mmc/omap3_mmc.c and into drivers/power/twl4030.c.
8766
8767 The function was renamed to twl4030_power_mmc_init because all
8768 the functions in this file are to have the format
8769
8770 twl4030_power_<device>_<action>
8771
8772 In this case the suffix is mmc_init so
8773 device : mmc
8774 action : init
8775
8776 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8777 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8778 Acked-by: Heiko Schocher <hs@denx.de>
8779
8780 commit 2c15513010493435c78f83202940ac3be11de2c3
8781 Author: Tom Rix <Tom.Rix@windriver.com>
8782 Date: Sun Jun 28 12:52:30 2009 -0500
8783
8784 OMAP3 Move twl4030 power and led functions
8785
8786 Because twl4030 now has its own device files, move exiting
8787 omap3 power_init_r to a new location.
8788
8789 power_init_r is the only function in board/omap3/common.
8790 It initializes the twl4030 power for the board and enables
8791 the led.
8792
8793 The power part of the the function is moved to twl4030_power_init in
8794 drivers/power/twl4030.c The power compilation is conditional on the
8795 existing config variable CONFIG_TWL4030_POWER.
8796
8797 The led part is moved to twl4030_led_init in the new file
8798 drivers/misc/twl4030_led.c The led compilation is conditional on
8799 the new config variable CONFIG_TWL4030_LED
8800
8801 The directory board/omap3/common was removed because power_init_r
8802 was the only function in it.
8803
8804 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8805 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8806 Acked-by: Heiko Schocher <hs@denx.de>
8807
8808 commit 3cb7a4805fc8fb4c09e4801e1c7d531186f20190
8809 Author: Wolfgang Denk <wd@denx.de>
8810 Date: Tue Jul 28 22:13:52 2009 +0200
8811
8812 TQM8xx* boards: set larger SMC Rx buffer len
8813
8814 Commit 2b3f12c2 added support for configurable SMC Rx buffer length on
8815 8xx systems. Enable this feature on TQM8xx* based boards.
8816
8817 This fixes the problem that pasting text in the middle of a line
8818 (i. e. inserting in edit mode) did not work - only the first two
8819 characters got inserted, the rest was lost.
8820
8821 Signed-off-by: Wolfgang Denk <wd@denx.de>
8822
8823 commit 4b7511478b62a539e5b066d19a986b75e5d9a527
8824 Author: Wolfgang Denk <wd@denx.de>
8825 Date: Tue Jul 28 22:07:37 2009 +0200
8826
8827 Fix ext2load return code
8828
8829 Make the ext2load command return 0 on success (instead of the file
8830 length).
8831
8832 Also fix output format (get rid of random newlines) and some coding
8833 style issues (long lines etc.).
8834
8835 Signed-off-by: Wolfgang Denk <wd@denx.de>
8836
8837 commit 56fdaadc124a8ef9ec0fd8ff578233ec3b1137be
8838 Author: Weirich, Bernhard <Bernhard.Weirich@riedel.net>
8839 Date: Wed Jun 10 14:00:37 2009 +0200
8840
8841 ext2: fix inode size and calculations
8842
8843 Signed-off-by: unsik Kim <donari75@gmail.com>
8844 Signed-off-by: Bernhard Weirich <bernhard.weirich@riedel.net>
8845 Signed-off-by: Wolfgang Denk <wd@denx.de>
8846 Tested-by: Wolfgang Denk <wd@denx.de>
8847
8848 commit cd7826359ee71e8f6f3d68331930ab9cbe1c990e
8849 Author: Tom Rix <Tom.Rix@windriver.com>
8850 Date: Sun Jun 28 12:52:29 2009 -0500
8851
8852 TWL4030 Add power reset button
8853
8854 The Zoom2 power reset button is on the top right side of the
8855 main board. Press and hold for about to 8 seconds to completely
8856 reset the board.
8857
8858 Some of the beta boards have a hardware problem that prevents
8859 using this feature. If is difficult to further characterize the
8860 boards that fail. So disable resetting for all beta boards.
8861
8862 The Zoom1 reset button is the red circle on the top right,
8863 front of the board. Press and hold the button for 8 seconds to
8864 completely reset the board.
8865
8866 After analyzing beagle, it was determined that other boards
8867 that use the twl4030 for power managment can also make use
8868 this function.
8869
8870 The resetting is done by the power management part of the twl4030.
8871 Since there is no existing drivers/power, add one.
8872
8873 The compilation of power/twl4030.h is controlled by the config
8874 variable CONFIG_TWL4030_POWER
8875
8876 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8877 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8878 Acked-by: Heiko Schocher <hs@denx.de>
8879
8880 commit 8966eb4c1c2d894b2a76174ba904c26c5af815b8
8881 Author: Tom Rix <Tom.Rix@windriver.com>
8882 Date: Sun Jun 28 12:52:28 2009 -0500
8883
8884 TWL4030 Add initial support
8885
8886 The TWL4030 supplies many peripherals for OMAP3 boards. These include
8887 power management, usb and, keyboard.
8888
8889 The product description is found here:
8890
8891 http://focus.ti.com/docs/prod/folders/print/tps65950.html
8892
8893 Product reference document, tps65950.pdf, is found here:
8894
8895 http://www.ti.com/lit/gpn/tps65950
8896
8897 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8898 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8899 Acked-by: Heiko Schocher <hs@denx.de>
8900
8901 commit 7f79dfb48b7419d5caa1cf932fcff4e2fb7040af
8902 Author: Tom Rix <Tom.Rix@windriver.com>
8903 Date: Sun Jun 28 12:52:27 2009 -0500
8904
8905 OMAP I2C Fix the sampling clock.
8906
8907 This problem is seen on Zoom1 and Zoom2 in the startup and
8908 when i2c probe is used
8909
8910 Before :
8911
8912 In: serial
8913 Out: serial
8914 Err: serial
8915 timed out in wait_for_bb: I2C_STAT=1000
8916 timed out in wait_for_bb: I2C_STAT=1000
8917 timed out in wait_for_bb: I2C_STAT=1000
8918 timed out in wait_for_pin: I2C_STAT=1000
8919 I2C read: I/O error
8920 timed out in wait_for_bb: I2C_STAT=1000
8921 timed out in wait_for_bb: I2C_STAT=1000
8922 Die ID #327c00020000000004013ddd05026013
8923 Hit any key to stop autoboot: 0
8924 OMAP3 Zoom1# i2c probe
8925 Valid chip addresses:timed out in wait_for_bb: I2C_STAT=1000
8926 02 03 04 05 06 07 08 09 0A 0B 0C 0D <snip>
8927
8928 After :
8929
8930 In: serial
8931 Out: serial
8932 Err: serial
8933 Die ID #327c00020000000004013ddd05026013
8934 Hit any key to stop autoboot: 0
8935 OMAP3 Zoom1# i2c probe
8936 Valid chip addresses: 48 49 4A 4B
8937
8938 The addresses are for the twl4030.
8939
8940 The prescalar that converts the function clock to the sampling
8941 clock is hardcoded to 0. The reference manual recommends 7
8942 if the function clock is 96MHz.
8943
8944 Instead of just changing the hardcoded values, the prescalar
8945 is calculated from the value I2C_IP_CLK.
8946
8947 The i2c #defines are in kHz. The speed passed into the
8948 i2c init routine is in Hz. To be consistent, change the
8949 defines to be in Hz.
8950
8951 The timing calculations are based on what is done in the
8952 linux 2.6.30 kernel in drivers/i2c/buses/i2c_omap.c as
8953 apposed to what is done in TRM.
8954
8955 The major variables in the timing caculations are
8956 specified as #defines that can be overriden as required.
8957
8958 The variables and their defaults are
8959
8960 I2C_IP_CLK SYSTEM_CLOCK_96
8961 I2C_INTERNAL_SAMPLING_CLK 19200000
8962 I2C_FASTSPEED_SCLL_TRIM 6
8963 I2C_FASTSPEED_SCLH_TRIM 6
8964 I2C_HIGHSPEED_PHASE_ONE_SCLL_TRIM I2C_FASTSPEED_SCLL_TRIM
8965 I2C_HIGHSPEED_PHASE_ONE_SCLH_TRIM I2C_FASTSPEED_SCLH_TRIM
8966 I2C_HIGHSPEED_PHASE_TWO_SCLL_TRIM I2C_FASTSPEED_SCLL_TRIM
8967 I2C_HIGHSPEED_PHASE_TWO_SCLH I2C_FASTSPEED_SCLH_TRIM
8968
8969 This was runtime verified on Zoom1, Zoom2, Beagle and Overo.
8970 The 400kHz and 3.4M cases were verifed on test Zoom1,
8971 Zoom2, Beagle and Overo configurations.
8972
8973 Testing for omap2 will be done in a second step as Nishanth
8974 and Jean-Christophe commented.
8975
8976 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8977 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8978 Acked-by: Heiko Schocher <hs@denx.de>
8979
8980 commit 4ce5a72851ff2960543b125866c6132e0094e1ee
8981 Author: Heiko Schocher <hs@denx.de>
8982 Date: Mon Jul 20 09:59:37 2009 +0200
8983
8984 arm, i2c: added support for the TWSI I2C Interface
8985
8986 Signed-off-by: Heiko Schocher <hs@denx.de>
8987
8988 commit 042d01c72e0ea95731708dd24bb8b6cf42e75c80
8989 Author: Stefan Roese <sr@denx.de>
8990 Date: Mon Jul 27 09:13:38 2009 +0200
8991
8992 ppc4xx: Fix problem with NOR range assignment in Canyonlands ft_board_setup
8993
8994 This patch fixes the problem, that the current fdt board fixup code only
8995 set's one range, the one for NOR. By this it's overwriting the already
8996 correctly configured values done in __ft_board_setup(). Just remove this
8997 now unneeded NOR fixup and all the ranges are correctly defined.
8998
8999 Signed-off-by: Stefan Roese <sr@denx.de>
9000 Cc: Dirk Eibach <eibach@gdsys.de>
9001 Cc: Felix Radensky <felix@embedded-sol.com>
9002
9003 commit 11a1604f8d0a8d936b42f6435d004b4aa33a5d87
9004 Author: Stefan Roese <sr@denx.de>
9005 Date: Mon Jul 27 07:42:48 2009 +0200
9006
9007 ppc4xx: Add some NAND-booting bootstrap entries to Kilauea chip_config cmd
9008
9009 This patch adds some I2C bootstrap setting for NAND booting to the Kilauea
9010 chip_config command ("533-nand" and "600-nand").
9011
9012 Additionally some incorrectly indented lines are fixed.
9013
9014 Signed-off-by: Stefan Roese <sr@denx.de>
9015
9016 commit 5b34691ff87821891375b28ec5bcf5154575a735
9017 Author: Stefan Roese <sr@denx.de>
9018 Date: Mon Jul 27 07:42:37 2009 +0200
9019
9020 ppc4xx: Kilauea: Fix SDRAM init in NAND booting version
9021
9022 DDR2 Auto-calibration needs to be disabled on the NAND booting PPC4xx
9023 targets. Otherwise the configured fixed init values for some DDR2
9024 controller registers (e.g. RQDC) are not initialized at all resulting
9025 in a non working SDRAM.
9026
9027 Signed-off-by: Stefan Roese <sr@denx.de>
9028
9029 commit f3ed3c9b7441cde936d06a1ff7b1490ff0d600e6
9030 Author: Stefan Roese <sr@denx.de>
9031 Date: Mon Jul 27 10:53:43 2009 +0200
9032
9033 ppc4xx: Fix Arches DDR2 initialization
9034
9035 Testing on AMCC Arches with the latest U-Boot version yielded that DDR2
9036 initialization is currently broken. U-Boot hangs upon relocation to SDRAM
9037 or crashes with random traps. This patch fixes this problem. Arches now
9038 uses a different WRDTR and CLKTR default setting than Canyonlands/Glacier.
9039
9040 Signed-off-by: Stefan Roese <sr@denx.de>
9041
9042 commit ab4c62c1ba788bf7f673a985d99a76d9c2fd7eca
9043 Author: Dirk Eibach <eibach@gdsys.de>
9044 Date: Mon Jul 27 08:49:48 2009 +0200
9045
9046 ppc4xx: Add GDsys CompactCenter board support.
9047
9048 Board support for the Guntermann & Drunck CompactCenter and
9049 DevCon-Center.
9050 Based on the AMCC Canyonlands board support by Stefan Roese.
9051
9052 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
9053 Signed-off-by: Stefan Roese <sr@denx.de>
9054
9055 commit c2e49f706ba13213f3c8da3a33e88010214e1997
9056 Author: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
9057 Date: Sat Jul 25 06:19:12 2009 +0200
9058
9059 mpc83xx: Add esd VME8349 board support
9060
9061 This patch adds support for the esd VME8349 board equipped with the
9062 MPC8349. It's a VME PMC carrier board equipped with the Tundra
9063 TSI148 VME-bridge.
9064
9065 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
9066 Signed-off-by: Stefan Roese <sr@denx.de>
9067 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9068
9069 commit fe613cdd4eb2c5b257a60d8dfb7759742318c28a
9070 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
9071 Date: Thu Jul 23 17:10:55 2009 -0400
9072
9073 sbc8349: combine HRCW flash and u-boot image flash
9074
9075 Up to this point in time, the sbc8349 board was storing the u-boot
9076 image in flash 2x. One for the HRCW value at the beginning of
9077 flash (0xff80_0000), and once close to the end of flash (0xfff8_0000)
9078 for the actual image that got executed.
9079
9080 This moves the TEXT_BASE to be the beginning of flash, which makes
9081 the second copy of the image redundant, and frees up the flash
9082 from the end of the environment storage to the end of the flash
9083 device itself.
9084
9085 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
9086 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9087
9088 commit be9b56df02168ca97562d6b9ec791136e4cd925a
9089 Author: Kim Phillips <kim.phillips@freescale.com>
9090 Date: Thu Jul 23 14:09:38 2009 -0500
9091
9092 mpc83xx: CONFIG_83XX_GENERIC_PCI is now synonymous with CONFIG_PCI; remove the former
9093
9094 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9095
9096 commit 94978e19f31d225b4f7d97c4acbac1ecfaeb8f69
9097 Author: Wolfgang Denk <wd@denx.de>
9098 Date: Mon Jul 27 10:37:37 2009 +0200
9099
9100 Prepare 2009.08-rc1 (again, after fixing last minute issues).
9101
9102 Update CHANGELOG
9103
9104 Signed-off-by: Wolfgang Denk <wd@denx.de>
9105
9106 commit 9689ddcca6e01f3637b4442fa8575f29ef4d7aa3
9107 Author: Wolfgang Denk <wd@denx.de>
9108 Date: Mon Jul 27 10:06:39 2009 +0200
9109
9110 cpu/arm920t/start.S: include <common.h> to have ROUND() defined
9111
9112 Commit fcd3c87e made include/common.h usable by assembler code but
9113 failed to update cpu/arm920t/start.S
9114
9115 Signed-off-by: Wolfgang Denk <wd@denx.de>
9116
9117 commit c9ed38cb6de50fdb4aaa60b668c555002903b211
9118 Author: Wolfgang Denk <wd@denx.de>
9119 Date: Mon Jul 27 10:01:11 2009 +0200
9120
9121 at91cap9adk: fix #ifdef/#endif pairing (2nd try)
9122
9123 Commit 7024aa14 was supposed to fix the #ifdef/#endif pairing in
9124 include/configs/at91cap9adk.h, but did not cate all problems.
9125
9126 Signed-off-by: Wolfgang Denk <wd@denx.de>
9127
9128 commit fb364bec5f29164d3ee681fcd9d187be8435db12
9129 Author: Wolfgang Denk <wd@denx.de>
9130 Date: Mon Jul 27 09:58:14 2009 +0200
9131
9132 Fix include/common.h for boards with CONFIG_STATUS_LED
9133
9134 The reordering of include/common.h by commit fcd3c87e495f3c48 broke
9135 boards with status LED support, resulting in
9136 error: #error Status LED configuration missing
9137 errors. Undo this reordering to avoid this issue.
9138
9139 Signed-off-by: Wolfgang Denk <wd@denx.de>
9140
9141 commit 942828a0980b3cea7db698784cc7f6a3e7740b2b
9142 Author: Wolfgang Denk <wd@denx.de>
9143 Date: Mon Jul 27 09:19:15 2009 +0200
9144
9145 ABI: fix build problems due to now needed div64 routine.
9146
9147 Signed-off-by: Wolfgang Denk <wd@denx.de>
9148
9149 commit 85d6bf0bdc8ccad2d67a9160472f6f8c6bb482fb
9150 Author: Wolfgang Denk <wd@denx.de>
9151 Date: Mon Jul 27 08:50:59 2009 +0200
9152
9153 PMC405DE: fix out of tree building
9154
9155 Signed-off-by: Wolfgang Denk <wd@denx.de>
9156
9157 commit 10c7604d021949464b1e4ba903df95e6b2f0d2ff
9158 Author: Wolfgang Denk <wd@denx.de>
9159 Date: Mon Jul 27 00:24:55 2009 +0200
9160
9161 Prepare 2009.08-rc1
9162
9163 Update CHANGELOG, minor coding style fix.
9164
9165 Signed-off-by: Wolfgang Denk <wd@denx.de>
9166
9167 commit fafbb2c3e4b35b60ca303ed2ad1c6cf400cd9a22
9168 Author: rhabarber1848@web.de <rhabarber1848@web.de>
9169 Date: Fri Jul 24 08:16:30 2009 +0200
9170
9171 add WATCHDOG_RESET to allow LZMA kernel decompression on slow machines
9172
9173 Signed-off-by: rhabarber1848@web.de
9174
9175 commit 3c972849f2becbf19c13a24f090d293f37ecf616
9176 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
9177 Date: Thu Jul 23 23:31:58 2009 +0200
9178
9179 Less verbose output when loading vxworks 6.x images
9180
9181 Loading vxWorks 5.x images resulted just into 3 or 4 lines of output.
9182 With vxWorks 6.x and the new GCC it emits about 30 lines, which is
9183 far too noisy in my opinion.
9184
9185 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
9186
9187 commit fcd3c87e495f3c48b70c919869fb1e0b93d4880b
9188 Author: Wolfgang Denk <wd@denx.de>
9189 Date: Fri Jul 24 00:17:48 2009 +0200
9190
9191 Make include/common.h usable by assembler code
9192
9193 Commit 70ebf316 factored out the ROUND() macro into include/common.h,
9194 not realizing that the primary use of this macro on AT91 systems was
9195 in start.S where common.h was not included, and could not be included
9196 because it contains a lot of C code which the assembler doesn't
9197 understand.
9198
9199 This patch wraps such code in common.h in a "#ifndef __ASSEMBLY__"
9200 construct, and then adds an include to cpu/arm926ejs/start.S thus
9201 solving the problem.
9202
9203 Signed-off-by: Wolfgang Denk <wd@denx.de>
9204
9205 commit deec15b3064d3bb0189aede3c2921fd7ee401a0f
9206 Author: Heiko Schocher <heiko.schocher@invitel.hu>
9207 Date: Thu Jul 23 13:27:04 2009 +0200
9208
9209 arm: add _lshrdi3.S
9210
9211 Signed-off-by: Heiko Schocher <hs@denx.de>
9212
9213 commit 52b1bf2c5cd2f8af880dab503d0039b35570665b
9214 Author: Wolfgang Denk <wd@denx.de>
9215 Date: Thu Jul 23 13:15:59 2009 +0200
9216
9217 Make linking against libgcc configurable
9218
9219 Many (especially ARM) tool chains seem to come with broken or
9220 otherwise unusable (for the purposes of builing U-Boot) run-time
9221 support libraries `libgcc.a'. By using the "USE_PRIVATE_LIBGCC"
9222 setting we allow to use alternative libraries instead.
9223
9224 "USE_PRIVATE_LIBGCC" can either be set as an environment variable in
9225 the shell, or as a command line argument when running "make", i. e.
9226 $ make USE_PRIVATE_LIBGCC=yes
9227 or
9228 $ USE_PRIVATE_LIBGCC=yes
9229 $ export USE_PRIVATE_LIBGCC
9230 $ make
9231
9232 The value of "USE_PRIVATE_LIBGCC" is the name of the directory which
9233 contains the alternative run-time support library `libgcc.a'. The
9234 special value "yes" selects the directory $(OBJTREE)/lib_$(ARCH) .
9235
9236 Note that not all architectures provide an alternative `libgcc.a' in
9237 their lib_$(ARCH) directories - so far, only ARM does.
9238
9239 Signed-off-by: Wolfgang Denk <wd@denx.de>
9240 Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9241 Cc: Prafulla Wadaskar <prafulla@marvell.com>
9242 cc: Stefan Roese <sr@denx.de>
9243
9244 commit 479105065d965121f57b55dcfe83a940cba46ac1
9245 Author: Dirk Behme <dirk.behme@googlemail.com>
9246 Date: Wed Jul 22 17:51:56 2009 +0200
9247
9248 Use do_div from div64.h for vsprintf
9249
9250 Use do_div from div64.h for vsprintf in case of 64bit division.
9251 For 32bit division, do_div from div64.h can't be used as it
9252 needs a 64bit parameter.
9253
9254 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
9255 Acked-by: Stefan Roese <sr@denx.de>
9256 CC: Simon Kagstrom <simon.kagstrom@netinsight.net>
9257
9258 commit 48287792384a93d77d43aaaa1c06cac275bbe1bb
9259 Author: Kyungmin Park <kmpark@infradead.org>
9260 Date: Mon Jul 20 09:47:47 2009 +0900
9261
9262 Fix compiler warnings after loff_t change
9263
9264 Now 'env_addr' type is loff_t so use correct field type.
9265
9266 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
9267
9268 commit 9c67352f727a5b5eff531c852f9cff59fcb17f7f
9269 Author: Wolfgang Denk <wd@denx.de>
9270 Date: Sun Jul 26 23:28:02 2009 +0200
9271
9272 Revert "ppc: Unlock cache-as-ram in a consistent manner"
9273
9274 This reverts commit 982adfc610669482a32127282fe489857a92cfe3.
9275
9276 This patch causes problems on MPC83xx boards - flash recognition stops
9277 working.
9278
9279 Signed-off-by: Wolfgang Denk <wd@denx.de>
9280
9281 commit 35cf3b57eafe3ee1f693e24267e0ecfefab60251
9282 Author: Jens Scharsig <esw@bus-elektronik.de>
9283 Date: Fri Jul 24 10:31:48 2009 +0200
9284
9285 update the EB+MCF-EV123 board support
9286
9287 This patch updates the support for EB+MCF-EV123 board and needs
9288 the [PATCH 1/2 V3] new video driver for bus vcxk framebuffers
9289
9290 * remove the board framebuffer driver
9291 * use the common bus_vcxk framebuffer driver
9292 * adds bmp support
9293 * adds splashimage support
9294 * fix serveral cosmetical errors
9295
9296 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
9297 [agust@denx.de: fixed some style issues before applying]
9298 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9299
9300 commit 04538cdb752eeea8fd23cf7ac3394439f189fb77
9301 Author: Anatolij Gustschin <agust@denx.de>
9302 Date: Sun Jul 26 12:05:25 2009 +0200
9303
9304 video: bus_vcxk.c: fix style issues added by 50217dee
9305
9306 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9307
9308 commit 50217deeb07911d686790d34d468eb9a5245f68d
9309 Author: Jens Scharsig <esw@bus-elektronik.de>
9310 Date: Fri Jul 24 10:09:02 2009 +0200
9311
9312 new video driver for bus vcxk framebuffers
9313
9314 This patch adds a new video driver
9315
9316 * adds common bus_vcxk framebuffer driver
9317
9318 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
9319 [agust@denx.de: fixed lots of style issues before applying]
9320 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9321
9322 commit 60e97419246d0a3615758ad6af40680aefb5f7f1
9323 Author: Alessandro Rubini <rubini@gnudd.com>
9324 Date: Tue Jul 21 14:09:45 2009 +0200
9325
9326 lcd.h: define extern vidinfo_t for all cases
9327
9328 include/lcd.h has different vidinfo for different platforms,
9329 and several extern declaration, but one for the default case was
9330 missing. This makes them a single extern declaration for everyone.
9331
9332 Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
9333
9334 commit bcf0b5248952c6b03081dc5cc4ff9e0b2299c5fa
9335 Author: Anatolij Gustschin <agust@denx.de>
9336 Date: Sun Jul 26 11:04:59 2009 +0200
9337
9338 mimc200.c: fix too long lines added by f68378d6
9339
9340 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9341
9342 commit f68378d60a905d43155f2e89bf81999d3c93a90a
9343 Author: Mark Jackson <mpfj-list@mimc.co.uk>
9344 Date: Tue Jul 21 11:35:22 2009 +0100
9345
9346 Add LCD support to MIMC200 board
9347
9348 This patch updates the MIMC200 files to enable the LCD.
9349
9350 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
9351
9352 commit 69f32e6c24d41fcdf347ff64e9c13b25059ace58
9353 Author: Mark Jackson <mpfj-list@mimc.co.uk>
9354 Date: Tue Jul 21 11:18:44 2009 +0100
9355
9356 Add 16bit colour support in lcd.h
9357
9358 This patch adds support for LCD_COLOR16 in include/lcd.h.
9359
9360 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
9361
9362 commit bdc873ea063b8cc6d44c6ab748b7723a97d8d7b3
9363 Author: Anatolij Gustschin <agust@denx.de>
9364 Date: Sun Jul 26 10:34:58 2009 +0200
9365
9366 lib_avr32/board.c: fix too long line added by 716ece1d
9367
9368 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9369
9370 commit 716ece1de9a7d43a61d8698ac41b71b64f66f9e9
9371 Author: Mark Jackson <mpfj-list@mimc.co.uk>
9372 Date: Tue Jul 21 11:11:37 2009 +0100
9373
9374 Add AVR32 LCD support
9375
9376 This patch adds support for the AVR32 LCD controller. This patch is
9377 based off the latest u-boot-video.
9378
9379 A quick summary of what's going on:-
9380
9381 Enable LCDC pixel clock
9382 Enable LCDC port pins
9383 Add framebuffer pointer to global_data struct
9384 Allocate framebuffer
9385
9386 To use the new code, update your board config to include something like
9387 this:-
9388
9389 #define CONFIG_LCD 1
9390
9391 #if defined(CONFIG_LCD)
9392 #define CONFIG_CMD_BMP
9393 #define CONFIG_ATMEL_LCD 1
9394 #define LCD_BPP LCD_COLOR16
9395 #define CONFIG_BMP_16BPP 1
9396 #define CONFIG_FB_ADDR 0x10600000
9397 #define CONFIG_WHITE_ON_BLACK 1
9398 #define CONFIG_VIDEO_BMP_GZIP 1
9399 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE 262144
9400 #define CONFIG_ATMEL_LCD_BGR555 1
9401 #define CONFIG_SYS_CONSOLE_IS_IN_ENV 1
9402 #define CONFIG_SPLASH_SCREEN 1
9403 #endif
9404
9405 The standard U-Boot BMP and Splash-screen features should just work.
9406
9407 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
9408 [agust@denx.de: fixed some style issues]
9409 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9410
9411 commit 6111722a9281c6e04a7304d502556afff6a5a1f8
9412 Author: Alessandro Rubini <rubini@gnudd.com>
9413 Date: Sun Jul 19 17:52:27 2009 +0200
9414
9415 video: move extern declarations from C to headers
9416
9417 This moves some extern declaration from lcd.c to lcd.h, removing
9418 unneeded ifdef around a pair of them. Additionally, since
9419 gunzip_bmp() was declared static in cmd_bmp.c but extern in lcd.c, I
9420 removed the static. The extra "#include <lcd.h>" in cmd_bmp.c is
9421 added to ensure the header is consistent with the source.
9422
9423 This has been compile-tested on both ARM (at91 boards) and PowerPC
9424 (HH405_config, TQM823L_LCD_config, mcc200_config), to test all use
9425 combinations.
9426
9427 Signed-off-by: Alessandro Rubini <rubini@gnudd.it>
9428 [agust@denx.de: removed gunzip_bmp() fixes as commit c01171ea did it]
9429 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9430
9431 commit f51e001143c58447eb50e7aefa2b09eb4cc1410c
9432 Author: Mike Frysinger <vapier@gentoo.org>
9433 Date: Thu Jul 23 16:26:58 2009 -0400
9434
9435 Blackfin: restore EVT1 handling in linker script
9436
9437 Sadly, the Blackfin linker script unification lost a small #ifdef logic
9438 needed on older parts. Restore that CONFIG_BFIN_BOOTROM_USES_EVT1 logic.
9439
9440 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9441
9442 commit f33b325af666b12eafa9ab235b2cd59832d6e51c
9443 Author: Wolfgang Denk <wd@denx.de>
9444 Date: Fri Jul 24 14:24:07 2009 +0200
9445
9446 Revert "zlib: updated to v.1.2.3"
9447
9448 This reverts commit b201171f2b4d509f3ad510b214bee70ff902e3d6.
9449
9450 The commit caused problems for example when unpacking kernel images:
9451
9452 Uncompressing Kernel Image ... Error: inflate() returned -2
9453 GUNZIP: uncompress, out-of-mem or overwrite error - must
9454 RESET board to recover
9455
9456 Conflicts:
9457
9458 include/u-boot/zlib.h
9459 lib_generic/zlib.c
9460
9461 Signed-off-by: Wolfgang Denk <wd@denx.de>
9462
9463 commit 4b1389e0ceb19e9b50b96fd3908483a6c2274fb0
9464 Author: Stefan Roese <sr@denx.de>
9465 Date: Tue Jul 21 14:06:29 2009 +0200
9466
9467 ppc4xx: Add chip_config command to AMCC Kilauea eval board
9468
9469 This patch removes the "alterpll" command and replaces it with the now
9470 ppc4xx standard "chip_config" command to configure the I2C bootstrap
9471 EEPROM.
9472
9473 Signed-off-by: Stefan Roese <sr@denx.de>
9474
9475 commit f6af8ce0c80327cb6aaa347642026ad838335c23
9476 Author: Stefan Roese <sr@denx.de>
9477 Date: Tue Jul 21 14:33:52 2009 +0200
9478
9479 ppc4xx: Fix EEPROM configuration on Kilauea
9480
9481 Kilauea has an AT24C02 EEPROM which has an 8 byte page. Without defining
9482 CONFIG_SYS_EEPROM_PAGE_WRITE_BITS to 3 the "eeprom" command doesn't
9483 work correctly.
9484
9485 Additionally the page write delay (CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS)
9486 is set to a more defensive value of 10ms.
9487
9488 Signed-off-by: Stefan Roese <sr@denx.de>
9489
9490 commit 99d8b23bc7e2be04fcbf49c5cec9f5ae76df290c
9491 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
9492 Date: Wed Jul 22 13:56:21 2009 +0200
9493
9494 ppc4xx: Add 405EP based PMC405DE board
9495
9496 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
9497 Signed-off-by: Stefan Roese <sr@denx.de>
9498
9499 commit da799f66ad1d4fc36dd20cc2d7e584493fda8546
9500 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
9501 Date: Mon Jul 20 12:15:38 2009 +0200
9502
9503 ppc4xx: Add struct for 4xx GPIO controller registers
9504
9505 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
9506 Signed-off-by: Stefan Roese <sr@denx.de>
9507
9508 commit 58ea142fb2e969f32306c8da1dabfaebd6fa141a
9509 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
9510 Date: Wed Jul 22 17:27:56 2009 +0200
9511
9512 ppc4xx: Replace 4xx lowercase SPR references
9513
9514 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
9515 Signed-off-by: Stefan Roese <sr@denx.de>
9516
9517 commit 87c0b72908e05662b8b415e26e1042f4779629da
9518 Author: Stefan Roese <sr@denx.de>
9519 Date: Mon Jul 20 06:57:27 2009 +0200
9520
9521 Add "chip_config" command for PPC4xx bootstrap configuration
9522
9523 This patch adds a generic command for programming I2C bootstrap
9524 eeproms on PPC4xx. An implementation for Canyonlands board is
9525 included.
9526
9527 The command name is intentionally chosen not to be PPC4xx specific.
9528 This way other CPU's/SoC's can implement a similar command under
9529 the same name, perhaps with a different syntax.
9530
9531 Usage on Canyonlands:
9532
9533 => chip_config
9534 Available configurations (I2C address 0x52):
9535 600-nor - NOR CPU: 600 PLB: 200 OPB: 100 EBC: 100
9536 600-nand - NAND CPU: 600 PLB: 200 OPB: 100 EBC: 100
9537 800-nor - NOR CPU: 800 PLB: 200 OPB: 100 EBC: 100
9538 800-nand - NAND CPU: 800 PLB: 200 OPB: 100 EBC: 100
9539 1000-nor - NOR CPU:1000 PLB: 200 OPB: 100 EBC: 100
9540 1000-nand - NAND CPU:1000 PLB: 200 OPB: 100 EBC: 100
9541 1066-nor - NOR CPU:1066 PLB: 266 OPB: 88 EBC: 88 ***
9542 1066-nand - NAND CPU:1066 PLB: 266 OPB: 88 EBC: 88
9543 => chip_config 600-nor
9544 Using configuration:
9545 600-nor - NOR CPU: 600 PLB: 200 OPB: 100 EBC: 100
9546 done (dump via 'i2c md 52 0.1 10')
9547 Reset the board for the changes to take effect
9548
9549 Other 4xx boards will be migrated to use this command soon
9550 as well.
9551
9552 Signed-off-by: Stefan Roese <sr@denx.de>
9553 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
9554 Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
9555
9556 commit 10c1b218556ed9871f36bc0c407f4f2f6196353b
9557 Author: Peter Tyser <ptyser@xes-inc.com>
9558 Date: Fri Jul 17 19:01:16 2009 -0500
9559
9560 xpedite1k: Move to X-ES vendor directory
9561
9562 The XPedite1000 is an X-ES product thus it can be put in board/xes along
9563 with other X-ES boards. Along with the move, the board was renamed to
9564 XPedite1000 from XPedite1K to fit X-ES's standard naming convention.
9565 Maintainership was also transfered to Peter Tyser.
9566
9567 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9568 Signed-off-by: Stefan Roese <sr@denx.de>
9569
9570 commit 54381b79d268e1bead5d78ed8423df31a3cb0e2c
9571 Author: Peter Tyser <ptyser@xes-inc.com>
9572 Date: Fri Jul 17 19:01:15 2009 -0500
9573
9574 xpedite1k: Sync checkboard() with other X-ES boards
9575
9576 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9577 Signed-off-by: Stefan Roese <sr@denx.de>
9578
9579 commit 9b4ef1f5dc0daab64f46249a32e67279c4d44fd2
9580 Author: Peter Tyser <ptyser@xes-inc.com>
9581 Date: Fri Jul 17 19:01:14 2009 -0500
9582
9583 xpedite1k: Sync up board config options with other X-ES boards
9584
9585 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9586 Signed-off-by: Stefan Roese <sr@denx.de>
9587
9588 commit 4cdad5f43ae67e4ceeac69ef4af4392bd2f7381f
9589 Author: Peter Tyser <ptyser@xes-inc.com>
9590 Date: Fri Jul 17 19:01:13 2009 -0500
9591
9592 xpedite1k: Sync organization of board config with other X-ES boards
9593
9594 This change should have no functional effect
9595
9596 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9597 Signed-off-by: Stefan Roese <sr@denx.de>
9598
9599 commit c4ae1a0257a0f5008ee2686e8aa92fba3992f279
9600 Author: Peter Tyser <ptyser@xes-inc.com>
9601 Date: Fri Jul 17 19:01:12 2009 -0500
9602
9603 xpedite1k: Sync up commands and environment with other X-ES boards
9604
9605 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9606 Signed-off-by: Stefan Roese <sr@denx.de>
9607
9608 commit fbc7951ea84c2fe6da0f6007b672ed35bae91acb
9609 Author: Peter Tyser <ptyser@xes-inc.com>
9610 Date: Fri Jul 17 19:01:11 2009 -0500
9611
9612 xpedite1k: Disable unused ethernet port 1
9613
9614 The XPedite1000 only has 2 available ethernet ports:
9615 ppc_4xx_eth2 (EMAC2) and ppc_4xx_eth3 (EMAC3)
9616
9617 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9618 Signed-off-by: Stefan Roese <sr@denx.de>
9619
9620 commit 767e32ad369d83f55f950e6938e68b6dba7fa65f
9621 Author: Peter Tyser <ptyser@xes-inc.com>
9622 Date: Fri Jul 17 19:01:10 2009 -0500
9623
9624 xpedite1k: Store environment in flash
9625
9626 Previously an I2C EEPROM was used. The EEPROM had size, reliability,
9627 and access issues which are resolved by storing the environment in
9628 flash.
9629
9630 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9631 Signed-off-by: Stefan Roese <sr@denx.de>
9632
9633 commit b88da157f9990cd2cb081e4faea4b9581b5d0e2f
9634 Author: Peter Tyser <ptyser@xes-inc.com>
9635 Date: Fri Jul 17 19:01:09 2009 -0500
9636
9637 xpedite1k: Add support for additional GPIO pins
9638
9639 Enable GPIO pins for an I2C EEPROM write protect, a system reset pin,
9640 and a PMC #MONARCH pin. These pins are not currently used in U-Boot,
9641 but are used in OSes and may be used in U-Boot in the future.
9642
9643 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9644 Signed-off-by: Stefan Roese <sr@denx.de>
9645
9646 commit 42735815dd9ba39efe51203868aebce04053c8de
9647 Author: Peter Tyser <ptyser@xes-inc.com>
9648 Date: Fri Jul 17 19:01:08 2009 -0500
9649
9650 xpedite1k: Add support for optional flashes
9651
9652 The XPedite1000 can be built with 4 total flashes:
9653 - 512KB AMD socketed
9654 - 16MB Intel soldered
9655 - 2 x 32MB AMD MirrorBit flashes
9656
9657 Add support for the optional 2 32MB CFI-compliant AMD flashes
9658
9659 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9660 Signed-off-by: Stefan Roese <sr@denx.de>
9661
9662 commit e02990764c7415c84668823a0fc8c5b4dd8d8cf0
9663 Author: Peter Tyser <ptyser@xes-inc.com>
9664 Date: Fri Jul 17 19:01:07 2009 -0500
9665
9666 xpedite1k: Cleanup coding style
9667
9668 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9669 Signed-off-by: Stefan Roese <sr@denx.de>
9670
9671 commit 086ff34a3a7e5e595630d658c1c13778399452d1
9672 Author: Peter Tyser <ptyser@xes-inc.com>
9673 Date: Fri Jul 17 19:01:06 2009 -0500
9674
9675 xpedite1k: Remove support for reading MACs from EEPROM
9676
9677 By default, the XPedite1000 comes installed with xMon, a proprietary
9678 bootloader. xMon stores its MAC address in an onboard EEPROM. Rather
9679 than requiring a non-standard location in the EEPROM to be reserved for
9680 MAC addresses, store the MAC addresses in U-Boot's standard environment.
9681 A U-Boot application or OS application can be used to migrate xMon MAC
9682 addresses to U-Boot's environment if necessary.
9683
9684 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9685 Signed-off-by: Stefan Roese <sr@denx.de>
9686
9687 commit 108d6d0099372f9f6532c3198fbaacabc121c9b3
9688 Author: Peter Tyser <ptyser@xes-inc.com>
9689 Date: Fri Jul 17 19:01:05 2009 -0500
9690
9691 xpedite1k: Remove support for fixed SDRAM configuration
9692
9693 All XPedite1000's have SPD EEPROMs present and no fixed configuration
9694 parameters are currently defined or used
9695
9696 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9697 Signed-off-by: Stefan Roese <sr@denx.de>
9698
9699 commit c86d00a2ed923002f1ab0bfb0a925522628302e9
9700 Author: Peter Tyser <ptyser@xes-inc.com>
9701 Date: Fri Jul 17 19:01:04 2009 -0500
9702
9703 xpedite1k: Remove CONFIG_SYS_DRAM_TEST support
9704
9705 POST or command line tests provide similar functionality
9706
9707 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9708 Signed-off-by: Stefan Roese <sr@denx.de>
9709
9710 commit 11ad309c183b176d8866944026a63c0f1c626f56
9711 Author: Peter Tyser <ptyser@xes-inc.com>
9712 Date: Fri Jul 17 19:01:03 2009 -0500
9713
9714 xpedite1k: Use standard CFI flash driver
9715
9716 Using the CFI flash driver will allow write access to the 16MB Intel
9717 StrataFlash present on the XPedite1000. The 512KB socketed (non
9718 CFI-compliant flash) will no longer be writable.
9719
9720 The mapping of the 16MB Strata flash was moved to 0xff000000 and the
9721 512KB AMD socketed flash was moved to 0xfe000000.
9722
9723 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9724 Signed-off-by: Stefan Roese <sr@denx.de>
9725
9726 commit d4d2e79bb433fc7ec18c68cc49cc6b7433d1320c
9727 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9728 Date: Thu Jul 16 22:13:57 2009 +0200
9729
9730 ppc4xx: Cleanup PLU405 board code
9731
9732 Some Coding style cleanup (braces, whitespaces, long lines)
9733
9734 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
9735 Signed-off-by: Stefan Roese <sr@denx.de>
9736
9737 commit b209a114829dc8a7a0e39a9335b6e4aebf9742cb
9738 Author: Dirk Eibach <eibach@gdsys.de>
9739 Date: Fri Jul 17 14:16:40 2009 +0200
9740
9741 ppc4xx: Add DL-Vision 405EP board support
9742
9743 Board support for the Guntermann & Drunck DL-Vision.
9744
9745 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
9746 Signed-off-by: Stefan Roese <sr@denx.de>
9747
9748 commit 9b1b8c8a1bf52e9b65e1958e5205838576066cbc
9749 Author: Dirk Eibach <eibach@gdsys.de>
9750 Date: Fri Jul 10 14:47:32 2009 +0200
9751
9752 ppc4xx: Fix missing freqOPB for 405EP
9753
9754 In cpu/ppc4xx/speed.c initialization of sysInfo->freqOPB for 405EP was
9755 left out for no obvious reason.
9756
9757 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
9758 Signed-off-by: Stefan Roese <sr@denx.de>
9759
9760 commit 0a371ca08908c9b2a58171223a79bffea1f7c6f5
9761 Author: Stefan Roese <sr@denx.de>
9762 Date: Tue Jul 14 15:53:08 2009 +0200
9763
9764 ppc4xx: Fix TLB reset problem with recent 44x images
9765
9766 Patch d873133f [ppc4xx: Add Sequoia RAM-booting target] broke "normal"
9767 booting on some 44x platforms. This breakage is only noticed in some
9768 cases while powercycling. As it seems, the code in question in start.S
9769 didn't invalidate TLB #0. This makes sense since this TLB is used for
9770 the bootrom mapping. With the patch mentioned above even TLB #0 got
9771 invalidated resulting in an error later on.
9772
9773 This patch now fixes this issue by only invalidating TLB #0 in the RAM-
9774 booting case.
9775
9776 Tested succesfully on Sequoia and Canyonlands.
9777
9778 Signed-off-by: Stefan Roese <sr@denx.de>
9779 Cc: Dirk Eibach <Eibach@gdsys.de>
9780
9781 commit 44259bb9e696d22bf1773181111855a29f00cf33
9782 Author: Prafulla Wadaskar <prafulla@marvell.com>
9783 Date: Fri Jul 17 19:56:30 2009 +0530
9784
9785 usb: bugfix driver/usb/host/ehci-hcd.c function ehci_submit_root
9786
9787 This change is cheked in Linux source and fix found to be in sync.
9788 This patch is tested for USB host interface on Kirkwood based
9789 Sheevaplug platform (ARM little endian board)
9790
9791 Risk: the impact of this patch is not validated on big endian board.
9792 This need to be checked...
9793
9794 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
9795 Signed-off-by: Remy Bohmer <linux@bohmer.net>
9796
9797 commit 28958b8bea4c66629c5a22fd3c8b0d49df90383d
9798 Author: Wolfgang Denk <wd@denx.de>
9799 Date: Thu Jul 23 22:23:23 2009 +0200
9800
9801 Coding Style cleanup; update CHANGELOG.
9802
9803 Signed-off-by: Wolfgang Denk <wd@denx.de>
9804
9805 commit 2632c008e2c2cd61fefb622ed671ea3e6bd2e2a6
9806 Author: Mike Frysinger <vapier@gentoo.org>
9807 Date: Tue Jul 21 22:59:36 2009 -0400
9808
9809 autoconf.mk: include before config.mk for top level files
9810
9811 By including autoconf.mk before config.mk, all top level files can use any
9812 config options it sets up (like <arch>_config.mk) or the Makefile itself
9813 without being forced to use lazy evaluation.
9814
9815 commit c01171eaecc963d2c1f56a0984a0cbcdd8a3ab3c
9816 Author: Mark Jackson <mpfj-list@mimc.co.uk>
9817 Date: Tue Jul 21 11:30:53 2009 +0100
9818
9819 Remove static declaration from gunzip_bmp()
9820
9821 This patch removes the static declaration from gunzip_bmp()
9822
9823 Without it, the gunzip_bmp() function is not visible to
9824 common/lcd.c and fails to compile with an error.
9825
9826 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
9827
9828 commit 2d4a43e230a3c8bfd03b9beaa0eb2a95e779c03b
9829 Author: Peter Tyser <ptyser@gmail.com>
9830 Date: Mon Jul 20 21:51:38 2009 -0500
9831
9832 cmd_tsi148: General cleanup
9833
9834 - Fix command help message
9835 - Disable DEBUG by default
9836 - Fix whitespace issues
9837 - Fix lines > 80 characters
9838
9839 Signed-off-by: Peter Tyser <ptyser@gmail.com>
9840 Acked-by: Stefan Roese <sr@denx.de>
9841
9842 commit 9aef73888509d10193615ee5cd9cf439ca44e937
9843 Author: Mike Frysinger <vapier@gentoo.org>
9844 Date: Sun Jul 19 15:17:03 2009 -0400
9845
9846 unify HOST_CFLAGS and HOSTCFLAGS
9847
9848 The top build system sets up HOSTCFLAGS a bit and exports it, but other
9849 places use HOST_CFLAGS instead. Unify the two as HOSTCFLAGS so that the
9850 values stay in sync.
9851
9852 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9853
9854 commit 2e9393f500065f940e5e4ac7fe375e4c0b77b936
9855 Author: Wolfgang Denk <wd@denx.de>
9856 Date: Thu Jul 23 21:16:59 2009 +0200
9857
9858 Update CHANGELOG
9859
9860 Signed-off-by: Wolfgang Denk <wd@denx.de>
9861
9862 commit e3b39f84e974df70065fa248f0f63993b1708c9d
9863 Author: André Schwarz <andre.schwarz@matrix-vision.de>
9864 Date: Fri Jul 17 14:50:24 2009 +0200
9865
9866 update config for mvBC-P (MPC5200)
9867
9868 This patch adds I2C support for mvBC-P and defines flash layout
9869 matching the shipped product.
9870
9871 Signed-off-by: André Schwarz <andre.schwarz@matrix-vision.de>
9872
9873 commit cb6d0b72c2c4f13c0075a7ae92e11682ec94a311
9874 Author: Kumar Gala <galak@kernel.crashing.org>
9875 Date: Mon Jul 13 09:24:00 2009 -0500
9876
9877 ahci: Fix gcc 4.4 compiler warning
9878
9879 ahci.c: In function 'ata_scsiop_read_capacity10':
9880 ahci.c:616: warning: dereferencing type-punned pointer will break strict-aliasing rules
9881
9882 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9883
9884 commit 51d91e1a253c97713c7f3e5c0b910a4db4979283
9885 Author: Kumar Gala <galak@kernel.crashing.org>
9886 Date: Mon Jul 13 09:23:59 2009 -0500
9887
9888 drivers/bios_emulator: Fix gcc 4.4 compiler warning
9889
9890 biosemu.c: In function 'BE_setVGA':
9891 biosemu.c:147: warning: dereferencing type-punned pointer will break strict-aliasing rules
9892
9893 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9894
9895 commit f97ec30bb3c5a4a456159eb2b75b3bc68772bf2a
9896 Author: Detlev Zundel <dzu@denx.de>
9897 Date: Mon Jul 13 16:01:19 2009 +0200
9898
9899 Re-add support for image type 'Standalone Program'
9900
9901 Support for this type was lost during the bootm refactoring.
9902
9903 Signed-off-by: Detlev Zundel <dzu@denx.de>
9904
9905 commit ca95c9df0280f40e8e4befadbaae21fa67d92331
9906 Author: Detlev Zundel <dzu@denx.de>
9907 Date: Mon Jul 13 16:01:18 2009 +0200
9908
9909 Add error checking for unsupported OS types.
9910
9911 Signed-off-by: Detlev Zundel <dzu@denx.de>
9912
9913 commit 982adfc610669482a32127282fe489857a92cfe3
9914 Author: Peter Tyser <ptyser@xes-inc.com>
9915 Date: Fri Jul 10 18:46:10 2009 -0500
9916
9917 ppc: Unlock cache-as-ram in a consistent manner
9918
9919 Previously, non-e500 architectures only unlocked their data cache which
9920 was used as early RAM when booting to Linux using the "bootm" command.
9921 This change causes all PPC boards with CONFIG_SYS_INIT_RAM_LOCK defined
9922 to unlock their data cache during U-Boot's initialization. This
9923 improves U-Boot performance and provides a common cache state when
9924 booting to different OSes.
9925
9926 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9927
9928 commit b201171f2b4d509f3ad510b214bee70ff902e3d6
9929 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
9930 Date: Thu Jul 23 04:54:45 2009 -0400
9931
9932 zlib: updated to v.1.2.3
9933
9934 This patch updates zlib to the latest stable version.
9935
9936 Only relevant zlib parts were ported to u-boot tree, as was done for
9937 the previously used version of zlib (0.95). New zlib gives faster
9938 inflate performance and other improvements, see www.zlib.net
9939
9940 Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
9941 Reviewed-by: Angelo Castello <angelo.castello@st.com>
9942
9943 Edited commit message
9944
9945 Signed-off-by: Wolfgang Denk <wd@denx.de>
9946
9947 commit 97cfe86163505ea18e7ff7b71e78df5bb03dad57
9948 Author: Robin Getz <rgetz@blackfin.uclinux.org>
9949 Date: Tue Jul 21 12:15:28 2009 -0400
9950
9951 Save server's MAC address in environment
9952
9953 Linux's netconsole works much better when you can pass it the MAC address of
9954 the server. (otherwise it just uses broadcast, which everyone else on my
9955 network complains about :)
9956
9957 This sets the env var "serveraddr" (to match ethaddr), so that you can pass
9958 it to linux with whatever bootargs you want to....
9959
9960 addnetconsole=set bootargs $(bootargs) netconsole=@$(ipaddr)/eth0,@$(serverip)/$(serveraddr)
9961
9962 Signed-of-by: Robin Getz <rgetz@blackfin.uclinux.org>
9963
9964 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9965
9966 commit 0b23fb368d08c9669fac647971ff249c3f9fee8f
9967 Author: Ilya Yanok <yanok@emcraft.com>
9968 Date: Tue Jul 21 19:32:21 2009 +0400
9969
9970 fec_mxc: driver for FEC ethernet controller on i.MX27
9971
9972 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
9973 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9974
9975 commit 0544c63681d2ea3607faf374e9c56f101e365b42
9976 Author: Alessio Centazzo <centazzo@gmail.com>
9977 Date: Sat Jul 11 11:56:06 2009 -0700
9978
9979 ppc4xx: Fixed compilation warning in 4xx_enet.c
9980
9981 This patch fixes a compilation warning for some Ethernet PHY-less
9982 PPC4xx platforms (440SPE based ones) and a potential compilation
9983 error for 440SP platforms (use of undefined 'ethgroup' variable).
9984 In the original code and in case of 440SPE platforms, 'ethgroup'
9985 is initialized to -1 and never modified. Later in the function,
9986 within an #ifdef statement, an 'if statement' executes code only
9987 if 'ethgroup' is set to 4, therefore it is harmless to avoid
9988 executing the 'if statement' by removing the CONFIG_440SPE from
9989 the affected #ifdefs. In case of 440SP platforms with on-board
9990 Ethernet PHY, 'ethgroup' is undefined but used (there are not such
9991 platforms in the repository yet). All other architectures are not
9992 affected by this change.
9993
9994 Signed-off-by: Alessio Centazzo acpatin@yahoo.com
9995 Acked-by: Stefan Roese <sr@denx.de>
9996 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9997
9998 commit 09133f8580f0106429ba3600f1855bd3577ae58b
9999 Author: Michael Zaidman <michael.zaidman@gmail.com>
10000 Date: Tue Jul 14 23:37:12 2009 +0300
10001
10002 DHCP regression on 2009-06
10003
10004 Fixed the DHCP/BOOTP/RARP regression introduced in u-boot-2009.06
10005 by initializing our IP addr to 0 in order to accept any IP addr
10006 assigned to us by the DHCP/BOOTP/RARP server.
10007
10008 Ack-by: Robin Getz <rgetz@blackfin.uclinux.org>
10009 Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
10010 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10011
10012 commit 443ce4ac9d1138ae5ae6863b2d40a96fd6edf523
10013 Author: Prafulla Wadaskar <prafulla@marvell.com>
10014 Date: Thu Jul 16 20:58:02 2009 +0530
10015
10016 net: phy: bugfixes: mv88E61xx multichip addressing support
10017
10018 With these fixes, this driver works properly for multi chip
10019 addressging mode
10020
10021 Bugfixes:
10022 1. Build error fixed for function mv88e61xx_busychk_multic-fixed
10023 2. PHY dev address error detection- fixed
10024 3. wrong busy bit was refered in function mv88e61xx_busychk -fixed
10025 4. invalid data read ptr was refered for RD_PHY in case of
10026 multichip addressing mode -fixed
10027
10028 The Multichip Address mode is tested with RD6281A board having
10029 MV88E6165 switch on it
10030
10031 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
10032 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10033
10034 commit 16025ea45539219f2a7c750c6f0ae983ea5c2737
10035 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
10036 Date: Wed Jul 8 13:05:11 2009 +0200
10037
10038 arm: Kirkwood: Check the error summary bit for error detection
10039
10040 The Marvell documentation for the 88f6281 states that the error coding
10041 is only valid if the error summary and last frame bits in the transmit
10042 descriptor status field are set. This patch adds checks for these for
10043 transmit (I would get transmit errors on bootp with the current check,
10044 which I believe are spurious).
10045
10046 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
10047 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10048
10049 commit 7b05f5e027b81cd3a9a41c6c6d3fe09c72fa93f6
10050 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
10051 Date: Wed Jul 8 13:03:18 2009 +0200
10052
10053 arm: Kirkwood: Fix compiler optimization bug for kwgbe_send
10054
10055 kwgbe_send/recv both have loops waiting for the hardware to set a bit.
10056 GCC 4.3.3 cleverly optimizes the send case to ... a while(1); loop. This
10057 patch uses readl to force a read from device memory. Other volatile
10058 accesses have also been replaced with readl/writel where appropriate
10059 (as per suggestions on the U-boot mailing list).
10060
10061 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
10062 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10063
10064 commit 3f6b18ffd94621625de961bc566022b0266790f5
10065 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
10066 Date: Thu Jul 2 13:21:22 2009 -0400
10067
10068 MIIPHYBB: Return 0xFFFF if the PHY is not asserting TA.
10069
10070 This patch sets the returned value to 0xFFFF if the PHY does not exist
10071 and does not assert Transfer Acknowledge. A NULL check for the value
10072 pointer is also added for buffer overflow protection.
10073
10074 Without this patch 'mii info' will show 'phantom' devices because the
10075 value will be not be initialized and return with some random value.
10076
10077 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
10078 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10079
10080 commit 736fead8fdbf8a8407048bebc373cd551d01ec98
10081 Author: Ben Warren <biggerbadderben@gmail.com>
10082 Date: Mon Jul 20 22:01:11 2009 -0700
10083
10084 Convert SMC911X Ethernet driver to CONFIG_NET_MULTI API
10085
10086 All in-tree boards that use this controller have CONFIG_NET_MULTI added
10087 Also:
10088 - changed CONFIG_DRIVER_SMC911X* to CONFIG_SMC911X*
10089 - cleaned up line lengths
10090 - modified all boards that override weak function in this driver
10091 - added
10092
10093 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10094 Tested-by: Mike Frysinger <vapier@gentoo.org>
10095
10096 commit 3bd0a877b74b9c005ae7cb892480ccedfa308c20
10097 Author: Ben Warren <biggerbadderben@gmail.com>
10098 Date: Fri Jul 17 00:50:15 2009 -0700
10099
10100 Add warning about upcoming removal of old Ethernet API
10101
10102 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10103
10104 commit b7fe25d2a8d1cede401d09e1f9c84f8fe47bdbb1
10105 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
10106 Date: Thu Jul 2 16:15:13 2009 +0530
10107
10108 P2020RDB Added support of Vitesse PHYs VSC8641(RGMII) and VSC8221(SGMII)
10109
10110 These PHYs are on P2020RDB platform.
10111
10112 Also revamped Freescale copyright message in drivers/net/tsec.c.
10113
10114 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
10115 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10116
10117 commit 1a32bf41881b5dbe3119cb77a33572b4d462cabf
10118 Author: Robin Getz <rgetz@blackfin.uclinux.org>
10119 Date: Mon Jul 20 14:53:54 2009 -0400
10120
10121 Add DNS support
10122
10123 On 04 Oct 2008 Pieter posted a dns implementation for U-Boot.
10124
10125 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg10216.html
10126 >
10127 > DNS can be enabled by setting CFG_CMD_DNS. After performing a query,
10128 > the serverip environment var is updated.
10129 >
10130 > Probably there are some cosmetic issues with the patch. Unfortunatly I
10131 > do not have the time to correct these. So if anybody else likes DNS
10132 > support in U-Boot and has the time, feel free to patch it in the main tree.
10133
10134 Here it is again - slightly modified & smaller:
10135 - update to 2009-06 (Pieter's patch was for U-Boot 1.2.0)
10136 - README.dns is added
10137 - syntax is changed (now takes a third option, the env var to store
10138 the result in)
10139 - add a random port() function in net.c
10140 - sort Makefile in ./net/Makefile
10141 - dns just returns unless a env var is given
10142 - run through checkpatch, and clean up style issues
10143 - remove packet from stack
10144 - cleaned up some comments
10145 - failure returns much faster (if server responds, don't wait for
10146 timeout)
10147 - use built in functions (memcpy) rather than byte copy.
10148
10149 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
10150 Signed-off-by: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
10151 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10152
10153 commit 88ad3fd91c83a4343b25385fd78fd8e29ebb723f
10154 Author: Kim Phillips <kim.phillips@freescale.com>
10155 Date: Fri Jul 17 12:17:00 2009 -0500
10156
10157 net: tsec - fix dereferencing type-punned pointer will break strict-aliasing rules warning
10158
10159 fix this gcc 4.4 warning:
10160
10161 tsec.c: In function 'tsec_init':
10162 tsec.c:200: warning: dereferencing type-punned pointer will break strict-aliasing rules
10163
10164 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10165 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10166
10167 commit d9bec9f42ab34383737c8a94429aa02fe76d7946
10168 Author: Mike Frysinger <vapier@gentoo.org>
10169 Date: Sat Jul 18 21:04:08 2009 -0400
10170
10171 net: rename NetRxPkt to NetRxPacket
10172
10173 The net code is mostly consistent in using 'Packet' rather than 'Pkt', so
10174 rename the minor detractor to follow suite.
10175
10176 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10177 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10178
10179 commit 88a4c2e77cd5674db745d0c2ebbad68c9baf760c
10180 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10181 Date: Thu Jun 25 16:33:04 2009 +0900
10182
10183 sh: sh_eth: Remove garbage from printf
10184
10185 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10186 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10187 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10188
10189 commit 2ea20efa47da9d98ff38223ff51dea5439ad8708
10190 Author: Andreas Pretzsch <apr@cn-eng.de>
10191 Date: Thu Jul 9 21:50:05 2009 +0200
10192
10193 smc911x: add support for LAN9221
10194
10195 Signed-off-by: Andreas Pretzsch <apr@cn-eng.de>
10196 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10197
10198 commit 7168eba729b9e6d730db7cd1028767f7b1a6128b
10199 Author: David Brownell <david-b@pacbell.net>
10200 Date: Tue Jun 9 11:14:24 2009 -0700
10201
10202 rm9200 ethernet driver: board-specific quirk (csb337)
10203
10204 CSB337 boards originally shipped with MicroMonitor, not U-Boot;
10205 and with a version using a different convention for recording
10206 Ethernet addresses than anyone else. To avoid breaking Linux
10207 when it uses U-Boot, have it use the same convention on that
10208 hardware.
10209
10210 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
10211 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10212
10213 commit 57215cd2e59fd403248df8f2f195e382900d5fc2
10214 Author: Heiko Schocher <hs@denx.de>
10215 Date: Thu Jul 16 09:58:31 2009 +0200
10216
10217 arm, kirkwood: added kw_gpio_set_valid() in gpio.h
10218
10219 Signed-off-by: Heiko Schocher <hs@denx.de>
10220
10221 commit ec16441085f471c03a8c0909579463e31e5b947a
10222 Author: Dieter Kiermaier <dk-arm-linux@gmx.de>
10223 Date: Mon Jun 29 14:45:08 2009 +0200
10224
10225 Kirkwood: add Marvell Kirkwood gpio driver
10226
10227 Signed-off-by: Dieter Kiermaier <dk-arm-linux@gmx.de>
10228 Acked-by: Prafulla Wadaskar <prafulla@marvell.com>
10229 Tested-by: Heiko Schocher <hs@denx.de>
10230
10231 commit 688b6a0ff2dcbb0c7e63ef63cbbcc291f14f321f
10232 Author: Heiko Schocher <hs@denx.de>
10233 Date: Thu Jul 16 09:59:10 2009 +0200
10234
10235 arm, kirkwood: added KW_TWSI_BASE in kirkwood.h
10236
10237 Signed-off-by: Heiko Schocher <hs@denx.de>
10238
10239 commit fbc8365ad7ab0afd4143bdbffab2fd0b24df004f
10240 Author: Prafulla Wadaskar <prafulla@marvell.com>
10241 Date: Thu Jul 16 21:02:24 2009 +0530
10242
10243 Marvell RD6281A Board support
10244
10245 This is Marvell's 88F6281_A0 based reference design board
10246
10247 This patch is tested for-
10248 1. Boot from DRAM/NAND flash/NFS
10249 2. File transfer using tftp and loadb
10250 3. NAND flash read/write/erase
10251
10252 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
10253 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10254
10255 commit 2906e6d654fcc7f2451fde225e4e8b3f20c9555f
10256 Author: Piotr Ziecik <kosmo@semihalf.com>
10257 Date: Fri Jul 17 16:35:19 2009 +0200
10258
10259 api: Fix broken build on ARM.
10260
10261 This patch fixes broken build introduced by commit
10262 84bf7ca522e94ec402a1264b01971b924b7e268f (api: remove un-needed
10263 ifdef CONFIG_API already handle by the Makefile).
10264
10265 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
10266
10267 commit 48677a1ef5f82adca49145a7baf11ece77f51945
10268 Author: Wolfgang Denk <wd@denx.de>
10269 Date: Wed Jul 22 23:53:23 2009 +0200
10270
10271 Fix "ld: cannot find -lstubs" build error
10272
10273 Commit 1bc15386 moved the examples/ to examples/standalone but failed
10274 to adapt the Makefiles that need to link against libstubs.a
10275
10276 Signed-off-by: Wolfgang Denk <wd@denx.de>
10277 Cc: Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10278
10279 commit ae71121a111ddf9dd057cacbbdd0f51054be428a
10280 Author: Wolfgang Denk <wd@denx.de>
10281 Date: Sat Jul 18 20:47:36 2009 +0200
10282
10283 at91cap9adk: fix #ifdef/#endif pairing
10284
10285 The #ifdef/#endif pairing in this file was obviously messed up.
10286
10287 Signed-off-by: Wolfgang Denk <wd@denx.de>
10288
10289 commit 6b96a20d512b04a808438553874c00cf40812c44
10290 Author: Minkyu Kang <mk7.kang@samsung.com>
10291 Date: Mon Jul 20 11:40:01 2009 +0900
10292
10293 ARM Cortex A8: Move OMAP3 specific reset handler
10294
10295 Because of the reset_cpu is soc specific, should be move to soc
10296
10297 Cc: Dirk Behme <dirk.behme@googlemail.com>
10298 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
10299
10300 commit 048e7efe91f66094f868281c12e488ce2bae8976
10301 Author: Kumar Gala <galak@kernel.crashing.org>
10302 Date: Wed Jul 22 10:12:39 2009 -0500
10303
10304 85xx/86xx: Replace in8/out8 with in_8/out_8 on FSL boards
10305
10306 The pixis code used in8/out8 all over the place. Replace it with
10307 in_8/out_8 macros.
10308
10309 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10310
10311 commit 0a6d0c6320b77bd6572393a93e6b8ccdf39c7100
10312 Author: Peter Tyser <ptyser@xes-inc.com>
10313 Date: Tue Jul 21 13:51:08 2009 -0500
10314
10315 xpedite5370: Enable NAND command support
10316
10317 Use the MPC8572's eLBC to access 1 GB (or greater) onboard NAND flash
10318 via the 'nand' command.
10319
10320 Previously, the XPedite5370's NAND chip selects were properly
10321 configured, but NAND support was not enabled.
10322
10323 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10324 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10325
10326 commit 39121c0896a6760bd436d88c17892f49a97902d0
10327 Author: Peter Tyser <ptyser@xes-inc.com>
10328 Date: Tue Jul 21 13:51:07 2009 -0500
10329
10330 xes: Increase CONFIG_SYS_BOOTM_LEN to 16MB
10331
10332 Increasing CONFIG_SYS_BOOTM_LEN from 8 MB to 16 MB is necessary to
10333 support uncompressing images larger than 8 MB when using the bootm
10334 command.
10335
10336 Note that recent Linux kernels for the 85xx and 86xx map greater than
10337 16MB of memory on bootup, but we use 16MB to maintain compatibility with
10338 older Linux kernels for now.
10339
10340 Signed-off-by: Nate Case <ncase@xes-inc.com>
10341 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10342 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10343
10344 commit 58f31b602dfd52eb7836ab82caa587514e046f02
10345 Author: Peter Tyser <ptyser@xes-inc.com>
10346 Date: Sun Jul 19 19:17:41 2009 -0500
10347
10348 xpedite5370: Fix I2C GPIO initialization typo
10349
10350 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10351 Acked-by: Heiko Schocher<hs@denx.de>
10352 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10353
10354 commit 5ff821006c6e7647d183ea95817044943bb22e7e
10355 Author: Peter Tyser <ptyser@xes-inc.com>
10356 Date: Sun Jul 19 19:17:40 2009 -0500
10357
10358 xpedite5200,5370: Use buffered NOR flash writes
10359
10360 Buffered writes are possible on the XPedite5200 and XPedite5370 and greatly
10361 improve NOR flash write speeds
10362
10363 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10364 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10365
10366 commit d9c147f371800a479a507a816b2fe572c97da197
10367 Author: Peter Tyser <ptyser@xes-inc.com>
10368 Date: Fri Jul 17 10:14:48 2009 -0500
10369
10370 85xx, 86xx: Add common board_add_ram_info()
10371
10372 Previously, 85xx and 86xx boards would display DRAM information on
10373 bootup such as:
10374
10375 ...
10376 I2C: ready
10377 DRAM:
10378 Memory controller interleaving enabled: Bank interleaving!
10379 2 GB
10380 FLASH: 256 MB
10381 ...
10382
10383 This patch moves the printing of the DRAM controller configuration to a
10384 common board_add_ram_info() function which prints out DDR type, width,
10385 CAS latency, and ECC mode. It also makes the DDR interleaving
10386 information print out in a more sane manner:
10387
10388 ...
10389 I2C: ready
10390 DRAM: 2 GB (DDR2, 64-bit, CL=4, ECC on)
10391 DDR Controller Interleaving Mode: bank
10392 FLASH: 256 MB
10393 ...
10394
10395 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10396 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10397
10398 commit 12a440ae6d09445140f1a0c2023dba76a9f1a617
10399 Author: Peter Tyser <ptyser@xes-inc.com>
10400 Date: Fri Jul 17 10:14:47 2009 -0500
10401
10402 tqm85xx: Remove board_add_ram_info()
10403
10404 This is in preparation for adding one common 8xxx board_add_ram_info()
10405 function for all 8xxx boards
10406
10407 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10408 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10409
10410 commit ed2c9488bbe389b7b25cada1e42bdae5d0976327
10411 Author: Peter Tyser <ptyser@xes-inc.com>
10412 Date: Fri Jul 17 10:14:46 2009 -0500
10413
10414 xes: Remove 8xxx board_add_ram_info() function
10415
10416 This is in preparation for adding one common 8xxx board_add_ram_info()
10417 fuction for all 8xxx boards
10418
10419 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10420 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10421
10422 commit e7ee23ec1788d8cf269a4cf6b9cd3722cbc7d592
10423 Author: Peter Tyser <ptyser@xes-inc.com>
10424 Date: Fri Jul 17 10:14:45 2009 -0500
10425
10426 86xx: Rename ccsr_ddr's sdram_mode_1, sdram_cfg_1 fields
10427
10428 Rename sdram_mode_1 to sdram_mode and sdram_cfg_1 to sdram_cfg to match
10429 the 86xx user's manual and other Freescale architectures
10430
10431 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10432 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10433
10434 commit f6155c6fbb1d85f517b7c160570f0995ef14c43f
10435 Author: Roy Zang <tie-fei.zang@freescale.com>
10436 Date: Thu Jul 9 10:05:48 2009 +0800
10437
10438 85xx: Add pci/pcie E1000 ethernet support for MPC8544DS and MPC8536 boards
10439
10440 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
10441 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10442
10443 commit 6bb5b412291177e6edd42f9a80e5c5afe57a6a0f
10444 Author: Kumar Gala <galak@kernel.crashing.org>
10445 Date: Tue Jul 14 22:42:01 2009 -0500
10446
10447 85xx: Report which "bank" of NOR flash we are booting from on FSL boards
10448
10449 The p2020DS, MPC8536DS, MPC8572DS, MPC8544DS boards are capable of
10450 swizzling the upper address bits of the NOR flash we boot out of which
10451 creates the concept of "virtual" banks. This is useful in that we can
10452 flash a test of image of u-boot and reset to one of the virtual banks
10453 while still maintaining a working image in "bank 0".
10454
10455 The PIXIS FPGA exposes registers on LBC which we can use to determine
10456 which "bank" we are booting out of (as well as setting which bank to
10457 boot out of).
10458
10459 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10460
10461 commit 9af9c6bdc16da53772c56b1a79c2c91701fe94e6
10462 Author: Kumar Gala <galak@kernel.crashing.org>
10463 Date: Wed Jul 15 13:45:00 2009 -0500
10464
10465 86xx: Report which "bank" of NOR flash we are booting from on MPC8641HPCN
10466
10467 The MPC8641HPCN board is capable of swizzling the upper address bit of
10468 the NOR flash we boot out of which creates the concept of "virtual"
10469 banks. This is useful in that we can flash a test of image of u-boot
10470 and reset to one of the virtual banks while still maintaining a
10471 working image in "bank 0".
10472
10473 The PIXIS FPGA exposes registers on LBC which we can use to determine
10474 which "bank" we are booting out of (as well as setting which bank to
10475 boot out of).
10476
10477 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10478
10479 commit caf72ff329759b4da71352ab098537c7698c0e9f
10480 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
10481 Date: Tue Jul 21 10:45:49 2009 +0200
10482
10483 Refresh LZMA-lib to v4.65
10484
10485 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
10486
10487 commit 70ebf31633f372a24505e47846b2628e8435ea37
10488 Author: Wolfgang Denk <wd@denx.de>
10489 Date: Fri Jul 17 23:35:29 2009 +0200
10490
10491 AT91: factor out ROUND() macro
10492
10493 A large number of boards (all AT91 based) duplicated the ROUND()
10494 macro in their board specific config files. Add the definition to
10495 include/common.h and clean up the board config files.
10496
10497 Signed-off-by: Wolfgang Denk <wd@denx.de>
10498
10499 commit 89188a62333c0841a7166783d2ebdd39d7044eb2
10500 Author: Kumar Gala <galak@kernel.crashing.org>
10501 Date: Wed Jul 15 08:54:50 2009 -0500
10502
10503 85xx: Bump up the BOOTMAP to 16M on FSL 85xx boards
10504
10505 We have always mapped at least 16M in the kernel and we have seen cases
10506 with new kernel features that a kernel image needs more than 8M of
10507 memory.
10508
10509 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10510
10511 commit d4abc757c26c531293f5bbc4262ade44a317eec9
10512 Author: Peter Tyser <ptyser@xes-inc.com>
10513 Date: Mon Jul 20 19:02:21 2009 -0500
10514
10515 Move api_examples to examples/api
10516
10517 Also add a rule to remove demo.bin which was previously leftover
10518 after a "make clean"
10519
10520 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10521
10522 commit af1d7d984a23a0faa1f436ebfeb55c876b1a99e1
10523 Author: Heiko Schocher <hs@denx.de>
10524 Date: Tue Jul 21 06:37:28 2009 +0200
10525
10526 83xx, kmeter: fix compile error
10527
10528 CONFIG_SYS_MALLOC_LEN is defined in the board config, and
10529 the keymile-common.h, which collects common options used
10530 by all keymile-boards. This results in a compile error
10531 when compiling the kmeter1 board. So remove this define
10532 in the board config file.
10533
10534 Signed-off-by: Heiko Schocher <hs@denx.de>
10535
10536 commit 39df00d9aecfb465b9eec9af593f9b763fb5209a
10537 Author: Heiko Schocher <hs@denx.de>
10538 Date: Thu Jul 9 12:04:26 2009 +0200
10539
10540 i2c, mpc83xx: add CONFIG_SYS_I2C_INIT_BOARD for fsl_i2c
10541
10542 This patch adds the possibility to call a board specific
10543 i2c bus reset routine for the fsl_i2c bus driver, and adds
10544 this option for the keymile kmeter1 board.
10545
10546 The deblock sequence for this board is implemented and
10547 tested in the following way:
10548
10549 CR = 0x20 (release SDA and SCL pin)
10550 CR = 0xa0 (start read)
10551 dummy read
10552 dummy read
10553 if 2. dummy read == 0x00
10554 3. dummy read
10555
10556 CR = 0x80 (SDA and SCL now 1 SR = 0x86)
10557 CR = 0x00 (Modul reset SR=0x81)
10558 CR = 0x80 (SDA and SCL = 1, SR = 0x81)
10559
10560 Signed-off-by: Heiko Schocher <hs@denx.de>
10561
10562 commit 1bc1538613d66cef3cbce680fc8d7c3561a0fbd0
10563 Author: Peter Tyser <ptyser@xes-inc.com>
10564 Date: Fri Jul 10 11:03:19 2009 -0500
10565
10566 Move examples/ to examples/standalone
10567
10568 The current files in examples are all standalone application examples,
10569 so put them in their own subdirectory for organizational purposes
10570
10571 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10572
10573 commit b220c64d86f7c705a183302c3b50076d7e5d876c
10574 Author: Peter Tyser <ptyser@xes-inc.com>
10575 Date: Fri Jul 10 11:03:15 2009 -0500
10576
10577 Move architecture specific config.mk files into subdirs
10578
10579 This cleans up U-Boot's toplevel directory a bit and makes the
10580 architecture 'config.mk' file naming and location similar to board
10581 and cpu 'config.mk' files
10582
10583 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10584
10585 commit 082becd0d546399637fa94fdf9f1730a0f7bf348
10586 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
10587 Date: Fri Jul 10 18:25:34 2009 +0800
10588
10589 Add "tags" to .gitignore file.
10590
10591 Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
10592 Signed-off-by: Wolfgang Denk <wd@denx.de>
10593
10594 commit dc71b248ef0d5e12b19f33c6efb873e31df91fa9
10595 Author: Heiko Schocher <hs@denx.de>
10596 Date: Thu Jul 9 12:04:18 2009 +0200
10597
10598 powerpc: updates for the keymile boards
10599
10600 - CONFIG_SYS_MAX_I2C_BUS changed to 1
10601 We use only one I2C hardwarecontroller on this boards, so
10602 change the CONFIG_SYS_MAX_I2C_BUS to 1.
10603 - common: dont print errormsg if second IVM Block lacks.
10604 - 82xx, mgcoge: fix double mtdpart entry in environment
10605 - 82xx, mgcoge: activate on second Flash the second bank.
10606 - common: CONFIG_ENV_SIZE 0x4000 for all keymile boards
10607 - common: Change malloc size to 1MByte for all Keymile boards
10608 We need a bigger malloc area for the environment support (128k)
10609 on some Keymile boards (kmeter1) and the upcoming UBI support.
10610 Change it to 1MB for all Keymile boards to be on the save side.
10611 Also define CONFIG_SYS_64BIT_VSPRINTF which is needed for
10612 UBI/UBIFS support.
10613 - Add UBI support to all Keymile boards
10614 - change manner of writing "/localbus/ranges" node
10615 instead of writting the complete "/localbus/ranges" node
10616 before booting Linux, only update the ranges entries
10617 which gets dynamical detected (size of flashes).
10618 This is needed, because keymile adds in the DTS
10619 "/localbus/ranges" node entries, which u-boot must
10620 not overwrite/delete.
10621 - kmeter, mgcoge: define 2 seperate regions needed for the Intel P30 chips
10622 The Intel P30 chip has 2 non-identical chips on
10623 one die, so we need to define 2 seperate regions
10624 that are scanned by physmap_of independantly.
10625 - kmeter1: Add MTD concat support to Keymile boards
10626 - 82xx, mgcoge: add "unlock=yes" to default environment
10627 - added CONFIG_MTD_DEVICE to get in sync with mainline code
10628
10629 Signed-off-by: Heiko Schocher <hs@denx.de>
10630 Signed-off-by: Stefan Roese <sr@denx.de>
10631
10632 commit f14d81050a9e0fa57aedb1bc746c60a07c1ad67f
10633 Author: galak <galak@ducky.am.freescale.net>
10634 Date: Tue Jul 7 15:53:21 2009 -0500
10635
10636 fsl_sata: Fix compiler warnings shown by gcc-4.4
10637
10638 Update fsl_sata to use common structures instead of casting
10639 back and forth between the fsl specific ones and the common ones
10640 (which are identical).
10641
10642 fsl_sata.c: In function 'scan_sata':
10643 fsl_sata.c:550: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
10644 fsl_sata.c:549: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
10645 fsl_sata.c:548: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
10646 fsl_sata.c:545: note: initialized from here
10647 fsl_sata.c:592: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
10648 fsl_sata.c:590: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
10649 fsl_sata.c:588: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
10650 fsl_sata.c:586: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
10651 fsl_sata.c:579: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
10652 ...
10653
10654 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10655
10656 commit 20938e54a207472a090f04f20f30c9e32b14137e
10657 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
10658 Date: Tue Jul 7 15:58:51 2009 +0200
10659
10660 Add unaligned.h for arm
10661
10662 This patch adds unaligned.h for ARM (needed to build with LZO
10663 compression). The file is taken from the linux kernel, but includes
10664 u-boot headers instead.
10665
10666 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
10667 Acked-by: Stefan Roese <sr@denx.de>
10668
10669 commit 433ea8abd6adfae3138dd4ce238237a037e1e537
10670 Author: Peter Tyser <ptyser@xes-inc.com>
10671 Date: Sun Jul 19 19:17:42 2009 -0500
10672
10673 Remove last remanants of unused CONFIG_I2C_CMD_TREE
10674
10675 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10676
10677 commit f6ca3b70949790ab5438d6c9a592216cc3616110
10678 Author: Andrzej Wolski <awolski@poczta.fm>
10679 Date: Fri Jul 17 22:26:54 2009 +0200
10680
10681 ubi: help message correction
10682
10683 Fix incorrect information about size units and correct typo.
10684
10685 Signed-off-by: Andrzej Wolski <awolski@poczta.fm>
10686 Signed-off-by: Stefan Roese <sr@denx.de>
10687
10688 commit 22f2017c31bc682e9b15612a5c2580ab5b84418e
10689 Author: Peter Tyser <ptyser@xes-inc.com>
10690 Date: Sun Jul 19 19:17:42 2009 -0500
10691
10692 Remove last remanants of unused CONFIG_I2C_CMD_TREE
10693
10694 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10695
10696 commit f99a292aa6083057f5db8283d2ce4a2be22b8856
10697 Author: Andrzej Wolski <awolski@poczta.fm>
10698 Date: Fri Jul 17 22:26:54 2009 +0200
10699
10700 ubi: help message correction
10701
10702 Fix incorrect information about size units and correct typo.
10703
10704 Signed-off-by: Andrzej Wolski <awolski@poczta.fm>
10705 Signed-off-by: Stefan Roese <sr@denx.de>
10706
10707 commit b86b85e2611d57d834795a92453431a1a340c3c9
10708 Author: Ilya Yanok <yanok@emcraft.com>
10709 Date: Mon Jun 29 17:53:16 2009 +0400
10710
10711 mmc: set bus width to 1 and clock to minimum early during initialization
10712
10713 We need to switch back to 1-bit before initialization or SD 2.0 cards
10714 will fail to send SCR if we've switched to 4-bit already.
10715
10716 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
10717
10718 commit cff80f2cd12bf9767509b5334ecfc90cd7de5502
10719 Author: Shinya Kuribayashi <skuribay@pobox.com>
10720 Date: Sat Jun 20 19:14:33 2009 +0900
10721
10722 config.mk: Remove unused HPATH
10723
10724 This variable is not unused anywhere.
10725
10726 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
10727
10728 commit a781de12700e2cb3d3011fc83b47f7dd8cc3c154
10729 Author: Grzegorz Bernacki <gjb@semihalf.com>
10730 Date: Wed Jun 17 16:20:14 2009 +0200
10731
10732 digsy mtc: Enable command line history.
10733
10734 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
10735
10736 commit 37566090766d61beef70c62986b90749920255d8
10737 Author: Mike Frysinger <vapier@gentoo.org>
10738 Date: Thu Jul 2 19:23:25 2009 -0400
10739
10740 compiler.h: unify system ifdef cruft here
10741
10742 Shove a lot of the HOSTCC and related #ifdef checking crap into the new
10743 compiler.h header so that we can keep all other headers nice and clean.
10744
10745 Also introduce custom uswap functions so we don't have to rely on the non
10746 standard implementations that a host may (or may not in the case of OS X)
10747 provide. This allows mkimage to finally build cleanly on an OS X system.
10748
10749 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10750
10751 commit 2a2ed845c085eb093b69fa6382fcf7534bb1f4b0
10752 Author: Kim Phillips <kim.phillips@freescale.com>
10753 Date: Mon Jun 15 11:50:40 2009 -0500
10754
10755 common: fix 'dummy' is used uninitialized in this function warning
10756
10757 fix this gcc 4.4 warning:
10758
10759 xyzModem.c: In function 'xyzModem_stream_open':
10760 xyzModem.c:564: warning: 'dummy' is used uninitialized in this function
10761
10762 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10763
10764 commit 1ea6bcd8590b3ff9fe2bfbb0eb29a3b0edaa9460
10765 Author: Mike Frysinger <vapier@gentoo.org>
10766 Date: Sun Jun 14 23:33:14 2009 -0400
10767
10768 push CROSS_COMPILE out to $(ARCH)_config.mk
10769
10770 Each arch should handle setting a proper default CROSS_COMPILE value in
10771 their own config.mk file rather than having to maintain a large ugly list
10772 in the Makefile. By using conditional assignment, we don't have to worry
10773 about the variable already being set (env/cmdline/etc...).
10774
10775 The common config.mk file takes care of exporting CROSS_COMPILE already,
10776 and while a few variables (toolchain ones) utilize CROSS_COMPILE before
10777 including the arch config.mk, they do so with deferred assignment.
10778
10779 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10780
10781 commit 60a3f404acbf8238a3138fe1f80a6bac75da4582
10782 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10783 Date: Sat Jun 13 12:55:37 2009 +0200
10784
10785 malloc.h: protect it against multiple include
10786
10787 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10788
10789 commit 7640f41988a456a0b1f05263d2e2dc5cd7d93984
10790 Author: Wolfgang Denk <wd@denx.de>
10791 Date: Sun Jul 19 19:37:24 2009 +0200
10792
10793 Fix boards broken after removal of legacy NAND and DoC support
10794
10795 Commit 2419169f removed support for legacy NAND and disk on chip but
10796 missed to update the code for a few boards. This patch fixes the
10797 resulting build issues.
10798
10799 Signed-off-by: Wolfgang Denk <wd@denx.de>
10800
10801 commit 1a4664b53aaf23687b52d64b94be06a9aa260b86
10802 Author: Wolfgang Denk <wd@denx.de>
10803 Date: Sun Jul 19 19:32:37 2009 +0200
10804
10805 cmd_flash.c: fix fix compile error for boards with DataFlash
10806
10807 Commit 5669ed45 ("cmd_flash.c: fix warning: unused variable
10808 'addr_first'/'addr_last'") changed the #ifdef logic areound the
10809 declaration of these variables and missed a combination of settings
10810 of HAS_DATAFLASH with SYS_NO_FLASH; this patch fixes this.
10811
10812 Also spotted by Alessandro Rubini <rubini@gnudd.com>
10813
10814 Signed-off-by: Wolfgang Denk <wd@denx.de>
10815
10816 commit 341245a28830d3261c41b09d958eeea7bb93587a
10817 Author: Wolfgang Denk <wd@denx.de>
10818 Date: Sun Jul 19 12:05:15 2009 +0200
10819
10820 pcm030: fix out-of-tree building
10821
10822 Commit 0a87dd90 that was supposed to fix out-of-tree building for the
10823 pcm030 board was unfortunately incomplete.
10824
10825 Signed-off-by: Wolfgang Denk <wd@denx.de>
10826
10827 commit 8bf29b59fce8cc381114929082202d800e313ad5
10828 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
10829 Date: Tue Jul 7 13:58:51 2009 +0200
10830
10831 Add unaligned.h for arm
10832
10833 This patch adds unaligned.h for ARM (needed to build with LZO
10834 compression). The file is taken from the linux kernel, but includes
10835 u-boot headers instead.
10836
10837 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
10838 Acked-by: Stefan Roese <sr@denx.de>
10839
10840 commit e405afab1dda66c9df3733f6b779d72fc36a0162
10841 Author: Kazuaki Ichinohe <kazuichi@fsi.co.jp>
10842 Date: Fri Jun 12 18:10:12 2009 +0900
10843
10844 Canyonlands SATA harddisk driver
10845
10846 This patch adds a SATA harddisk driver for the canyonlands.
10847 This patch is kernel driver's porting.
10848 This patch corresponded to not cmd_scsi but cmd_sata.
10849 This patch divided an unused member with ifndef __U_BOOT__ in the structure.
10850
10851 [environment variable, boot script]
10852 setenv bootargs root=/dev/sda7 rw
10853 setenv bootargs ${bootargs} console=ttyS0,115200
10854 ext2load sata 0:2 0x400000 /canyonlands/uImage
10855 ext2load sata 0:2 0x800000 /canyonlands/canyonlands.dtb
10856 fdt addr 0x800000 0x4000
10857 bootm 0x400000 - 0x800000
10858
10859 If you drive SATA-2 disk on Canyonlands, you must change parts from
10860 PI2PCIE212 to PI2PCIE2212 on U25. We confirmed to boot by using
10861 following disks:
10862
10863 1.Vendor: Fujitsu Type: MHW2040BS
10864 2.Vendor: Fujitsu Type: MHW2060BK
10865 3.Vendor: HAGIWARA SYS-COM:HFD25S-032GT
10866 4.Vendor: WesternDigital Type: WD3200BJKT (CONFIG_LBA48 required)
10867 5.Vendor: WesternDigital Type: WD3200BEVT (CONFIG_LBA48 required)
10868 6.Vendor: Hitachi Type: HTS543232L9A300 (CONFIG_LBA48 required)
10869 7.Vendor: Seagate Type: ST31000333AS (CONFIG_LBA48 required)
10870 8.Vendor: Transcend Type: TS32GSSD25S-M
10871 9.Vendor: MTRON Type: MSD-SATA1525-016
10872
10873 Signed-off-by: Kazuaki Ichinohe <kazuichi at fsi.co.jp>
10874
10875 commit 52a0e2dee90c17e39634de814b16b96061cfb472
10876 Author: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
10877 Date: Wed Jun 10 19:09:40 2009 +0200
10878
10879 Add support for the Tundra TSI148 VME-bridge
10880
10881 From: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
10882
10883 This patch adds support for the Tundra TSI148 VME-bridge. It's used on
10884 the upcoming esd VME8349 board.
10885
10886 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
10887 Signed-off-by: Stefan Roese <sr@denx.de>
10888
10889 commit 8d1fea2c4041e665c96944e3f6fcffbde55db34b
10890 Author: Mike Frysinger <vapier@gentoo.org>
10891 Date: Thu Jul 16 19:05:30 2009 -0400
10892
10893 Blackfin: bf537-{minotaur,srv1}: do not hardcode CONFIG_ETHADDR
10894
10895 MAC addresses should not be hardcoded in boards to avoid random link level
10896 conflicts.
10897
10898 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10899
10900 commit baf357050353aee30c04f3f4b868426cb54468ca
10901 Author: Mike Frysinger <vapier@gentoo.org>
10902 Date: Fri Jul 10 10:42:06 2009 -0400
10903
10904 Blackfin: bf533-stamp: back down SCLK a bit
10905
10906 While the 1.0 and 1.2 spin of the bf533-stamp boards can handle the higher
10907 SCLK speeds just fine, the 1.1 spin cannot due to the bugs introduced with
10908 the shortened SDRAM traces. So lower the SCLK speed down to a value that
10909 all three can handle.
10910
10911 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10912
10913 commit 490fe7349102012c48730f6fc14ef36c8d155068
10914 Author: Mike Frysinger <vapier@gentoo.org>
10915 Date: Thu Jul 9 20:56:56 2009 -0400
10916
10917 Blackfin: split cpu COBJS into multilines
10918
10919 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10920
10921 commit 909878fd3fda056d19b8b51a5cc51cb1c0b563d1
10922 Author: Mike Frysinger <vapier@gentoo.org>
10923 Date: Thu Jul 9 01:15:05 2009 -0400
10924
10925 Blackfin: add os log functions
10926
10927 Part of the mini Blackfin ABI with operating systems is that they can use
10928 0x4f0-0x4f8 to pass log buffers to/from bootloaders. So add support to
10929 U-Boot for reading the log buffer.
10930
10931 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10932
10933 commit 9993e196da707a0a1cd4584f1fcef12382c1c144
10934 Author: Kim Phillips <kim.phillips@freescale.com>
10935 Date: Sat Jul 18 18:42:13 2009 -0500
10936
10937 mpc83xx: convert all remaining boards over to 83XX_GENERIC_PCI
10938
10939 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10940
10941 commit d39041fcadb1231430201d298c31f6be03d654f7
10942 Author: Wolfgang Denk <wd@denx.de>
10943 Date: Sun Jul 19 01:15:52 2009 +0200
10944
10945 PATI board: fix compiler warnings
10946
10947 Fix these:
10948 pati.c: In function 'checkboard':
10949 pati.c:358: warning: pointer targets in passing argument 2 of 'getenv_r' differ in signedness
10950 ../common/flash.c: In function 'write_word':
10951 ../common/flash.c:824: warning: dereferencing type-punned pointer will break strict-aliasing rules
10952 cmd_pati.c: In function 'do_pati':
10953 cmd_pati.c:279: warning: 'value' may be used uninitialized in this function
10954
10955 Signed-off-by: Wolfgang Denk <wd@denx.de>
10956
10957 commit 28c345042eafc550a34b9f52431bd4a22af6ac25
10958 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10959 Date: Sat May 16 12:14:56 2009 +0200
10960
10961 mpl: printing current stdio devices cleanup
10962
10963 Currently the mpl boards duplicate the code to print the current
10964 devices from common/console.c; use stdio_print_current_devices()
10965 instead
10966
10967 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10968
10969 Edited commit message.
10970
10971 Signed-off-by: Wolfgang Denk <wd@denx.de>
10972
10973 commit 7e3be7cf3bb344f717b6ec3d47a081269ea67ead
10974 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10975 Date: Sat May 16 12:14:55 2009 +0200
10976
10977 console: unify printing current devices
10978
10979 Create stdio_print_current_devices() for this purpose
10980
10981 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10982
10983 commit 5669ed4557edf2714203aa8625c9fcd5a753b338
10984 Author: Wolfgang Denk <wd@denx.de>
10985 Date: Sat Jul 18 23:18:14 2009 +0200
10986
10987 cmd_flash.c: fix warning: unused variable 'addr_first'/'addr_last'
10988
10989 Signed-off-by: Wolfgang Denk <wd@denx.de>
10990
10991 commit 6bb6e6c75ec4ef496f00f7f530e549d3e073c5de
10992 Author: Tom Rix <Tom.Rix@windriver.com>
10993 Date: Tue Jun 30 15:04:13 2009 -0500
10994
10995 OMAP3 Fix compiler warning for v7_flush_dcache_all
10996
10997 On build of omap3 targets in MAKEALL, the *.ERR files have
10998
10999 cpu.c: In function 'cleanup_before_linux':
11000 cpu.c:64: warning: implicit declaration of function 'v7_flush_dcache_all'
11001 cpu.c:64: warning: implicit declaration of function 'get_device_type
11002
11003 The functions v7_flush_dcache_all and get_device_type are declared
11004 in include/asm-arm/arch-omap3/sys_proto.h, so use this file to
11005 declare the functions.
11006
11007 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
11008
11009 commit dba107b967332fc8a35867f4d58038626c968800
11010 Author: Wolfgang Denk <wd@denx.de>
11011 Date: Sat Jul 18 22:09:38 2009 +0200
11012
11013 ARM: make split_by_variant.sh output more useful
11014
11015 The board/armltd/integrator/split_by_variant.sh script used to print
11016 "Configuring for integrator*p board..." no matter which board name
11017 was being compiled. This made it difficult to match MAKEALL output to
11018 board names. This patch fixes this.
11019
11020 Signed-off-by: Wolfgang Denk <wd@denx.de>
11021
11022 commit 2eb99ca8029b44c988d5f6312f97e68d3b9cb2bd
11023 Author: Wolfgang Denk <wd@denx.de>
11024 Date: Sat Jul 18 21:52:24 2009 +0200
11025
11026 NAND: Part 2: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF...
11027
11028 Commit 8d2effea added a warning for configurations that use NAND
11029 without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but
11030 failed to fix the affected boards.
11031
11032 This patch covers the non-PPC boards that were missed in the previous
11033 patch (commit 170c1972).
11034
11035 Signed-off-by: Wolfgang Denk <wd@denx.de>
11036
11037 commit 7024aa14df2981b4e65c6189909da9aadb1c22da
11038 Author: Wolfgang Denk <wd@denx.de>
11039 Date: Sat Jul 18 20:46:38 2009 +0200
11040
11041 at91cap9adk: fix #ifdef/#endif pairing
11042
11043 The #ifdef/#endif pairing in this file was obviously messed up.
11044
11045 Signed-off-by: Wolfgang Denk <wd@denx.de>
11046
11047 commit 4abc5bffea244589fa1097e4c899a63efc609c8e
11048 Author: Prafulla Wadaskar <prafulla@marvell.com>
11049 Date: Thu Jul 16 20:58:01 2009 +0530
11050
11051 Marvell MV88F6281GTW_GE Board support
11052
11053 This is Marvell's 88F6281_A0 based custom board developed
11054 for wireless access point product
11055
11056 This patch is tested for-
11057 1. Boot from DRAM/SPI flash/NFS
11058 2. File transfer using tftp and loadb
11059 3. SPI flash read/write/erase
11060 4. Booting Linux kernel and RFS from SPI flash
11061 5. Boot from USB supported
11062
11063 Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
11064 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11065
11066 commit 55dd4ba5413b14e8ee24058c89ac5c05376c331c
11067 Author: Prafulla Wadaskar <prafulla@marvell.com>
11068 Date: Thu Jul 16 20:58:00 2009 +0530
11069
11070 Marvell Sheevaplug Board support
11071
11072 Reference:
11073 http://plugcomputer.org/
11074 http://openplug.org/plugwiki/index.php/Das_U-boot_plug_support
11075
11076 This patch is tested for-
11077 1. Boot from DRAM/NAND flash
11078 2. File transfer using tftp
11079 3. NAND flash read/write/erase
11080 4. Linux kernel and RFS Boot from NAND
11081 5. Enabled USB PHY init for kernel need
11082 6. Boot from USB supported
11083
11084 Note: to boot Kirkwood kernel with USB support,
11085 you should add "usb start" in the boot sequence
11086
11087 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11088
11089 commit 0a87dd90a75d034301496285026fbd8106c7c6d5
11090 Author: Wolfgang Denk <wd@denx.de>
11091 Date: Sat Jul 18 18:00:25 2009 +0200
11092
11093 pcm030: fix out-of-tree building
11094
11095 Commit c9969947, which added support for the pcm030 board
11096 (aka phyCORE-MPC5200B-tiny), broke out-of-tree building.
11097
11098 Signed-off-by: Wolfgang Denk <wd@denx.de>
11099
11100 commit 9ff59601c71e800b9d0dfde22fa70d12c71c12b4
11101 Author: Wolfgang Denk <wd@denx.de>
11102 Date: Sat Jul 18 16:36:11 2009 +0200
11103
11104 MPC837XERDB: fix warning: "CONFIG_SYS_MONITOR_LEN" redefined
11105
11106 Signed-off-by: Wolfgang Denk <wd@denx.de>
11107
11108 commit 2b5243fc24a724e83409c0b70caa1a3180e997ae
11109 Author: Wolfgang Denk <wd@denx.de>
11110 Date: Sat Jul 18 16:13:18 2009 +0200
11111
11112 8xxx: fix warning: implicit declaration of function 'uec_standard_init'
11113
11114 Commit 8e55258f created function uec_standard_init() to initialize
11115 all UEC interfaces for 83xx and 85xx but failed to provide a
11116 prototype for it.
11117
11118 Signed-off-by: Wolfgang Denk <wd@denx.de>
11119
11120 commit 5b54df2674fdad5e7d316484c67efc68e79f3f0d
11121 Author: Wolfgang Denk <wd@denx.de>
11122 Date: Sat Jul 18 15:46:02 2009 +0200
11123
11124 MIP405T: fix compile problem
11125
11126 The "stdio/device: rework function naming convention" patch
11127 (commit 52cb4d4f) broke the MIP405T board; this patch fixes it.
11128
11129 Signed-off-by: Wolfgang Denk <wd@denx.de>
11130
11131 commit 170c19725ecd3a0e2e517dfd49979ca8822edec0
11132 Author: Wolfgang Denk <wd@denx.de>
11133 Date: Sat Jul 18 15:32:10 2009 +0200
11134
11135 NAND: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF...
11136
11137 Commit 8d2effea added a warning for configurations that use NAND
11138 without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but
11139 failed to fix the affected boards.
11140
11141 Signed-off-by: Wolfgang Denk <wd@denx.de>
11142
11143 commit 6e897a661fb9968ce354165a12cce82e4b889e04
11144 Author: Wolfgang Denk <wd@denx.de>
11145 Date: Sat Jul 18 15:05:44 2009 +0200
11146
11147 CPCI750: fix compile problem
11148
11149 Commit bc0d3296 removed ppc_error_no.h from Marvell boards
11150 but forgot to update board/esd/cpci750/mv_eth.h
11151
11152 Signed-off-by: Wolfgang Denk <wd@denx.de>
11153
11154 commit 6aee3048348f1b19ab89156da98bfa4f7babf24b
11155 Author: Alessandro Rubini <rubini-list@gnudd.com>
11156 Date: Fri Jul 17 14:42:11 2009 +0200
11157
11158 cmd_i2c: bugfix: add missing brace
11159
11160 The sub-command parser missed a brace, so "return 0;" is always
11161 taken and no error message is diplayed if you say "i2c scan"
11162 instead of "i2c probe", for example.
11163
11164 Proper brace is added. Also, a misleading and unneeded else
11165 is removed.
11166
11167 Signed-off-by: Alessandro Rubini <rubini@gnudd.com.it>
11168
11169 commit 52cb4d4fb3487313f5a72ea740f527a4aefaa365
11170 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11171 Date: Sat May 16 12:14:54 2009 +0200
11172
11173 stdio/device: rework function naming convention
11174
11175 So far the console API uses the following naming convention:
11176
11177 ======Extract======
11178 typedef struct device_t;
11179
11180 int device_register (device_t * dev);
11181 int devices_init (void);
11182 int device_deregister(char *devname);
11183 struct list_head* device_get_list(void);
11184 device_t* device_get_by_name(char* name);
11185 device_t* device_clone(device_t *dev);
11186 =======
11187
11188 which is too generic and confusing.
11189
11190 Instead of using device_XX and device_t we change this
11191 into stdio_XX and stdio_dev
11192
11193 This will also allow to add later a generic device mechanism in order
11194 to have support for multiple devices and driver instances.
11195
11196 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11197
11198 Edited commit message.
11199
11200 Signed-off-by: Wolfgang Denk <wd@denx.de>
11201
11202 commit f732a7598fa36d48241df20b1a1f4cdbf09f75ee
11203 Author: Peter Tyser <ptyser@xes-inc.com>
11204 Date: Wed Jul 15 00:01:08 2009 -0500
11205
11206 ppc: Fix compile error for boards with CONFIG_DDR_ECC
11207
11208 A bug was introduced by commit e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae
11209 which affected non-MPC83xx/85xx/86xx ppc boards which had CONFIG_DDR_ECC
11210 defined and resulted in errors such as:
11211
11212 Configuring for canyonlands board...
11213 fsl_dma.c:50:2: error: #error "Freescale DMA engine not supported on your
11214 processor"
11215 make[1]: *** No rule to make target `.depend', needed by `libdma.a'. Stop.
11216
11217 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11218
11219 commit 18e067de9b6ed087fa60496e64887f0b7458dbaa
11220 Author: Prafulla Wadaskar <prafulla@marvell.com>
11221 Date: Thu Jul 16 20:57:59 2009 +0530
11222
11223 include/config_cmd_default.h cleanup
11224
11225 arranged configurations in alphabetical order
11226 CONFIG_CMD_FLASH moved under ifndef CONFIG_SYS_NO_FLASH
11227
11228 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11229
11230 commit 569460ebf14b87bd8fdb2352bde95d35ee96e13b
11231 Author: Mike Frysinger <vapier@gentoo.org>
11232 Date: Sun Jun 14 21:35:22 2009 -0400
11233
11234 sata: namespace curr_device variable
11235
11236 The curr_device variable really should be namespaced with a "sata_" prefix
11237 since it is only used by the sata code. It also avoids random conflicts
11238 with other pieces of code (like cmd_mmc):
11239 common/libcommon.a(cmd_sata.o):(.data.curr_device+0x0):
11240 multiple definition of `curr_device'
11241 common/libcommon.a(cmd_mmc.o):(.data.curr_device+0x0): first defined here
11242
11243 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11244
11245 commit 02e22c2de1ce2312f2636fa473a60c8d8f18d8aa
11246 Author: Mike Frysinger <vapier@gentoo.org>
11247 Date: Sun Jun 14 21:35:21 2009 -0400
11248
11249 cmd_mmc: make curr_device static
11250
11251 The curr_device variable isn't used outside of cmd_mmc, so mark it static
11252 to avoid conflicts with other pieces of code (like sata which also exports
11253 a curr_device). Otherwise we end up with stuff like:
11254 common/libcommon.a(cmd_sata.o):(.data.curr_device+0x0):
11255 multiple definition of `curr_device'
11256 common/libcommon.a(cmd_mmc.o):(.data.curr_device+0x0): first defined here
11257
11258 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11259
11260 commit 2d8d2adde3fce1152e4ad9f47238f07e70793c53
11261 Author: Mike Frysinger <vapier@gentoo.org>
11262 Date: Sun Jun 14 21:35:16 2009 -0400
11263
11264 envcrc: add missing dependencies on env storage
11265
11266 When the envcrc building was made conditional, it missed a bunch of env
11267 storage types, so add all currently supported types.
11268
11269 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11270
11271 commit 2419169f5749d7af501b3b77a5336d1d535320de
11272 Author: Scott Wood <scottwood@freescale.com>
11273 Date: Thu Jul 16 19:08:04 2009 -0500
11274
11275 Remove legacy NAND and disk on chip references from boards.
11276
11277 Signed-off-by: Scott Wood <scottwood@freescale.com>
11278
11279 commit 12e9043c7ed961b60df865f45d9a3c74d6a38199
11280 Author: Shinya Kuribayashi <skuribay@pobox.com>
11281 Date: Sat Jun 20 19:10:14 2009 +0900
11282
11283 config.mk: Remove $(PCI_CLOCK) reference
11284
11285 The following commit introduced $(PCI_CLOCK) reference so that
11286 we could tweak `PCI_66M' definition via an environment variable.
11287
11288 > commit f046ccd15c8bc9613bfd72916b761a127d36e5c6
11289 > Author: Eran Liberty <liberty@freescale.com>
11290 > Date: Thu Jul 28 10:08:46 2005 -0500
11291 >
11292 > * Patch by Eran Liberty
11293 > Add support for the Freescale MPC8349ADS board.
11294
11295 But I suggest a removal of it for the following reasons:
11296
11297 * In 2006, MPC8349ADS was merged into MPC8349EMDS port,
11298 and it seems that MPC8349EMDS port is PCI_66M free.
11299
11300 * OTOH, PCI_66M is used by MPC832XEMDS an MPC8360EMDS ports,
11301 but they don't need $(PCI_CLOCK) environment variable at all.
11302 PCI_66M is automatically configured via $(BOARD)_config names
11303 with the help of $(findstring _66_,$@).
11304
11305 * Unfortunately $(PCI_CLOCK) has been undocumented anywhere,
11306 so only a few people know the existence of it these days.
11307
11308 * Keep config.mk independent from $(BOARD) as much as possible.
11309
11310 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
11311 Acked-by: Kim Phillips <kim.phillips@freescale.com>
11312
11313 commit 3db75d9c11d37cc1d28bebd91b19f4e548b68155
11314 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11315 Date: Sat May 23 21:42:36 2009 +0200
11316
11317 fix: missing autoconfig.mk from general Makefile
11318
11319 At the first run of make we generate the autoconf.mk and
11320 autoconf.mk.dep if not already the case and we currently include only
11321 to .dep
11322
11323 In order to use these autogenerated values we need to include it also
11324 even if it's included in config.mk but it's done before their
11325 generation
11326
11327 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11328 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11329
11330 commit 1ca298ced07327749b54321815f76fcddb2f9479
11331 Author: Matthias Weisser <matthias.weisser@graf-syteco.de>
11332 Date: Thu Jul 9 16:07:30 2009 +0200
11333
11334 Added support for splash screen positioning
11335
11336 This patch adds support splash image positioning by adding an
11337 additional variable "splashpos" to the environment. Please see
11338 README for details.
11339
11340 Signed-off-by: Matthias Weisser <matthias.weisser@graf-syteco.de>
11341 Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
11342 Signed-off-by: Anatolij Gustschin <agust@denx.de>
11343
11344 commit 9d173e0233493113c9b1aa81bd2208d0057ab9db
11345 Author: Anatolij Gustschin <agust@denx.de>
11346 Date: Tue Jul 7 13:11:36 2009 +0200
11347
11348 video: mb862xx: replace printf with puts
11349
11350 Signed-off-by: Anatolij Gustschin <agust@denx.de>
11351
11352 commit cce99b2a7dd80683d61360aee56a6ece344950b2
11353 Author: Anatolij Gustschin <agust@denx.de>
11354 Date: Tue Jul 7 13:27:07 2009 +0200
11355
11356 video: mb862xx: use macros instead of magic numbers
11357
11358 Signed-off-by: Anatolij Gustschin <agust@denx.de>
11359
11360 commit e86528671ece6d5c1162656a37fc68a8e0bf67f8
11361 Author: Anatolij Gustschin <agust@denx.de>
11362 Date: Tue Jul 7 13:24:08 2009 +0200
11363
11364 video: mb862xx: fix coding style and remove dead code
11365
11366 Signed-off-by: Anatolij Gustschin <agust@denx.de>
11367
11368 commit 292ed489dba8cc97b458579003a8001cd4703cd8
11369 Author: Michal Simek <monstr@monstr.eu>
11370 Date: Tue Jun 30 12:03:50 2009 +0200
11371
11372 microblaze: Remove ignored return type for __arch__swab16 function
11373
11374 This change remove compilation warnings.
11375
11376 Signed-off-by: Michal Simek <monstr@monstr.eu>
11377
11378 commit e2776587c0eac131954ae100fda89cc3e7ed8b57
11379 Author: Michal Simek <monstr@monstr.eu>
11380 Date: Tue Jun 30 12:02:45 2009 +0200
11381
11382 microblaze: Removed unused variables
11383
11384 Signed-off-by: Michal Simek <monstr@monstr.eu>
11385
11386 commit be33b046b549ad88c204c209508cd7657232ffbd
11387 Author: Scott Wood <scottwood@freescale.com>
11388 Date: Wed Apr 1 15:02:13 2009 -0500
11389
11390 Remove legacy NAND and disk on chip code.
11391
11392 Legacy NAND had been scheduled for removal. Any boards that use this
11393 were already not building in the previous release due to an #error.
11394
11395 The disk on chip code in common/cmd_doc.c relies on legacy NAND,
11396 and it has also been removed. There is newer disk on chip code
11397 in drivers/mtd/nand; someone with access to hardware and sufficient
11398 time and motivation can try to get that working, but for now disk
11399 on chip is not supported.
11400
11401 Signed-off-by: Scott Wood <scottwood@freescale.com>
11402
11403 commit fbdaafaee71e2c7f2c31b3582ab6d8679efee8d3
11404 Author: Stefan Roese <sr@denx.de>
11405 Date: Thu Jun 4 16:40:36 2009 +0200
11406
11407 nand: Change NAND_MAX_OOBSIZE to 218 as needed for some 4k page devices
11408
11409 This is needed for the MPC512x NAND driver (fsl_nfc_nand.c) which already
11410 defines such a 4k plus 218 bytes ECC layout.
11411
11412 Signed-off-by: Stefan Roese <sr@denx.de>
11413 Cc: Scott Wood <scottwood@freescale.com>
11414 Signed-off-by: Scott Wood <scottwood@freescale.com>
11415
11416 commit f2f376ab956c17d4a0c42a993133ca25cdc87278
11417 Author: Stefan Roese <sr@denx.de>
11418 Date: Thu Jul 16 15:13:04 2009 +0200
11419
11420 nand: ndfc: Remove unnecessary #ifdef's
11421
11422 Now that the 4xx NAND driver ndfc is moved to the common NAND driver
11423 directory we don't need this #ifdef's anymore.
11424
11425 Signed-off-by: Stefan Roese <sr@denx.de>
11426 Cc: Scott Wood <scottwood@freescale.com>
11427 Signed-off-by: Scott Wood <scottwood@freescale.com>
11428
11429 commit 12582ac771b0bf3852817c3bfa4be326522a0665
11430 Author: Stefan Roese <sr@denx.de>
11431 Date: Thu Jul 16 15:12:48 2009 +0200
11432
11433 nand/ppc4xx: Move PPC4xx NAND driver to common NAND driver directory
11434
11435 Signed-off-by: Stefan Roese <sr@denx.de>
11436 Cc: Scott Wood <scottwood@freescale.com>
11437 Signed-off-by: Scott Wood <scottwood@freescale.com>
11438
11439 commit 3ebf70db5452d3d47c316ddef09f40e76553bcba
11440 Author: Valeriy Glushkov <gvv@lstec.com>
11441 Date: Tue Jul 14 13:51:10 2009 +0300
11442
11443 nand: fixed failed reads on corrected ECC errors in nand_util.c
11444
11445 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
11446 Signed-off-by: Paulraj, Sandeep <s-paulraj@ti.com>
11447 Signed-off-by: Scott Wood <scottwood@freescale.com>
11448
11449 commit ed727d394c5ab139033719772dc95dc25cfa14f7
11450 Author: David Brownell <david-b@pacbell.net>
11451 Date: Mon Jul 13 16:29:04 2009 -0700
11452
11453 Typo fix: use CONFIG_SOC_DM644X, not CONFIG_SOC_DM646.
11454
11455 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
11456 Signed-off-by: Scott Wood <scottwood@freescale.com>
11457
11458 commit 937076f84c5064f0a79105fce352ac7cf7b33643
11459 Author: Kyungmin Park <kmpark@infradead.org>
11460 Date: Sat Jul 11 16:49:55 2009 +0900
11461
11462 MTD: OneNAND: Increase the environment size to 4KiB
11463
11464 Also use mtd operation instead of onenand functions
11465
11466 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
11467 Signed-off-by: Scott Wood <scottwood@freescale.com>
11468
11469 commit bfadb17f69c256196620c32164775f063a59c34f
11470 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
11471 Date: Wed Jun 10 00:25:38 2009 +0400
11472
11473 mpc83xx: MPC837xEMDS: Use hwconfig instead of pci_external_arbiter variable
11474
11475 Since we have simple hwconfig interface now, we don't need
11476 pci_external_arbiter variable any longer.
11477
11478 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
11479 Acked-by: Kim Phillips <kim.phillips@freescale.com>
11480
11481 commit b8b71ffbc35fde6905e65ffdbf4e4b87efc26b7e
11482 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
11483 Date: Wed Jun 10 00:25:36 2009 +0400
11484
11485 mpc83xx: MPC8315ERDB: Use hwconfig for board type selection
11486
11487 This patch simply converts the board to the hwconfig infrastructure.
11488
11489 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
11490 Acked-by: Kim Phillips <kim.phillips@freescale.com>
11491
11492 commit c78c678354c8321737aa07e86831ff14176f4ed5
11493 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
11494 Date: Wed Jun 10 00:25:31 2009 +0400
11495
11496 mpc83xx: MPC837XEMDS: Fixup eSDHC nodes in device tree
11497
11498 fdt_fixup_esdhc() will either disable or enable eSDHC nodes, and
11499 also will fixup clock-frequency property.
11500
11501 Plus, since DR USB and eSDHC are mutually exclusive, we should
11502 only configure the eSDHC if asked through hwconfig.
11503
11504 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
11505 Acked-by: Kim Phillips <kim.phillips@freescale.com>
11506
11507 commit c9646ed758804fa1fa6c1425369a4eee5d618b1d
11508 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
11509 Date: Wed Jun 10 00:25:30 2009 +0400
11510
11511 mpc83xx: MPC837XERDB: Add support for FSL eSDHC
11512
11513 This patch adds support for eSDHC on MPC837XERDB boards. The WP
11514 switch doesn't seem to work on RDB boards though, the WP pin is
11515 always asserted (can see the pin state when it's in GPIO mode).
11516
11517 FSL DR USB and FSL eSDHC are mutually exclusive because of pins
11518 multiplexing, so user should specify 'esdhc' or 'dr_usb' options
11519 in the hwconfig environment variable to choose between the
11520 devices.
11521
11522 p.s.
11523 Now we're very close to a monitor len limit (196 bytes left using
11524 gcc-4.2.0), so also increase the monitor len by one sector (64 KB).
11525
11526 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
11527 Acked-by: Kim Phillips <kim.phillips@freescale.com>
11528
11529 commit b33433a63fe08c9e723ea15a7c7c7143bf527c6d
11530 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
11531 Date: Wed Jun 10 00:25:29 2009 +0400
11532
11533 fsl_esdhc: Add device tree fixups
11534
11535 This patch implements fdt_fixup_esdhc() function that is used to fixup
11536 the device tree.
11537
11538 The function adds status = "disabled" propery if esdhc pins muxed away,
11539 otherwise it fixups clock-frequency for esdhc nodes.
11540
11541 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
11542 Acked-by: Kim Phillips <kim.phillips@freescale.com>
11543
11544 commit 93f9dcf9e8b8182e97aeb7965c687176cbd0b933
11545 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
11546 Date: Wed Jun 10 00:25:27 2009 +0400
11547
11548 Add simple hwconfig infrastructure
11549
11550 This patch implements simple hwconfig infrastructure: an
11551 interface for software knobs to control a hardware.
11552
11553 This is very simple implementation, i.e. it is implemented
11554 via `hwconfig' environment variable. Later we could write
11555 some "hwconfig <enable|disable|list>" commands, ncurses
11556 interface for Award BIOS-like interface, and frame-buffer
11557 interface for AMI GUI[1] BIOS-like interface with mouse
11558 support[2].
11559
11560 Current implementation details/limitations:
11561
11562 1. Doesn't support options dependencies and mutual exclusion.
11563 We can implement this by integrating apt-get[3] into the
11564 u-boot. But I didn't bother yet.
11565
11566 2. Since we don't implement hwconfig command, i.e. we're working
11567 with the environement directly, there is no way to tell that
11568 toggling a particular option will need a reboot to take
11569 an effect. So, for now it's advised to always reboot the
11570 target after modifying hwconfig variable.
11571
11572 3. We support hwconfig options with arguments. For example,
11573
11574 set hwconfig dr_usb:mode=peripheral,phy_type=ulpi
11575
11576 That means:
11577 - dr_usb - enable Dual-Role USB controller;
11578 - dr_usb:mode=peripheral - USB in Function mode;
11579 - dr_usb:phy_type=ulpi - USB should work with ULPI PHYs;
11580
11581 The purpose of this simple implementation is to define some
11582 internal API and then we can continue improving user experience
11583 by adding more mature interface, like hwconfig command with
11584 bells and whistles. Or not adding, if we feel that current
11585 interface fits its needs.
11586
11587 [1] http://en.wikipedia.org/wiki/American_Megatrends
11588 [2] Regarding ncurses and GUI with mouse support -- I'm just
11589 kidding.
11590 [3] The comment regarding apt-get is also a joke, meaning that
11591 dependency tracking could be non-trivial. For example, for
11592 enabling HW feature X we may need to disable Y, and turn Z
11593 into reduced mode (like RMII-only interface for ethernet,
11594 no MII).
11595
11596 It's quite trivial to implement simple cases though.
11597
11598 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
11599 Acked-by: Kim Phillips <kim.phillips@freescale.com>
11600
11601 commit 6c3fef28b9fff0d7f3fa4c51c3ee0ae8c2a3b043
11602 Author: Jerry Van Baren <gvb.uboot@gmail.com>
11603 Date: Wed Jul 15 20:42:59 2009 -0400
11604
11605 Improve U-Boot Porting Guide in the README
11606
11607 Update for...
11608 * BDI2000 -> BDI3000 (BDI2000 is obsolete).
11609 * Add a line to read the doc/README.* files
11610 * Fix coding standard violations
11611
11612 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
11613
11614 commit 9578718c1b085cac73017d834001bc5cb0b2f73f
11615 Author: Kim Phillips <kim.phillips@freescale.com>
11616 Date: Tue Jul 14 16:00:24 2009 -0500
11617
11618 mtd: cfi - if defined, use MAX_FLASH_BANKS_DETECT for static declarations
11619
11620 a.k.a cfi_mtd.c does as cfi_flash.c does. This also prevents
11621 the TQM834x build from doing a:
11622
11623 cfi_mtd.c:36: error: variably modified 'cfi_mtd_info' at file scope
11624 cfi_mtd.c:37: error: variably modified 'cfi_mtd_names' at file scope
11625
11626 using gcc 4.4.
11627
11628 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11629 Signed-off-by: Stefan Roese <sr@denx.de>
11630
11631 commit 4a9932a4364b548773bc131bf85e24a2ec15f2b0
11632 Author: Kim Phillips <kim.phillips@freescale.com>
11633 Date: Tue Jul 7 18:04:21 2009 -0500
11634
11635 mpc83xx: increase MONITOR_LEN to offset growing pains
11636
11637 Saving the environment leads to overwriting u-boot itself,
11638 bricking boards. Increase u-boot's image size so the environment
11639 base address doesn't end up overlapping u-boot text.
11640
11641 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11642
11643 commit c31e13260bcd048a94412a47b004386ea6112acf
11644 Author: Valeriy Glushkov <gvv@lstec.com>
11645 Date: Tue Jun 30 15:48:41 2009 +0300
11646
11647 usb: mpx8349itx: added support of loading images from USB storage (MPH/DR)
11648
11649 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
11650 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11651
11652 commit d89e1c36891de793a20a929282acc0fc7b98feac
11653 Author: Valeriy Glushkov <gvv@lstec.com>
11654 Date: Tue Jun 30 15:48:40 2009 +0300
11655
11656 usb: mpc834x: added support of the MPH USB controller in addition to the DR one
11657
11658 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
11659 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11660
11661 commit d9ac3d5a17ecef0beb70073018925e011b11684e
11662 Author: Kim Phillips <kim.phillips@freescale.com>
11663 Date: Mon Jun 15 11:51:47 2009 -0500
11664
11665 mpc83xx: set 64BIT_VSPRINTF for boards using nand_util
11666
11667 When enabling NAND support for a board, one must also define
11668 CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c
11669 for correct output.
11670
11671 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11672 Cc: Dave Liu <daveliu@freescale.com>
11673 Cc: Ron Madrid <ron_madrid@sbcglobal.net>
11674 Cc: Anton Vorontsov <avorontsov@ru.mvista.com>
11675
11676 commit 052c08916532d1d9c2f69eb9229709c7b2fc1f02
11677 Author: TsiChung Liew <tsicliew@gmail.com>
11678 Date: Wed Jul 8 07:41:24 2009 +0000
11679
11680 ColdFire: Update bootargs
11681
11682 Add a bootargs for M53017EVB and update bootargs
11683 for M54451EVB
11684
11685 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
11686
11687 commit 6e8d58d36691520f8da74cd948661d28d5a5dc66
11688 Author: TsiChung Liew <tsicliew@gmail.com>
11689 Date: Tue Jun 30 14:30:19 2009 +0000
11690
11691 Command for accessing serial flash update
11692
11693 Change strtoul number base of argv 3 from 0 to 16
11694
11695 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
11696
11697 commit ee0a8462466dd284968536eb57c6eef4be0d6aad
11698 Author: TsiChung Liew <tsicliew@gmail.com>
11699 Date: Tue Jun 30 14:18:29 2009 +0000
11700
11701 ColdFire: Add DSPI support for MCF5227x and MCF5445x
11702
11703 Remove individual CPU specific DSPI driver.
11704 Add required feature for the common DSPI driver in cpu_init and
11705 in platform configuration file.
11706
11707 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
11708
11709 commit dec61c7851baa72151ef1d3657e7bb3b68907d48
11710 Author: TsiChung Liew <tsicliew@gmail.com>
11711 Date: Tue Jun 30 14:09:47 2009 +0000
11712
11713 Coldfire: Consolidate DSPI driver
11714
11715 Unify both MCF5227x and MCF5445x DSPI driver in CPU to
11716 driver/spi folder for common use.
11717
11718 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
11719
11720 commit 11d88b26a68bd4bf98b1c962fde6257a50978231
11721 Author: TsiChung Liew <tsicliew@gmail.com>
11722 Date: Fri Jun 12 13:03:34 2009 +0000
11723
11724 ColdFire: Remove compiler warning messages
11725
11726 Remove unused variables and printf type mismatch in
11727 lib_m68k/board.c
11728
11729 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
11730
11731 commit 4567c7bff2503fb1a7c738ff9b9f0bd00d274d9a
11732 Author: TsiChung Liew <tsicliew@gmail.com>
11733 Date: Fri Jun 12 11:31:31 2009 +0000
11734
11735 ColdFire: Fix M53017EVB flash size
11736
11737 Increase the flash size from 8MB to 16MB
11738
11739 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
11740
11741 commit bf9a521529e484b15e8fdb583a607cf7945d2f6b
11742 Author: TsiChung Liew <tsicliew@gmail.com>
11743 Date: Fri Jun 12 11:29:00 2009 +0000
11744
11745 ColdFire: Add M5208EVB and MCF520x CPU support
11746
11747 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
11748
11749 commit 709b384b6493d9726dce20663ebe31bf7cab2925
11750 Author: TsiChung Liew <tsicliew@gmail.com>
11751 Date: Thu Jun 11 15:39:57 2009 +0000
11752
11753 ColdFire: Update for M54451EVB
11754
11755 Update serial boot DRAM's Internal RAM, vector table and DRAM in
11756 start.S, serial flash's read status command over SPI and NOR
11757 flash.
11758
11759 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
11760
11761 commit bbf6bbffcaf694c03504c661e58fbd1aefe5bf64
11762 Author: TsiChung Liew <tsicliew@gmail.com>
11763 Date: Thu Jun 11 12:50:05 2009 +0000
11764
11765 ColdFire: Update configuration file to use flash buffer write
11766
11767 Update M52277EVB, M53017EVB and M54455EVB platform configuration
11768 file to use flash buffer write
11769
11770 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
11771
11772 commit 7d4450a9773673052fcd7fdf0a4a88c089126ac1
11773 Author: Wolfgang Denk <wd@denx.de>
11774 Date: Sun Jun 14 20:58:53 2009 +0200
11775
11776 mpc5121ads: add JFFS2 and MTDPARTS support; adjust flash map
11777
11778 Signed-off-by: Wolfgang Denk <wd@denx.de>
11779
11780 commit 1f1f82f3de1660f398bf42bfd709b9859582ce5e
11781 Author: Wolfgang Denk <wd@denx.de>
11782 Date: Sun Jun 14 20:58:52 2009 +0200
11783
11784 aria: add JFFS2 and MTDPARTS support; adjust flash map
11785
11786 Signed-off-by: Wolfgang Denk <wd@denx.de>
11787
11788 commit a6d6d46a4fef876455e11b45ed699c0fb3bd1ca1
11789 Author: Wolfgang Denk <wd@denx.de>
11790 Date: Sun Jun 14 20:58:51 2009 +0200
11791
11792 aria: enable NAND flash support
11793
11794 Signed-off-by: Wolfgang Denk <wd@denx.de>
11795
11796 commit 13946925e850db5351982acb691d51716fc754e2
11797 Author: Wolfgang Denk <wd@denx.de>
11798 Date: Sun Jun 14 20:58:50 2009 +0200
11799
11800 MPC512x: fix typo in comment listing the NAND driver name
11801
11802 Signed-off-by: Wolfgang Denk <wd@denx.de>
11803 Cc: Stefan Roese <sr@denx.de>
11804 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
11805
11806 commit 2ca6f74d09653f8041b52cafd0d650fdc2a56c51
11807 Author: Wolfgang Denk <wd@denx.de>
11808 Date: Sun Jun 14 20:58:49 2009 +0200
11809
11810 mecp5123: cleanup - remove dead code
11811
11812 Remove dead code that was obviously a left-over from copy & paste.
11813
11814 Signed-off-by: Wolfgang Denk <wd@denx.de>
11815 Cc: Stefan Roese <sr@denx.de>
11816 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
11817
11818 commit 25671c8672f2d7b39555416a6b7a6b7b39b810bf
11819 Author: Wolfgang Denk <wd@denx.de>
11820 Date: Sun Jun 14 20:58:48 2009 +0200
11821
11822 aria: adjust memory controller initialization
11823
11824 Needed for Rev. 2 silicon at 400 MHz
11825
11826 Signed-off-by: Wolfgang Denk <wd@denx.de>
11827
11828 commit 7629f1c06b6dea36bbc7bf70820b824e9b6d2227
11829 Author: Wolfgang Denk <wd@denx.de>
11830 Date: Sun Jun 14 20:58:47 2009 +0200
11831
11832 MPC512x: factor out common code
11833
11834 Now that we have 3 boards for the MPC512x it turns out that they all
11835 use the very same fixed_sdram() code.
11836
11837 This patch factors out this common code into cpu/mpc512x/fixed_sdram.c
11838 and adds a new header file, include/asm-ppc/mpc512x.h, with some
11839 macros, inline functions and prototype definitions specific to MPC512x
11840 systems.
11841
11842 Signed-off-by: Wolfgang Denk <wd@denx.de>
11843 Cc: Stefan Roese <sr@denx.de>
11844 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
11845
11846 commit 0549353a6ba5aa03420c0962b9072e9cf1fa49d9
11847 Author: Wolfgang Denk <wd@denx.de>
11848 Date: Sun Jun 14 20:58:46 2009 +0200
11849
11850 mecp5123: fix build error
11851
11852 The mecp5123 board did not compile because the MSCAN Clock Control
11853 Registers were missing; these got added, but as an array instead
11854 of 4 individual registers. Adapt the code so it builds.
11855
11856 Signed-off-by: Wolfgang Denk <wd@denx.de>
11857 Cc: Stefan Roese <sr@denx.de>
11858 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
11859
11860 commit a9905db5d29a56aedd7db5bcb56b0385873aa6a3
11861 Author: Wolfgang Denk <wd@denx.de>
11862 Date: Sun Jun 14 20:58:45 2009 +0200
11863
11864 MPC512x: Add MSCAN1...4 Clock Control Registers
11865
11866 Signed-off-by: Wolfgang Denk <wd@denx.de>
11867 Cc: Stefan Roese <sr@denx.de>
11868 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
11869
11870 commit f5489c4200b37c9a1d6dbde116f5adc0539610de
11871 Author: Wolfgang Denk <wd@denx.de>
11872 Date: Sun Jun 14 20:58:44 2009 +0200
11873
11874 MPC512x: enabling NAND support requires CONFIG_SYS_64BIT_VSPRINTF
11875
11876 When enabling NAND support for a board, one must also define
11877 CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c
11878 for correct output.
11879
11880 Signed-off-by: Wolfgang Denk <wd@denx.de>
11881 Cc: Stefan Roese <sr@denx.de>
11882 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
11883
11884 commit b4db4a7638ef90cf0aacf7b954d9bf3043dda780
11885 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
11886 Date: Fri Jul 10 18:03:57 2009 +0800
11887
11888 issue write command to base for JEDEC flash
11889
11890 For JEDEC flash, we should issue word programming command relative to
11891 base address rather than sector base address. Original source makes
11892 SST Flash fails to program sectors which are not on the 0x10000 boundaries.
11893
11894 e.g.
11895 SST39LF040 uses addr1=0x5555 and addr2=0x2AAA, however, each sector
11896 is 0x1000 bytes.
11897
11898 Thus, if we issue command to "sector base (0x41000) + offset(0x5555)",
11899 it sends to 0x46555 and the chip fails to recognize that address.
11900
11901 This patch is tested with SST39LF040.
11902
11903 Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
11904 Signed-off-by: Stefan Roese <sr@denx.de>
11905
11906 commit 986922714ffd21ad39f48522d285fffc7aed56b1
11907 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11908 Date: Sat May 2 11:53:50 2009 +0200
11909
11910 versatile: update config and merge to cfi flash driver
11911
11912 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11913 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
11914 Cc: Catalin Marinas <catalin.marinas@arm.com>
11915
11916 commit d6e8ed832b25d5db4fdd3fb91e73028e494dcd6e
11917 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11918 Date: Sat May 2 11:53:49 2009 +0200
11919
11920 versatile: specify the board type on the prompt
11921
11922 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11923 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
11924 Cc: Catalin Marinas <catalin.marinas@arm.com>
11925
11926 commit 5ccc2d99d61c81805348b0cd9f79731b271f7daf
11927 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
11928 Date: Thu Jun 25 17:04:15 2009 +0200
11929
11930 at91: Introduction of at91sam9g10 SOC.
11931
11932 AT91sam9g10 is an ARM 926ej-s SOC. It is an evolution of the at91sam9261 with a
11933 faster clock speed: 266/133MHz.
11934
11935 Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
11936
11937 commit 22ee647380c42f44528f99b7c1b423725e542102
11938 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
11939 Date: Thu Jul 9 10:16:29 2009 +0200
11940
11941 at91: Introduction of at91sam9g45 SOC.
11942
11943 AT91sam9g45 series is an ARM 926ej-s SOC family clocked at 400/133MHz.
11944 It embeds USB high speed host and device, LCD, DDR2 RAM, and a full set of
11945 peripherals.
11946
11947 The first board that embeds at91sam9g45 chip is the AT91SAM9G45-EKES.
11948 On the board you can find 2 USART, USB high speed,
11949 a 480*272 LG lcd, ethernet, gpio/joystick/buttons.
11950
11951 Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
11952
11953 commit c33c5990cec7ced9ef1ef148debbca34adafa12b
11954 Author: Daniel Mack <daniel@caiaq.de>
11955 Date: Tue Jun 23 17:30:05 2009 +0200
11956
11957 pxa: fix CKEN_B register bits
11958
11959 The current defition for CKEN_B register bits is nonsense. Adding 32 to
11960 the shifted value is equal to '| (1 << 5)', and this bit is marked
11961 'reserved' in the PXA docs.
11962
11963 Signed-off-by: Daniel Mack <daniel@caiaq.de>
11964
11965 commit bd876be46f28b5fc2896537f6d01353f332789f7
11966 Author: Daniel Mack <daniel@caiaq.de>
11967 Date: Tue Jun 23 17:30:04 2009 +0200
11968
11969 pxa: add clock for system bus 2 arbiter
11970
11971 This clock is needed for systems using the USB2 device unit or the 2d
11972 graphics accelerator.
11973
11974 Signed-off-by: Daniel Mack <daniel@caiaq.de>
11975
11976 commit b016000a95514c08cab50e1cba00b019c0801bc4
11977 Author: Grazvydas Ignotas <notasas@gmail.com>
11978 Date: Wed Jul 8 00:30:01 2009 +0300
11979
11980 OMAP3 pandora: Fix CKE1 MUX setting to allow self-refresh
11981
11982 Pandora is using both SDRC CSes. The MUX setting is needed
11983 for the second CS clock signal to allow the 2 RAM parts to
11984 be put in self-refresh correctly.
11985
11986 Based on similar patch for beagle and overo by
11987 Jean Pihet and Steve Sakoman.
11988
11989 commit 8672c288703f3c51c829851c8fe6608c7869faaa
11990 Author: Grazvydas Ignotas <notasas@gmail.com>
11991 Date: Wed Jul 8 00:30:00 2009 +0300
11992
11993 OMAP3 pandora: setup pulls for various GPIOs
11994
11995 Set pullups or pulldowns for GPIOs which need them.
11996 Disable them for others, which have external pulls.
11997 Also make disabled pull setting consistent (some pins had
11998 type set to "up" even if pull type selection was disabled).
11999
12000 commit 5ff78122f229946862a3f67a2f50a329e8e1bcf5
12001 Author: Grazvydas Ignotas <notasas@gmail.com>
12002 Date: Wed Jul 8 00:29:59 2009 +0300
12003
12004 OMAP3 pandora: setup pin mux for pins used on rev3 boards
12005
12006 Setup pin mux for GPIO pins connected on rev3 or later
12007 boards. Also change NUB2 IRQ pin. This should not affect
12008 older boards because they don't have any nubs (analog
12009 controllers) attached to them.
12010
12011 commit 67c97c346b27c586a7263564f7afff6d1f8d8d0a
12012 Author: Grazvydas Ignotas <notasas@gmail.com>
12013 Date: Wed Jul 8 00:29:58 2009 +0300
12014
12015 OMAP3 pandora: pin mux cleanup
12016
12017 Remove configuration of not unused pins, effectively
12018 leaving them in safe mode.
12019
12020 commit b996165f5a1623a055c03b22d64d6d5da81835d0
12021 Author: Prafulla Wadaskar <prafulla@marvell.com>
12022 Date: Mon Jul 6 15:50:47 2009 +0530
12023
12024 arm: Kirkwood: bugfix: UART1 bar correction
12025
12026 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
12027
12028 commit 50243e3e7a96a96c5418ce6c90b7252d26fdd5b0
12029 Author: Kumar Gala <galak@kernel.crashing.org>
12030 Date: Tue Jul 7 15:48:58 2009 -0500
12031
12032 usb: Fix compiler warning with gcc4.4
12033
12034 ehci-hcd.c: In function 'ehci_submit_root':
12035 ehci-hcd.c:719: warning: value computed is not used
12036 ehci-hcd.c:748: warning: value computed is not used
12037
12038 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12039 Signed-off-by: Remy Bohmer <linux@bohmer.net>
12040
12041 commit 04366d070a1a3f7affddf15aaaea87bcf44cdbb0
12042 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12043 Date: Wed Jul 8 11:42:19 2009 +0900
12044
12045 sh: Update pci config for Renesas r7780mp board
12046
12047 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12048
12049 commit 74d9c16a681aa24bb4125191fe39dc7c75cde56a
12050 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12051 Date: Thu Jun 25 16:31:26 2009 +0900
12052
12053 sh: Add support ESPT-GIGA borad
12054
12055 ESPT-Giga is SH7763-based reference board.
12056 Board support is relatively sparse, presently supporting serial,
12057 gigabit ethernet, USB host, and MTD.
12058
12059 More information (in Japanese) available at:
12060 http://www.cente.jp/product/cente_hard/ESPT-Giga.html
12061
12062 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12063 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12064
12065 commit dae4e0148a1146a5610025ae4b445e841410b659
12066 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
12067 Date: Fri Jul 3 16:06:37 2009 +0200
12068
12069 Add ESD PCI vendor ID
12070
12071 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
12072
12073 commit 876b3cef537aab2cba8c19505db2876f6057f818
12074 Author: Peter Tyser <ptyser@xes-inc.com>
12075 Date: Mon Jun 22 18:01:41 2009 -0500
12076
12077 api_examples/Makefile: General cleanup
12078
12079 * Remove symlinking of files located outside api_examples/
12080
12081 * Auto generate dependencies for files located outside api_examples/
12082
12083 * Update names of variables to be similar to those in tools/Makefile
12084
12085 * Fix out of tree build error
12086 Dependencies are calculated for all files in the SRCS variable.
12087 Previously, the SRCS variable contained files which were symlinked
12088 into the api_examples/ directory. These symlinked files did not exist
12089 when dependencies were calculated when building out of tree. This
12090 resulted in errors such as:
12091 make[1]: *** No rule to make target `/work/wd/tmp-ppc/api_examples/.depend', needed by `_depend'. Stop.
12092 make[1]: Leaving directory `/home/wd/git/u-boot/work/api_examples'
12093 make: *** [depend] Error 2
12094
12095 Since symlinked source files are no longer used, this bug no longer
12096 exists.
12097
12098 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12099 Acked-by: Rafal Jaworowski <raj@semihalf.com>
12100
12101 commit 522f6f02adb93194e337016fe2e4e53c58d5d5ea
12102 Author: Peter Tyser <ptyser@xes-inc.com>
12103 Date: Mon Jun 22 18:01:40 2009 -0500
12104
12105 api_examples/Makefile: Get rid of unnecessary intermediate LIB target
12106
12107 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12108 Acked-by: Rafal Jaworowski <raj@semihalf.com>
12109
12110 commit 117d0ab5e6f3b3dd48fc346df4919555a78afd39
12111 Author: Peter Tyser <ptyser@xes-inc.com>
12112 Date: Mon Jun 22 18:01:39 2009 -0500
12113
12114 api_examples/Makefile: Combine ELF and BIN targets
12115
12116 Combining the two rules cleans up the Makefile a bit
12117
12118 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12119 Acked-by: Rafal Jaworowski <raj@semihalf.com>
12120
12121 commit 644cb38108b8dc22e0ef3cf5f404fe310d1995f8
12122 Author: Peter Tyser <ptyser@xes-inc.com>
12123 Date: Mon Jun 22 18:01:38 2009 -0500
12124
12125 api_examples/Makefile: Split up variable declarations
12126
12127 This cleans up the Makefile a bit and simplifies future changes
12128
12129 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12130 Acked-by: Rafal Jaworowski <raj@semihalf.com>
12131
12132 commit 890d242facc4079ed21e979ced2e8c6d6974f6d3
12133 Author: Timur Tabi <timur@freescale.com>
12134 Date: Fri Jun 19 14:10:52 2009 -0500
12135
12136 remove _IO_BASE and KSEG1ADDR from board configuration files
12137
12138 The KSEG1ADDR macro used to be necessary for the RTL8139 Ethernet
12139 driver, but the code that used that macro was removed over a year
12140 ago, so board configuration files no longer need to define it.
12141
12142 The _IO_BASE macro is also automatically defined to 0 if it isn't
12143 already set, so there's no need to define that macro either in the
12144 board configuration files.
12145
12146 Signed-off-by: Timur Tabi <timur@freescale.com>
12147 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12148 Acked-by: Andy Fleming <afleming@freescale.com>
12149 Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
12150 Acked-by: Kim Phillips <kim.phillips@freescale.com>
12151
12152 commit c9969947a4687de90e2bb58e76842b491aa0e0b9
12153 Author: Jon Smirl <jonsmirl@gmail.com>
12154 Date: Sun Jun 14 18:21:28 2009 -0400
12155
12156 board support patch for phyCORE-MPC5200B-tiny
12157
12158 Add support for the Phytec phyCORE-MPC5200B-tiny.
12159 Code originally from Pengutronix.de.
12160 Created CONFIG_SYS_ATA_CS_ON_TIMER01 define for when IDE CS is on
12161 Timer 0/1
12162
12163 Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
12164 Acked-by: Grant Likely <grant.likely@secretlab.ca>
12165
12166 commit 7bd49ad12cc36a4de6995ddabbc65ffa1aa1933d
12167 Author: Mike Frysinger <vapier@gentoo.org>
12168 Date: Mon Jun 15 13:37:20 2009 -0400
12169
12170 kallsyms: fix escaping of NUL char in strings
12171
12172 The current kallsyms code is using \\0 to escape the backslash in the awk
12173 code, but the shell too needs escaping. This way we make sure gcc is
12174 passed the \0. Then gcc itself will consume this as an octal, so we have
12175 to use 000 so gcc will create the final NUL.
12176
12177 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12178
12179 commit ed540f07b8ad86909704e9806c1762462cb4995a
12180 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
12181 Date: Fri Jun 26 10:18:49 2009 -0400
12182
12183 Blackfin: cm-bf561: add example settings for EXT-BF5xx-USB-ETH2 add-on
12184
12185 The cm-bf561 module can easily hook up to the EXT-BF5xx-USB-ETH2 extender
12186 board, so add a simple example of how to do that in the board config.
12187
12188 Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
12189 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12190
12191 commit f8bf54b4081c3c3d518830df0017a23ec672a841
12192 Author: Mike Frysinger <vapier@gentoo.org>
12193 Date: Thu Jun 25 19:40:28 2009 -0400
12194
12195 Blackfin: blackstamp: update spi flash settings
12196
12197 The latest blackstamp boards can only run the SPI flash at 15MHz before
12198 they start to crap out, so lower the max speeds accordingly. The new SPI
12199 flash also has different sector requirements, so update the environment
12200 sizes as well.
12201
12202 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12203
12204 commit 286070ddc8339666c09bd7912e960b850a8a0318
12205 Author: Mike Frysinger <vapier@gentoo.org>
12206 Date: Mon Oct 6 03:31:52 2008 -0400
12207
12208 Blackfin: add cache_dump commands
12209
12210 A few debug-type commands used to dump the raw icache/dcache data. Useful
12211 when trying to track down cache-related bugs.
12212
12213 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12214
12215 commit 632e9b671efb0a6c900499f7a49fe5b63292b5fc
12216 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
12217 Date: Wed Jul 8 15:31:57 2009 +0200
12218
12219 ppc4xx: Set default PCI device ID for 405EP boards
12220
12221 Current code only sets the PCI vendor id to 0x1014 and
12222 leaved device id to 0x0000.
12223
12224 Ths patch ....
12225 a) uses the correct PCI_VENDOR_ID_IBM macro for this
12226 b) sets the default device ID as stated in the UM to 0x0156
12227 by using PCI_DEVICE_ID_IBM_405GP for this.
12228
12229 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
12230 Signed-off-by: Stefan Roese <sr@denx.de>
12231
12232 commit 123f102ec093fba6967066acdf9beb637df2e2d1
12233 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
12234 Date: Wed Jul 8 13:43:55 2009 +0200
12235
12236 ppc4xx: Move 405EP pci code from cpu_init_f() to __pci_pre_init()
12237
12238 This patch moves some basic PCI initialisation from the 4xx cpu_init_f()
12239 to cpu/ppc4xx/4xx_pci.c.
12240
12241 The original cpu_init_f() function enabled the 405EP's internal arbiter
12242 in all situations. Also the HCE bit in cpc0_pci is always set.
12243 The first is not really wanted for PCI adapter designs and the latter
12244 is a general bug for PCI adapter U-Boots. Because it enables
12245 PCI configuration by the system CPU even when the PCI configuration has
12246 not been setup by the 405EP. The one and only correct place is
12247 in pci_405gp_init() (see "Set HCE bit" comment).
12248
12249 So for compatibility reasons the arbiter is still enabled in any case,
12250 but from weak pci_pre_init() so that it can be replaced by board specific
12251 code.
12252
12253 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
12254 Signed-off-by: Stefan Roese <sr@denx.de>
12255
12256 commit c71103f9dc66dfcce8ad6df942364043bf27ade8
12257 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
12258 Date: Wed Jul 8 13:43:23 2009 +0200
12259
12260 ppc4xx: Make is_pci_host() available for all 440 and 405 CPUs
12261
12262 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
12263 Signed-off-by: Stefan Roese <sr@denx.de>
12264
12265 commit 1d8937a469bfeb55ca1f6d89a4e7cd2dfee3cf17
12266 Author: Prafulla Wadaskar <prafulla@marvell.com>
12267 Date: Mon Jun 29 20:56:43 2009 +0530
12268
12269 usb: add Marvell Kirkwood ehci host controller driver
12270
12271 This driver is tested on Sheevaplug platform
12272
12273 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
12274 Signed-off-by: Remy Bohmer <linux@bohmer.net>
12275
12276 commit db7b43e4681f6f93c336132708157a8a0cca1f8b
12277 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
12278 Date: Wed Jun 24 10:08:40 2009 +0530
12279
12280 mpc83xx: USB: fix: access of ehci struct elements
12281
12282 It fixes the access to the 'ehci' struct elements for mpc83xx which
12283 should have been taken care of in 4ef01010aa4799c759d75e67007fdd3a38c88c8a
12284 Sorry about that.
12285
12286 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
12287 Signed-off-by: Remy Bohmer <linux@bohmer.net>
12288
12289 commit 08066152735417fc55a5c9de2cec0714c529e4f3
12290 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
12291 Date: Fri Jun 19 17:56:00 2009 +0530
12292
12293 mpc8xxx: USB: fix: access of ehci struct elements
12294
12295 This patch fixes the access to the 'ehci' struct elements which should
12296 have been taken care off in 4ef01010aa4799c759d75e67007fdd3a38c88c8a
12297 Sorry about that.
12298
12299 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
12300 Signed-off-by: Remy Bohmer <linux@bohmer.net>
12301
12302 commit c3a012ce65818beb274195cd47f31ed80d0fbaa5
12303 Author: Bryan Wu <bryan.wu@analog.com>
12304 Date: Tue Jun 16 05:26:27 2009 -0400
12305
12306 usb: musb: add timeout via CONFIG_MUSB_TIMEOUT
12307
12308 Signed-off-by: Bryan Wu <bryan.wu@analog.com>
12309 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12310 Signed-off-by: Remy Bohmer <linux@bohmer.net>
12311
12312 commit 7984967a9405672db1581402d2c2cfae268d1a67
12313 Author: Mike Frysinger <vapier@gentoo.org>
12314 Date: Tue Jun 16 05:26:25 2009 -0400
12315
12316 usb: musb: drop old musb read/write prototypes
12317
12318 These functions are no longer defined, so remove their prototypes.
12319
12320 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12321 Signed-off-by: Remy Bohmer <linux@bohmer.net>
12322
12323 commit 4e04f16020115ab5ccf53158e100de58bcaf29bd
12324 Author: Kim Phillips <kim.phillips@freescale.com>
12325 Date: Mon Jun 15 11:50:07 2009 -0500
12326
12327 usb: fix CONFIG_SYS_MPC83xx_USB_ADDR not defined error
12328
12329 fix a stray CONFIG_MPC83XX that escaped commit
12330 0f898604945af4543c1525fc33b6bae621a3b805.
12331
12332 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12333 Signed-off-by: Remy Bohmer <linux@bohmer.net>
12334
12335 commit bc0d3296f1780b50e6b9630aee5eb368f2afb6cb
12336 Author: Michal Simek <monstr@monstr.eu>
12337 Date: Tue Jun 30 23:47:30 2009 +1000
12338
12339 asm-generic: Consolidate errno.h to asm-generic/errno.h
12340
12341 This patch use blackfin errno.h implementation which
12342 correspond Linux kernel one.
12343
12344 MIPS implemetation is different that's why I keep it.
12345
12346 I removed ppc_error_no.h from Marvell boards which
12347 was the same too.
12348
12349 I have got ack from ppc40x, blackfin, arm, coldfire and avr custodians.
12350
12351 Acked-by: Stefan Roese <sr@denx.de>
12352 Signed-off-by: Michal Simek <monstr@monstr.eu>
12353
12354 commit 2896b5851f0430bf16529376a4193630e966c788
12355 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
12356 Date: Tue Jul 7 16:01:02 2009 +0200
12357
12358 Command improvements for ubifs
12359
12360 Check that an argument is passed to ubifsmount and that addresses and
12361 sizes are actually numbers for ubifsload. Also improve the instructions
12362 a bit.
12363
12364 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
12365 Signed-off-by: Stefan Roese <sr@denx.de>
12366
12367 commit 25c8f4005979ab2d190713ba341d96a5fa905cdb
12368 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
12369 Date: Tue Jul 7 16:59:46 2009 +0200
12370
12371 Handle VID header offset in ubi part command
12372
12373 The VID header offset is sometimes needed to initialize the UBI
12374 partition. This patch adds it (optionally) to the command line
12375 for the ubi part command.
12376
12377 (Lines have been properly wrapped since last version)
12378
12379 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
12380 Acked-by: Stefan Roese <sr@denx.de>
12381 Signed-off-by: Stefan Roese <sr@denx.de>
12382
12383 commit 3672cd5c3b53d219d33345eebad4e25ad5bf6d52
12384 Author: Wolfgang Denk <wd@denx.de>
12385 Date: Thu Jul 9 09:56:16 2009 +0200
12386
12387 MAINTAINERS: fix sorting, remove duplicates.
12388
12389 Signed-off-by: Wolfgang Denk <wd@denx.de>
12390
12391 commit efbf14e9a2394a154b12643d4a011994b5096b5a
12392 Author: Heiko Schocher <heiko.schocher@invitel.hu>
12393 Date: Wed Dec 10 08:27:01 2008 +0100
12394
12395 all platforms: make show_boot_progress() work again
12396
12397 Signed-off-by: Heiko Schocher <hs@denx.de>
12398
12399 commit 205a0988d8fd778c60746c34c2f17dbd2b7cd0d2
12400 Author: Prafulla Wadaskar <prafulla@marvell.com>
12401 Date: Mon Jun 29 15:25:18 2009 +0530
12402
12403 nand: Add Marvell Kirkwood NAND driver
12404
12405 This patch adds a NAND driver for the Marvell Kirkwood SoC's
12406
12407 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
12408 Acked-by: Scott Wood <scottwood@freescale.com>
12409
12410 commit 0580e48f53f972783e56fcedadb9ce6e5b0b6f32
12411 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
12412 Date: Mon Jul 6 16:27:33 2009 +0200
12413
12414 ppc4xx: Make pll_write global
12415
12416 This patch makes pll_write on PPC405EP boards
12417 global and callable from C code.
12418
12419 pll_write can be used to dynamically modify the PLB:PCI divider
12420 as it is required for 33/66 MHz pci adapters based on the 405EP.
12421
12422 board_early_init_f() is a good place to do that (check M66EN signal
12423 and call pll_write() when it is required).
12424
12425 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
12426 Signed-off-by: Stefan Roese <sr@denx.de>
12427
12428 commit 20b3c4b528606d51799aed5e4c71783720cd2b72
12429 Author: Stefan Roese <sr@denx.de>
12430 Date: Mon Jul 6 11:44:33 2009 +0200
12431
12432 ppc4xx: Remove compilation warning "pci_async_enabled defined but not used"
12433
12434 Signed-off-by: Stefan Roese <sr@denx.de>
12435
12436 commit d0a1364f91c80d29daff6b27a7904a50cdc00b35
12437 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
12438 Date: Fri Jul 3 16:06:06 2009 +0200
12439
12440 ppc4xx: Implement is_pci_host() for 405 CPUs
12441
12442 This patch implements the is_pci_host() function in a similiar way
12443 as it is used on 440 targets.
12444
12445 The former path with CONFIG_PCI_HOST == PCI_HOST_AUTO does not
12446 build on 405EP targets because checking the PCI arbiter is different.
12447 So putting the fixed code into a separate function makes the code
12448 more readable.
12449
12450 Also using is_pci_host() on 405 brings 405 and 440 PCI code
12451 a little bit closer.
12452
12453 In preparation for an upcoming 405EP based PMC module I made this
12454 function weak so that it can be overwritten from board specific code.
12455
12456 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
12457 Signed-off-by: Stefan Roese <sr@denx.de>
12458
12459 commit 04ddae915f295dee301f15c32100533a48e3b433
12460 Author: Alessio Centazzo <centazzo@gmail.com>
12461 Date: Wed Jul 1 22:20:51 2009 -0700
12462
12463 ppc4xx: Fixed PPC4xx debug compilation error in uic.c
12464
12465 This patch fixes a debug compilation error for PPC4xx platforms, all
12466 other architectures are not affected by this change. The 'handler'
12467 pointer was undefined. The fix is exercised and has effect only if
12468 DEBUG is defined.
12469
12470 Signed-off-by: Alessio Centazzo acpatin@yahoo.com
12471 Signed-off-by: Stefan Roese <sr@denx.de>
12472
12473 commit 48e2b535a0dd3a7b77b674130934a24f9de6f48d
12474 Author: Felix Radensky <felix@embedded-sol.com>
12475 Date: Wed Jul 1 11:37:46 2009 +0300
12476
12477 4xx: Fix compilation warnings and MQ registers dump in SPD DDR2 code
12478
12479 This patch fixes printf format string compilation warnings in several
12480 debug statements. It also fixes the dump of DDR controller MQ registers
12481 found on some 44x and 46x platforms. The current register dump code
12482 uses incorrect DCRs to access these registers.
12483
12484 Signed-off-by: Felix Radensky <felix@embedded-sol.com>
12485 Signed-off-by: Stefan Roese <sr@denx.de>
12486
12487 commit 26d37f0061ad05e5c383c910f00e6006f3c89a3a
12488 Author: Felix Radensky <felix@embedded-sol.com>
12489 Date: Mon Jun 22 15:30:42 2009 +0300
12490
12491 ppc4xx: Fix FDT EBC mappings on Canyonlands
12492
12493 This patch fixes 2 problems with FDT EBC mappings on Canyonlands.
12494 First, NAND EBC mapping was missing, making Linux NAND driver
12495 unusable on this board. Second, NOR remapping code assumed that
12496 NOR is always on CS0, however when booting from NAND NOR is on CS3.
12497
12498 Signed-off-by: Felix Radensky <felix@embedded-sol.com>
12499 Signed-off-by: Stefan Roese <sr@denx.de>
12500
12501 commit baa9f9ba4345ed6dc5c403871c32e6295316ea52
12502 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12503 Date: Tue Jun 16 22:29:15 2009 +0900
12504
12505 sh: Revised the build with newest compiler
12506
12507 The check of data became severe from newest gcc.
12508 This patch checked in gcc-4.2 and 4.3 .
12509
12510 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12511
12512 commit be45c632568ba76343c1453b3951ad793f482fd5
12513 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12514 Date: Thu Jun 4 12:06:48 2009 +0200
12515
12516 sh3/sh4: rename config option TMU_CLK_DIVIDER to CONFIG_SYS_TMU_CLK_DIV
12517
12518 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12519 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12520 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12521
12522 commit 8dd29c87ba370072a8464b8cc19e0a1e6e0497b4
12523 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12524 Date: Thu Jun 4 12:06:47 2009 +0200
12525
12526 sh3/sh4: fix CONFIG_SYS_HZ to 1000
12527
12528 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12529 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12530 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12531
12532 commit add380f51f34ed1e2678c2abac8d53c91d652f26
12533 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12534 Date: Thu Jun 4 12:06:46 2009 +0200
12535
12536 sh: introduce clock framework
12537
12538 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12539 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12540 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12541
12542 commit 3931a375de2c381d9ff5ec2767b2da9f62a41aef
12543 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12544 Date: Thu Jun 4 12:06:45 2009 +0200
12545
12546 sh: unify linker script
12547
12548 all sh boards use the same cpu linker script so move it to cpu/$(CPU)
12549
12550 that could be overwrite in following order
12551 SOC
12552 BOARD
12553 via the corresponding config.mk
12554
12555 tested on r2dplus
12556
12557 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12558 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12559 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12560
12561 commit 236aad875817771eb1f25ed32784b3cd7760b2e6
12562 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12563 Date: Thu Jun 4 12:06:44 2009 +0200
12564
12565 sh: make the linker scripts more generic
12566
12567 currently we need to sync the linker script enty and TEXT_BASE manualy
12568 and the reloc_dst is based on it
12569
12570 instead provide it now from the ldflags
12571
12572 tested on r2dplus
12573
12574 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12575 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12576 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12577
12578 commit ce29817212792113cd2d67a9767049a2e262c406
12579 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12580 Date: Thu Jun 4 12:06:43 2009 +0200
12581
12582 sh7785lcr: fix out of tree build
12583
12584 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12585 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12586 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12587
12588 commit 2e8a6f551cba550e9220dca4d8504066203b1f74
12589 Author: HeungJun Kim <riverful.kim@gmail.com>
12590 Date: Tue Jun 30 14:42:22 2009 +0900
12591
12592 env_onenand: change env_address type from unsigned long to loff_t
12593
12594 If use the onenand boot, the env_relocate_spec() calls mtd->read(),
12595 and the type of the argument #2 of mtd->read() was changed to loff_t.
12596 But, the "env_addr" type is still unsigned long, thus this patch change
12597 the type from unsigned long to loff_t.
12598
12599 Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
12600 Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
12601 Signed-off-by: Scott Wood <scottwood@freescale.com>
12602
12603 commit 66372fe2ab11cdeb0e841ad9eb6ba79769db4909
12604 Author: Mingkai Hu <Mingkai.hu@freescale.com>
12605 Date: Thu Jun 18 18:23:27 2009 +0800
12606
12607 fsl_elbc_nand: redirect the pointer of bbt pattern to RAM
12608
12609 The bbt descriptors contains the pointer to the bbt pattern which
12610 are statically initialized memory struct. When relocated to RAM,
12611 these pointers will continue point to NOR flash(or L2 SRAM, or
12612 other boot device). If the contents of NOR flash changed or L2
12613 SRAM disabled, it'll hang the system.
12614
12615 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
12616 Signed-off-by: Scott Wood <scottwood@freescale.com>
12617
12618 commit 1dac3a51875967f32641bbc0d26dc382ef02330a
12619 Author: Scott Wood <scottwood@freescale.com>
12620 Date: Wed Jun 24 17:23:49 2009 -0500
12621
12622 nand_spl: Fix cmd_ctrl usage in nand_boot.c.
12623
12624 When adding large page NAND support to this file, I had a misunderstanding
12625 about the exact semantics of NAND_CTRL_CHANGE (which isn't documented
12626 anywhere I can find) -- it is apparently just a hint to drivers,
12627 which aren't required to preserve the old value for subsequent
12628 non-"change" invocations.
12629
12630 This change makes nand_boot.c no longer assume this. Note that this
12631 happened to work by chance with some NAND drivers, which don't preserve
12632 the value, but treat 0 equivalently to NAND_CTRL_ALE.
12633
12634 I don't have hardware to test this, so any testing is appreciated.
12635
12636 Signed-off-by: Scott Wood <scottwood@freescale.com>
12637
12638 commit 98713d2663d5d30dde74f48f547114a2bfd9d463
12639 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
12640 Date: Thu Jun 18 18:41:03 2009 +0100
12641
12642 Bug-fix in drivers mtd nand Makefile
12643
12644 The S3C2410 NAND driver source file is included in the makefile instead of
12645 the object file.
12646
12647 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
12648 Signed-off-by: Scott Wood <scottwood@freescale.com>
12649
12650 commit b74ab737369bbbe66c15cbe6c0d0b6a351b00c96
12651 Author: Guennadi Liakhovetski <lg@denx.de>
12652 Date: Mon May 18 16:07:22 2009 +0200
12653
12654 nand_spl: read environment early, when booting from NAND using nand_spl
12655
12656 Currently, when booting from NAND using nand_spl, in the beginning the default
12657 environment is used until later in boot process the dynamic environment is read
12658 out. This way environment variables that must be interpreted early, like the
12659 baudrate or "silent", cannot be modified dynamically and remain at their
12660 default values. Fix this problem by reading out main and redundand (if used)
12661 copies of the environment in the nand_spl code.
12662
12663 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
12664 Signed-off-by: Scott Wood <scottwood@freescale.com>
12665
12666 commit 378adfcdf4bbd77ee4cbc3276d4733e218308a21
12667 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12668 Date: Sat May 16 14:27:40 2009 +0200
12669
12670 mtd: nand: use loff_t for offset
12671
12672 nand_util currently uses size_t which is arch dependent and not always a
12673 unsigned long. Now use loff_t, as does the linux mtd layer.
12674
12675 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12676 Signed-off-by: Scott Wood <scottwood@freescale.com>
12677
12678 commit 8360b66bac9567701027a0087274d0c9b2fe8d6b
12679 Author: Wolfgang Denk <wd@denx.de>
12680 Date: Sun May 24 17:34:33 2009 +0200
12681
12682 nand/onenand: Fix missing argument checking for "markbad" command
12683
12684 The "nand markbad" and "onenand markbad" commands did not check if an
12685 argument was passed; if this was forgotten, no error was raised but
12686 block 0 was marked as bad.
12687
12688 While fixing this bug, clean up the code a bit and allow to pass more
12689 than one block address, thus allowing to mark several blocks as bad
12690 in a single command invocation.
12691
12692 Signed-off-by: Wolfgang Denk <wd@denx.de>
12693 Signed-off-by: Scott Wood <scottwood@freescale.com>
12694
12695 commit cd84423a09f3a08029fe41c1db96168debd0b51f
12696 Author: Mike Frysinger <vapier@gentoo.org>
12697 Date: Mon May 25 22:42:28 2009 -0400
12698
12699 mtd: nand: new base driver for memory mapped nand devices
12700
12701 The BF537-STAMP Blackfin board had a driver for working with NAND devices
12702 that are simply memory mapped. Since there is nothing Blackfin specific
12703 about this, generalize the driver a bit so that everyone can leverage it.
12704
12705 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12706 Signed-off-by: Scott Wood <scottwood@freescale.com>
12707
12708 commit d27bc728cf35e7d7996fbd77154335e66615b213
12709 Author: Guennadi Liakhovetski <lg@denx.de>
12710 Date: Mon May 18 16:06:45 2009 +0200
12711
12712 env_nand: remove unused variable.
12713
12714 Remove an unused "total" variable in multiple functions.
12715
12716 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
12717 Signed-off-by: Scott Wood <scottwood@freescale.com>
12718
12719 commit 154b5484ac7dcbcd0fb5ba388d930b02f87fa302
12720 Author: David Brownell <dbrownell@users.sourceforge.net>
12721 Date: Sun May 10 15:43:01 2009 -0700
12722
12723 davinci_nand chipselect/init cleanup
12724
12725 Update chipselect handling in davinci_nand.c so that it can
12726 handle 2 GByte chips the same way Linux does: as one device,
12727 even though it has two halves with independent chip selects.
12728 For such chips the "nand info" command reports:
12729
12730 Device 0: 2x nand0, sector size 128 KiB
12731
12732 Switch to use the default chipselect function unless the board
12733 really needs its own. The logic for the Sonata board moves out
12734 of the driver into board-specific code. (Which doesn't affect
12735 current build breakage if its NAND support is enabled...)
12736
12737 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
12738 Signed-off-by: Scott Wood <scottwood@freescale.com>
12739
12740 commit 496863b2440dd7cd69a1ad2443a9badd5f8968d1
12741 Author: Sandeep Paulraj <s-paulraj@ti.com>
12742 Date: Sat May 9 12:35:20 2009 -0400
12743
12744 NAND DaVinci: Update to ALE/CLE Mask values
12745
12746 All DaVinci SOC's use a CLE mask of 0x10 and an ALE mask of 0x8
12747 except the DM646x. This was decided by the design team driving the design.
12748 This patch updates the CLE and ALE values for DM646x.
12749 Updated patches for DM646x will be sent shortly.
12750 This applies to u-boot-nand-flash git
12751
12752 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
12753 Signed-off-by: Scott Wood <scottwood@freescale.com>
12754
12755 commit 0c1684437ef810c503df29e8d73f63191aa63862
12756 Author: Sandeep Paulraj <s-paulraj@ti.com>
12757 Date: Wed Apr 29 09:47:09 2009 -0400
12758
12759 ARM DaVinci: Changing ALE Mask Value
12760
12761 The ALE mask used by DaVinci SOCs is wrong. The patch changes the mask value
12762 from '0xa' to '0x8'. This is the mask we use for all TI releases.
12763
12764 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
12765 Signed-off-by: Scott Wood <scottwood@freescale.com>
12766
12767 commit 6e29ed8e576a6900c5d8dcde36b423ac576894dc
12768 Author: David Brownell <dbrownell@users.sourceforge.net>
12769 Date: Tue Apr 28 13:19:53 2009 -0700
12770
12771 davinci_nand: cleanup II (CONFIG_SYS_DAVINCI_BROKEN_ECC)
12772
12773 Remove CONFIG_SYS_DAVINCI_BROKEN_ECC option. It's not just nasty;
12774 it's also unused by any current boards, and doesn't even match the
12775 main U-Boot distributions from TI (which use soft ECC, or 4-bit ECC
12776 on newer chips that support it).
12777
12778 DaVinci GIT kernels since 2.6.24, and mainline Linux since 2.6.30,
12779 match non-BROKEN code paths for 1-bit HW ECC. The BROKEN code paths
12780 do seem to partially match what MontaVista/TI kernels (4.0/2.6.10,
12781 and 5.0/2.6.18) do ... but only for small pages. Large page support
12782 is really broken (and it's unclear just what software it was trying
12783 to match!), and the ECC layout was making three more bytes available
12784 for use by filesystem (or whatever) code.
12785
12786 Since this option itself seems broken, remove it. Add a comment
12787 about the MV/TI compat issue, and the most straightforward way to
12788 address it (should someone really need to solve it).
12789
12790 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
12791 Signed-off-by: Scott Wood <scottwood@freescale.com>
12792
12793 commit fcb774777562bb7bcdc53c608d0e6bae906ce0f6
12794 Author: David Brownell <dbrownell@users.sourceforge.net>
12795 Date: Tue Apr 28 13:19:50 2009 -0700
12796
12797 davinci_nand: cleanup I (minor)
12798
12799 Minor cleanup for DaVinci NAND code:
12800
12801 - Use I/O addresses from nand_chip; CONFIG_SYS_NAND_BASE won't
12802 be defined when there are multiple chipselect lines in use
12803 (as with common 2 GByte chips).
12804
12805 - Cleanup handling of EMIF control registers
12806 * Only need one pointer pointing to them
12807 * Remove incorrect and unused struct supersetting them
12808
12809 - Use the standard waitfunc; we don't need a custom version
12810
12811 - Partial legacy cleanup:
12812 * Don't initialize every board like it's a DM6446 EVM
12813 * #ifdef a bit more code for BROKEN_ECC
12814
12815 Sanity checked with small page NAND on dm355 and dm6446 EVMs;
12816 and large page on dm355 EVM (packaged as two devices, not one).
12817
12818 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
12819 Signed-off-by: Scott Wood <scottwood@freescale.com>
12820
12821 commit 8e5e9b940cdede0debe528cdd7edccccbb3ebf2a
12822 Author: Wolfgang Denk <wd@denx.de>
12823 Date: Tue Jul 7 22:35:02 2009 +0200
12824
12825 Coding style cleanup; update CHANGELOG
12826
12827 Signed-off-by: Wolfgang Denk <wd@denx.de>
12828
12829 commit d318d0c44d8e91e937c4dad0c5b1d2f6bb9d9fd8
12830 Author: Stefan Roese <sr@denx.de>
12831 Date: Mon Jun 29 13:30:50 2009 +0200
12832
12833 UBI: Fix build problem noticed on Apollon (arm/testing repo)
12834
12835 This patch fixes a build problem noticed on Apollon by using
12836 mtd_dev_by_eb() instead of "/" as done in the Linux UBI version.
12837 So this brings the U-Boot UBI version more in sync with the Linux
12838 version again.
12839
12840 Signed-off-by: Stefan Roese <sr@denx.de>
12841
12842 commit 2efee52b09657e9353655b9dae9e1d1a67a2abe4
12843 Author: Prafulla Wadaskar <prafulla@marvell.com>
12844 Date: Mon Jul 6 20:29:15 2009 +0530
12845
12846 sf: Macronix additional chips supported
12847
12848 new chips supported:-
12849 MX25L1605D, MX25L3205D, MX25L6405D, MX25L12855E
12850 out of which MX25L6405D and MX25L12855E tested on Kirkwood platforms
12851
12852 Modified the Macronix flash support to use 2 bytes of device id instead of 1
12853 This was required to support MX25L12855E
12854
12855 Signed-off-by: Piyush Shah <spiyush@marvell.com>
12856 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
12857 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12858
12859 commit dd54126715b89ed0c43322aa78b0dad306f043b6
12860 Author: Mike Frysinger <vapier@gentoo.org>
12861 Date: Fri Jun 19 03:27:28 2009 -0400
12862
12863 sf: sst: add sst25vf###b ids
12864
12865 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12866
12867 commit 7d907f0ea993b179a197d8db2a36f122bc673c2d
12868 Author: Mike Frysinger <vapier@gentoo.org>
12869 Date: Fri Jun 19 03:20:06 2009 -0400
12870
12871 sf: sst: fix sector size
12872
12873 Looks like when I was encoding the sector sizes, I forgot to divide by 8
12874 (due to the stupid marketing driven process that declares all sizes in
12875 useless megabits and not megabytes).
12876
12877 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12878
12879 commit ceb70b466e75ceb1a621b6163f7e31116bfc8094
12880 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12881 Date: Sun Jul 5 01:06:06 2009 +0200
12882
12883 nhk8815: fix MAKEALL
12884
12885 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12886
12887 commit d08e5ca301b69ab77ecdd34e2b06aee30d6057d1
12888 Author: Magnus Lilja <lilja.magnus@gmail.com>
12889 Date: Sat Jul 4 10:31:24 2009 +0200
12890
12891 MX31: Add NAND SPL boot support to i.MX31 PDK board.
12892
12893 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
12894
12895 commit 78eabb90b793fafe875a7469526d1715fa56cbb4
12896 Author: Prafulla Wadaskar <prafulla@marvell.com>
12897 Date: Mon Jun 29 20:55:54 2009 +0530
12898
12899 arm: Kirkwood: arch specific updated for ehci-Kirkwood driver support
12900
12901 This patch abstracts Kirkwood arch specific changes to support ehci-kirkwood driver
12902
12903 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
12904
12905 commit 095a460b49022e64df76134300643606e3acb4e9
12906 Author: Alessandro Rubini <rubini@unipv.it>
12907 Date: Mon Jun 29 10:52:37 2009 +0200
12908
12909 arm nomadik: use 1000 as HZ value and rewrite timer code
12910
12911 This sets CONFIG_SYS_HZ to 1000 as required, and completely rewrites
12912 timer code, which is now both correct and much smaller. Unused
12913 functions like udelay_masked() have been removed as no driver uses
12914 them, even the ones that are not currently active for this board.
12915 mtu.h is copied literally from the kernel sources.
12916
12917 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
12918 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
12919 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12920
12921 commit f7aa59b29a451cc502078a9e4ba32345a4250c05
12922 Author: Alessandro Rubini <rubini@unipv.it>
12923 Date: Mon Jun 22 09:18:57 2009 +0200
12924
12925 arm nomadik: allow Nand and OneNand to coexists
12926
12927 The evaluation kit has both Nand and OneNand, both drivers are there
12928 and the two configurations only select a different default for the
12929 jffs partition. This adds the OneNand driver and cleans up storage.
12930
12931 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
12932 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
12933
12934 commit fd14c41a861cd38ee2fe3abd61d59b57b4eb23c9
12935 Author: Alessandro Rubini <rubini@unipv.it>
12936 Date: Mon Jun 22 09:18:47 2009 +0200
12937
12938 arm nomadik: cleanup reset
12939
12940 There is only one public release of the Nomadik chip, so the ifdef
12941 in reset code as well as a define in the config file are not needed
12942
12943 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
12944 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
12945
12946 commit ee1363f2da3996bafdecdd8f4e48862ebff3f271
12947 Author: Alessandro Rubini <rubini@unipv.it>
12948 Date: Mon Jun 22 09:18:37 2009 +0200
12949
12950 arm nomadik: rename board to nhk8815
12951
12952 This is an error in my side in the initial submission: nobody
12953 calls it ""nmdk8815", it's "nomadik hardware kit", nhk8815, instead.
12954
12955 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
12956 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
12957
12958 commit 040f8f63e922bbfb8ba0958bf637f11a917f5c38
12959 Author: Stefano Babic <sbabic@denx.de>
12960 Date: Wed Jul 1 20:40:41 2009 +0200
12961
12962 xscale: add support for the polaris board
12963
12964 The Polaris board is based on the TrizepsIV module of
12965 Keith & Koep (http://www.keith-koep.com).
12966
12967 Signed-off-by: Stefano Babic <sbabic@denx.de>
12968
12969 commit 88bd97501314683b87f3f1edcf55b347c041b722
12970 Author: Stefano Babic <sbabic@denx.de>
12971 Date: Wed Jul 1 04:33:56 2009 +0200
12972
12973 xscale: fix USB initialization for Trizepsiv module
12974
12975 Due to change in the usb_board_init() prototype, the USB for
12976 the TrizepsIV was not correctly initialized.
12977 Removed dummy print from usb_board_stop().
12978
12979 Signed-off-by: Stefano Babic <sbabic@denx.de>
12980
12981 commit 0b785ddd60120cfb74d18e58c56054238219f6db
12982 Author: Prafulla Wadaskar <prafulla@marvell.com>
12983 Date: Wed Jul 1 20:34:51 2009 +0200
12984
12985 net: merge bugfix: Marvell Kirkwood gigabit ethernet driver
12986
12987 This patch looks okay on u-boot-net.git/next branch
12988 but when it was merged to u-boot.git/master the last line is missing
12989
12990 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
12991 Acked-by: Ben Warren <biggerbadderben@gmail.com>
12992
12993 commit 33b1d3f43a16fbb79004075ce89ae4e618b288a2
12994 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
12995 Date: Tue Jun 30 21:03:37 2009 +0200
12996
12997 at91: Add esd gmbh MEESC board support
12998
12999 This patch adds support for esd gmbh MEESC board.
13000 The MEESC is based on an Atmel AT91SAM9263 SoC.
13001
13002 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
13003
13004 commit 21761540b43c7086c75ee9afb412da1e5ddde2e9
13005 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13006 Date: Tue Jun 30 21:03:35 2009 +0200
13007
13008 ARM: Update mach-types
13009
13010 update against linux v2.6.30
13011
13012 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13013
13014 commit 45627fce18139a74e0755124d27376b520db156c
13015 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
13016 Date: Tue Jun 30 23:03:33 2009 +0200
13017
13018 at91: Add CAN init function
13019
13020 To enable CAN init, CONFIG_CAN has to be defined in the board config file
13021 and at91_can_hw_init() has to be called in the board specific code.
13022
13023 CAN is available on AT91SAM9263 and AT91CAP9 SoC.
13024
13025 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
13026
13027 commit 2e23008e5dbde7fe4c4758bee5a393e1db796cdf
13028 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
13029 Date: Tue Jun 30 23:03:31 2009 +0200
13030
13031 arm: Kirkwood: Correct header define
13032
13033 Correct define typo (. -> ,)
13034
13035 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
13036
13037 commit 8449f287f5c53d59db13c3c512e6bd1750b692d1
13038 Author: Magnus Lilja <lilja.magnus@gmail.com>
13039 Date: Wed Jul 1 01:07:55 2009 +0200
13040
13041 MX31: Add basic support for Freescale i.MX31 PDK board.
13042
13043 Add support for Freescale's i.MX31 PDK board (a.k.a. 3 stack board).
13044
13045 This patch assumes that some other program performs the actual
13046 NAND boot.
13047
13048 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
13049 Acked-by: Fabio Estevam <fabioestevam@yahoo.com>
13050 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13051
13052 commit 8d460a573e2a2ac4834636903865a0428ad0e629
13053 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13054 Date: Tue Jun 23 00:12:01 2009 +0200
13055
13056 S3C24x0: extract interrupts from timer
13057
13058 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13059
13060 commit c8badbe500a752f42049e51042767ee62ea714e0
13061 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13062 Date: Sun Jun 28 14:14:21 2009 +0200
13063
13064 dm355/pm9261: add missing CONFIG_NET_MULTI
13065
13066 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13067
13068 commit 798bf9a9ade1cfbe85a16d180cad720927d8e10a
13069 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13070 Date: Tue Jun 23 00:12:01 2009 +0200
13071
13072 arm920t/interrupts: Move conditional compilation to Makefile
13073
13074 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13075
13076 commit 06e758e75c79ce8761866bf8165c443584a20893
13077 Author: Kim, Heung Jun <riverful@gmail.com>
13078 Date: Sat Jun 20 11:02:17 2009 +0200
13079
13080 move L2 cache enable/disable function to cache.c in the omap3 SoC directory
13081
13082 Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
13083 CC: Dirk Behme <dirk.behme@googlemail.com>
13084 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13085
13086 commit d583ef5147066d3609de21f3beebbab99a19bad4
13087 Author: Thomas Lange <thomas@corelatus.se>
13088 Date: Sat Jun 20 11:02:17 2009 +0200
13089
13090 ARM DaVinci: EMIF settings
13091
13092 NAND module should not modify EMIF registers unrelated to CS2
13093 that is used for NAND, i.e. do not modify EWAIT config register
13094 or registers for other Chip Selects.
13095
13096 Without this patch, EMIF configurations made in board_init()
13097 will be invalidated.
13098
13099 Signed-off-by: Thomas Lange <thomas@corelatus.se>
13100
13101 commit 2600b8571a26c10c1c43401d7af38e2333cc5381
13102 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13103 Date: Sat Jun 20 11:02:17 2009 +0200
13104
13105 versatile: config coding style cleanup
13106
13107 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13108 Cc: Peter Pearse <peter.pearse@arm.com>
13109
13110 commit 4efb77d41f9c5d93f0f92dda60e742023fa03c72
13111 Author: Prafulla Wadaskar <prafulla@marvell.com>
13112 Date: Sat Jun 20 11:01:53 2009 +0200
13113
13114 arm: Kirkwood: Basic SOCs support
13115
13116 Kirkwood family controllers are highly integrated SOCs
13117 based on Feroceon-88FR131/Sheeva-88SV131/arm926ejs cpu core.
13118
13119 SOC versions supported:-
13120 1) 88F6281-A0 define CONFIG_KW88F6281_A0
13121 2) 88F6192-A0 define CONFIG_KW88F6192_A0
13122
13123 Other supported features:-
13124 1) get_random_hex() fucntion
13125 2) PCI Express port initialization
13126 3) NS16550 driver support
13127
13128 Contributors:
13129 Yotam Admon <yotam@marvell.com>
13130 Michael Blostein <michaelbl@marvell.com
13131
13132 Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
13133 Acked-by: Stefan Rose <sr@denx.de>
13134 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
13135
13136 commit 5c3d5817e5e68b828c165c501c215e793dc63aac
13137 Author: Prafulla Wadaskar <prafulla@marvell.com>
13138 Date: Sat Jun 20 11:01:52 2009 +0200
13139
13140 arm: generic cache.h for ARM architectures
13141
13142 This patch is required for Kirkwood SoC support
13143 may be used by other ARM architectures
13144
13145 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
13146
13147 commit 9c8c706c92e53433a871a563946c38075d76504d
13148 Author: Matthias Ludwig <mludwig@ultratronik.de>
13149 Date: Sat Jun 20 11:01:50 2009 +0200
13150
13151 OMAP3EVM: fix typo. replace CS6 by CS5, no functionality change
13152
13153 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
13154
13155 commit 0aafde1dc76d6d65d6be10bf499ec86d9ffee8b9
13156 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
13157 Date: Wed Jun 24 08:32:09 2009 +0200
13158
13159 at91sam9260/9263: add back up for the rst(reset controller).
13160
13161 On the boards at91sam9260ek, at91sam9263ek and afed9260, the rstc register was
13162 set to 0 after being set to 500 ms for the PHY reset.
13163 Do backup the old reset length and restore it after the MACB initialisation.
13164
13165 Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
13166 Signed-off-by: Stelian Pop <stelian@popies.net>
13167
13168 commit afb0b1315c048ce2b1f35f0183b8b118ad0c14e1
13169 Author: Kumar Gala <galak@kernel.crashing.org>
13170 Date: Fri Jul 3 12:45:44 2009 -0500
13171
13172 fsl: Fix compiler warnings from gcc-4.4 in sys_eeprom code
13173
13174 sys_eeprom.c: In function 'do_mac':
13175 sys_eeprom.c:323: warning: dereferencing type-punned pointer will break strict-aliasing rules
13176 sys_eeprom.c: In function 'mac_read_from_eeprom':
13177 sys_eeprom.c:395: warning: dereferencing type-punned pointer will break strict-aliasing rules
13178
13179 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13180
13181 commit e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae
13182 Author: Peter Tyser <ptyser@xes-inc.com>
13183 Date: Tue Jun 30 17:15:51 2009 -0500
13184
13185 83xx: Add support for fsl_dma driver
13186
13187 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13188 Reviewed-by: Ira W. Snyder <iws@ovro.caltech.edu>
13189 Tested-by: Ira W. Snyder <iws@ovro.caltech.edu>
13190 Acked-by: Kim Phillips <kim.phillips@freescale.com>
13191 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13192
13193 commit 9adda5459ca62120c0c50b82b766fe1cf6925bbf
13194 Author: Peter Tyser <ptyser@xes-inc.com>
13195 Date: Tue Jun 30 17:15:50 2009 -0500
13196
13197 83xx: Replace CONFIG_ECC_INIT_VIA_DDRC references
13198
13199 Update 83xx architecture's CONFIG_ECC_INIT_VIA_DDRC references to
13200 CONFIG_ECC_INIT_VIA_DDRCONTROLLER, which other Freescale architectures
13201 use
13202
13203 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13204 Acked-by: Kim Phillips <kim.phillips@freescale.com>
13205 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13206
13207 commit 039594a4301dadceb267db5e8b9c8c78b1bb86b5
13208 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13209 Date: Thu Jul 2 16:15:01 2009 +0530
13210
13211 8xxx: Second UART port added for MPC85xx, MPC83xx, MPC86xx processors
13212
13213 Defining the next two configs allows to switch the serial port from the
13214 console using the setenv stdin and stdout
13215 1. #define CONFIG_SERIAL_MULTI 1 /* Enable both serial ports */
13216 2. #define CONFIG_SYS_CONSOLE_IS_IN_ENV /* determine from environment */
13217
13218 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13219 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
13220 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13221
13222 commit 546b1032907df70f2dd0f98f3ad09885a88411e5
13223 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13224 Date: Thu Jul 2 16:14:40 2009 +0530
13225
13226 85xx: Adds GPIO registers to MPC85xx Memory Map.
13227
13228 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13229 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13230
13231 commit 5da6f806b400372b8a0664f3282c9e83a402eb66
13232 Author: Peter Tyser <ptyser@xes-inc.com>
13233 Date: Tue Jun 30 17:26:01 2009 -0500
13234
13235 86xx: XPedite5170 board support
13236
13237 Initial support for Extreme Engineering Solutions XPedite5170 -
13238 a MPC8640-based 3U VPX single board computer with a PMC/XMC
13239 site.
13240
13241 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13242 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13243
13244 commit e66f38da8434425aca8df08d06d9ef41b3478d3b
13245 Author: Timur Tabi <timur@freescale.com>
13246 Date: Wed Jul 1 16:51:59 2009 -0500
13247
13248 fsl_ddr: Fix DDR3 calculation of rank density with 8GB or more
13249
13250 The calculate for rank density in compute_ranksize() for DDR3 used all
13251 integers for the expression, so the result was also a 32-bit integer, even
13252 though the 'bsize' variable is a u64. Fix the expression to calculate a
13253 true 64-bit value.
13254
13255 Signed-off-by: Timur Tabi <timur@freescale.com>
13256 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13257
13258 commit 6af015b86b86d94de7ca1b23a3890bc93a50c2ab
13259 Author: Peter Tyser <ptyser@xes-inc.com>
13260 Date: Tue Jun 30 17:15:49 2009 -0500
13261
13262 fsl_dma: Make DMA transactions snoopable
13263
13264 Make DMA transactions snoopable so that CPUs can keep caches up-to-date.
13265 This allows dma transactions to be used for operations such as memory
13266 copies without any additional cache control operations.
13267
13268 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13269 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13270
13271 commit 0d595f76bc9c7c8dff5bd31dffed87a840a03c56
13272 Author: Peter Tyser <ptyser@xes-inc.com>
13273 Date: Tue Jun 30 17:15:48 2009 -0500
13274
13275 fsl_dma: Break out common memory initialization function
13276
13277 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13278 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13279
13280 commit 79f4333ceb059049b3ee560167d6cbaec493695f
13281 Author: Peter Tyser <ptyser@xes-inc.com>
13282 Date: Tue Jun 30 17:15:47 2009 -0500
13283
13284 8xxx: Move dma_init() call to common code
13285
13286 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13287 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13288
13289 commit 191c7118592cd182f2dc7f46b4f72d9bed0e2c76
13290 Author: Peter Tyser <ptyser@xes-inc.com>
13291 Date: Tue Jun 30 17:15:46 2009 -0500
13292
13293 fsl_dma: Move dma function prototypes to common header file
13294
13295 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13296 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13297
13298 commit 7892f619d40f4196e41e7114c5dfee9fad0f572f
13299 Author: Peter Tyser <ptyser@xes-inc.com>
13300 Date: Tue Jun 30 17:15:45 2009 -0500
13301
13302 8xxx: Rename dma_xfer() to dmacpy()
13303
13304 Also update dmacpy()'s argument order to match memcpy's and use
13305 phys_addr_t/phy_size_t for address/size arguments
13306
13307 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13308 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13309
13310 commit 484919cf3351212ebf748b9b13ece1ddaf7e7d1c
13311 Author: Peter Tyser <ptyser@xes-inc.com>
13312 Date: Tue Jun 30 17:15:44 2009 -0500
13313
13314 fsl_dma: Fix Channel Start bug in dma_check()
13315
13316 The Channel Start (CS) bit in the Mode Register (MR) should actually be
13317 cleared as the comment in the code suggests. Previously, CS was being
13318 set, not cleared.
13319
13320 Assuming normal operation of the DMA engine, this change shouldn't have
13321 any real affect.
13322
13323 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13324 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13325
13326 commit 51402ac12be9a0025f16db51fbde7c050a54e5fe
13327 Author: Peter Tyser <ptyser@xes-inc.com>
13328 Date: Tue Jun 30 17:15:43 2009 -0500
13329
13330 fsl_dma: Add support for arbitrarily large transfers
13331
13332 Support DMA transfers larger than the DMA controller's limit of
13333 (2 ^ 26 - 1) bytes
13334
13335 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13336 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13337
13338 commit a730393a362741c318b21771b8d7b2647e546c3e
13339 Author: Peter Tyser <ptyser@xes-inc.com>
13340 Date: Tue Jun 30 17:15:42 2009 -0500
13341
13342 fsl_dma: Use proper I/O access functions
13343
13344 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13345 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13346
13347 commit 9c06071a6077ba95e9d43226156e39567d5d064a
13348 Author: Peter Tyser <ptyser@xes-inc.com>
13349 Date: Tue Jun 30 17:15:41 2009 -0500
13350
13351 fsl_dma: Add bitfield definitions for common registers
13352
13353 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13354 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13355
13356 commit 017f11f68ef543e866be033bcb7b8058a8a380d8
13357 Author: Peter Tyser <ptyser@xes-inc.com>
13358 Date: Tue Jun 30 17:15:40 2009 -0500
13359
13360 8xxx: Break out DMA code to a common file
13361
13362 DMA support is now enabled via the CONFIG_FSL_DMA define instead of the
13363 previous CONFIG_DDR_ECC
13364
13365 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13366 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13367
13368 commit 6bbced671719518d0e28ff422623cd7ce396cbda
13369 Author: Mark Jackson <mpfj-list@mimc.co.uk>
13370 Date: Mon Jun 29 15:59:10 2009 +0100
13371
13372 Atmel LCD driver GUARDTIME fix
13373
13374 This patch allows the guard time parameter to be set in
13375 the Atmel LCDC driver.
13376
13377 By default, the previous value of 1 is used, unless the
13378 setting is defined elsewhere.
13379
13380 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
13381
13382 commit 29c35182462feea09f322e51913759a53359a3e0
13383 Author: Roy Zang <tie-fei.zang@freescale.com>
13384 Date: Tue Jun 30 13:56:23 2009 +0800
13385
13386 85xx: Add pci e1000 Ethernet support for P2020 board
13387
13388 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
13389 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13390
13391 commit 156984a3611c28093919d3e3c042f722b5548253
13392 Author: Kumar Gala <galak@kernel.crashing.org>
13393 Date: Thu Jun 18 08:39:42 2009 -0500
13394
13395 8xxx: Fix PCI bus address setup for 36-bit configs
13396
13397 We want the outbound PCI memory map to end at the 4G boundary so we
13398 can maximize the amount of space available for inbound mappings if
13399 we have large amounts of memory.
13400
13401 This matches the device tree setup in the kernel for the 36-bit physical
13402 configs for the platforms that have one (MPC8641 HPCN & MPC8572 DS).
13403
13404 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13405
13406 commit 480f61790565d77432b70b4016b73f2ae27d530f
13407 Author: Kumar Gala <galak@kernel.crashing.org>
13408 Date: Thu Jun 18 08:23:01 2009 -0500
13409
13410 86xx: Add CPU_TYPE_ENTRY support
13411
13412 Unify with 83xx and 85xx and use CPU_TYPE_ENTRY. We are going to use
13413 this to convey the # of cores and DDR width in the near future so its
13414 good to keep in sync.
13415
13416 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13417
13418 commit 98ab14e858bf60306d0aa3f0df5a7a5f88264aff
13419 Author: Peter Meerwald <pmeerw@pmeerw.net>
13420 Date: Mon Jun 29 15:48:33 2009 -0400
13421
13422 Blackfin: TWI/I2C: fix pure writes
13423
13424 If doing a pure write with register address and data (not a read/write
13425 combo transfer), we don't set the initial transfer length properly which
13426 ends up causing only the register address to be transferred.
13427
13428 While we're here, fix the i2c_write() parameter description of the buffer.
13429
13430 Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
13431 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13432
13433 commit 5710de45808eb8f1cc34b51dc3e67e2422113249
13434 Author: Prafulla Wadaskar <prafulla@marvell.com>
13435 Date: Sat May 30 01:13:33 2009 +0530
13436
13437 spi: Add Marvell Kirkwood SPI driver
13438
13439 This patch adds a SPI driver for the Marvell Kirkwood SoC's.
13440
13441 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
13442
13443 commit 6bde171a4c4116cee179167cb65335a28f99932d
13444 Author: Minkyu Kang <mk7.kang@samsung.com>
13445 Date: Thu Jun 25 19:21:33 2009 +0900
13446
13447 s3c64xx: move the reset_cpu function
13448
13449 Because of the reset_cpu is soc specific, should be move to soc
13450 And read reset value from SYS_ID register instead of hard code
13451 this patch also supports s3c6410
13452
13453 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
13454
13455 commit 576afd4faeba1519bcb8c0083c3e4d45e5643a48
13456 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13457 Date: Sun May 17 00:58:37 2009 +0200
13458
13459 integrator: merge integratorap and integratorcp
13460
13461 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13462 Acked-by: Peter Pearse <peter.pearse@arm.com>
13463
13464 commit 46937b27427688a56bf7f5944a92d962dc43c3fa
13465 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13466 Date: Sun May 17 00:58:36 2009 +0200
13467
13468 integratorap/cp: use cfi driver
13469
13470 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13471 Acked-by: Peter Pearse <peter.pearse@arm.com>
13472
13473 commit de7a01abd8aeb167946f391327e1e0d1e01f90c9
13474 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13475 Date: Sun May 17 00:58:36 2009 +0200
13476
13477 integratorap/cp/versatile: remove non used functions
13478
13479 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13480 Acked-by: Peter Pearse <peter.pearse@arm.com>
13481
13482 commit f54851a6e3844b7e01581b5a9681f294118b7529
13483 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13484 Date: Sun May 17 00:58:36 2009 +0200
13485
13486 integratorcp: split timer support
13487
13488 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13489 Acked-by: Peter Pearse <peter.pearse@arm.com>
13490
13491 commit 2bcef0723ea11c4e9bfbcfff2a93ec2da520b5f1
13492 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13493 Date: Sun May 17 00:58:36 2009 +0200
13494
13495 integratorap: split timer support
13496
13497 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13498 Acked-by: Peter Pearse <peter.pearse@arm.com>
13499
13500 commit 86baa085c52a7f3377a88074679c5aca9b9e4d38
13501 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13502 Date: Sun May 17 00:58:36 2009 +0200
13503
13504 integratorap: split pci support
13505
13506 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13507 Acked-by: Peter Pearse <peter.pearse@arm.com>
13508
13509 commit 379e9fc0a319b8f6ae16d763590bf023f3afb87c
13510 Author: Ilya Yanok <yanok@emcraft.com>
13511 Date: Mon Jun 8 04:12:50 2009 +0400
13512
13513 arm: add support for CONFIG_GENERIC_MMC
13514
13515 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
13516
13517 commit 47d19da4d3f9ac4787abe9dee32406478424be52
13518 Author: Ilya Yanok <yanok@emcraft.com>
13519 Date: Mon Jun 8 04:12:46 2009 +0400
13520
13521 serial_mx31: allow it to work with mx27 too and rename to serial_mxc
13522
13523 UART hardware on i.MX27 is the same as on the i.MX31 so we just
13524 need to provide the driver with correct address of the registers.
13525
13526 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
13527
13528 commit 1dc4da749dbde27ec862f5b65703e8e4541fbba3
13529 Author: Ilya Yanok <yanok@emcraft.com>
13530 Date: Mon Jun 8 04:12:45 2009 +0400
13531
13532 mx27: basic cpu support
13533
13534 This patch adds generic code to support Freescale's i.MX27 SoCs.
13535
13536 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
13537
13538 commit dd2f6965a6c71f6f711ec98827880152e022c236
13539 Author: Magnus Lilja <lilja.magnus@gmail.com>
13540 Date: Sat Jun 13 20:50:03 2009 +0200
13541
13542 i.MX31: Create a common device file.
13543
13544 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
13545
13546 commit 958f7da7887fea4a2091ae60944d62c1708c2c55
13547 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13548 Date: Sat Jun 13 20:50:02 2009 +0200
13549
13550 ARM: Add macros.h to be used in assembler file.
13551
13552 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13553
13554 commit 40c642bc19b9fa2906e3172487a522fee456340b
13555 Author: Magnus Lilja <lilja.magnus@gmail.com>
13556 Date: Sat Jun 13 20:50:01 2009 +0200
13557
13558 MX31: Add NAND SPL for i.MX31.
13559
13560 This patch adds the NAND SPL framework needed to boot i.MX31 boards
13561 from NAND.
13562
13563 It has been tested on a i.MX31 PDK board with large page NAND. Small
13564 page NANDs should work as well, but this has not been tested.
13565
13566 Note: The i.MX31 NFC uses a non-standard layout for large page NANDs,
13567 whether this is compatible with a particular setup depends on how
13568 the NAND device is programmed by the flash programmer (e.g. JTAG
13569 debugger).
13570
13571 The patch is based on the work by Maxim Artamonov.
13572
13573 Signed-off-by: Maxim Artamonov <scn1874@yandex.ru>
13574 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
13575
13576 commit df81238b3e27a791da996a9208402ac8f40b9862
13577 Author: Magnus Lilja <lilja.magnus@gmail.com>
13578 Date: Sat Jun 13 20:50:00 2009 +0200
13579
13580 ARM1136: Introduce CONFIG_PRELOADER macro.
13581
13582 Currently CONFIG_ONENAND_IPL is used in a number of #ifdef's
13583 in start.S. In preparation for adding support for NAND SPL
13584 the macro CONFIG_PRELOADER is introducted and replaces the
13585 CONFIG_ONENAND_IPL in start.S.
13586
13587 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
13588
13589 commit 8096c51fd4e611ed666dbe77767e81af5d94fc7b
13590 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13591 Date: Sat Jun 13 12:50:04 2009 +0200
13592
13593 at91: unify nor boot support
13594
13595 the lowlevel init sequence is the same so unify it
13596
13597 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13598
13599 commit 1b3b7c640d04df2ba9a9d947117d112a75fee7f4
13600 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13601 Date: Sat Jun 13 12:48:36 2009 +0200
13602
13603 at91sam9263ek: add nor flash support
13604
13605 this will allow you to store use it for the env and to boot directly U-Boot from
13606
13607 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13608
13609 commit 329492329700812c6df275aa0fda09d609cd0fd4
13610 Author: Ilko Iliev <iliev@ronetix.at>
13611 Date: Fri Jun 12 21:20:39 2009 +0200
13612
13613 at91: add support for the PM9261 board of Ronetix GmbH
13614
13615 The PM9261 board is based on the AT91SAM9261-EK board.
13616
13617 Here is the page on Ronetix website:
13618 http://www.ronetix.at/starter_kit_9261.html
13619
13620 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
13621 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13622
13623 commit 01550a2b650fbabc03334f9eadcc6083601a2414
13624 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13625 Date: Fri Jun 12 21:20:38 2009 +0200
13626
13627 pm9263: use macro instead of hardcode value for the lowlevel_init
13628
13629 optimize a few the RAM init
13630
13631 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
13632 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13633
13634 commit 7a11c7f9747240dc770954d320569596c0fbcb50
13635 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13636 Date: Fri Jun 12 21:20:37 2009 +0200
13637
13638 pm9263: lowlevel init update
13639
13640 move PSRAM init to pm9263.c
13641 this will allow us after to make the nor lowlevel_init generic
13642
13643 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13644
13645 commit 3e88337b225bf796f6df21d0a7f591530e9d4ce0
13646 Author: Mike Frysinger <vapier@gentoo.org>
13647 Date: Mon Jun 15 00:25:19 2009 -0400
13648
13649 Blackfin: move ALL += u-boot.ldr to blackfin_config.mk
13650
13651 The way the ALL variable is used allows for config.mk's to add more
13652 targets themselves without having to clutter up the top level Makefile.
13653
13654 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13655
13656 commit afac8b07172d7e4a65f86ce1ec4c783a6165ba1f
13657 Author: Mike Frysinger <vapier@gentoo.org>
13658 Date: Sun Jun 14 22:29:35 2009 -0400
13659
13660 Blackfin: fix SPI flash speed define name
13661
13662 The SPI flash define is named CONFIG_SF_DEFAULT_SPEED, not
13663 CONFIG_SF_DEFAULT_HZ, so fix the typos in the Blackfin boards.
13664
13665 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13666
13667 commit 9ae55ccf601de7a5b75eb418f3fc3d5eca92c106
13668 Author: Mike Frysinger <vapier@gentoo.org>
13669 Date: Sun Jun 14 22:26:31 2009 -0400
13670
13671 Blackfin: enable -O2 in lib_generic/ for ADI/Bluetechnix boards
13672
13673 Building the compression code in lib_generic/ with -O2 rather than -Os
13674 gives a nice speed boost without too much code size increase.
13675
13676 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13677
13678 commit fea63e2a44f0db51d2e39ee7793e8c6d7f3cf5d4
13679 Author: Mike Frysinger <vapier@gentoo.org>
13680 Date: Sun Jun 14 21:23:27 2009 -0400
13681
13682 Blackfin: bf548-ezkit: bump up monitor size
13683
13684 The latest version of U-Boot got a bit fatter in the BSS section which
13685 caused overflows in the RAM region, so increase the monitor size.
13686
13687 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13688
13689 commit bc43a8d8994c2f0be29e09b13b15da7f79e2c081
13690 Author: Vivi Li <vivi.li@analog.com>
13691 Date: Fri Jun 12 10:53:22 2009 +0000
13692
13693 Blackfin: bf533-stamp/bf537-stamp: fix env settings for SPI flash
13694
13695 The SPI flash layer is much stricter about sector usage than the eeprom
13696 layer we used to use, so update the env settings to better match the
13697 sector alignment of the flashes we use.
13698
13699 Signed-off-by: Vivi Li <vivi.li@analog.com>
13700 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13701
13702 commit 63cb0f4eb2d3cf15e7a1add19d1289f4ae75816c
13703 Author: Vivi Li <vivi.li@analog.com>
13704 Date: Fri Jun 12 10:33:23 2009 +0000
13705
13706 Blackfin: bump up default JTAG console timeout
13707
13708 The debug tools that interface with the other side of the JTAG console
13709 got much slower when generalizing things, so bump up the default timeout
13710 value on the U-Boot side to cope. Hopefully at some point we can improve
13711 the debug tools to speed things back up.
13712
13713 Signed-off-by: Vivi Li <vivi.li@analog.com>
13714 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13715
13716 commit c11ff779f4e0e0c7edc322e84dd229ad28709595
13717 Author: Mike Frysinger <vapier@gentoo.org>
13718 Date: Mon Jun 1 19:08:33 2009 -0400
13719
13720 Blackfin: add jtagconsole helper script
13721
13722 This script is similar to the netconsole script, but instead works with
13723 the JTAG console device driver that exists on Blackfin parts.
13724
13725 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13726
13727 commit 60f61e6d7655400bb785a2ef637581679941f6d1
13728 Author: Remy Bohmer <linux@bohmer.net>
13729 Date: Sat May 2 21:49:18 2009 +0200
13730
13731 Convert DM9000 driver for CONFIG_NET_MULTI
13732
13733 All drivers need to be converted to CONFIG_NET_MULTI.
13734 This patch converts the dm9000 driver.
13735
13736 Signed-off-by: Thomas Smits <ts.smits@gmail.com>
13737 Signed-off-by: Remy Bohmer <linux@bohmer.net>
13738 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13739
13740 commit 9131589ada4dda0718604d0a425ca46e52775f6e
13741 Author: Prafulla Wadaskar <prafulla@marvell.com>
13742 Date: Sun Jun 14 22:33:46 2009 +0530
13743
13744 net: Add Marvell Kirkwood gigabit ethernet driver
13745
13746 This patch adds a egiga driver for the Marvell Kirkwood SoC's.
13747
13748 Contributors:
13749 Yotam Admon <yotam@marvell.com>
13750 Michael Blostein <michaelbl@marvell.com
13751
13752 Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
13753 Acked-by: Stefan Rose <sr@denx.de>
13754 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
13755 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13756
13757 commit 7835f4b94927ecb5affd99aad62592108db606ad
13758 Author: s-paulraj@ti.com <s-paulraj@ti.com>
13759 Date: Tue May 12 11:45:34 2009 -0400
13760
13761 DaVinci Network Driver Updates
13762
13763 Different flavours of DaVinci SOC's have differences in their EMAC IP
13764 This patch does the following
13765 1) Updates base addresses for DM365
13766 2) Updates MDIO frequencies for DM365 and DM646x
13767 3) Update EMAC wrapper registers for DM365 and DM646x
13768
13769 Patch applies to u-boot-net git. the EMAC driver itself
13770 will be updated shortly to add support for DM365 and DM646x
13771
13772 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
13773 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13774
13775 commit 44578bea14e49035331a8f0e000e935e0d830ff4
13776 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
13777 Date: Tue May 26 08:29:29 2009 -0400
13778
13779 Subject: [PATCH] [repost] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter.
13780
13781 From 584b5fbd4abfc43f920cc1c329633e03816e28be Mon Sep 17 00:00:00 2001
13782 From: Richard Retanubun <RichardRetanubun@RuggedCom.com>
13783 Date: Wed, 20 May 2009 18:26:01 -0400
13784 Subject: [PATCH] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter.
13785
13786 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
13787 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13788
13789 commit c9a2aab1512fb2d132670fff9c27656d2eb949cd
13790 Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
13791 Date: Thu Jun 4 09:39:48 2009 +0200
13792
13793 A VLAN tagged DHCP request/discover is 4 bytes short
13794
13795 The problem is that BOOTP_SIZE uses ETHER_HDR_SIZE which is 14 bytes.
13796 If sending a VLAN tagged frame (when env variable vlan is set) this
13797 should be VLAN_ETHER_HDR_SIZE=18 which is what NetSetEther returns.
13798
13799 Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
13800 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13801
13802 commit 6e0d2fc7fe0dcfa2f51ab8931d706940ee364193
13803 Author: Ben Warren <biggerbadderben@gmail.com>
13804 Date: Tue Apr 28 16:39:19 2009 -0700
13805
13806 Remove support for non-CONFIG_NET_MULTI on PPC4xx EMAC
13807
13808 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13809
13810 commit 8453587ef9137daf98b7c9cf4f3b865f4039cea0
13811 Author: Ben Warren <biggerbadderben@gmail.com>
13812 Date: Tue May 26 00:34:07 2009 -0700
13813
13814 Switched davinci_emac Ethernet driver to use newer API
13815
13816 Added CONFIG_NET_MULTI to all Davinci boards
13817 Removed all calls to Davinci network driver from board code
13818 Added cpu_eth_init() to cpu/arm926ejs/cpu.c
13819
13820 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13821
13822 commit 8cc13c13f1d154c8fa8fff56cea357ed38af76bf
13823 Author: Ben Warren <biggerbadderben@gmail.com>
13824 Date: Mon Apr 27 23:19:10 2009 -0700
13825
13826 Initial cleanup of Davinci Ethernet driver
13827
13828 Removed pointless #ifdefs
13829 Moved functions around in file in preparation for switch to newer API
13830
13831 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13832
13833 commit 09cdd1b9b01450e91786d26ff3c866dc9c8d8d6b
13834 Author: Ben Warren <biggerbadderben@gmail.com>
13835 Date: Tue May 26 00:17:59 2009 -0700
13836
13837 Moved Davinci Ethernet driver to drivers/net
13838
13839 This driver has been renamed davinci_emac.c
13840
13841 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13842
13843 commit 6f51deb7f298413cfcb0a36d24c97ef7dd69d48f
13844 Author: Prafulla Wadaskar <prafulla@marvell.com>
13845 Date: Tue May 19 01:40:16 2009 +0530
13846
13847 Marvell MV88E61XX Switch Driver support
13848
13849 Chips supported:-
13850 1. 88E6161 6 port gbe swtich with 5 integrated PHYs
13851 2. 88E6165 6 port gbe swtich with 5 integrated PHYs
13852 2. 88E6132 3 port gbe swtich with 2 integrated PHYs
13853 Platform specific configuration supported for:-
13854 default or router port vlan configuration
13855 led_init configuration
13856 mdip/n polarity reversal configuration
13857
13858 Note: This driver is supported and tested against
13859 kirkwood egiga interface
13860
13861 Contributors:
13862 Yotam Admon <yotam@marvell.com>
13863 Michael Blostein <michaelbl@marvell.com
13864
13865 Reviewed by: Ronen Shitrit <rshitrit@marvell.com>
13866 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
13867 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13868
13869 commit 091dc9f6adaf572b067ae91af92c4e7db33d7903
13870 Author: Zach LeRoy <zleroy@xes-inc.com>
13871 Date: Fri May 22 10:26:33 2009 -0500
13872
13873 tsec: Add support for BCM5482S PHY
13874
13875 Signed-off-by: Zach LeRoy <zleroy@xes-inc.com>
13876 Acked-by: Kumar Gala <galak@kernel.crashing.org>
13877 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13878
13879 commit 9ff67e5e4c719556d57f136a6453f8e4798d85c0
13880 Author: Mike Frysinger <vapier@gentoo.org>
13881 Date: Sun Jun 14 06:29:07 2009 -0400
13882
13883 Blackfin: unify u-boot linker scripts
13884
13885 All the Blackfin linker scripts were duplicated across the board dirs with
13886 no difference save from the semi-often used ENV_IS_EMBEDDED option. So
13887 unify all of them in the lib_blackfin/ dir and for the few boards that
13888 need to embedded the environment directly, add a LDS_BOARD_TEXT define for
13889 them to customize via their board config file. This is much simpler than
13890 forcing them to duplicate the rest of the linker script.
13891
13892 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13893
13894 commit f52efcae98cbb8a39f1d0535df8d9646a776af9e
13895 Author: Mike Frysinger <vapier@gentoo.org>
13896 Date: Fri May 29 17:02:37 2009 -0400
13897
13898 Blackfin: bf518f-ezbrd: enable SST SPI flash driver
13899
13900 The BF51xF parts have an internal SST SPI flash, so make sure the driver is
13901 enabled by default so we can access it.
13902
13903 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13904
13905 commit f348ab85f741dc98b2d202c04b5f430eace94925
13906 Author: Mike Frysinger <vapier@gentoo.org>
13907 Date: Fri Apr 24 17:22:40 2009 -0400
13908
13909 Blackfin: convert specific pre/post config headers to common method
13910
13911 The Blackfin port was using asm/blackfin-config-{pre,post}.h to setup
13912 common Blackfin board defines. The common method now is to use config.h,
13913 so convert blackfin-config-post.h to that. Rename the still Blackfin
13914 specific blackfin-config-pre.h to config-pre.h so the naming conventions
13915 at least line up.
13916
13917 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13918
13919 commit 7c7503ee6cd03c0f3b16e98d33d5aa23b30d65b1
13920 Author: Mike Frysinger <vapier@gentoo.org>
13921 Date: Fri Apr 24 17:11:47 2009 -0400
13922
13923 Blackfin: enable LZMA for all ADI boards
13924
13925 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13926
13927 commit 0e63dc0679451d48f8b727c543ce48b488f7a33f
13928 Author: Mike Frysinger <vapier@gentoo.org>
13929 Date: Mon Apr 13 05:52:45 2009 -0400
13930
13931 Blackfin: make default ADI env more flexible
13932
13933 Allow boards to easily override the root= and default bootcmd, allow
13934 people to tweak the file used in default bootcmds at runtime via one env
13935 var, and add a stock nandboot command.
13936
13937 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13938
13939 commit 0f52b560f19623ec651f9b9b40405d138ec251d3
13940 Author: Hoan Hoang <hnhoan@i-syst.com>
13941 Date: Sun Jan 18 22:44:17 2009 -0500
13942
13943 Blackfin: ibf-dsp561: new board port
13944
13945 Signed-off-by: Hoan Hoang <hnhoan@i-syst.com>
13946 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13947
13948 commit 3088189a15d219c48fd7e71623ca4daa08b80b59
13949 Author: Mike Frysinger <vapier@gentoo.org>
13950 Date: Sun Oct 12 23:28:33 2008 -0400
13951
13952 Blackfin: blackstamp: new board port
13953
13954 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13955
13956 commit 59ac9729700db1d4446c1a6db3ffe38398b7abb2
13957 Author: Mike Frysinger <vapier@gentoo.org>
13958 Date: Sun Oct 12 23:22:25 2008 -0400
13959
13960 Blackfin: bf537-srv1: new board port
13961
13962 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13963
13964 commit d7fdc1410b5fa5ef623b35a283733b6bcee3753b
13965 Author: Mike Frysinger <vapier@gentoo.org>
13966 Date: Sun Oct 12 23:16:52 2008 -0400
13967
13968 Blackfin: bf537-minotaur: new board port
13969
13970 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13971
13972 commit cb4b5e874f3c9b882a6f4394bbebbbd91fd01bbf
13973 Author: Mike Frysinger <vapier@gentoo.org>
13974 Date: Sun Oct 12 23:08:03 2008 -0400
13975
13976 Blackfin: bf537-pnav: new board port
13977
13978 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13979
13980 commit 59e4be945b6469e31eee721e0bcdccf4940d75ac
13981 Author: Mike Frysinger <vapier@gentoo.org>
13982 Date: Sun Oct 12 21:55:45 2008 -0400
13983
13984 Blackfin: cm-bf527: new board port
13985
13986 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13987
13988 commit 8b219cf07c186cc9d97354cf4b14f24a53d193c5
13989 Author: Mike Frysinger <vapier@gentoo.org>
13990 Date: Sun Oct 12 21:54:07 2008 -0400
13991
13992 Blackfin: cm-bf548: new board port
13993
13994 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13995
13996 commit 9417d9a21384279308abe5b4dd8dfd418742484c
13997 Author: Mike Frysinger <vapier@gentoo.org>
13998 Date: Sun Oct 12 21:49:28 2008 -0400
13999
14000 Blackfin: tcm-bf537: new board port
14001
14002 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14003
14004 commit e548321af00e869af7194896576beb9b68457ff7
14005 Author: Mike Frysinger <vapier@gentoo.org>
14006 Date: Sun Oct 12 21:45:05 2008 -0400
14007
14008 Blackfin: cm-bf561: new board port
14009
14010 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14011
14012 commit 8a9bab08a6fe93e5f3bf57b90438f1d2a67fad3c
14013 Author: Mike Frysinger <vapier@gentoo.org>
14014 Date: Sun Oct 12 21:41:06 2008 -0400
14015
14016 Blackfin: cm-bf537e: new board port
14017
14018 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14019
14020 commit e82d8a1f028bedb12c4ab88a35a935010d92898c
14021 Author: Mike Frysinger <vapier@gentoo.org>
14022 Date: Sun Oct 12 21:36:22 2008 -0400
14023
14024 Blackfin: cm-bf533: new board port
14025
14026 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14027
14028 commit dd14af7640f7d48d8e9768eeeb09592e6f94ed38
14029 Author: Mike Frysinger <vapier@gentoo.org>
14030 Date: Thu Nov 27 16:50:32 2008 -0500
14031
14032 Blackfin: new spibootldr command
14033
14034 Newer Blackfin parts can an on-chip ROM that can boot LDRs over SPI flashes,
14035 so add a new 'spibootldr' command to take advantage of it.
14036
14037 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14038
14039 commit 67c2829b646bb5b859088b36fbc89e971b9c1960
14040 Author: Mike Frysinger <vapier@gentoo.org>
14041 Date: Mon Oct 6 04:42:33 2008 -0400
14042
14043 Blackfin: support embedding the environment into loader files (LDRs)
14044
14045 For the most part, the Blackfin processor boots files in the LDR format
14046 rather than binary/ELF files. So we want to export the environment as a
14047 raw blob to the LDR utility so it can embed it at the right location.
14048
14049 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14050
14051 commit 31f30c9eb60d9ab0bd702e31f66345f99b34bdc6
14052 Author: Mike Frysinger <vapier@gentoo.org>
14053 Date: Sun Jun 14 11:03:48 2009 -0400
14054
14055 add %.c->%.i and %.c->%.s rules
14056
14057 The Linux kernel has some helper rules which allow you to quickly produce
14058 some of the intermediary files from C source. Specifically, you can
14059 create .i files which is the preprocessed output and you can create .s
14060 files which is the assembler output. This is useful when you are trying
14061 to track down header/macro expansion errors or inline assembly errors.
14062
14063 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14064 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14065
14066 commit 6d1ce387874c1060f27656f70151a52c511cd0e3
14067 Author: Mike Frysinger <vapier@gentoo.org>
14068 Date: Sat May 30 01:02:03 2009 -0400
14069
14070 make sure toplevel $(SUBDIRS) is always declared
14071
14072 The $(SUBDIRS) variable is only declared when U-Boot has been configured,
14073 but it gets used all the time. In the non-configured case, it is used to
14074 generate a helpful error message, but it needs to be set properly for that
14075 to occur.
14076
14077 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14078
14079 commit 1260233982f7dfbdfd1adee12daa95a0c0e84a43
14080 Author: Grzegorz Bernacki <gjb@semihalf.com>
14081 Date: Fri Jun 12 11:33:55 2009 +0200
14082
14083 digsy mtc: Add description to GPIO initial configuration.
14084
14085 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
14086
14087 commit 12304871bc7839145f2b4238923e9023616d7399
14088 Author: Grzegorz Bernacki <gjb@semihalf.com>
14089 Date: Fri Jun 12 11:33:54 2009 +0200
14090
14091 digsy MTC: Add 'mtc' command.
14092
14093 New command allows to:
14094 o check FW version
14095 o set LED status
14096 o set digital output status
14097 o get digital input status
14098
14099 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
14100
14101 commit f1f66edfc76f4a9f5b9f63972d90309784a8cae5
14102 Author: Grzegorz Bernacki <gjb@semihalf.com>
14103 Date: Fri Jun 12 11:33:53 2009 +0200
14104
14105 digsy MTC: Add SPI support.
14106
14107 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
14108
14109 commit 6325b7780dad8be26ba6fc25ef88ba338c50205b
14110 Author: Grzegorz Bernacki <gjb@semihalf.com>
14111 Date: Fri Jun 12 11:33:52 2009 +0200
14112
14113 mpc52xx: Add SPI driver.
14114
14115 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
14116
14117 commit 5ec5529b82f314ca2cf9c262cdfc985d5fc468a0
14118 Author: Mike Frysinger <vapier@gentoo.org>
14119 Date: Sun Jun 14 09:33:00 2009 -0400
14120
14121 allow boards to customize compiler options on a per-file/dir basis
14122
14123 With our Blackfin boards, we like to build the compression routines with
14124 -O2 as our tests show a pretty good size/speed tradeoff. For the rest of
14125 U-Boot though, we want to stick with the default -Os as that is mostly
14126 control code. So in our case, we would add a line like so to the board
14127 specific config.mk file:
14128 CFLAGS_lib_generic += -O2
14129
14130 Now all files under lib_generic/ will have -O2 appended to their build.
14131
14132 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14133 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14134
14135 commit 6b1f78ae6ad037382ad430b07064105c88f7ac02
14136 Author: Wolfgang Denk <wd@denx.de>
14137 Date: Sun Jun 14 21:30:39 2009 +0200
14138
14139 Prepare v2009.06
14140
14141 Update CHANGELOG, fix minor coding stylke issue. Update Makefile.
14142
14143 Signed-off-by: Wolfgang Denk <wd@denx.de>
14144
14145 commit c3147c1762f8caf99649051116a2411bdf887c10
14146 Author: Wolfgang Denk <wd@denx.de>
14147 Date: Sun Jun 14 20:31:36 2009 +0200
14148
14149 Revert "SMC911x driver fixed for NFS boot"
14150
14151 This reverts commit ca9c8a1e10fac01e6a1129f82a7ce18bd818fa43,
14152 which causes compile warnings ("large integer implicitly truncated
14153 to unsigned type") on all systems that use this driver. The warning
14154 results from passing long constants (TX_CFG, RX_CFG) into
14155 smc911x_set_mac_csr() which is declared to accept "unsigned
14156 character" arguments only.
14157
14158 Being close to a release, with nobody available to actually test the
14159 code or the suggested fixes, it seems better to revert the patch.
14160
14161 commit 388517e4b745b00256c2fa201ce7bccb67b4f245
14162 Author: Peter Tyser <ptyser@xes-inc.com>
14163 Date: Fri May 22 10:26:37 2009 -0500
14164
14165 xes: Update Freescale clock code to work with 86xx processors
14166
14167 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14168 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14169
14170 commit 25623937bb81cae788d767e6c59a11c96fc82866
14171 Author: Peter Tyser <ptyser@xes-inc.com>
14172 Date: Fri May 22 10:26:36 2009 -0500
14173
14174 xes: Update Freescale DDR code to work with 86xx processors
14175
14176 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14177 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14178
14179 commit bef3013908bbc68f24084174a3ca86cc2a3eb986
14180 Author: Peter Tyser <ptyser@xes-inc.com>
14181 Date: Fri May 22 10:26:35 2009 -0500
14182
14183 xes: Update Freescale PCI code to work with 86xx processors
14184
14185 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14186 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14187
14188 commit 6442b71b522face775c1c31bd43121db3b4bf7d6
14189 Author: Peter Tyser <ptyser@xes-inc.com>
14190 Date: Fri May 22 10:26:32 2009 -0500
14191
14192 85xx: Add PORBMSR and PORDEVSR shift defines
14193
14194 Add defines similar to those already used for the the 86xx architecture.
14195 This will ease sharing of PCI code between the 85xx and 86xx
14196 architectures.
14197
14198 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14199 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14200
14201 commit 2f21ce4d546d31289ac49a680f78bcc9a792c6ec
14202 Author: Peter Tyser <ptyser@xes-inc.com>
14203 Date: Thu May 21 12:10:00 2009 -0500
14204
14205 fsl/85xx, 86xx: Sync up DMA code
14206
14207 The following changes were made to sync up the DMA code between the 85xx
14208 and 86xx architectures which will make it easier to break out common
14209 8xxx DMA code:
14210
14211 85xx:
14212 - Don't set STRANSINT and SPCIORDER fields in SATR register. These bits
14213 only have an affect when the SBPATMU bit is set.
14214 - Write 0xffffffff instead of 0xfffffff to clear errors in the DMA
14215 status register. We may as well clear all 32 bits of the register...
14216
14217 86xx:
14218 - Add CONFIG_SYS_MPC86xx_DMA_ADDR define to address DMA registers
14219 - Add clearing of errors in the DMA status register when initializing
14220 the controller
14221 - Clear the channel start bit in the DMA mode register after a transfer
14222
14223 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14224 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14225
14226 commit b1f12650d332eadac1306a772cab6096abee6ddd
14227 Author: Peter Tyser <ptyser@xes-inc.com>
14228 Date: Thu May 21 12:09:59 2009 -0500
14229
14230 fsl: Create common fsl_dma.h for 85xx and 86xx cpus
14231
14232 Break out DMA structures for the Freescale MPC85xx and MPC86xx cpus to
14233 reduce a large amount of code duplication
14234
14235 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14236 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14237
14238 commit 3bd8e532b5de20647aeaff94a1cbf33fb8b897b9
14239 Author: Haiying Wang <Haiying.Wang@freescale.com>
14240 Date: Wed May 20 12:30:41 2009 -0400
14241
14242 85xx: Add UEC6 and UEC8 at SGMII mode for MPC8569MDS
14243
14244 On MPC8569MDS board, UCC6 and UCC8 can be configured to work at SGMII mode via
14245 UEM on PB board. Since MPC8569 supports up to 4 Gigabit Ethernet ports, we
14246 disable UEC6 and UEC8 by default.
14247
14248 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14249 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14250
14251 commit e8efef7c1b457442583a8b9d38d8a5b667661616
14252 Author: Haiying Wang <Haiying.Wang@freescale.com>
14253 Date: Thu Jun 4 16:12:42 2009 -0400
14254
14255 drivers/qe: add sgmii support in for UEC driver
14256
14257 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14258 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14259
14260 commit 8e55258f144764de8902e9f078a7ad4c6c022c2f
14261 Author: Haiying Wang <Haiying.Wang@freescale.com>
14262 Date: Thu Jun 4 16:12:41 2009 -0400
14263
14264 qe: Pass in uec_info struct through uec_initialize
14265
14266 The uec driver contains code to hard code configuration information for the uec
14267 ethernet controllers. This patch creates an array of uec_info structures, which
14268 are then parsed by the corresponding driver instance to determine configuration.
14269 It also creates function uec_standard_init() to initialize all UEC interfaces
14270 for 83xx and 85xx.
14271
14272 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14273 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14274
14275 commit 9a6110897fc9282ade598bbba70ad72b940436e3
14276 Author: Haiying Wang <Haiying.Wang@freescale.com>
14277 Date: Thu Jun 4 16:12:40 2009 -0400
14278
14279 fsl: Update the number of ethxaddr in reading system eeprom
14280
14281 We support up to 8 mac addresses in system eeprom, so we define the macro
14282 MAX_NUM_PORTS to limit the mac_count to 8, and update the number of ethxaddr
14283 according to mac_count.
14284
14285 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14286 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14287
14288 commit f82107f637f167a77803c0933f9b24741a91c711
14289 Author: Haiying Wang <Haiying.Wang@freescale.com>
14290 Date: Wed May 20 12:30:37 2009 -0400
14291
14292 85xx: Add RMII support for MPC8569MDS
14293
14294 This patch supports UCC working at RMII mode on PIB board, fixup fdt blob to
14295 support rmii in kernel. It also changes the name of enable_mpc8569mds_qe_mdio to
14296 enalbe_mpc8569mds_qe_uec which is more accurate.
14297
14298 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14299 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14300
14301 commit 750098d33bc362ac4263863e92da158cf011063f
14302 Author: Haiying Wang <Haiying.Wang@freescale.com>
14303 Date: Wed May 20 12:30:36 2009 -0400
14304
14305 85xx: Add UEC3 and UEC4 support for MPC8569MDS
14306
14307 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14308 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14309
14310 commit 4e7b25e4fe777f525e426cbd58c3a3976c564f2e
14311 Author: Haiying Wang <Haiying.Wang@freescale.com>
14312 Date: Wed May 20 12:30:35 2009 -0400
14313
14314 drivers/qe: Add more SNUM number for QE
14315
14316 Some QE chips like 8569 need more SNUM numbers for supporting 4 UECs in RGMII-
14317 1000 mode.
14318
14319 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14320 Acked-by: Timur Tabi <timur@freescale.com>
14321 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14322
14323 commit 7211fbfa18f3061858696150ee6e9e093d9eceae
14324 Author: Haiying Wang <Haiying.Wang@freescale.com>
14325 Date: Thu May 21 15:34:14 2009 -0400
14326
14327 drivers/qe: Change QE RISC ALLOCATION to support 4 RISCs
14328
14329 Also define the QE_RISC_ALLOCATION_RISCs to MACROs instead of using enum, and
14330 define MAX_QE_RISC for QE based silicons.
14331
14332 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14333 Acked-by: Timur Tabi <timur@freescale.com>
14334 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14335
14336 commit b3d7f20f43a0f8d11c65e2f92153b5512b11580c
14337 Author: Haiying Wang <Haiying.Wang@freescale.com>
14338 Date: Wed May 20 12:30:29 2009 -0400
14339
14340 85xx: Add QE clk support
14341
14342 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14343 Acked-by: Timur Tabi <Timur@freescale.com>
14344 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14345
14346 commit 71b358cc26792889bbac35054d8e89d59b3fabc4
14347 Author: Kumar Gala <galak@kernel.crashing.org>
14348 Date: Wed May 20 01:11:33 2009 -0500
14349
14350 85xx: Added MPC8535/E identifiers
14351
14352 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14353
14354 commit 22419d77976bbd0df9fcf45513f1b96bd73e50d1
14355 Author: Kumar Gala <galak@kernel.crashing.org>
14356 Date: Thu May 21 08:36:43 2009 -0500
14357
14358 85xx: Always attempt ethernet device tree fixup
14359
14360 Its reasonable that we may have ethernet devices but dont have drivers
14361 or support enabled for them in u-boot and want the device tree fixed up.
14362 Unconditionally calling the ethernet fixup is fine since if we dont have
14363 ethernet nodes that match (or aliases) we will not attempt to do
14364 anything.
14365
14366 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14367 Acked-by: Timur Tabi <timur@freescale.com>
14368
14369 commit 52d6ad5ecfb22938441c8e3e62935fbd7b0f0920
14370 Author: Haiying Wang <Haiying.Wang@freescale.com>
14371 Date: Thu May 21 15:32:13 2009 -0400
14372
14373 drivers/qe: Rename the camel-case identifiers in uec
14374
14375 Rename riscRx/riscTx to risc_rx/risc_tx to comply with Codingstyle.
14376
14377 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14378
14379 commit feb7838f979ec2b581df3c791b9ae3284c36bb47
14380 Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
14381 Date: Fri Apr 3 15:36:13 2009 -0500
14382
14383 85xx: Add P2020DS support
14384
14385 The patch adds support for P2020DS reference platform.
14386 DDR3 interface uses hard-coded initialization rather than SPD
14387 for now and was tested at 667Mhz. Some PIXIS register
14388 definitions and associated code sections need to be fixed.
14389 TSEC1/2/3, NOR flash, MAC/SYS ID EEPROM, PCIE1/2/3 are all
14390 tested under u-boot.
14391
14392 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
14393 Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
14394 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14395
14396 commit 229549a56d9ae413c00f64fd7c728c6879a1b54b
14397 Author: Stefan Roese <sr@denx.de>
14398 Date: Tue Jun 9 16:57:47 2009 +0200
14399
14400 mpc512x: MPC5121ADS: Add NAND support
14401
14402 This patch adds NAND support to the MPC5121ADS board. Please
14403 note that the image size increased since NAND support didn't
14404 fit in the current image size (256k).
14405
14406 Signed-off-by: Stefan Roese <sr@denx.de>
14407 Signed-off-by: Wolfgang Denk <wd@denx.de>
14408 Cc: Wolfgang Denk <wd@denx.de>
14409
14410 commit 35f2edbb6cad043ccd5ea6e78fe9b7aa21d8395f
14411 Author: Stefan Roese <sr@denx.de>
14412 Date: Tue Jun 9 16:57:03 2009 +0200
14413
14414 nand/mpc512x: Add MPC512x NAND support (NFC)
14415
14416 This patch adds NAND Flash Controller driver for MPC5121 revision 2.
14417 All device features, except hardware ECC and power management, are
14418 supported.
14419
14420 This NFC driver replaces the one orignally posted by John Rigby:
14421
14422 "[PATCH] Freescale NFC NAND driver"
14423
14424 It's a port of the Linux driver version posted by Piotr Ziecik a few
14425 weeks ago. Using this driver has the following advantages (from my
14426 point of view):
14427
14428 - Compatibility with the Linux NAND driver (e.g. ECC usage)
14429 - Better code quality in general
14430 - Resulting U-Boot image is a bit smaller (approx. 3k)
14431 - Better to sync with newer Linux driver versions
14432
14433 The only disadvantage I can see, is that HW-ECC is not supported right
14434 now. But this could be added later (e.g. port from Linux driver after
14435 it's supported there). Using HW-ECC on the MCP5121 NFC has a general
14436 problem because of the ECC usage in the spare area. This collides with
14437 JFFS2 for example.
14438
14439 Signed-off-by: Stefan Roese <sr@denx.de>
14440 Cc: Piotr Ziecik <kosmo@semihalf.com>
14441 Cc: Wolfgang Denk <wd@denx.de>
14442 Cc: John Rigby <jcrigby@gmail.com>
14443 Cc: Scott Wood <scottwood@freescale.com>
14444
14445 commit e53b507cee5d976953134a565c72fd32c967d7dd
14446 Author: Stefan Roese <sr@denx.de>
14447 Date: Tue Jun 9 11:50:40 2009 +0200
14448
14449 mpc512x: Add esd gmbh mecp5123 board support
14450
14451 MECP5123 is a MPC5121E based module by esd gmbh.
14452
14453 Signed-off-by: Stefan Roese <sr@denx.de>
14454 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
14455
14456 commit 6bd55cc65d0c3aa84d719518254fb3c650239ed9
14457 Author: Stefan Roese <sr@denx.de>
14458 Date: Tue Jun 9 11:50:05 2009 +0200
14459
14460 mcp512x: Add macros for SCFR LPC divisor access
14461
14462 Thos macros will be used by the esd mecp5123 board.
14463
14464 Signed-off-by: Stefan Roese <sr@denx.de>
14465
14466 commit c60dc8527dbb2a1318c03bc18bdebcfbd0164551
14467 Author: Stefan Roese <sr@denx.de>
14468 Date: Mon Jun 8 09:38:07 2009 +0200
14469
14470 mpc512x: Fix problem with I2C access before relocation
14471
14472 This is needed for the upcoming esd MECP5123 board port which uses
14473 I2C EEPROM for environment storage.
14474
14475 Signed-off-by: Stefan Roese <sr@denx.de>
14476 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
14477 Acked-by: Heiko Schocher<hs@denx.de>
14478
14479 commit 58f10460b05e0928d986b15edd4f2e1e99403f7e
14480 Author: Stefan Roese <sr@denx.de>
14481 Date: Thu Jun 4 13:35:39 2009 +0200
14482
14483 74xx_7xx: CPCI750: Add CPCI adapter/target support
14484
14485 The CPCI750 can be built as CPCI host or adapter/target board. This patch
14486 adds support for runtime detection of those variants.
14487
14488 Signed-off-by: Stefan Roese <sr@denx.de>
14489 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
14490
14491 commit ae7a2739d7a0704437376e229bb21940952c55be
14492 Author: Stefan Roese <sr@denx.de>
14493 Date: Fri Jun 5 05:45:41 2009 +0200
14494
14495 74xx_7xx: CPCI750: Enable access to PCI function > 0
14496
14497 The Marvell bridge 64360 supports serveral PCI functions, not only 0. This
14498 patch enables access to those functions.
14499
14500 Signed-off-by: Stefan Roese <sr@denx.de>
14501 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
14502
14503 commit e5b563e9ec54c3f6d702c8fa2b711b4a6150243a
14504 Author: Stefan Roese <sr@denx.de>
14505 Date: Thu Jun 4 13:35:37 2009 +0200
14506
14507 74xx_7xx: CPCI750: Minor coding style cleanup of cpci750.c
14508
14509 Signed-off-by: Stefan Roese <sr@denx.de>
14510 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
14511
14512 commit 0e5ef07d0d91bd3d87ebea0534f538561aa974d5
14513 Author: Stefan Roese <sr@denx.de>
14514 Date: Thu Jun 4 13:35:36 2009 +0200
14515
14516 74xx_7xx: CPCI750: Add loadpci command
14517
14518 This command is used to load/boot an OS-image which is transferred from
14519 the CPCI host to the CPCI target/adapter.
14520
14521 Signed-off-by: Stefan Roese <sr@denx.de>
14522 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
14523
14524 commit 0a14d6b8f4d21ff59a9b7686a49a77069a9fcd2a
14525 Author: Stefan Roese <sr@denx.de>
14526 Date: Thu Jun 4 13:35:35 2009 +0200
14527
14528 74xx_7xx: CPCI750: Add commandline editing/history
14529
14530 Signed-off-by: Stefan Roese <sr@denx.de>
14531 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
14532
14533 commit 60cfe87bd39e6f07f2b92eb4bff82bfd105f4724
14534 Author: Stefan Roese <sr@denx.de>
14535 Date: Thu Jun 4 16:55:34 2009 +0200
14536
14537 UBI: Add compile-time check for correct malloc area configuration
14538
14539 UBI is quite memory greedy and requires at least approx. 512k of malloc
14540 area. This patch adds a compile-time check, so that boards will not
14541 build with less memory reserved for this area (CONFIG_SYS_MALLOC_LEN).
14542
14543 Signed-off-by: Stefan Roese <sr@denx.de>
14544
14545 commit 7ce6031afc8671c8b47c6135b3678d43fcd02852
14546 Author: Prafulla Wadaskar <prafulla@marvell.com>
14547 Date: Mon Apr 6 21:24:43 2009 +0530
14548
14549 sf: new Macronix MX25xx SPI flash driver
14550
14551 Added macronix SF driver for MTD framework
14552 MX25L12805D is supported and tested
14553 TBD: sector erase implementation, other deivces support
14554
14555 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
14556 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14557
14558 commit 2a6cc58869305f346e389eefdfa96dea5146cb0c
14559 Author: Todor I Mollov <tmollov@ucsd.edu>
14560 Date: Sat Apr 4 07:14:44 2009 -0400
14561
14562 sf: atmel: implement power-of-two write/erase funcs
14563
14564 Signed-off-by: Todor I Mollov <tmollov@ucsd.edu>
14565 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14566 CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14567
14568 commit 4bc6eb79be2a7317425575184324b94e3b43fbc2
14569 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
14570 Date: Mon May 25 17:23:18 2009 +0530
14571
14572 mpc85xx: 8536ds: Add USB related CONFIGs
14573
14574 This patch adds CONFIGs for enabling USB in mpc8536ds and also
14575 adds usb_phy_type in CONFIG_EXTRA_ENV_SETTINGS. Also revamps its
14576 Copyright.
14577
14578 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
14579 Signed-off-by: Remy Bohmer <linux@bohmer.net>
14580
14581 commit 6823e9b01290977c4d9c90381459c01f66e12e79
14582 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
14583 Date: Mon May 25 17:23:17 2009 +0530
14584
14585 mpc83xx: 8315erdb: Add USB related CONFIGs
14586
14587 This patch adds CONFIGs for enabling USB in mpc8315erdb and also
14588 adds usb_phy_type in CONFIG_EXTRA_ENV_SETTINGS. Also revamps its
14589 Copyright.
14590
14591 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
14592 Signed-off-by: Remy Bohmer <linux@bohmer.net>
14593
14594 commit a07bf180efc3c0de4a89a3bd49a7c7584dfb95a8
14595 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
14596 Date: Thu May 21 17:32:48 2009 +0530
14597
14598 mpc85xx: USB: Add support
14599
14600 The following patch adds 85xx-specific USB support and also
14601 revamps Copyright in immap_85xx.h
14602
14603 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
14604 Signed-off-by: Remy Bohmer <linux@bohmer.net>
14605
14606 commit 4ef01010aa4799c759d75e67007fdd3a38c88c8a
14607 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
14608 Date: Mon May 25 17:23:16 2009 +0530
14609
14610 mpc83xx: USB: Reorganized its support
14611
14612 The following patch reorganizes/reworks the USB support for mpc83xx
14613 as under:-
14614
14615 * Moves the 83xx USB clock init from drivers/usb/host/ehci-fsl.c to
14616 cpu/mpx83xx/cpu_init.c
14617
14618 * Board specific usb_phy_type is read from the environment
14619
14620 * Adds USB EHCI specific structure in include/usb/ehci-fsl.h
14621
14622 * Copyrights revamped in most of the following files
14623
14624 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
14625 Signed-off-by: Remy Bohmer <linux@bohmer.net>
14626
14627 commit ed90d2c87158e5114b6009fa95bb6417e4b27b3e
14628 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
14629 Date: Thu May 21 17:32:27 2009 +0530
14630
14631 mpc8xxx: USB: Relocates ehci-fsl.h to include/usb
14632
14633 The following patch moves 8xxx-specifc USB #defines from
14634 drivers/usb/host/ehci-fsl.h to include/usb.
14635
14636 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
14637 Signed-off-by: Remy Bohmer <linux@bohmer.net>
14638
14639 commit cfd39cdf9422d3d25e9b3c058865f4c1f66f34da
14640 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
14641 Date: Thu May 21 17:32:15 2009 +0530
14642
14643 mpc8xxx: USB: Removed reenablement of its interface
14644
14645 To prepare for the 85xx USB support, which requires interface enablement
14646 only once in (specified) order, no different than instructions for
14647 enabling the interface under 83xx. It is unknown why the original author
14648 enabled the interface twice (checked for references in errata, etc).
14649
14650 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
14651 Signed-off-by: Remy Bohmer <linux@bohmer.net>
14652
14653 commit 2c7920afaf96d9779304202cd8a355b4f7576a83
14654 Author: Peter Tyser <ptyser@xes-inc.com>
14655 Date: Fri May 22 17:23:25 2009 -0500
14656
14657 83xx: Replace CONFIG_MPC83[0-9]X with MPC83[0-9]x
14658
14659 Use the standard lowercase "x" capitalization that other Freescale
14660 architectures use for CPU defines to prevent confusion and errors
14661
14662 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14663 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14664
14665 commit 0f898604945af4543c1525fc33b6bae621a3b805
14666 Author: Peter Tyser <ptyser@xes-inc.com>
14667 Date: Fri May 22 17:23:24 2009 -0500
14668
14669 83xx: Replace CONFIG_MPC83XX with CONFIG_MPC83xx
14670
14671 Use the standard lowercase "xx" capitalization that other Freescale
14672 architectures use for CPU defines to prevent confusion and errors
14673
14674 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14675 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14676
14677 commit ba4feae90ca71de1681d5808f17e73224d8f03c4
14678 Author: Stefan Roese <sr@denx.de>
14679 Date: Tue Jun 2 16:53:16 2009 +0200
14680
14681 mpc512x: Use serial_setbrg() in serial_init() to not duplicate the code
14682
14683 This patch removes the duplicated code for baudrate generator configuration
14684 in the PSC serial_init() implementation by calling serial_setbrg() instead
14685 of duplicating the code.
14686
14687 Signed-off-by: Stefan Roese <sr@denx.de>
14688
14689 commit b8c1d6a54ff8195488b68e163de8ec31f1603496
14690 Author: Stefan Roese <sr@denx.de>
14691 Date: Tue Jun 2 16:53:15 2009 +0200
14692
14693 mpc512x: Fix PSC divisor calculation for baudrate setting
14694
14695 The wrong input frequency was used in serial_setbrg(). This patch fixes
14696 this by using ips_clk as input frequency for the PSC baudrate generator.
14697
14698 Signed-off-by: Stefan Roese <sr@denx.de>
14699
14700 commit 52568c3654b2b257016d52167805ae132faac14e
14701 Author: Wolfgang Denk <wd@denx.de>
14702 Date: Sat May 16 10:47:46 2009 +0200
14703
14704 MPC512x: add support for ARIA board
14705
14706 ARIA is a MPC5121E based COM Express module by Dave/DENX.
14707
14708 Signed-off-by: Wolfgang Denk <wd@denx.de>
14709 Cc: John Rigby <jcrigby@gmail.com>
14710
14711 commit 3b74e7ec58e2cc352b0a396a614065cfeb8d138f
14712 Author: Wolfgang Denk <wd@denx.de>
14713 Date: Sat May 16 10:47:45 2009 +0200
14714
14715 MPC512x: remove include/mpc512x.h
14716
14717 Move needed definitions (register descriptions etc.) from
14718 include/mpc512x.h into include/asm-ppc/immap_512x.h.
14719
14720 Instead of using a #define'd register offset, use a function that
14721 provides the PATA controller's base address.
14722
14723 All the rest of include/mpc512x.h are register offset definitions
14724 which can be eliminated by proper use of C structures.
14725
14726 There are only a few register offsets remaining that are needed in
14727 cpu/mpc512x/start.S; for these we provide cpu/mpc512x/asm-offsets.h
14728 which is intended as a temporary workaround only. In a later patch
14729 this file will be removed, too, and then auto-generated from the
14730 respective C structs.
14731
14732 Signed-off-by: Wolfgang Denk <wd@denx.de>
14733 Cc: John Rigby <jcrigby@gmail.com>
14734
14735 commit a927e491b2a326c1e9c4313e3ce4042988422697
14736 Author: Wolfgang Denk <wd@denx.de>
14737 Date: Sat May 16 10:47:44 2009 +0200
14738
14739 MPC512x FEC: get rid of duplicated struct ethernet_regs
14740
14741 Use existing struct fec512x instead.
14742
14743 Signed-off-by: Wolfgang Denk <wd@denx.de>
14744 Cc: John Rigby <jcrigby@gmail.com>
14745 Acked-by: Ben Warren <biggerbadderben@gmail.com>
14746
14747 commit 843efb1192cc8fd4f904a23dbab4e0fe3e1c5bc2
14748 Author: Wolfgang Denk <wd@denx.de>
14749 Date: Sat May 16 10:47:43 2009 +0200
14750
14751 MPC512x: use I/O accessors instead of pointer accesses
14752
14753 This commit changes the MPC512x code to use I/O accessor calls (i.e.
14754 out_*() and in_*()) instead of using deprecated pointer accesses.
14755
14756 Signed-off-by: Wolfgang Denk <wd@denx.de>
14757 Cc: John Rigby <jcrigby@gmail.com>
14758
14759 commit 19dc7e179268be148e550c36203208c662610d76
14760 Author: Wolfgang Denk <wd@denx.de>
14761 Date: Sat May 16 10:47:42 2009 +0200
14762
14763 MPC512x: add more hardware description to immap_512x.h
14764
14765 - add GPIO module description
14766 - add Address Latch Timing Register description
14767 - add IO Control Memory Map
14768 - add FEC Memory Map
14769
14770 Also change board/freescale/mpc5121ads/mpc5121ads.c and
14771 cpu/mpc512x/iopin.c as needed.
14772
14773 Signed-off-by: Wolfgang Denk <wd@denx.de>
14774 Cc: John Rigby <jcrigby@gmail.com>
14775
14776 commit 72601d04fdfdd4c7597afcf1f6aab654bd99366c
14777 Author: Wolfgang Denk <wd@denx.de>
14778 Date: Sat May 16 10:47:41 2009 +0200
14779
14780 Rename ads5121 board into mpc5121ads
14781
14782 We rename the board so we use a consistent name in U-Boot and in
14783 Linux. Also, we use this opportunity to move the board into the
14784 Freecale vendor directory.
14785
14786 Signed-off-by: Wolfgang Denk <wd@denx.de>
14787 Cc: John Rigby <jcrigby@gmail.com>
14788
14789 commit debf87415579c0f50aab9e0832976d4506babe0f
14790 Author: Wolfgang Denk <wd@denx.de>
14791 Date: Sat May 16 10:47:40 2009 +0200
14792
14793 cpu/mpc512x/diu.c: fix warning: assignment from incompatible pointer type
14794
14795 Signed-off-by: Wolfgang Denk <wd@denx.de>
14796 Cc: John Rigby <jcrigby@gmail.com>
14797
14798 commit 8b251263191ec554967dd1add6237c1ba7f7eb25
14799 Author: Wolfgang Denk <wd@denx.de>
14800 Date: Sat May 16 10:47:39 2009 +0200
14801
14802 cpu/mpc512x/pci.c: minor coding style cleanup
14803
14804 Get rid of variable declaration in the middle of the code.
14805
14806 Signed-off-by: Wolfgang Denk <wd@denx.de>
14807 Cc: John Rigby <jcrigby@gmail.com>
14808
14809 commit de26ef99bddbce4ed225f93afcf0bee99c3b6f87
14810 Author: Wolfgang Denk <wd@denx.de>
14811 Date: Sat May 16 10:47:38 2009 +0200
14812
14813 mpc512x: Move common files to share them by several boards
14814
14815 We will soon see several new MPC521x based boards added. This patch
14816 moves files that are not board specific to a common directory so they
14817 can be shared by all such ports. It also splits off common IDE code
14818 into a new file, cpu/mpc512x/ide.c .
14819
14820 Signed-off-by: Wolfgang Denk <wd@denx.de>
14821 Cc: John Rigby <jcrigby@gmail.com>
14822
14823 commit 03e069dc0a765d506f78a68319acf33d432e035b
14824 Author: Wolfgang Denk <wd@denx.de>
14825 Date: Sat May 16 10:47:37 2009 +0200
14826
14827 mpc512x: change cpu/mpc512x/Makefile to use Kconfig style
14828
14829 Signed-off-by: Wolfgang Denk <wd@denx.de>
14830 Cc: John Rigby <jcrigby@gmail.com>
14831
14832 commit a89c33db96a1e55319a286dd4c3c05ca64ac6bfd
14833 Author: Wolfgang Denk <wd@denx.de>
14834 Date: Sun May 24 17:06:54 2009 +0200
14835
14836 General help message cleanup
14837
14838 Many of the help messages were not really helpful; for example, many
14839 commands that take no arguments would not print a correct synopsis
14840 line, but "No additional help available." which is not exactly wrong,
14841 but not helpful either.
14842
14843 Commit ``Make "usage" messages more helpful.'' changed this
14844 partially. But it also became clear that lots of "Usage" and "Help"
14845 messages (fields "usage" and "help" in struct cmd_tbl_s respective)
14846 were actually redundant.
14847
14848 This patch cleans this up - for example:
14849
14850 Before:
14851 => help dtt
14852 dtt - Digital Thermometer and Thermostat
14853
14854 Usage:
14855 dtt - Read temperature from digital thermometer and thermostat.
14856
14857 After:
14858 => help dtt
14859 dtt - Read temperature from Digital Thermometer and Thermostat
14860
14861 Usage:
14862 dtt
14863
14864 Signed-off-by: Wolfgang Denk <wd@denx.de>
14865
14866 commit 94796d8544d4248028141bad11c6a74b840e9d6e
14867 Author: Wolfgang Denk <wd@denx.de>
14868 Date: Sun May 24 19:17:29 2009 +0200
14869
14870 Make "usage" messages more helpful.
14871
14872 In case of incorrect command invocations U-Boot used to print pretty
14873 useless "usage" messages, for example:
14874
14875 => nand markbad
14876 Usage:
14877 nand - NAND sub-system
14878
14879 In the result, the user would have to run the "help" command to get
14880 the (available) information about correct command usage. Change this,
14881 so that this information gets always printed.
14882
14883 Note that this changes the user interface of all commands, but
14884 hopefully to the better.
14885
14886 Signed-off-by: Wolfgang Denk <wd@denx.de>
14887
14888 commit 4c94f6c54bbc4dc5f418da01d8ec01e2adf636be
14889 Author: Mike Frysinger <vapier@gentoo.org>
14890 Date: Sun May 24 02:26:19 2009 -0400
14891
14892 nvedit: speed up printing of environment
14893
14894 The printing code would check the same environment byte multiple times and
14895 write to the console one byte at a time. For some devices (such as the
14896 Blackfin JTAG console which operates in 8 bytes at a time), this is pretty
14897 damned slow. So create a small 16 byte buffer to fill up and send to puts
14898 as needed. In the process, unify the different print functions, shrink
14899 the resulting code (source and compiled), and avoid excess env reads as
14900 those too can be somewhat expensive depending on the board.
14901
14902 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14903
14904 commit 3112030a430553768de5d30c05bedf8710784452
14905 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14906 Date: Fri May 22 19:28:52 2009 +0200
14907
14908 config.mk: remove un-needed REMOTE_BUILD check
14909
14910 as $(obj) is empty when in tree build
14911
14912 %.s: %.S
14913 $(CPP) $(AFLAGS) -o $@ $<
14914
14915 and
14916
14917 $(obj)%.s: %.S
14918 $(CPP) $(AFLAGS) -o $@ $<
14919
14920 are the same
14921
14922 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14923 Acked-by: Mike Frysinger <vapier@gentoo.org>
14924
14925 commit 651351fe980b20217b014b9a888398f18d77951c
14926 Author: Tom Rix <Tom.Rix@windriver.com>
14927 Date: Wed May 20 07:55:41 2009 -0500
14928
14929 FAT replace compare_sign with strncmp.
14930
14931 The static function compare_sign is only used to compare the fs_type string
14932 and does not do anything more than what strncmp does.
14933
14934 The addition of the trailing '\0' to fs_type, while legal, is not needed
14935 because the it is never printed out and strncmp does not depend on NULL
14936 terminated strings.
14937
14938 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
14939
14940 commit ecb1dc892297d5d99876907328fed732feefeab2
14941 Author: Mike Frysinger <vapier@gentoo.org>
14942 Date: Wed May 20 04:35:14 2009 -0400
14943
14944 Add support for Linux-like kallsysms
14945
14946 The kernel stores address<->symbol names in it so things can be decoded at
14947 runtime. Do it in U-Boot, and we get nice symbol decoding when crashing.
14948
14949 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14950
14951 commit 36c9169aa6f79ddf604a3bca64e145654f94888b
14952 Author: Wolfgang Denk <wd@denx.de>
14953 Date: Sun May 17 16:01:54 2009 +0200
14954
14955 cmd_mtdparts.c: allow to omit definitions for default settings
14956
14957 There is actually no good reason to enforce that all board
14958 configuations must define default settings for "mtdids" and
14959 "mtdparts". Actually this may be difficult to handle, especially on
14960 boards where different sizes of flash chips can be fit, so there is no
14961 real "default" partition map for all boards.
14962
14963 Lift this arbitrary limitation.
14964
14965 Signed-off-by: Wolfgang Denk <wd@denx.de>
14966
14967 commit 864aa034f3a0e10ce710e8bbda171df3cab59414
14968 Author: Stefan Roese <sr@denx.de>
14969 Date: Tue May 12 14:31:56 2009 +0200
14970
14971 cmd_mtdparts: Move to common handling of FLASH devices via MTD layer
14972
14973 This patch removes all references to the direct CFI FLASH interface
14974 (via flash_info[]). Now that all FLASH types currently handled in
14975 mtdparts are available (if selected, see below) via the MTD infrastructure.
14976 This is NOR, NAND and OneNAND right now. This can be achieved by defining
14977 the following options:
14978
14979 CONFIG_MTD_DEVICE (for all FLASH types)
14980
14981 plus
14982
14983 CONFIG_FLASH_CFI_MTD (for NOR FLASH)
14984
14985 So we need to add those defines to the board config headers currently
14986 using the mtdparts commands. This is done via another patch, so
14987 we shouldn't break mtdparts compatibility.
14988
14989 One big advantage from this solution is that the cmd_mtdparts.c is
14990 *much* cleaner now. Lot's of #ifdef's are removed and the code itself
14991 is smaller. Additionally the newly added MDT concatenation feature
14992 can new be used via the mtdparts infrastructure and therefor via
14993 UBI etc.
14994
14995 Signed-off-by: Stefan Roese <sr@denx.de>
14996 Cc: Ladislav Michl <ladis@linux-mips.org>
14997 Cc: Scott Wood <scottwood@freescale.com>
14998
14999 commit d558107c18708050f05b6639b2192efb67c905dc
15000 Author: Stefan Roese <sr@denx.de>
15001 Date: Tue May 12 14:31:18 2009 +0200
15002
15003 mtd: Introduce CONFIG_MTD_DEVICE to select compilation of mtdcore.o
15004
15005 This new define enables mtdcore.c compilation and with this we can
15006 select the MTD device infrastructure needed for the reworked mtdparts
15007 command.
15008
15009 We now have the 2 MTD infrastructure defines, CONFIG_MTD_DEVICE and
15010 CONFIG_MTD_PARTITIONS. CONFIG_MTD_DEVICE is needed (as explained above)
15011 for the "mtdparts" command and CONFIG_MTD_PARTITIONS is needed for UBI.
15012
15013 Signed-off-by: Stefan Roese <sr@denx.de>
15014 Cc: Scott Wood <scottwood@freescale.com>
15015
15016 commit 942556a92a8c1eb1bd76584a5143f6f57dcb25ad
15017 Author: Stefan Roese <sr@denx.de>
15018 Date: Tue May 12 14:32:58 2009 +0200
15019
15020 mtd: MTD related config header changes (mtdparts command)
15021
15022 By changing the cmd_mtdparts to only use the MTD infrastructure and
15023 not the direct interface to the CFI NOR FLASH driver we now need
15024 to add the MTD infrastructure to all boards using those mtdparts
15025 commands. This patch adds those components:
15026
15027 CONFIG_MTD_DEVICE (for all FLASH types)
15028
15029 plus
15030
15031 CONFIG_FLASH_CFI_MTD (for NOR FLASH)
15032
15033 To all board maintainers: Please test this on your platforms and
15034 report any problems/issues found. Thanks.
15035
15036 Signed-off-by: Stefan Roese <sr@denx.de>
15037 Cc: Wolfgang Denk <wd@denx.de>
15038 Cc: Ron Madrid <info@sheldoninst.com>
15039 Cc: Georg Schardt <schardt@team-ctech.de>
15040 Cc: Michal Simek <monstr@monstr.eu>
15041 Cc: Ladislav Michl <ladis@linux-mips.org>
15042 Cc: Martin Krause <martin.krause@tqs.de>
15043 Cc: Gary Jennejohn <garyj@denx.de>
15044 Cc: Ricardo Ribalda <ricardo.ribalda@uam.es>
15045
15046 commit 8d2effea23e938631126a7888008a0637e13b389
15047 Author: Stefan Roese <sr@denx.de>
15048 Date: Mon May 11 16:03:55 2009 +0200
15049
15050 mtd: Update MTD infrastructure to support 64bit device size
15051
15052 This patch brings the U-Boot MTD infrastructure in sync with the current
15053 Linux MTD version (2.6.30-rc3). Biggest change is the 64bit device size
15054 support and a resync of the mtdpart.c file which has seen multiple fixes
15055 meanwhile.
15056
15057 Signed-off-by: Stefan Roese <sr@denx.de>
15058 Cc: Scott Wood <scottwood@freescale.com>
15059 Cc: Kyungmin Park <kmpark@infradead.org>
15060
15061 commit 0a57265533c412adf6024f4b4955141f4346b2b9
15062 Author: Stefan Roese <sr@denx.de>
15063 Date: Tue May 12 14:29:39 2009 +0200
15064
15065 mtd: Add MTD concat support to concatenate multiple MTD NOR devices
15066
15067 This patch adds concatenation support to the U-Boot MTD infrastructure.
15068 By enabling CONFIG_MTD_CONCAT this MTD CFI wrapper will concatenate
15069 all found NOR devices into one single MTD device. This can be used by
15070 e.g by UBI to access a partition that spans over multiple NOR chips.
15071
15072 Signed-off-by: Stefan Roese <sr@denx.de>
15073
15074 commit 55e0ed6078b10b0d425b6a0677f38a015c277df6
15075 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15076 Date: Sat Apr 25 14:57:52 2009 +0200
15077
15078 make MODEM SUPPORT generic instead of duplicate it
15079
15080 and fix comment
15081
15082 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15083
15084 Adjusted Copyright message.
15085
15086 Signed-off-by: Wolfgang Denk <wd@denx.de>
15087
15088 commit a30f519bd0cde78ba46b424314de94fdab863726
15089 Author: Tom Rix <Tom.Rix@windriver.com>
15090 Date: Tue Jun 2 20:53:56 2009 -0500
15091
15092 ZOOM2 detect the version of the zoom2 board at runtime.
15093
15094 There are currently 3 versions of the zoom2 board.
15095 The production board, that is currently being released.
15096 The beta board, similar in form to the production board but not released.
15097 The alpha board, a set of PCBs with a very limited circulation.
15098
15099 GPIO 94 is used to determine the version of the board. If GPIO 94 is clear,
15100 the board is a production board, otherwise it is a beta board.
15101
15102 The alpha board will likely be mistaken for a beta board. An alpha board
15103 was unavailible for testing.
15104
15105 This has been tested on the beta and production boards.
15106
15107 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15108 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15109
15110 commit 718763c4745fd3d987a5576d2a67325e9444f9d4
15111 Author: Tom Rix <Tom.Rix@windriver.com>
15112 Date: Wed Jun 3 01:53:57 2009 -0500
15113
15114 Beagle Convert the board version detection to use the OMAP3 GPIO interface.
15115
15116 There is no new functionality in the change.
15117
15118 This change is a conversion from the using raw register access to using
15119 the OMAP3 GPIO API described in doc/README.omap3.
15120
15121 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15122 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
15123
15124 commit 7caa13fdd2d3dc957b4e0a228810a3a4a8ba499b
15125 Author: Tom Rix <Tom.Rix@windriver.com>
15126 Date: Wed Jun 3 01:53:55 2009 -0500
15127
15128 Fix a typo in the instructions on using omap3's gpio interface.
15129
15130 Using the example for reading a gpio, shows the problem.
15131 NULL should be the gpio number.
15132
15133 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15134 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
15135
15136 commit 0c9520efd651ce13451654a35307ec87d4a13a69
15137 Author: Tom Rix <Tom.Rix@windriver.com>
15138 Date: Fri May 29 18:57:32 2009 -0500
15139
15140 ZOOM2 Define GPIO banks used.
15141
15142 Enable the function and interface clocks for banks 2,3,5 and 6.
15143
15144 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15145 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
15146
15147 commit 708cfb74b7c6df9c37d3c48988a154be79daefeb
15148 Author: Tom Rix <Tom.Rix@windriver.com>
15149 Date: Fri May 29 18:57:31 2009 -0500
15150
15151 OMAP3 Turn on the GPIO bank clocks
15152
15153 The function and interface clocks for each GPIO bank, except the first, must
15154 be explicitly turned on. These are controlled by the config level defines
15155 CONFIG_OMAP3_GPIO_n where n is from 2 to 6.
15156
15157 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15158 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
15159
15160 commit 59272620c24549b5bcd03c94ba12ec302c1476a2
15161 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15162 Date: Thu Mar 26 15:26:01 2009 -0400
15163
15164 Coldfire M5271: Activate u-boot system timer interrupt.
15165
15166 This patch assigns the u-boot system timer interrupt to
15167 interrupt level 3, priority 6. Without this patch the interrupt
15168 will be a level 0, priority 0, which disables it and cause
15169 u-boot functions that relies on the timer (e.g. sleep command)
15170 to never return.
15171
15172 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15173
15174 commit dc26965ad3acdfb18780361d77a276b2843a90af
15175 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15176 Date: Mon Mar 23 13:35:48 2009 -0400
15177
15178 Compier warning cleanup
15179
15180 Follow up to git commit: 19b5b533ccd522abeb501d510750693c35e20456
15181
15182 Cleanup on compiler warnings on unused variables now that
15183 bd->bi_enetaddr is no longer used.
15184
15185 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15186
15187 commit 42a83765d54f042b4079e05a3438789542429981
15188 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15189 Date: Fri Mar 20 15:30:10 2009 -0400
15190
15191 Adds WATCHDOG_RESET() function call to lib_m68k dtimer_interrupt.
15192
15193 Ported from lib_ppc/interrupts.c, this adds the ability for
15194 the coldfire system timer to auto-reset the watchdog when
15195 dtimer_interrupts is called.
15196
15197 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15198
15199 commit a24d96e40e1ca66dde6e6c158e7ecffafc5a2199
15200 Author: Prafulla Wadaskar <prafulla@marvell.com>
15201 Date: Sun May 31 14:53:20 2009 +0200
15202
15203 arch_misc_init support for ARM architectures
15204
15205 This patch is required for Kirkwood support
15206 may be used by other ARM architectures
15207
15208 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
15209
15210 commit b2403589b4d9996394bafc73eca3623f43ac2c31
15211 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15212 Date: Sun May 31 14:53:18 2009 +0200
15213
15214 at91: move cpu info print to cpu
15215
15216 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15217
15218 commit b32e189079fa16e1b647ac6b949fd4e0a9435343
15219 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15220 Date: Sun May 31 12:44:46 2009 +0200
15221
15222 at91: move cpu name define to arm/arch/ cpu header
15223
15224 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15225
15226 commit 5bb59b3c906ee01adfaac9565443e5236a793079
15227 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15228 Date: Sun May 31 12:44:45 2009 +0200
15229
15230 at91: extract reset from timer
15231
15232 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15233
15234 commit 61cf851b09cf8b67009ec11fc47c16add6b142a5
15235 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15236 Date: Sun May 31 12:44:43 2009 +0200
15237
15238 omap24xx: rename reset file
15239
15240 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15241
15242 commit 9d4fc99dbdbfda1260aad478e83fca7cdf0e1a32
15243 Author: Dirk Behme <dirk.behme@googlemail.com>
15244 Date: Sun May 31 12:44:42 2009 +0200
15245
15246 OMAP3: Fix CKE1 MUX setting to allow self-refresh
15247
15248 The Beagle rev Cx and Overo boards are using both SDRC CSes. The MUX
15249 setting is needed for the second CS clock signal to allow the 2 RAM
15250 parts to be put in self-refresh correctly. This also works on rev B
15251 Beagle boards with 128M of RAM.
15252
15253 From: Steve Sakoman <steve@sakoman.com>
15254 From: Jean Pihet <jpihet@mvista.com>
15255 Signed-off-by: Jean Pihet <jpihet@mvista.com>
15256 Signed-off-by: Steve Sakoman <steve@sakoman.com>
15257 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15258
15259 commit 3962c4f9fc4482a6547f3c3d3d5e986e625abb8a
15260 Author: Dirk Behme <dirk.behme@googlemail.com>
15261 Date: Sun May 31 12:44:41 2009 +0200
15262
15263 OMAP3: Zoom2: Enable Board and CPU info
15264
15265 With other OMAP3 boards we recently switched to CPU and Board
15266 info API. From parallel merge, this is missing for Zoom2.
15267 Enable it for Zoom2, too.
15268
15269 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15270 Acked-by: Tom Rix <Tom.Rix@windriver.com>
15271
15272 commit 83ae698ff26b81b569ca32f7f2b008ad0da15e66
15273 Author: Tom Rix <Tom.Rix@windriver.com>
15274 Date: Sun May 31 12:44:39 2009 +0200
15275
15276 ZOOM2 Add led support.
15277
15278 This patch controls the large LED on the top left of the zoom2.
15279
15280 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15281
15282 commit 660888b7fb8840ce169dcd2589e49ab44c46b87b
15283 Author: Tom Rix <Tom.Rix@windriver.com>
15284 Date: Sun May 31 12:44:37 2009 +0200
15285
15286 ZOOM2 Add serial support.
15287
15288 Zoom2 serial is in general supplied by one of the 4 UARTS on the debug board.
15289 The default serial is from the USB connector on left side of the debug board.
15290 The USB connector will produce 2 of the 4 UARTS. On your host pick the first
15291 enumeration.
15292
15293 The details of the setting of the serial gpmc setup are not available.
15294 The values were provided by another party.
15295
15296 The serial port set up is the same with Zoom1.
15297 Baud rate 115200, 8 bit data, no parity, 1 stop bit, no flow.
15298
15299 The kernel bootargs are
15300 console=ttyS3,115200n8
15301
15302 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15303
15304 commit 3ea201b016ab259a5ac8824af767569522768c47
15305 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15306 Date: Sun May 31 12:44:27 2009 +0200
15307
15308 lh7a40x: move serial driver to drivers/serial
15309
15310 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15311
15312 commit 379be585eb2343d8814a5cee5fb3da930d846bee
15313 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15314 Date: Sat May 16 22:48:46 2009 +0200
15315
15316 pxa: move serial driver to drivers/serial
15317
15318 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15319
15320 commit ad7e8aac6920f8b8a85b3cc2e93bca7458e99aa1
15321 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15322 Date: Sat May 9 13:21:19 2009 +0200
15323
15324 arm: remove cpu_init
15325
15326 move s3c44b0 to arch_cpu_init and as noone use cpu_init remove it
15327
15328 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15329
15330 commit c358d9c3f16571e8f825e81b75eaf32e228cb669
15331 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15332 Date: Sat May 9 13:21:18 2009 +0200
15333
15334 arm: unify interrupt init
15335
15336 all arm init the IRQ stack the same way
15337 so unify it in lib_arm/interrupts.c and then call arch specific interrupt init
15338
15339 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15340
15341 commit 10a451cd57cffbca875c97bbd8929059c5627ec6
15342 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15343 Date: Fri May 8 20:24:12 2009 +0200
15344
15345 arm: unify linker script
15346
15347 all arm boards except a few use the same cpu linker script
15348 so move it to cpu/$(CPU)
15349
15350 that could be overwrite in following order
15351 SOC
15352 BOARD
15353 via the corresponding config.mk
15354
15355 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15356
15357 commit 9475c63c7855edd863c93a9bb0f4b8e240d9d212
15358 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15359 Date: Sat May 16 10:02:05 2009 +0200
15360
15361 afeb9260: fix macb device init
15362
15363 uses PA10, PA11 for ETX2 and ETX3.
15364
15365 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15366
15367 commit 1bbae2b816d4ed38db2ebf42166a973b1ffc0df7
15368 Author: Stefan Roese <sr@denx.de>
15369 Date: Wed May 27 10:34:32 2009 +0200
15370
15371 ppc4xx: Remove PCI async bootup message if PCI is not used
15372
15373 Signed-off-by: Stefan Roese <sr@denx.de>
15374
15375 commit a3455c00510c5abf1e91743c4a02d8393b6df18d
15376 Author: Wolfgang Denk <wd@denx.de>
15377 Date: Fri May 15 09:19:52 2009 +0200
15378
15379 TQM834x: use buffered writes to accelerate writing to flash
15380
15381 Also enable display of 'E'mpty sectors in "flinfo" output.
15382
15383 Signed-off-by: Wolfgang Denk <wd@denx.de>
15384 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15385
15386 commit 4681e673a51c48f4c096aa3c8fae5e6217ffd58d
15387 Author: Wolfgang Denk <wd@denx.de>
15388 Date: Thu May 14 23:18:34 2009 +0200
15389
15390 TQM834x: add FDT support
15391
15392 Signed-off-by: Wolfgang Denk <wd@denx.de>
15393 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15394
15395 commit 929b79a0b5e48303ab04aae9d0abceb0c707f111
15396 Author: Wolfgang Denk <wd@denx.de>
15397 Date: Thu May 14 23:18:33 2009 +0200
15398
15399 TQM834x: fix environment size; add redundant env.
15400
15401 Also reserve more space for U-Boot as it will probably grow soon.
15402
15403 Signed-off-by: Wolfgang Denk <wd@denx.de>
15404 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15405
15406 commit 2ae0f35fd60c7345446835b95a4daff356e1f031
15407 Author: Thomas Lange <thomas@corelatus.se>
15408 Date: Sun May 3 20:07:33 2009 +0200
15409
15410 ARM DaVinci: Reset with watchdog enabled
15411
15412 Once the Davinci watchdog has been enabled, the timeout
15413 value cannot be changed. If the timeout in use is long,
15414 it can take a long time for card to reset. By writing
15415 an invalid service key, we can trigger an immediate reset.
15416
15417 Signed-off-by: Thomas Lange <thomas@corelatus.se>
15418
15419 commit 6cc7ba9ed43106946aa9aa868302aa2faf1d17be
15420 Author: Wolfgang Denk <wd@denx.de>
15421 Date: Fri May 15 10:07:43 2009 +0200
15422
15423 video: Add an option to skip video initialization
15424
15425 This patch adds an option to skip the video initialization on for all
15426 video drivers. This is needed for the CPCI750 which can be built as
15427 CPCI host and adapter/target board. And the adapter board can't
15428 access the video cards located on the CompactPCI bus.
15429
15430 Signed-off-by: Stefan Roese <sr@denx.de>
15431 Cc: Anatolij Gustschin <agust@denx.de>
15432
15433 Rebased against simplifying patch.
15434 Signed-off-by: Wolfgang Denk <wd@denx.de>
15435
15436 commit f62f64692ff7f6226ad221d5df6487ea5ef39bdd
15437 Author: Wolfgang Denk <wd@denx.de>
15438 Date: Fri May 15 10:07:42 2009 +0200
15439
15440 drv_video_init(): simplify logic
15441
15442 Simplify nesting of drv_video_init() and use a consistent way of
15443 indicating failure / success. Before, it took me some time to realize
15444 which of the returns was due to an error condition and which of them
15445 indicated success.
15446
15447 Signed-off-by: Wolfgang Denk <wd@denx.de>
15448 Cc: Anatolij Gustschin <agust@denx.de>
15449
15450 commit 1699da6297b8c22da16cf85b3c79192f1a6d70ca
15451 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15452 Date: Wed May 13 21:01:13 2009 +0200
15453
15454 at91: regroup IP hw init in one file per soc
15455
15456 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15457
15458 commit 28b00324becf3552134ae1e086509dc9c3d6e932
15459 Author: David Brownell <dbrownell@users.sourceforge.net>
15460 Date: Fri May 15 23:48:37 2009 +0200
15461
15462 dm355 evm support
15463
15464 Initial U-Boot support for the DaVinci DM355 EVM. This is a board
15465 from Spectrum Digital. Board docs include schematic and firmware
15466 for its microcontroller:
15467
15468 http://c6000.spectrumdigital.com/evmdm355/revd/
15469
15470 Most of the DM355 chip is fully documented by TI, the most notable
15471 exception being the MPEG/JPEG coprocessor (programmable using codecs
15472 available at no cost from TI), which is omitted from its DM335 sibling:
15473
15474 http://focus.ti.com/docs/prod/folders/print/tms320dm355.html
15475
15476 This version can boot from the on-board DM9000 Ethernet chip, after
15477 being loaded (from NAND, MMC/SD, or UART). In the near future, NAND
15478 and USB support could be added ... NAND support is being held back
15479 until the support for the 4-bit ECC hardware is ready.
15480
15481 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
15482
15483 commit 136cf92dc9e84c9a1bf567f1fe741092bf765495
15484 Author: Sanjeev Premi <premi@ti.com>
15485 Date: Fri May 15 23:48:37 2009 +0200
15486
15487 OMAP3EVM: Set default bootfile
15488
15489 The current configuration doesn't define default
15490 bootfile; leading to this warning at execution:
15491
15492 OMAP3_EVM # dhcp
15493 ...
15494 ...
15495 DHCP client bound to address 192.168.1.11
15496 *** Warning: no boot file name; using 'AC18BE16.img'
15497 TFTP from server 0.0.0.0; our IP address is 192.168.1.11;
15498 sending through gateway 192.168.1.1
15499 Filename 'AC18BE16.img'.
15500 Load address: 0x82000000
15501 Loading: *
15502 TFTP error: 'File not found' (1)
15503
15504 Signed-off-by: Sanjeev Premi <premi@ti.com>
15505
15506 commit 1a09d05abfc6d4d4f1fce9f6bd0275bd1c08d4f5
15507 Author: s-paulraj@ti.com <s-paulraj@ti.com>
15508 Date: Fri May 15 23:48:36 2009 +0200
15509
15510 ARM DaVinci: Minor Updates to base addresses
15511
15512 Patch adds base addresses for DaVinci DM365. Updated patches for DM365
15513 will be posted soon.
15514
15515 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
15516
15517 commit de193e8e369f5f029ed3b6e2fc60341098eea766
15518 Author: Tom Rix <Tom.Rix@windriver.com>
15519 Date: Fri May 15 23:48:36 2009 +0200
15520
15521 ZOOM2 Add support for debug board detection.
15522
15523 The logicpd web site is a good source for general information on this board.
15524 Please start looking here if the below links are broken.
15525 http://www.logicpd.com
15526
15527 This is a pdf of the product
15528 http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf
15529
15530 This is a pdf of the product quick start guide.
15531 The debug board is described here.
15532 http://support.logicpd.com/downloads/1165/
15533
15534 This is a wiki showing the debug board in use
15535 https://omapzoom.org/gf/project/omapzoom/wiki/?pagename=GettingStartedWithZoomII_AKA_OMAP34XII_MDP
15536
15537 The zoom2 has an auxillary board that contains the serial, net, jtag and
15538 battery simulator. This change supports a runtime check if the debug board is
15539 connected.
15540
15541 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15542
15543 commit 0c872ecd01d6782ae9d37b6eb721404a4a48f356
15544 Author: Tom Rix <Tom.Rix@windriver.com>
15545 Date: Fri May 15 23:48:36 2009 +0200
15546
15547 OMAP3 Port kernel omap gpio interface.
15548
15549 Port version 2.6.27 of the linux kernel's omap gpio interface to u-boot.
15550 The orignal source is in linux/arch/arm/plat-omap/gpio.c
15551
15552 See doc/README.omap3 for instructions on use.
15553
15554 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15555
15556 commit 376aee78dd66ae0dc4ce496cbe93ecc80aaad48e
15557 Author: Tom Rix <Tom.Rix@windriver.com>
15558 Date: Fri May 15 23:48:36 2009 +0200
15559
15560 ZOOM2 Add initial support for Zoom2
15561
15562 Zoom2 is a new board from Texas Instruments and LogicPD
15563
15564 The logicpd web site is a good source for general information on this board.
15565 Please start looking here if the below links are broken.
15566 http://www.logicpd.com
15567
15568 This is a pdf of the product
15569 http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf
15570 This is the product description web page
15571 http://www.logicpd.com/products/development-kits/texas-instruments-zoom%E2%84%A2-omap34x-ii-mdp
15572
15573 This patch provides a zoom2 base target by copying zoom1 and by making some
15574 obvious changes.
15575
15576 To configure, run
15577 make omap3_zoom2_config
15578
15579 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15580
15581 commit 53925acf1b5c1a1e6230cda2697640cd05bd1104
15582 Author: Sandeep Paulraj <s-paulraj@ti.com>
15583 Date: Fri May 15 23:48:33 2009 +0200
15584
15585 ARM DaVinci:Consolidate common u-boot.lds
15586
15587 The u-boot.lds is common for all DaVinci boards. The patch removes
15588 multiple instances and moves the u-boot.lds to /cpu/arm926ejs/davinci
15589 folder. This addresses one of the comments i received while submitting
15590 patches for DM3xx
15591
15592 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
15593
15594 commit 68a531fd465f5c0b3d373e0010afed32e88d37c4
15595 Author: Tom Rix <Tom.Rix@windriver.com>
15596 Date: Fri May 15 23:47:52 2009 +0200
15597
15598 OMAP Consolidate common u-boot.lds to cpu layer.
15599
15600 The u-boot.lds file is common for all omap boards.
15601 Move a cleaned up version to the cpu layer and add makefile logic to use it.
15602
15603 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15604
15605 commit 65a76d4f947a193e57bb8f8093c481f27e059f8f
15606 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15607 Date: Fri May 15 23:47:14 2009 +0200
15608
15609 arm/dcc: add xscale support
15610
15611 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15612
15613 commit 66e8f9da6879fe37f3159b3997bff874842dc51d
15614 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15615 Date: Fri May 15 23:47:14 2009 +0200
15616
15617 arm/dcc: use static support to allow to use it at anytime
15618
15619 the dcc can be used at the start of the cpu
15620
15621 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15622
15623 commit 7893aa1eb6f52c3957efc301b436f1fa11e91a00
15624 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15625 Date: Fri May 15 23:47:13 2009 +0200
15626
15627 ARM: Update mach-types
15628
15629 update against linux v2.6.29
15630
15631 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15632
15633 commit 2907798926ee932f453ac8538e7a6c05c18428a5
15634 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15635 Date: Fri May 15 23:47:13 2009 +0200
15636
15637 arm920/926/926: remove non needed header
15638
15639 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15640
15641 commit 269dfea017b09c5a999d3053d00505c19789c350
15642 Author: David Brownell <david-b@pacbell.net>
15643 Date: Fri May 15 23:47:13 2009 +0200
15644
15645 davinci dm6446evm NAND update
15646
15647 This updates the optional (non-default!) NAND support for the
15648 DaVinci DM6446 EVM:
15649
15650 - include MTD partitioning, defaulting to what Linux uses
15651
15652 - use a flash-based BBT, which among other things speeds bootup
15653
15654 This matches code that's now queued for mainline Linux, and might
15655 even merge in an upcoming 2.6.30-rc; and the MTIDS are set up so
15656 that the U-Boot $mtdparts environment variable can be passed as-is
15657 on the kernel command line as a cmdlinepart override.
15658
15659 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
15660
15661 commit 7a4f511b59f08f51dde4ceacbd45f49b8bf2a5cc
15662 Author: David Brownell <dbrownell@users.sourceforge.net>
15663 Date: Fri May 15 23:47:12 2009 +0200
15664
15665 davinci: display correct clock info
15666
15667 Move the clock-rate dumping code into the cpu/.../davinci area
15668 where it should have been, enabled by CONFIG_DISPLAY_CPUINFO,
15669 updating the format and showing the DSP clock (where relevant).
15670
15671 Switch boards to use the cpuinfo() hook for this stuff.
15672
15673 Remove a few now-obsolete PLL #defines.
15674
15675 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
15676
15677 commit daea928829098cae3c9ec6b801e52ba616725034
15678 Author: Tom Rix <Tom.Rix@windriver.com>
15679 Date: Fri May 15 23:47:12 2009 +0200
15680
15681 ZOOM1 Remove more legacy NAND defines.
15682
15683 These legacy NAND defines are no longer needed by this target.
15684
15685 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15686
15687 commit 65fd21c80fcaca2bbfe3ab06ab6ac68207408078
15688 Author: Tom Rix <Tom.Rix@windriver.com>
15689 Date: Fri May 15 23:47:12 2009 +0200
15690
15691 LED Add documentation describing the status_led and colour led API.
15692
15693 This document describes the u-boot status LED API.
15694 This allows common u-boot commands to use a board's leds to
15695 provide status for activities like booting and downloading files.
15696
15697 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15698
15699 commit 7cdf804f34378b910b4c4edd2dac7e3ca61c0825
15700 Author: Tom Rix <Tom.Rix@windriver.com>
15701 Date: Fri May 15 23:47:12 2009 +0200
15702
15703 ARM Add blue colour LED to status_led.
15704
15705 There is exiting support for red,yellow,green but no blue.
15706 The main LED on the zoom2 is a blue LED.
15707
15708 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15709
15710 commit b54384e3ba6b5535751f317fcd3940a53eed0d3a
15711 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15712 Date: Fri May 15 23:47:02 2009 +0200
15713
15714 arm: timer and interrupt init rework
15715
15716 actually the timer init use the interrupt_init as init callback
15717 which make the interrupt and timer implementation difficult to follow
15718
15719 so now rename it as int timer_init(void) and use interrupt_init for interrupt
15720
15721 btw also remane the corresponding file to the functionnality implemented
15722
15723 as ixp arch implement two timer - one based on interrupt - so all the timer
15724 related code is moved to timer.c
15725
15726 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15727
15728 commit 5b4bebe1d20c4f2b70d48b06aed1016785efcc25
15729 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15730 Date: Fri May 15 23:45:22 2009 +0200
15731
15732 OMAP3: Reorganize Makefile style
15733
15734 Reformat COBJS handling.
15735
15736 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15737 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15738
15739 commit b1966982718347f67317b3fb356439743ca68a37
15740 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15741 Date: Fri May 15 23:45:22 2009 +0200
15742
15743 OMAP3: Remove dublicated interrupt code
15744
15745 Remove duplicated interrupt code. Original, identical code can be found
15746 in lib_arm/interrupts.c
15747
15748 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15749 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15750
15751 commit ac7260a4190315eba4a6e526c764f6cad0bbf8c5
15752 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15753 Date: Fri May 15 23:45:22 2009 +0200
15754
15755 at91rm9200: move reset code to reset.c
15756
15757 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15758
15759 commit 2c75c78d94574ee996db2aa9b511258519471dd6
15760 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15761 Date: Fri May 15 23:45:22 2009 +0200
15762
15763 ixp/interrupts: Move conditional compilation to Makefile
15764
15765 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15766
15767 commit 8fc3bb4b0603516ad641e2de252a400b85fd869b
15768 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15769 Date: Fri May 15 23:45:20 2009 +0200
15770
15771 arm: cleanup remaining CONFIG_INIT_CRITICAL
15772
15773 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15774
15775 commit c20e28f49aaf38c7dede46d8f8fe8234fe90822c
15776 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15777 Date: Fri May 15 23:45:12 2009 +0200
15778
15779 arm946es: remove non used timer
15780
15781 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15782
15783 commit f1d944e30eb8ff89080fa03fb98d8fb5c82388d2
15784 Author: David Brownell <dbrownell@users.sourceforge.net>
15785 Date: Fri May 15 23:44:09 2009 +0200
15786
15787 davinci: add basic dm355/dm350/dm335 support
15788
15789 Add some basic declarations for DaVinci DM355/DM350/DM335 support,
15790 keyed on CONFIG_SOC_DM355. (DM35X isn't quite right because the
15791 DM357 is very different; while the DM355 is like a DM355 without
15792 the MPEG/JPEG coprocessor).
15793
15794 These have different peripherals than the DM6446, and some of
15795 the peripherals are at different addresses. Notably for U-Boot,
15796 there's no EMAC, and the NAND controller address is different
15797
15798 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
15799
15800 commit bd36fdc146654f9de4e2ad346126e6bd2990fb19
15801 Author: David Brownell <dbrownell@users.sourceforge.net>
15802 Date: Fri May 15 23:44:09 2009 +0200
15803
15804 davinci: fix dm644x buglets
15805
15806 Fix two buglets in the dm644x support: don't set two must-be-zero
15807 bits in the UART management register; and only include the I2C hooks
15808 if the I2C driver is being included.
15809
15810 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
15811
15812 commit f79043681ff44bae435c06f830e51e1546db7e19
15813 Author: David Brownell <dbrownell@users.sourceforge.net>
15814 Date: Fri May 15 23:44:08 2009 +0200
15815
15816 davinci: split out some dm644x-specific bits from psc
15817
15818 Split out DaVinci DM6446-specific bits from more generic bits:
15819
15820 - Add a CONFIG_SOC_DM644X. All current boards use DM6446 chips;
15821 DM6443 and DM6441 chips differ in available peripherals.
15822
15823 - Move most DM644X-specific bits from psc.c to a new dm644x.c file,
15824 which is conditionally built. It provides device-specific setup.
15825
15826 Plus minor coding style and comment updates with respect to the PSC.
15827
15828 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
15829
15830 commit 48ef5729555f41f51618b6a3016ac5c53c7c75dc
15831 Author: David Brownell <dbrownell@users.sourceforge.net>
15832 Date: Fri May 15 23:44:08 2009 +0200
15833
15834 davinci: cpu-specific build uses conditional make syntax
15835
15836 Update cpu/arm926ejs/davinci/Makefile to use COBJ-y type syntax.
15837 Add the first conditional: for EMAC driver support. Not all
15838 chips have an EMAC; and boards might not use it, anyway.
15839
15840 This doesn't touch PHY configuration; that should eventually
15841 become conditional too.
15842
15843 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
15844
15845 commit 7b7808ae6dace59287f565e9323cda7b098a5612
15846 Author: David Brownell <dbrownell@users.sourceforge.net>
15847 Date: Fri May 15 23:44:06 2009 +0200
15848
15849 davinci: move psc support board-->cpu
15850
15851 Move DaVinci PSC support from board/* to cpu/* where it belongs.
15852 The PSC module manages clocks and resets for all DaVinci-family
15853 SoCs, and isn't at all board-specific.
15854
15855 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
15856
15857 commit 84f7411cb901b8df2391cf7e967ad0737f6194aa
15858 Author: David Brownell <david-b@pacbell.net>
15859 Date: Tue Apr 14 08:52:58 2009 -0700
15860
15861 DaVinci now respects SKIP_LOWLEVEL_INIT
15862
15863 Don't needlessly include lowlevel init code; that's only really
15864 needed with boot-from NOR (not boot-from-NAND). The 2nd stage
15865 loader (UBL) handles that before it loads U-Boot.
15866
15867 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
15868
15869 commit 641e0925e4bf7adf8e2e04e3ad81b840fd71cadd
15870 Author: David Brownell <dbrownell@users.sourceforge.net>
15871 Date: Sun Apr 12 22:49:26 2009 -0700
15872
15873 DaVinci Ethernet cleanup
15874
15875 Chips without the EMAC controller won't need the utilities
15876 it uses to read an Ethernet address from EEPROM; so don't
15877 include them needlessly.
15878
15879 Use is_valid_ether() to validate the address from EEPROM.
15880 All-zero addresses aren't the only invalid addresses.
15881 A fully erased EEPROM returns all-ones, also invalid...
15882
15883 Switch those Ethernet utilities to use "%pM" for printing
15884 MAC addresses; and not say ROM when they mean EEPROM.
15885
15886 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
15887 Acked-by: Ben Warren <biggerbadderben@gmail.com>
15888
15889 commit c790b04d230363d03939dc008bcc80f3ba4de1ae
15890 Author: Stefan Roese <sr@denx.de>
15891 Date: Mon May 11 15:50:12 2009 +0200
15892
15893 lib_arch/board.c: Move malloc initialization before flash_init()
15894
15895 This patch moves the malloc initialization before calling flash_init().
15896 Upcoming changes to the NOR FLASH common CFI driver with optional
15897 MTD infrastructure and MTD concatenation support will call malloc().
15898 And nothing really speaks against enabling malloc just a little earlier
15899 in the boot stage. Some architectures already enable malloc before
15900 calling flash_init() so they don't need any changes here.
15901
15902 Signed-off-by: Stefan Roese <sr@denx.de>
15903 Cc: Wolfgang Denk <wd@denx.de>
15904 Cc: Mike Frysinger <vapier@gentoo.org>
15905 Cc: Scott McNutt <smcnutt@psyent.com>
15906 Cc: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
15907 Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
15908 Cc: Daniel Hellstrom <daniel@gaisler.com>
15909 Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15910 Cc: John Rigby <jcrigby@gmail.com>
15911
15912 commit d873133f2ba9bd613d5f6552c31cc70fb13f15d3
15913 Author: Stefan Roese <sr@denx.de>
15914 Date: Mon May 11 13:46:14 2009 +0200
15915
15916 ppc4xx: Add Sequoia RAM-booting target
15917
15918 This patch adds another build target for the AMCC Sequoia PPC440EPx
15919 eval board. This RAM-booting version is targeted for boards without
15920 NOR FLASH (NAND booting) which need a possibility to initially
15921 program their NAND FLASH. Using a JTAG debugger (e.g. BDI2000/3000)
15922 configured to setup the SDRAM, this debugger can load this RAM-
15923 booting image to the target address in SDRAM (in this case 0x1000000)
15924 and start it there. Then U-Boot's standard NAND commands can be
15925 used to program the NAND FLASH (e.g. "nand write ...").
15926
15927 Here the commands to load and start this image from the BDI2000:
15928
15929 440EPX>reset halt
15930 440EPX>load 0x1000000 /tftpboot/sequoia/u-boot.bin
15931 440EPX>go 0x1000000
15932
15933 Please note that this image automatically scans for an already
15934 initialized SDRAM TLB (detected by EPN=0). This TLB will not be
15935 cleared. This TLB doesn't need to be TLB #0, this RAM-booting
15936 version will detect it and preserve it. So booting via BDI2000
15937 will work and booting with a complete different TLB init via
15938 U-Boot works as well.
15939
15940 Signed-off-by: Stefan Roese <sr@denx.de>
15941
15942 commit 837db3d87f4bfe9261629fb4a1bb433506a3056a
15943 Author: Mike Frysinger <vapier@gentoo.org>
15944 Date: Wed May 6 08:41:45 2009 -0400
15945
15946 tools/envcrc: add --binary option to export embedded env
15947
15948 The --binary option to envcrc can be used to export the embedded env as a
15949 binary blob so that it can be manipulated/examined/whatever externally.
15950
15951 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15952
15953 commit 18cc7afd9a153a66854af862d14ba01c5496cf07
15954 Author: Ben Warren <biggerbadderben@gmail.com>
15955 Date: Tue Apr 28 16:50:53 2009 -0700
15956
15957 Enable CONFIG_NET_MULTI on all remaining PPC4xx boards
15958
15959 All in-tree PPC4xx boards now use CONFIG_NET_MULTI
15960
15961 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15962 Signed-off-by: Stefan Roese <sr@denx.de>
15963
15964 commit 70be6c2d40076f14062b892152649f9a62832fc9
15965 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
15966 Date: Wed Apr 29 09:51:01 2009 +0200
15967
15968 4xx: Add support for DP405 hardware variants
15969
15970 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
15971 Signed-off-by: Stefan Roese <sr@denx.de>
15972
15973 commit de47a34d4de1d007a8951efd072283516d580ffa
15974 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
15975 Date: Wed Apr 29 09:51:00 2009 +0200
15976
15977 4xx: Remove binary cpld bitstream from DP405 board
15978
15979 This patch removes the cpld binary bitstream that is
15980 used by esd's cpld command on DP405 boards.
15981
15982 Because u-boot with an external cpld bitstream may not
15983 take more space in flash than before the u-boot binary is
15984 shrinked a little bit. Some unused featues have been
15985 removed therefore.
15986
15987 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
15988 Signed-off-by: Stefan Roese <sr@denx.de>
15989
15990 commit 700d553fd3afe804086de8f73d95153315eb0c32
15991 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
15992 Date: Wed Apr 29 09:50:59 2009 +0200
15993
15994 4xx: Remove binary cpld bitstream from VOM405 board
15995
15996 This patch removes the cpld binary bitstream that is
15997 used by esd's cpld command on VOM405 boards.
15998
15999 Because u-boot with an external cpld bitstream may not
16000 take more space in flash than before the u-boot binary is
16001 shrinked a little bit.
16002
16003 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
16004 Signed-off-by: Stefan Roese <sr@denx.de>
16005
16006 commit 0bb10630364c48d9857cbf5353da609fc4dd6751
16007 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16008 Date: Wed Apr 29 09:50:58 2009 +0200
16009
16010 4xx: Remove binary cpld bitstream from PMC405 board
16011
16012 This patch removes the cpld binary bitstream that is
16013 used by esd's cpld command on PMC405 boards.
16014
16015 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
16016 Signed-off-by: Stefan Roese <sr@denx.de>
16017
16018 commit 7cc635fb35f5b94e304fa2243d56758f57f6416b
16019 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16020 Date: Wed Apr 29 09:50:57 2009 +0200
16021
16022 4xx: Remove binary cpld bitstream from CMS700 board
16023
16024 This patch removes the cpld binary bitstream that is
16025 used by esd's cpld command on CMS700 boards.
16026
16027 Because u-boot with an external cpld bitstream may not
16028 take more space in flash than before the u-boot binary is
16029 shrinked a little bit. Some unused featues have been
16030 removed therefore.
16031
16032 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
16033 Signed-off-by: Stefan Roese <sr@denx.de>
16034
16035 commit c1b2f79788deec75773b1d944d8aaf4a6d5baf9e
16036 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16037 Date: Wed Apr 29 09:50:56 2009 +0200
16038
16039 esd/common: extend cpld command with address parameter
16040
16041 This patch adds support for an address parameter to esd's
16042 cpld command. This is in preparation to remove compiled-in
16043 binary cpld (xsvf) bitstreams.
16044
16045 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
16046 Signed-off-by: Stefan Roese <sr@denx.de>
16047
16048 commit 9166b776350d16460c7330bfb0a50154ea0a1903
16049 Author: Peter Tyser <ptyser@xes-inc.com>
16050 Date: Sat Apr 18 22:34:06 2009 -0500
16051
16052 cmd_i2c: Fix i2c help command output when CONFIG_I2C_MUX
16053
16054 When CONFIG_I2C_MUX was defined the output of 'help i2c' was not
16055 correct, eg:
16056
16057 => help i2c
16058 i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes.
16059 speed [speed] - show or set I2C bus speed
16060 i2c dev [dev] - show or set current I2C bus
16061 ...
16062
16063 It has been changed to:
16064 i2c speed [speed] - show or set I2C bus speed
16065 i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes
16066 i2c dev [dev] - show or set current I2C bus
16067 ...
16068
16069 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16070
16071 commit 0a45a6357b02e5ce5bf899a60db09def6a129fee
16072 Author: Peter Tyser <ptyser@xes-inc.com>
16073 Date: Sat Apr 18 22:34:05 2009 -0500
16074
16075 cmd_i2c: Clean up trivial helper functions
16076
16077 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16078
16079 commit e96ad5d3aba42f8ffe99f7cc5ec1bb9f21810035
16080 Author: Peter Tyser <ptyser@xes-inc.com>
16081 Date: Sat Apr 18 22:34:04 2009 -0500
16082
16083 cmd_i2c: Clean up i2c command argument parsing
16084
16085 argc and argv should only be modified once instead of once for
16086 every i2c sub-command
16087
16088 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16089
16090 commit 0f89c54be92773b23d66ac401ba6acb6144100c3
16091 Author: Peter Tyser <ptyser@xes-inc.com>
16092 Date: Sat Apr 18 22:34:03 2009 -0500
16093
16094 i2c: Update references to individual i2c commands
16095
16096 The individual i2c commands imd, imm, inm, imw, icrc32, iprobe, iloop,
16097 and isdram are no longer available so all references to them have been
16098 updated to the new form of "i2c <cmd>".
16099
16100 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16101
16102 commit d48eb5131d287f52bb85b4c58c8680a2e8e3b641
16103 Author: Peter Tyser <ptyser@xes-inc.com>
16104 Date: Sat Apr 18 22:34:02 2009 -0500
16105
16106 i2c: Remove deprecated individual i2c commands
16107
16108 The following individual I2C commands have been removed: imd, imm, inm,
16109 imw, icrc32, iprobe, iloop, isdram.
16110
16111 The functionality of the individual commands is still available via
16112 the 'i2c' command.
16113
16114 This change only has an impact on those boards which did not have
16115 CONFIG_I2C_CMD_TREE defined.
16116
16117 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16118
16119 commit 655b34a78adf60ef260981688837904208883ae9
16120 Author: Peter Tyser <ptyser@xes-inc.com>
16121 Date: Sat Apr 18 22:34:01 2009 -0500
16122
16123 i2c: Create common default i2c_[set|get]_bus_speed() functions
16124
16125 New default, weak i2c_get_bus_speed() and i2c_set_bus_speed() functions
16126 replace a number of architecture-specific implementations.
16127
16128 Also, providing default functions will allow all boards to enable
16129 CONFIG_I2C_CMD_TREE. This was previously not possible since the
16130 tree-form of the i2c command provides the ability to display and modify
16131 the i2c bus speed which requires i2c_[set|get]_bus_speed() to be
16132 present.
16133
16134 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16135
16136 commit 8229e9c04f7019ddd76aea05d4dca044cbc9a34a
16137 Author: Peter Tyser <ptyser@xes-inc.com>
16138 Date: Sat Apr 18 22:34:00 2009 -0500
16139
16140 cm5200: Make function test command names more unique
16141
16142 Add "_test" to cm5200's function test command names to prevent
16143 overlap with common, global function names. Originally, the
16144 "do_i2c" function test command interfered with
16145 common/cmd_i2c.c's "do_i2c" when CONFIG_I2C_CMD_TREE was defined.
16146
16147 The functions were also made static as they are not globally accessed.
16148
16149 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16150
16151 commit f0722ee762e8dada9d7f74ac2745e043f83aae85
16152 Author: Peter Tyser <ptyser@xes-inc.com>
16153 Date: Fri Apr 24 15:34:09 2009 -0500
16154
16155 tsi108_i2c: Add i2c_init() stub function
16156
16157 Add the i2c_init() function so that the tsi108_i2c.c driver fits
16158 U-Boot's standard I2C API which is utilized by cmd_i2c.c
16159
16160 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16161
16162 commit 8d907e79bc9babb27396e34be54cfdc36ff62fb9
16163 Author: Peter Tyser <ptyser@xes-inc.com>
16164 Date: Fri Apr 24 15:34:08 2009 -0500
16165
16166 mpc7448hpc2: Add CONFIG_SYS_I2C_SPEED define
16167
16168 Add standard CONFIG_SYS_I2C_SPEED define for the mpc7448hpc2 so that
16169 it can use the common 'i2c speed' command. Note that the I2C controller
16170 utilized by the mpc7448hpc2 has a fixed speed and cannot be changed
16171 dynamically.
16172
16173 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16174
16175 commit a056b1ce9e19b4d4ab3dd01c3f897dcd832cd37f
16176 Author: Peter Tyser <ptyser@xes-inc.com>
16177 Date: Fri Apr 24 15:34:07 2009 -0500
16178
16179 Marvell: i2c cleanup
16180
16181 The following changes were made, primarily to bring the Marvell i2c
16182 driver in line with U-Boot's current I2C API:
16183 - Made i2c_init() globally accessible
16184 - Made i2c_read() and i2c_write() return an integer
16185 - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the
16186 offhand chance someone adds slave support in the future
16187
16188 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16189
16190 commit 54afc6ee10c8cd09598d814d49e601359b005e49
16191 Author: Peter Tyser <ptyser@xes-inc.com>
16192 Date: Fri Apr 24 15:34:06 2009 -0500
16193
16194 cpci750: i2c cleanup
16195
16196 The following changes were made, primarily to bring the cpci750 i2c
16197 driver in line with U-Boot's current I2C API:
16198 - Made i2c_init() globally accessible
16199 - Made i2c_read() and i2c_write() return an integer
16200 - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the
16201 offhand chance someone adds slave support in the future
16202
16203 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16204
16205 commit 9c90a2c8e87414007a016b7cd099ac1e32fd301b
16206 Author: Peter Tyser <ptyser@xes-inc.com>
16207 Date: Fri Apr 24 15:34:05 2009 -0500
16208
16209 i2c.h: Provide a default CONFIG_SYS_I2C_SLAVE value
16210
16211 Many boards/controllers/drivers don't support an I2C slave interface,
16212 however CONFIG_SYS_I2C_SLAVE is used in common code so provide a
16213 default
16214
16215 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16216
16217 commit e7563aff174f77aa61dab1ef5d9b47bebaa43702
16218 Author: Kumar Gala <galak@kernel.crashing.org>
16219 Date: Thu Jun 11 23:42:35 2009 -0500
16220
16221 fsl-ddr: Fix handling of >4G of memory when !CONFIG_PHYS_64BIT
16222
16223 The ddr code computes most things as 64-bit quantities and had some places
16224 in the middle that it was using phy_addr_t and phys_size_t.
16225
16226 Instead we use unsigned long long through out and only at the last stage of
16227 setting the LAWs and reporting the amount of memory to the board code do we
16228 truncate down to what we can cover via phys_size_t.
16229
16230 This has the added benefit that the DDR controller itself is always setup
16231 the same way regardless of how much memory we have. Its only the LAW
16232 setup that limits what is visible to the system.
16233
16234 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16235
16236 commit d4b130dc80761b430dc5b410159cd158fca1a348
16237 Author: Kumar Gala <galak@kernel.crashing.org>
16238 Date: Thu Jun 11 23:40:34 2009 -0500
16239
16240 85xx: Use print_size to report amount of memory not mapped by TLBs
16241
16242 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16243
16244 commit 6e2aebc33fa740c068fe28d40eaf0319b7c7287e
16245 Author: Haiying Wang <Haiying.Wang@freescale.com>
16246 Date: Wed May 20 12:30:42 2009 -0400
16247
16248 85xx: Add README for MPC8569MDS
16249
16250 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
16251 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16252
16253 commit b2aab386e957ba684d4f2a466bfaa91770e5058a
16254 Author: Haiying Wang <Haiying.Wang@freescale.com>
16255 Date: Wed May 20 12:30:33 2009 -0400
16256
16257 85xx: Add UART1 support for MPC8569MDS
16258
16259 MPC8569 UART1 signals are muxed with PortF bit[9-12], we need to define
16260 those pins before using UART1.
16261
16262 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
16263 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16264
16265 commit 399b53cbab0b377ac4c5c16c19c6e41b68a9c719
16266 Author: Haiying Wang <Haiying.Wang@freescale.com>
16267 Date: Wed May 20 12:30:32 2009 -0400
16268
16269 85xx: Add PIB support at CS4/CS5 for MPC8569MDS
16270
16271 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
16272 Signed-off-by: Yu Liu <Yu.Liu@freescale.com>
16273 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16274
16275 commit fb27949059f1bc84381a6216a819090f0cdbaa70
16276 Author: Haiying Wang <Haiying.Wang@freescale.com>
16277 Date: Thu Jun 4 16:12:39 2009 -0400
16278
16279 85xx: Fix some settings for MPC8569MDS board
16280
16281 - Increase the size of malloc to 512KB because MPC8569MDS needs more memory for
16282 malloc to support up to eight Ethernet interfaces.
16283 - Move Environment address out of uboot thus the saved environment variables
16284 will not be erased after u-boot is re-programmed.
16285
16286 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
16287 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16288
16289 commit c7f60fd29f2d638d080cdf1a49ad985b85f9429d
16290 Author: Haiying Wang <Haiying.Wang@freescale.com>
16291 Date: Wed May 20 12:30:30 2009 -0400
16292
16293 85xx: Fix MURAM size for MPC8569
16294
16295 MPC8569 has 128K bytes MURAM.
16296
16297 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
16298 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16299
16300 commit a53c997dd7fc858f2a27f5a47b200567b9343ae5
16301 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16302 Date: Fri May 22 20:23:51 2009 +0200
16303
16304 at91/cpu.c: add missing Copyright & GPL header
16305
16306 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16307
16308 commit aa446a591aca46ef2b53cc6598ea8091feb45444
16309 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16310 Date: Sun Jun 7 21:45:16 2009 +0900
16311
16312 apollon: Fix a OBJCFLAGS typo
16313
16314 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
16315
16316 commit 580611cb0932143fc2d7a735cfa9ce1ef34d6002
16317 Author: Wolfgang Denk <wd@denx.de>
16318 Date: Wed Jun 10 00:19:28 2009 +0200
16319
16320 Prepare 2009.06-rc3
16321
16322 Update CHANGELOG
16323
16324 Signed-off-by: Wolfgang Denk <wd@denx.de>
16325
16326 commit 3a76ab5c166d5956885f803ce975e7151cc0ca0e
16327 Author: Wolfgang Denk <wd@denx.de>
16328 Date: Wed Jun 10 00:15:11 2009 +0200
16329
16330 rmu board: fix error: 'CONFIG_ENV_SECT_SIZE' undeclared
16331
16332 Signed-off-by: Wolfgang Denk <wd@denx.de>
16333
16334 commit 165f9859b64ff59f0cfae3cc70a7e7ded7aaa4a7
16335 Author: Daniel Mack <daniel@caiaq.de>
16336 Date: Thu Jun 4 19:44:12 2009 +0200
16337
16338 ubifs: fix small error path mismatch
16339
16340 In do_readpage(), don't free 'dn' if its allocation failed.
16341
16342 Signed-off-by: Daniel Mack <daniel@caiaq.de>
16343
16344 commit de7cf709ebd3c01fbd094e8853dabb410c0370a1
16345 Author: Wolfgang Denk <wd@denx.de>
16346 Date: Thu Jun 4 00:31:07 2009 +0200
16347
16348 EP88x: fix broken linker script
16349
16350 Signed-off-by: Wolfgang Denk <wd@denx.de>
16351 Tested-by: Mikhail Zaturenskiy <mzaturenskiy@shoppertrak.com>
16352
16353 commit 7a2063bd80d3b58b2dd5d5e58f4411f8d250576c
16354 Author: Wolfgang Denk <wd@denx.de>
16355 Date: Fri May 15 00:16:02 2009 +0200
16356
16357 TQM85xx: minor config file cleanup
16358
16359 Remove "saveenv" from "update" definition: the environment is outside
16360 the U-Boot image on TQM85xx and therefor not affected by updates.
16361
16362 Also "beautify" code a bit (vertical alignment).
16363
16364 Signed-off-by: Wolfgang Denk <wd@denx.de>
16365
16366 commit c0296b1801fc9426d772fa75fe58458db605dfee
16367 Author: Wolfgang Denk <wd@denx.de>
16368 Date: Fri May 15 00:16:01 2009 +0200
16369
16370 TQM85xx: adapt for new flash types
16371
16372 Old TQM85xx boards had 'M' type Spansion Flashes from the S29GLxxxM
16373 series while new boards have 'N' type Flashes from the S29GLxxxN
16374 series, which have bigger sectors: 2 x 128 instead of 2 x 64 KB.
16375
16376 We now change the configuration to the new flash types for all
16377 boards; this also works on old boards - we just waste two flash
16378 sectors for the environment which could be smaller there.
16379
16380 Signed-off-by: Wolfgang Denk <wd@denx.de>
16381
16382 commit 6735104924f06340071a6914a9ee3345607fc102
16383 Author: Dave Liu <daveliu@freescale.com>
16384 Date: Mon May 18 17:49:23 2009 +0800
16385
16386 85xx: Fix the wrong SYS_CLK_IN for 8569MDS
16387
16388 The SYS_CLK_IN of MPC8569MDS is 66.66MHz,
16389 The DDR_CLK_IN is same with SYS_CLK_IN in 8569 processor.
16390 so, change the SYS_CLK_IN from 66MHz to 66.66MHz.
16391
16392 Signed-off-by: Dave Liu <daveliu@freescale.com>
16393
16394 commit 16e7559c08b6f29db4596d795b92914c01e6a1b3
16395 Author: Dave Liu <daveliu@freescale.com>
16396 Date: Fri May 15 10:27:44 2009 +0800
16397
16398 85xx: Fix the wrong BCSR address of 8569MDS
16399
16400 The BCSR17[7] = 1 will unlock the write protect of FLASH.
16401 The WP# pin only controls the write protect of top/bottom sector,
16402 That is why we can save env, but we can't write the first sector
16403 before the patch.
16404
16405 Signed-off-by: Dave Liu <daveliu@freescale.com>
16406
16407 commit 90d13b8ac3d515349626d7c8a3dc34ef38c43fa6
16408 Author: Fredrik Arnerup <fredrik.arnerup@edgeware.tv>
16409 Date: Tue Jun 2 16:27:10 2009 -0500
16410
16411 85xx: bugfix for reading maximum TLB size on mpc85xx
16412
16413 The MAXSIZE field in the TLB1CFG register is 4 bits, not 8 bits.
16414 This made setup_ddr_tlbs() try to set up a TLB larger than the e500 maximum
16415 (256 MB)
16416 which made u-boot hang in board_init_f() when trying to create a new stack
16417 in RAM.
16418 I have an mpc8540 with one 1GB dimm.
16419
16420 Signed-off-by: Fredrik Arnerup <fredrik.arnerup@edgeware.tv>
16421 Signed-off-by: Andy Fleming <afleming@freescale.com>
16422 Acked-by: Kumar Gala <galak@kernel.crashing.org>
16423
16424 commit 1b5291dddf5f16c7ae10e3cb165882fa96038b26
16425 Author: Dave Liu <daveliu@freescale.com>
16426 Date: Fri Mar 27 14:32:43 2009 +0800
16427
16428 85xx: Fix the clock adjust of mpc8569mds board
16429
16430 Currently the clk_adj is 6 (3/4 cycle), The settings will cause
16431 the DDR controller hang at the data init. Change the clk_adj
16432 from 6 to 4 (1/2 cycle), make the memory system stable.
16433
16434 Signed-off-by: Dave Liu <daveliu@freescale.com>
16435
16436 commit faa14babd7466dfade358f9cac128ae246b9bf1b
16437 Author: RONETIX - Ilko Iliev <iliev@ronetix.at>
16438 Date: Fri Jun 5 16:54:31 2009 +0200
16439
16440 at91: fix a USB problem for AT91SAM9261
16441
16442 This patch corrects the missing PLLB initialization in usb_cpu_init()
16443 for AT91SAM9261.
16444 Because of the missing PLLB initialization, the USB support for all
16445 AT91SAM9261 based boards will work only if the PLLB is configured by a
16446 precedent bootloader.
16447
16448 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
16449 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16450 Signed-off-by: Remy Bohmer <linux@bohmer.net>
16451
16452 commit 0c24dec550ddb7d86b8bfdd8645b18479f73e6e2
16453 Author: Felix Radensky <felix@embedded-sol.com>
16454 Date: Sun May 31 20:44:15 2009 +0300
16455
16456 ppc4xx/net: Fix MDIO clock setup
16457
16458 This patch fixes MDIO clock setup in case when OPB frequency is 100MHz.
16459 Current code assumes that the value of sysinfo.freqOPB is 100000000
16460 when OPB frequency is 100MHz. In reality it is 100000001. As a result
16461 MDIO clock is set to incorrect value, larger than 2.5MHz, thus violating
16462 the standard. This in not a problem on boards equipped with Marvell PHYs
16463 (e.g. Canyonlands), since those PHYs support MDIO clocks up to 8.3MHz,
16464 but can be a problem for other PHYs (e.g. Realtek ones).
16465
16466 Signed-off-by: Felix Radensky <felix@embedded-sol.com>
16467 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16468
16469 commit d65e34d12514de2bbe3b8f519761d641c081bad0
16470 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
16471 Date: Wed Feb 25 14:27:29 2009 +0900
16472
16473 rtl8169: fix PCI system memory address
16474
16475 When PCI device use system memory, some PCI host controller should be
16476 set physical memory address.
16477
16478 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
16479 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16480
16481 commit ca9c8a1e10fac01e6a1129f82a7ce18bd818fa43
16482 Author: Manikandan Pillai <mani.pillai@ti.com>
16483 Date: Wed Apr 8 09:14:35 2009 +0530
16484
16485 SMC911x driver fixed for NFS boot
16486
16487 eth_halt() function in the smc911x drivers used to call the
16488 smc911x_reset() function. eth_halt() used to be called after
16489 tftp transfers. This used to put the ethernet chip in reset
16490 while the linux boots up resulting in the ethernet driver
16491 not coming up. NFS boot used to fail as a result.
16492
16493 This patch calls smc911x_shutdown() instead of smc911x_reset().
16494 Some comments received has also been fixed.
16495
16496 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
16497 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16498
16499 commit e5a3bc2401a23f1890611f020f57f94824a534db
16500 Author: Remy Bohmer <linux@bohmer.net>
16501 Date: Sun May 3 12:11:40 2009 +0200
16502
16503 Add config option for disabling DM9000-SROM support.
16504
16505 Some boards do not have SROM support for the DM9000 network adapter.
16506 Instead of listing these board names in the driver code, make this
16507 option configurable from the board config file.
16508
16509 It also removes a build warning for the at91sam9261ek board:
16510 'dm9000x.c:545: warning: 'read_srom_word' defined but not used'
16511
16512 And it repaires the trizepsiv board build which was broken around the
16513 same routines
16514
16515 Signed-off-by: Remy Bohmer <linux@bohmer.net>
16516 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16517
16518 commit 3c9b1ee17e19bd6d80344678d41a85e52b0be713
16519 Author: Kim Phillips <kim.phillips@freescale.com>
16520 Date: Fri Jun 5 14:11:33 2009 -0500
16521
16522 mpc83xx: don't set SICRH_TSOBI1 to RMII/RTBI operation
16523
16524 In GMII mode (which operates at 3.3V) both SICRH TSEC1/2 output buffer
16525 impedance bits should be clear, i.e., SICRH[TSIOB1] = 0 and SICRH[TSIOB2] = 0.
16526 SICRH[TSIOB1] was erroneously being set high.
16527
16528 U-Boot always operated this PHY interface in GMII mode. It is assumed this
16529 was missed in the clean up by the original board porters, and copied along
16530 to the TQM and sbc boards.
16531
16532 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16533 Acked-by: Ira Snyder <iws@ovro.caltech.edu>
16534 Reviewed-by: David Hawkins <dwh@ovro.caltech.edu>
16535 Tested-by: Paul Gortmaker <paul.gortmaker@windriver.com>
16536 CC: Dave Liu <DaveLiu@freescale.com>
16537
16538 commit 2c0234fa79122a5aa77c4e17c33eb2fe184b61a7
16539 Author: Daniel Mack <daniel@caiaq.de>
16540 Date: Wed Apr 8 13:23:37 2009 +0200
16541
16542 smc911x: write back the manually set MAC address
16543
16544 If the MAX address is given by the environment, write it back to the
16545 hardware.
16546
16547 Signed-off-by: Daniel Mack <daniel@caiaq.de>
16548 Cc: Sascha Hauer <s.hauer@pengutronix.de>
16549 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16550
16551 commit dfcd7f21607fd847236b04bb1a8d59a7c10ab99c
16552 Author: Wolfgang Denk <wd@denx.de>
16553 Date: Fri May 15 00:16:03 2009 +0200
16554
16555 Redundant Environment: protect full sector size
16556
16557 Several boards used different ways to specify the size of the
16558 protected area when enabling flash write protection for the sectors
16559 holding the environment variables: some used CONFIG_ENV_SIZE and
16560 CONFIG_ENV_SIZE_REDUND, some used CONFIG_ENV_SECT_SIZE, and some even
16561 a mix of both for the "normal" and the "redundant" areas.
16562
16563 Normally, this makes no difference at all. However, things are
16564 different when you have to deal with boards that can come with
16565 different types of flash chips, which may have different sector
16566 sizes.
16567
16568 Here we may have to chose CONFIG_ENV_SECT_SIZE such that it fits the
16569 biggest sector size, which may include several sectors on boards using
16570 the smaller sector flash types. In such a case, using CONFIG_ENV_SIZE
16571 or CONFIG_ENV_SIZE_REDUND to enable the protection may lead to the
16572 case that only the first of these sectors get protected, while the
16573 following ones aren't.
16574
16575 This is no real problem, but it can be confusing for the user -
16576 especially on boards that use CONFIG_ENV_SECT_SIZE to protect the
16577 "normal" areas, while using CONFIG_ENV_SIZE_REDUND for the
16578 "redundant" area.
16579
16580 To avoid such inconsistencies, I changed all sucn boards that I found
16581 to consistently use CONFIG_ENV_SECT_SIZE for protection. This should
16582 not cause any functional changes to the code.
16583
16584 Signed-off-by: Wolfgang Denk <wd@denx.de>
16585 Cc: Paul Ruhland
16586 Cc: Pantelis Antoniou <panto@intracom.gr>
16587 Cc: Stefan Roese <sr@denx.de>
16588 Cc: Gary Jennejohn <garyj@denx.de>
16589 Cc: Dave Ellis <DGE@sixnetio.com>
16590 Acked-by: Stefan Roese <sr@denx.de>
16591
16592 commit b81830f6e3b3e6ed114d071eb107965e49fa9b5a
16593 Author: Ilya Yanok <yanok@emcraft.com>
16594 Date: Thu May 14 14:03:09 2009 +0400
16595
16596 mmc: it's safe to ignore mmc_send_if_cond() return value
16597
16598 Return value of mmc_send_if_cond() can be safely ignored (as it is
16599 done in Linux). This makes older cards work with MXC MCI controller.
16600
16601 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
16602
16603 commit dba6fcf6517faa5dda7df8109febe03c9c72a6f5
16604 Author: Stefan Roese <sr@denx.de>
16605 Date: Mon May 11 15:54:13 2009 +0200
16606
16607 cfi_mtd: Fix bug in last sector detection
16608
16609 This patch now enabled this cfi-mtd wrapper to correctly detect and
16610 erase the last sector in an NOR FLASH device.
16611
16612 Signed-off-by: Stefan Roese <sr@denx.de>
16613
16614 commit 4e3d89ba948eef801ffd46ef862cdede5b3f8320
16615 Author: Yauhen Kharuzhy <jekhor@gmail.com>
16616 Date: Thu May 7 00:43:30 2009 +0300
16617
16618 mmc: Fix decoding of SCR & function switch data on little-endian machines
16619
16620 SCR & switch data are read from card as big-endian words and should be
16621 converted to CPU byte order.
16622
16623 Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
16624 Signed-off-by: Andy Fleming <afleming@freescale.com>
16625
16626 commit f33cb34b3971dabe3720d577b0e1b8601c09fe17
16627 Author: Yauhen Kharuzhy <jekhor@gmail.com>
16628 Date: Thu May 7 13:08:53 2009 +0300
16629
16630 mmc: Remove return from mmc_init for non SD 2.0 compatible cards.
16631
16632 Cards which are not compatible with SD 2.0 standard, may return response
16633 for CMD8 command, but it will be invalid in terms of SD 2.0. We should
16634 accept this case as admissible, just like Linux does.
16635
16636 Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
16637 Signed-off-by: Andy Fleming <afleming@freescale.com>
16638
16639 commit 998be3dd59ed0af4bec38324047fecfa88ac45db
16640 Author: Rabin Vincent <rabin@rab.in>
16641 Date: Sun Apr 5 13:30:56 2009 +0530
16642
16643 mmc: drop unnecessary casts
16644
16645 Now that response is a uint, we can drop all the casts.
16646
16647 Signed-off-by: Rabin Vincent <rabin@rab.in>
16648
16649 commit 0b453ffe28bb9227d86ddbe0893bd19c93f04ed7
16650 Author: Rabin Vincent <rabin@rab.in>
16651 Date: Sun Apr 5 13:30:55 2009 +0530
16652
16653 mmc: fix response decoding on little endian
16654
16655 The mmc code defines the response as an array of chars. However, it
16656 access the response bytes both as (i) an array of four uints (with
16657 casts) and (ii) as individual chars. The former case is used more
16658 often, including by the driver when it assigns the response.
16659
16660 The char-wise accesses are broken on little endian systems because they
16661 assume that the bytes in the uints are in big endian byte order.
16662
16663 This patch fixes this by changing the response to be an array of four
16664 uints and replacing the char-wise accesses with equivalent uint-wise
16665 accesses.
16666
16667 Signed-off-by: Rabin Vincent <rabin@rab.in>
16668
16669 commit 9b1f942c09dd942e6de3185caa81c111b14de567
16670 Author: Rabin Vincent <rabin@rab.in>
16671 Date: Sun Apr 5 13:30:54 2009 +0530
16672
16673 mmc: use lldiv to fix arm eabi build
16674
16675 The generic MMC core uses direct long long divisions, which do not build
16676 with ARM EABI toolchains. Use lldiv() instead, which works everywhere.
16677
16678 Signed-off-by: Rabin Vincent <rabin@rab.in>
16679
16680 commit e85649c7e683faea1ccfddc9fa9abc62f38e4201
16681 Author: Rabin Vincent <rabin@rab.in>
16682 Date: Sun Apr 5 13:30:53 2009 +0530
16683
16684 mmc: check find_mmc_device return value
16685
16686 find_mmc_device returns NULL if an invalid device number is specified.
16687 Check for this to avoid dereferencing NULL pointers.
16688
16689 Signed-off-by: Rabin Vincent <rabin@rab.in>
16690
16691 commit ac0865ff33870cdf2cd480165045e1bc311e9fa2
16692 Author: Rabin Vincent <rabin@rab.in>
16693 Date: Sun Apr 5 13:30:52 2009 +0530
16694
16695 mmc: clean up help texts
16696
16697 Remove some repeated words and superfluous newlines in the mmc command
16698 help entries.
16699
16700 Signed-off-by: Rabin Vincent <rabin@rab.in>
16701
16702 commit 7d6900ebe16d679c0e03f8d1584b64057a64ce39
16703 Author: Mike Frysinger <vapier@gentoo.org>
16704 Date: Fri May 29 17:01:48 2009 -0400
16705
16706 Blackfin: spi: fix pin handling of SPI0 SSEL4
16707
16708 CS4 on SPI0 has a dedicated PH8 pin which needs to be enabled as a
16709 peripheral in order to work.
16710
16711 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16712
16713 commit 2157359dad2533987f5eb0181ef543693fad6a33
16714 Author: Mike Frysinger <vapier@gentoo.org>
16715 Date: Tue May 26 02:51:57 2009 -0400
16716
16717 Blackfin: fix if() logic in bootrom evt1 check
16718
16719 A missing set of parenthesis caused the silicon revision to apply only to
16720 the BF533 and not the BF531/BF532 variants.
16721
16722 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16723
16724 commit 76b5883da2cf049cd410901c04ea450e5f5c27c3
16725 Author: Stefan Roese <sr@denx.de>
16726 Date: Sat May 16 12:04:22 2009 +0200
16727
16728 jffs2/mtdparts: Fix problem with usage from JFFS2 and MTDPARTS together
16729
16730 Currently using JFFS2 with MTDPARTS enabled doesn't work. This is because
16731 mtdparts_init() is available in both files, cmd_mtdparts.c and
16732 cmd_jffs2.c. Please note that in the original cmd_jffs2.c file (before
16733 the jffs2/mtdparts command/file split those 2 different versions
16734 already existed. So this is nothing new. The main problem is that the
16735 variables "current_dev" and "current_partnum" are declared in both
16736 files now. This doesn't work.
16737
16738 This patch now changes the names of those variable to more specific
16739 names: "current_mtd_dev" and "current_mtd_partnum". This is because
16740 this patch also changes the declaration from static to global, so
16741 that they can be used from both files.
16742
16743 Please note that my first tests were not successful. The MTD devices
16744 selected via mtdparts are now accessed but I'm failing to see the
16745 directory listed via the "ls" command. Nothing is displayed. Perhaps
16746 I didn't generate the JFFS2 image correctly (I never used JFFS2 in
16747 U-Boot before). Not sure. Perhaps somebody else could take a look at
16748 this as well. I'll continue looking into this on Monday.
16749
16750 Signed-off-by: Stefan Roese <sr@denx.de>
16751 Cc: Wolfgang Denk <wd@denx.de>
16752 Cc: Detlev Zundel <dzu@denx.de>
16753 Cc: Ilya Yanok <yanok@emcraft.com>
16754 Cc: Renaud barbier <renaud.barbier@ge.com>
16755
16756 commit ab687907980fa28940a1a992d3f1c5d17cdbbf5d
16757 Author: Graf Yang <graf.yang@analog.com>
16758 Date: Sun May 24 02:34:34 2009 -0400
16759
16760 Blackfin: bf518f-ezbrd: setup portmux for async flash
16761
16762 The pins for async memory where parallel flash lives are not enabled by
16763 default, so make sure we mux them as needed.
16764
16765 Signed-off-by: Graf Yang <graf.yang@analog.com>
16766 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16767
16768 commit f40f6db278f602b55820693634a7256b0b4e4b80
16769 Author: Stefan Roese <sr@denx.de>
16770 Date: Wed May 20 10:58:03 2009 +0200
16771
16772 nand: Fix problem with ECC ordering for PPC4xx NDFC platforms
16773
16774 This patch enables Smart Media (SMC) ECC byte ordering which is used
16775 on the PPC4xx NAND FLASH controller (NDFC). Without this patch we have
16776 incompatible ECC byte ordering to the Linux kernel NDFC driver.
16777
16778 Signed-off-by: Stefan Roese <sr@denx.de>
16779 Acked-by: Scott Wood <scottwood@freescale.com>
16780
16781 commit 399aab7748bef053d59612211e1bd7a3fabfce18
16782 Author: Stefan Roese <sr@denx.de>
16783 Date: Wed May 20 10:58:02 2009 +0200
16784
16785 ppc4xx: Fix problem with ECC ordering for PPC4xx NDFC platforms
16786
16787 This patch now uses the correct ECC byte order (Smart Media - SMC)
16788 to be used on the 4xx NAND FLASH driver. Without this patch we have
16789 incompatible ECC byte ordering to the Linux kernel NDFC driver.
16790
16791 Please note that we also have to enable CONFIG_MTD_NAND_ECC_SMC in
16792 drivers/mtd/nand/nand_ecc.c for correct operation. This is done with
16793 a seperate patch.
16794
16795 Signed-off-by: Stefan Roese <sr@denx.de>
16796 Acked-by: Scott Wood <scottwood@freescale.com>
16797
16798 commit 5d841fac8249a2b3f9a814da2140132be0a9f60d
16799 Author: Stefan Roese <sr@denx.de>
16800 Date: Wed May 20 10:58:01 2009 +0200
16801
16802 ppc4xx: Move definition for PPC4xx NAND FLASH controller to header
16803
16804 This patch moves the definition for the PPC4xx NAND FLASH controller
16805 (NDFC) CONFIG_NAND_NDFC into include/ppc4xx.h. This is needed for the
16806 upcoming fix for the ECC byte ordering of the NDFC driver.
16807
16808 Signed-off-by: Stefan Roese <sr@denx.de>
16809 Acked-by: Scott Wood <scottwood@freescale.com>
16810
16811 commit 2df72b82bc9e17b88dc82735a067749220beb025
16812 Author: Kim Phillips <kim.phillips@freescale.com>
16813 Date: Tue May 19 12:53:36 2009 -0500
16814
16815 common: fix inline--weak error spotted by gcc 4.4
16816
16817 cmd_ide.c:547: error: inline function 'ide_inb' cannot be declared weak
16818
16819 removing the inline attribute fixes it.
16820
16821 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16822
16823 commit 9fd9abedcc3c10cf89353265cbe05f58609d51f3
16824 Author: Kim Phillips <kim.phillips@freescale.com>
16825 Date: Tue May 19 12:53:32 2009 -0500
16826
16827 TQM834x: remove defines causing gcc4.4 warnings
16828
16829 Configuring for TQM834x board...
16830 cpu_init.c: In function 'cpu_init_f':
16831 cpu_init.c:262: warning: array subscript is above array bounds
16832 cpu_init.c:263: warning: array subscript is above array bounds
16833 cpu_init.c:270: warning: array subscript is above array bounds
16834 ...
16835
16836 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16837
16838 commit 0850301747228a3327f2815a85284d26ade3de95
16839 Author: Andreas Huber <andreas.huber@keymile.com>
16840 Date: Tue May 19 11:06:30 2009 +0200
16841
16842 UBI: fix return code in ubi_volume_read
16843
16844 Return -ENODEV instead of 0 when trying to read from a non existing volume.
16845
16846 Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
16847 Signed-off-by: Stefan Roese <sr@denx.de>
16848
16849 commit ec01481ddc4cf302c7f6d760b776ca94819ec21e
16850 Author: Graf Yang <graf.yang@analog.com>
16851 Date: Tue May 19 04:40:08 2009 -0400
16852
16853 Blackfin: fix timer_init()/timer_reset()
16854
16855 The timer_init() function was not using the right csync instruction, nor
16856 was it doing it right after disabling the core timer.
16857
16858 The timer_reset() function would reset the timestamp, but not the actual
16859 timer, so there was a common edge case where get_timer() return a jump of
16860 one timestamp (couple milliseconds) right after resetting. This caused
16861 many functions to improperly timeout right away.
16862
16863 Signed-off-by: Graf Yang <graf.yang@analog.com>
16864 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16865
16866 commit c06326c73bf90e48a8e1cf8893ad31c575423f50
16867 Author: Shinya Kuribayashi <skuribay@pobox.com>
16868 Date: Sat May 16 09:12:09 2009 +0900
16869
16870 MIPS: lib_mips/board.c: Remove unused variables
16871
16872 This fixes the following build warnings:
16873
16874 board.c: In function 'board_init_r':
16875 board.c:328: warning: unused variable 'i'
16876 board.c:326: warning: unused variable 'e'
16877
16878 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
16879
16880 commit 47f6a36cc3f3427cc8e4f1d0f3e6678be6f33769
16881 Author: Shinya Kuribayashi <skuribay@pobox.com>
16882 Date: Sat May 16 09:12:09 2009 +0900
16883
16884 MIPS: Make all extern-ed functions in bitops.h static
16885
16886 All these functions are expected to be static inline-ed.
16887 This patch also fixes the following build warnings on MIPS targets:
16888
16889 include/asm/bitops.h: In function 'ext2_find_next_zero_bit':
16890 include/asm/bitops.h:862: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
16891 include/asm/bitops.h:885: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
16892 include/asm/bitops.h:887: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
16893
16894 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
16895
16896 commit 87423d740b91329b8d1d0b73cafd6930993b558a
16897 Author: Thomas Lange <thomas@corelatus.se>
16898 Date: Fri Apr 24 16:22:16 2009 +0200
16899
16900 MIPS: Implement ethernet halt for au1x00
16901
16902 Implement ethernet halt() by putting MAC0 in reset.
16903 If we do not do this, we will get memory corruption
16904 when ethernet frames are received during early OS boot.
16905
16906 Signed-off-by: Thomas Lange <thomas@corelatus.se>
16907 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
16908
16909 commit a2e0ffcf2d9a22c582a93e84a4bef20fd3877f47
16910 Author: Wolfgang Denk <wd@denx.de>
16911 Date: Fri May 15 23:29:23 2009 +0200
16912
16913 Prepare v2009.06-rc2
16914
16915 Update CHANGELOG.
16916
16917 Signed-off-by: Wolfgang Denk <wd@denx.de>
16918
16919 commit f4317ea91942f44cc1c433277927b61618e9b0a5
16920 Author: Daniel Mack <daniel@caiaq.de>
16921 Date: Tue May 5 12:48:29 2009 +0200
16922
16923 ARM: fix PXA build by defining UP2OCR
16924
16925 U-Boot does not currently build for PXA platforms with USB support
16926 enabled:
16927
16928 usb.c:46: error: 'UP2OCR' undeclared (first use in this function)
16929
16930 Signed-off-by: Daniel Mack <daniel@caiaq.de>
16931 Cc: Markus Klotzbuecher <mk@denx.de>
16932
16933 Edited commit message.
16934 Signed-off-by: Wolfgang Denk <wd@denx.de>
16935
16936 commit e26ad0eabd10a8cda51920fbcfe4da5b4ccf0c98
16937 Author: Wolfgang Denk <wd@denx.de>
16938 Date: Fri May 15 22:32:57 2009 +0200
16939
16940 Minor Coding Style fix; update CHANGELOG.
16941
16942 Signed-off-by: Wolfgang Denk <wd@denx.de>
16943
16944 commit af75a45d23b72a59ac5cc0427696c7f634fdc94b
16945 Author: Wolfgang Denk <wd@denx.de>
16946 Date: Fri May 15 09:27:58 2009 +0200
16947
16948 IDE: bail out of dev_print() for unknown device types
16949
16950 Commit 574b319512 introduced a subtle bug by mixing a list of tests
16951 for "dev_desc->type" and "dev_desc->if_type" into one switch(), which
16952 then mostly did not work because "dev_desc->type" cannot take any
16953 "IF_*" type values. A later fix in commit 8ec6e332ea changed the
16954 switch() into testing "dev_desc->if_type", but at this point the
16955 initial test for unknown device types was completely lost, which
16956 resulted in output like that for IDE ports without device attached:
16957
16958 Device 1: Model: Firm: Ser#:
16959 Type: # 1F #
16960 Capacity: not available
16961
16962 This patch re-introduces the missing test for unknown device types.
16963
16964 Signed-off-by: Wolfgang Denk <wd@denx.de>
16965 Cc: Stefan Roese <sr@denx.de>
16966 Cc: Detlev Zundel <dzu@denx.de>
16967 Tested-by: Stefan Roese <sr@denx.de>
16968
16969 commit c21f62d8483fbab44cd98d93ff2e9355a330d225
16970 Author: Stefan Roese <sr@denx.de>
16971 Date: Thu May 14 07:25:13 2009 +0200
16972
16973 74xx_7xx: Fix rounding problem in CPU frequency calculation
16974
16975 This patch fixes a problem in the CPU frequency calculation. Without it
16976 a 798MHz CPU is displayed as 368.503 MHz. And with it it's 798 MHz.
16977
16978 Signed-off-by: Stefan Roese <sr@denx.de>
16979
16980 commit 3ad8a0517b724782ab36f2b554a94de4c00c1adb
16981 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16982 Date: Wed May 13 22:24:12 2009 +0200
16983
16984 console.h: remove unused prototype 'console_realloc'
16985
16986 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16987
16988 commit 84bf7ca522e94ec402a1264b01971b924b7e268f
16989 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16990 Date: Wed May 13 22:16:31 2009 +0200
16991
16992 api: remove un-needed ifdef CONFIG_API already handle by the Makefile
16993
16994 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16995
16996 commit 792a09eb9d5d8c4f74b7e9f2e887316d511a4e80
16997 Author: Detlev Zundel <dzu@denx.de>
16998 Date: Wed May 13 10:54:10 2009 +0200
16999
17000 Fix e-mail address of Gary Jennejohn.
17001
17002 Signed-off-by: Detlev Zundel <dzu@denx.de>
17003
17004 commit 5e2c08c3ac90808e9be64856916bfd6df984823c
17005 Author: Emil Medve <Emilian.Medve@Freescale.com>
17006 Date: Tue May 12 13:48:32 2009 -0500
17007
17008 Remove inline qualifier from show_boot_progress()
17009
17010 The 'inline' is conflicting with the semantic of 'weak' attribute and with the
17011 way the show_boot_progress() function is used.
17012
17013 Also gcc 4.4 is complaining about it:
17014
17015 main.c:51: error: inline function 'show_boot_progress' cannot be declared weak
17016
17017 Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
17018
17019 commit fe6da4837308aa33d537ac3e7f36c2d66e3d9a36
17020 Author: Wolfgang Denk <wd@denx.de>
17021 Date: Tue May 12 15:17:35 2009 +0200
17022
17023 MPC8260: fixup device tree by property instead of path
17024
17025 cpu/mpc8260/cpu.c used to use do_fixup_by_path_u32() to update the
17026 clock frequencies in the device tree, using a CPU path
17027 "/cpus/OF_CPU", with OF_CPU beind defined in the board config file.
17028
17029 However, this does not work when one board config file (here:
17030 MPC8260ADS.h) is intended to be used for several diffrent CPUs and
17031 therefor contains a generic definition like "cpu@0", as the device
17032 trees that will then be loaded will contain specific names like
17033 "PowerPC,8272@0".
17034
17035 We switch to using do_fixup_by_prop_u32() instead, so we can search
17036 for device_type="cpu", as it is done in other architectures, too.
17037
17038 Signed-off-by: Wolfgang Denk <wd@denx.de>
17039 Cc: Heiko Schocher <hs@denx.de>
17040 Acked-by: Heiko Schocher <hs@denx.de>
17041 Tested-by: Heiko Schocher <hs@denx.de>
17042
17043 commit 12a6753155716e5c3c181a8f40e8b2d3d669aefd
17044 Author: Rohit Hagargundgi <h.rohit@samsung.com>
17045 Date: Mon Mar 9 19:45:46 2009 +0530
17046
17047 Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
17048
17049 Add CONFIG_SYS_MONITOR_LEN macro to apollon board config.
17050 CONFIG_SYS_MONITOR_LEN defines the U-Boot image size.
17051 and is used by OneNAND ipl when reading U-Boot image.
17052
17053 Signed-off-by: Rohit Hagargundgi <h.rohit at samsung.com>
17054 Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
17055
17056 commit c404cc5884b0c82fd82d751dbd8e8b3f8919a23a
17057 Author: Ben Warren <biggerbadderben@gmail.com>
17058 Date: Tue Apr 28 17:04:51 2009 -0700
17059
17060 Schedule removal of non-CONFIG_NET_MULTI net driver API
17061
17062 This will make CONFIG_NET_MULTI the only net driver configuration and
17063 we'll be able to remove this option.
17064
17065 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17066
17067 commit 60bbcf0cc6e55095dd186e59a557d584b9b56eb1
17068 Author: Detlev Zundel <dzu@denx.de>
17069 Date: Tue May 5 16:04:06 2009 +0200
17070
17071 powerpc/inka4x0: Remove left-over ide reset code.
17072
17073 The pin which was used in preliminary versions of the board for ide
17074 reset is really connected to the rtc clock.
17075
17076 Signed-off-by: Detlev Zundel <dzu@denx.de>
17077
17078 commit f578a2da6770951239ad91ee9a1875fdc71dbe48
17079 Author: Marco Stornelli <marco.stornelli@gmail.com>
17080 Date: Tue Apr 28 19:04:02 2009 +0200
17081
17082 Add imls utility command
17083
17084 This patch adds, under tools folder, a new command called imls. Its
17085 goal is the same of UBoot's imls but it can be used as Linux shell
17086 command. It reads from raw mtd partition and prints the list of the
17087 stored images.
17088
17089 Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com>
17090
17091 commit da95427ce431908714ae5e9f663ee6e2bc3bcc33
17092 Author: Heiko Schocher <hs@denx.de>
17093 Date: Tue Apr 28 08:36:11 2009 +0200
17094
17095 netloop: updates for NetLoop
17096
17097 Fix some issues introduced from commit:
17098 2f70c49e5b9813635ad73666aa30f304c7fdeda9
17099 suggested by Mike Frysinger.
17100
17101 - added some comment for the env_id variable in common_cmd_nvedit.c
17102 - moved some variables in fn scope instead of file scope
17103 - NetInitLoop now static void
17104
17105 Signed-off-by: Heiko Schocher <hs@denx.de>
17106 Acked-by: Ben Warren <biggerbadderben@gmail.com>
17107
17108 commit 3c1d89545de11822f8b5afb5646a57757620bd95
17109 Author: Heiko Schocher <hs@denx.de>
17110 Date: Tue Apr 28 07:48:39 2009 +0200
17111
17112 82xx, ids8247: added ids8247 board to MAKEALL script
17113
17114 Signed-off-by: Heiko Schocher <hs@denx.de>
17115
17116 commit 890a017a8a995c921d1e889d360e8d6538ceecfe
17117 Author: Detlev Zundel <dzu@denx.de>
17118 Date: Thu May 7 13:08:55 2009 +0200
17119
17120 arm/imx31_phycore: Fix bi_arch_number
17121
17122 Signed-off-by: Detlev Zundel <dzu@denx.de>
17123 Cc: Sascha Hauer <s.hauer@pengutronix.de>
17124
17125 commit ee47bfabefeb25bdfc83f49ef3bae0f325d3e69e
17126 Author: Sascha Hauer <s.hauer@pengutronix.de>
17127 Date: Fri May 15 10:21:33 2009 +0200
17128
17129 remove myself as phycore/litekit Maintainer
17130
17131 I never acked a patch that adds me as phycore i.MX31 maintainer nor was
17132 it me who pushed the patches, so remove myself from the maintainer list
17133 so that other people do not longer wait for my ack.
17134
17135 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
17136
17137 commit c63254ef5628efe1c77cb2fdba20753f9666f55d
17138 Author: Sergey Lapin <slapin@ossfans.org>
17139 Date: Tue May 12 12:25:14 2009 +0400
17140
17141 AFEB9260 network fix
17142
17143 AFEB9260 uses PA10, PA11 for ETX2 and ETX3.
17144 Also, due to extarnal pull-up on IRQ line, Micrel PHY ID is 1 after reset sequence,
17145 not 0.
17146
17147 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
17148
17149 commit f8ddcd58221cab63dd25c2324dd2032487f748b1
17150 Author: Graf Yang <graf.yang@analog.com>
17151 Date: Tue May 5 02:26:27 2009 -0400
17152
17153 Blackfin: bf518f-ezbrd: reset ethernet PHY during init
17154
17155 We don't know what state the ethernet PHY is in when starting up, so make
17156 sure we set it to a sane state. This fixes troubles seen when Linux boots
17157 up, configures the PHY is a non-default state, and then the system reboots
17158 into U-Boot which previously expected a reset state only.
17159
17160 Signed-off-by: Graf Yang <graf.yang@analog.com>
17161 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17162
17163 commit 53310b88eaa27fb5cb83144d0b22389190ad87a1
17164 Author: Mike Frysinger <vapier@gentoo.org>
17165 Date: Tue May 5 01:35:41 2009 -0400
17166
17167 Blackfin: bf527-ezkit: fix SPI flash env params
17168
17169 The BF527-EZKIT settings for storing the environment in SPI flash wasn't
17170 using the correct sector settings for the SPI flash part that is actually
17171 on the board.
17172
17173 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17174
17175 commit f58bf804a14324c6c9186a7a664fa23281780e8b
17176 Author: Mike Frysinger <vapier@gentoo.org>
17177 Date: Fri Apr 24 23:54:19 2009 -0400
17178
17179 Blackfin: avoid get_sclk() with early serial debug
17180
17181 When the clock functions were changed to use cached values (and thereby
17182 avoiding expensive math functions), early serial debug broke because the
17183 baud programming is called before external memory is available.
17184
17185 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17186
17187 commit 02778f2f1b4b1a28b492367477db27c58d45ae35
17188 Author: Mike Frysinger <vapier@gentoo.org>
17189 Date: Fri Apr 24 23:39:41 2009 -0400
17190
17191 Blackfin: fix booting with older bootroms (no EVT1)
17192
17193 When dropping jump block support, the assumption was that all bootroms
17194 supported entry point redirection via the EVT1 register. Unfortunately,
17195 this turned out to be incorrect for the oldest Blackfin parts (BF533-0.2
17196 and older and BF561). No one really noticed earlier because these parts
17197 usually are booted by bypassing the bootrom entirely, and older BF533
17198 parts are not supported at all (too many anomalies).
17199
17200 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17201
17202 commit af2c37378f203857d5e6c957e77a14c2da5b59d2
17203 Author: Mike Frysinger <vapier@gentoo.org>
17204 Date: Fri Apr 24 23:22:48 2009 -0400
17205
17206 Blackfin: recurse with early serial initcode
17207
17208 Make sure we recurse through serial_putc() rather than bang on the UART
17209 transmit register directly to avoid hardware overflows when using \n.
17210
17211 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17212
17213 commit 6b8edfde22acc574b5532e9f086e6a7287a9bc78
17214 Author: Wolfgang Denk <wd@denx.de>
17215 Date: Fri May 1 21:59:12 2009 +0200
17216
17217 Prepare v2009.06-rc1
17218
17219 Update CHANGELOG.
17220
17221 Signed-off-by: Wolfgang Denk <wd@denx.de>
17222
17223 commit 6b2beb5626a143ca5347e7d2c6005be9936c1fbb
17224 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17225 Date: Fri May 1 15:38:06 2009 +0200
17226
17227 at91: remove lowlevel_init.S
17228
17229 lowlevel_init.S is not used any more so remove it.
17230 As consequence, we also don't have to generate u-boot.lds
17231 but can use a static version as before.
17232
17233 This also fixes the out-of-tree build problem introduced
17234 with commit f0a2c7b4 "at91: add support for the PM9263 board"
17235
17236 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17237 Signed-off-by: Wolfgang Denk <wd@denx.de>
17238
17239 commit 0ee7a310479640ef17ce2fc0f6c13cf7961d2330
17240 Author: Wolfgang Denk <wd@denx.de>
17241 Date: Fri May 1 00:16:11 2009 +0200
17242
17243 Update CHANGELOG; minor coding style cleanup.
17244
17245 Signed-off-by: Wolfgang Denk <wd@denx.de>
17246
17247 commit d3a513c23ba4100d6983161cdc1f747dfd087bbd
17248 Author: Manikandan Pillai <mani.pillai@ti.com>
17249 Date: Tue Apr 21 17:29:05 2009 +0200
17250
17251 OMAP3: Fix timer handling to 1ms and CONFIG_SYS_HZ to 1000
17252
17253 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17254 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
17255
17256 commit ac9140037a84629c5583066ff1a177396c47d89d
17257 Author: Dirk Behme <dirk.behme@googlemail.com>
17258 Date: Fri Apr 17 14:27:56 2009 +0200
17259
17260 OMAP3: Beagle: Set pinmux conditionally for Rev C boards
17261
17262 The Beagle Rev C boards pull UART2 from an alternate set of balls.
17263
17264 Signed-off-by: Steve Sakoman <steve@sakoman.com>
17265 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17266
17267 commit c1a0fd5f2864e9d381f4a3dc948942cac974e89a
17268 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17269 Date: Mon Apr 27 18:33:33 2009 +0200
17270
17271 ubifs: BUG: Blocks commpressed with zlib
17272
17273 Blocks compressed with zlib dont have the full gzip header.
17274
17275 Without this patch, block compressed with zlib cannot be readed!
17276
17277 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17278
17279 commit 35f6a943f7d92145d607c1d55f5c2e2eae5be630
17280 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17281 Date: Mon Apr 27 18:33:32 2009 +0200
17282
17283 lib_generic: gunzip: New function zunzip
17284
17285 Separate gunzip in
17286
17287 gunzip: Find the end of the header and call zunzip.
17288 zunzip: Inflate gunzip block without header.
17289
17290 UBI fs blocks can be compresed in lzo, zlib or no-compression. The
17291 current implementation of u-boot supported all the compressions but
17292 there was a bug in the implementation of the zlib blocks.
17293
17294 UBIFS's Zlib blocks do not have header but they were compressed using
17295 gunzip, a function used to decompress gunzip files/sectors with a
17296 header.
17297
17298 This patch adds a new function zunzip that uncompress a zlib block with
17299 no header.
17300
17301 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17302
17303 commit a1e5f93185d0d85a4b3fad3b6c743cddcd373b0c
17304 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
17305 Date: Thu Apr 23 15:37:16 2009 +0200
17306
17307 at91: fixed plla calc when no USB support is active
17308
17309 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
17310 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17311
17312 commit 3791a1187c1401c33c9512595e6e89dbb46230c5
17313 Author: Ladislav Michl <ladis@linux-mips.org>
17314 Date: Wed Apr 22 01:12:04 2009 +0200
17315
17316 arm925t: Fix CONFIG_SYS_HZ to 1000
17317
17318 Let CONFIG_SYS_HZ to have value of 1000 effectively fixing all users of
17319 get_timer.
17320
17321 Changes since original version:
17322 * Set PTV=2 (divisor 8) for boards using 12MHz timer clock source to
17323 improve timer resolution.
17324
17325 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
17326
17327 commit 42bf4b2248146abdc592bde0009c6ea42067f437
17328 Author: Dirk Behme <dirk.behme@googlemail.com>
17329 Date: Tue Apr 14 20:15:17 2009 +0200
17330
17331 OMAP3: Remove legacy NAND defines
17332
17333 Remove remaining legacy NAND defines for Beagle, EVM, Overo and Pandora.
17334
17335 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17336
17337 commit cba0b778dd5f1ea32959b6825c7f0a31501a99d5
17338 Author: Sanjeev Premi <premi@ti.com>
17339 Date: Mon Apr 27 21:27:54 2009 +0530
17340
17341 OMAP3: Print correct silicon revision
17342
17343 The function display_board_info() displays incorrect
17344 silicon revision - based on the return value from
17345 function get_cpu_rev().
17346
17347 This patch fixes the problem.
17348
17349 Signed-off-by: Sanjeev Premi <premi@ti.com>
17350
17351 commit 90006e9b33bcdbf241b0295d186e3634137907a9
17352 Author: Sanjeev Premi <premi@ti.com>
17353 Date: Mon Apr 27 21:27:44 2009 +0530
17354
17355 OMAP3: Remove unused board-types
17356
17357 The board-types defined in struct omap3_sysinfo seem to be
17358 unused. The function display_board_info() is passed
17359 board type as an argument; which is ignored.
17360
17361 This patch removes all uses of board-type, related definitions
17362 and functions.
17363
17364 Signed-off-by: Sanjeev Premi <premi@ti.com>
17365
17366 commit 6a6b62e3aa4b340c4f8fc67b1487ddb5436c684d
17367 Author: Sanjeev Premi <premi@ti.com>
17368 Date: Mon Apr 27 21:27:27 2009 +0530
17369
17370 OMAP3: Use functions print_cpuinfo() and checkboard()
17371
17372 Use the functions print_cpuinfo() and checkboard() to
17373 display the cpu and board specific information.
17374
17375 These functions reuse content from the existing function
17376 display_board_info() - which has been removed.
17377
17378 Also, updated the existig OMAP3 configurations to
17379 define:
17380 - CONFIG_DISPLAY_CPUINFO
17381 - CONFIG_DISPLAY_BOARDINFO
17382
17383 Signed-off-by: Sanjeev Premi <premi@ti.com>
17384
17385 commit f8e2b3107ee00f2782f8ebf47e3f09cda4e2353a
17386 Author: Stefan Roese <sr@denx.de>
17387 Date: Wed Mar 18 11:17:37 2009 +0100
17388
17389 MTD: Change cfi-mtd to accept non-uniform sector sizes
17390
17391 With this patch non-uniform NOR FLASH chips (chips with multiple erase
17392 regions) can be exported via the cfi-mtd layer and therefor used by UBI.
17393 We select the largest sector size as erasesize. The cfi driver will make
17394 sure that the smaller sectors are handled correctly.
17395
17396 Signed-off-by: Stefan Roese <sr@denx.de>
17397
17398 commit 3dcbe628d66b648e954bc8147d4faff2983206d9
17399 Author: Anatolij Gustschin <agust@denx.de>
17400 Date: Thu Apr 23 12:35:22 2009 +0200
17401
17402 video: fix bug in cfb_console.c code
17403
17404 Fix bug in drawing long version/info strings:
17405 U-Boot version string like
17406 "U-Boot 2009.03-05647-g7c51e06 (Apr 23 2009 - 12:40:00) MPC83XX"
17407 is long and doesn't wrap around correctly while drawing
17408 beside the logo. Such long strings partially overwrite
17409 the logo. This patch is an attempt to fix it.
17410
17411 Signed-off-by: Anatolij Gustschin <agust@denx.de>
17412
17413 commit 4d9eab89b3b2c2ed432b14d355a56f274d8aac75
17414 Author: Wolfgang Denk <wd@denx.de>
17415 Date: Tue Apr 28 08:50:31 2009 +0200
17416
17417 cmd_ext2.c: fix compile warnings
17418
17419 Get rid of these warnings:
17420
17421 cmd_ext2.c:247: warning: format '%ld' expects type 'long int', but argument 2 has type 'int'
17422 cmd_ext2.c:248: warning: format '%lX' expects type 'long unsigned int', but argument 3 has type 'int'
17423
17424 Signed-off-by: Wolfgang Denk <wd@denx.de>
17425
17426 commit 28afe0160f87ff74574150d703055a965f91422a
17427 Author: Heiko Schocher <hs@denx.de>
17428 Date: Mon Apr 27 10:48:20 2009 +0200
17429
17430 ids8247: Remove legacy NAND defines
17431
17432 because legacy NAND support is deprecated converting to current
17433 NAND interface. !This just compile, because I have no more the
17434 hardware to test it.
17435
17436 Signed-off-by: Heiko Schocher <hs@denx.de>
17437
17438 commit dbd33614404b65aa441c5620c3dbd560c4460c09
17439 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17440 Date: Mon Apr 27 09:13:31 2009 +0200
17441
17442 ubifs: BUG realpath string must be ended with NULL
17443
17444 If the memory used to copy the link_make is "dirty" the string wont
17445 be ended with NULL, throwing out multiple memory bugs.
17446
17447 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17448 Acked-by: Stefan Roese <sr@denx.de>
17449
17450 commit 65351a8793c51f3787efbbcf3aa1df0ad543c127
17451 Author: Peter Tyser <ptyser@xes-inc.com>
17452 Date: Fri Apr 24 15:59:56 2009 -0500
17453
17454 bmp_logo: Check return value of fread()
17455
17456 Add basic error handling to fread() function calls. This prevents
17457 compililation warnings such as:
17458
17459 bmp_logo.c: In function ‘main’:
17460 bmp_logo.c:71: warning: ignoring return value of ‘fread’, declared with
17461 attribute warn_unused_result
17462 ...
17463
17464 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17465
17466 commit eea8be86d1c2b570660d1f6c553845e13164231a
17467 Author: Peter Tyser <ptyser@xes-inc.com>
17468 Date: Fri Apr 24 15:59:46 2009 -0500
17469
17470 ncb: Check return value of write()
17471
17472 This prevents the compilation warning:
17473
17474 ncb.c: In function 'main':
17475 ncb.c:32: warning: ignoring return value of ‘write’, declared with
17476 attribute warn_unused_result
17477
17478 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17479
17480 commit dbe29e36a4c2775b69b5a63b0ce2bac89c08e691
17481 Author: Stefan Roese <sr@denx.de>
17482 Date: Fri Apr 24 15:59:35 2009 +0200
17483
17484 mtd: nand/onenand: Register mtd device upon device scanning
17485
17486 With this patch the NAND and OneNAND devices are registered in the MTD
17487 subsystem and can then be referenced by the mtdcore code (e.g.
17488 get_mtd_device_nm()). This is needed for the new "ubi part" command
17489 syntax without the flash type parameter (nor|nand|onenand).
17490
17491 Signed-off-by: Stefan Roese <sr@denx.de>
17492
17493 commit 10bb62d85a0850dbad1fdd34123378686373f166
17494 Author: Stefan Roese <sr@denx.de>
17495 Date: Fri Apr 24 15:58:33 2009 +0200
17496
17497 mtd: nand: Include linux/mtd/partitions.h in nand_base.h
17498
17499 This patch removes this compilation warning when CONFIG_MTD_PARTITIONS is
17500 defined:
17501
17502 nand_base.c: In function 'nand_release':
17503 nand_base.c:2922: warning: implicit declaration of function 'del_mtd_partitions'
17504
17505 Signed-off-by: Stefan Roese <sr@denx.de>
17506
17507 commit 2d579e5060413af5a740cb396dc87e1ff31bf5a9
17508 Author: Stefan Roese <sr@denx.de>
17509 Date: Fri Apr 24 20:24:19 2009 +0200
17510
17511 ubi: Remove flash selection parameter (nor|nand|onenand) from "ubi part"
17512
17513 This patch removes the now unnecessary flash type parameter from the
17514 "ubi part" command. Currently the user has to define the type of flash
17515 he will be using UBI on. Example:
17516
17517 => ubi part nor partition1
17518
17519 With this patch this type parameter is not needed anymore. The user can
17520 now select the partition directly without the flash type paramter.
17521 Example:
17522
17523 => ubi part partition1
17524
17525 This breaks backward compatibility right now because of the change in the
17526 command syntax. But UBI support is still quite fresh and the advantage of
17527 this new command is syntax big enough for this change. Additionally the
17528 code is much cleaner now.
17529
17530 Signed-off-by: Stefan Roese <sr@denx.de>
17531 CC: Kyungmin Park <kyungmin.park@samsung.com>
17532
17533 commit 294f10ca9ea82a15e135dcb0fc658382ab206940
17534 Author: Detlev Zundel <dzu@denx.de>
17535 Date: Thu Apr 23 13:14:20 2009 +0200
17536
17537 mips/vcth: Use generic 16550 uart driver
17538
17539 As the common code also handles baudrate switching, which the board
17540 specific vct.c driver did not support, this is one of the rare
17541 occassions where deleting code actually adds a feature :)
17542
17543 Signed-off-by: Detlev Zundel <dzu@denx.de>
17544 Acked-by: Stefan Roese <sr@denx.de>
17545 Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
17546
17547 commit 0c8a84916c5dacccdc5b27b63fc463e9f3b04f07
17548 Author: Ladislav Michl <ladis@linux-mips.org>
17549 Date: Tue Apr 21 02:26:31 2009 +0200
17550
17551 Separate mtdparts command from jffs2
17552
17553 On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
17554 > Currently the mtdparts commands are included in the jffs2 command support.
17555 > This doesn't make sense anymore since other commands (e.g. UBI) use this
17556 > infrastructure as well now. This patch separates the mtdparts commands from
17557 > the jffs2 commands making it possible to only select mtdparts when no JFFS2
17558 > support is needed.
17559
17560 One more leftover... Let nboot command know about partitions even if JFFS2
17561 support is not enabled.
17562
17563 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
17564 Acked-by: Stefan Roese <sr@denx.de>
17565
17566 commit 67c2e57c0875139dbfcd6f41c43e6ad0cb2e40c9
17567 Author: Peter Tyser <ptyser@xes-inc.com>
17568 Date: Mon Apr 20 11:22:13 2009 -0500
17569
17570 cmd_ide: Remove unused AmigaOneG3SE code
17571
17572 The output_data_short() and input_data_short() functions for the
17573 AmigaOneG3SE are unused and result in compiler warnings.
17574
17575 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17576
17577 commit c93c102ace00764a56dbdf78bac134a23906721e
17578 Author: Peter Tyser <ptyser@xes-inc.com>
17579 Date: Mon Apr 20 11:21:40 2009 -0500
17580
17581 AmigaOneG3SE: Fix CONFIG_CMD_CONSOLE definition
17582
17583 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17584
17585 commit 54e822f9590cc6c70411bd8cabd42236e07a2aa7
17586 Author: Peter Tyser <ptyser@xes-inc.com>
17587 Date: Mon Apr 20 11:09:05 2009 -0500
17588
17589 Replace __asm references with __asm__
17590
17591 __asm__ follows gcc's documented syntax and is generally more common
17592 than __asm. This change is only asthetic and should not affect
17593 functionality.
17594
17595 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17596
17597 commit f9a109b3adc5e8647535357500e2a38f0558b5c2
17598 Author: Peter Tyser <ptyser@xes-inc.com>
17599 Date: Mon Apr 20 11:08:46 2009 -0500
17600
17601 Replace __attribute references with __attribute__
17602
17603 __attribute__ follows gcc's documented syntax and is generally more
17604 common than __attribute. This change is only asthetic and should not
17605 affect functionality.
17606
17607 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17608
17609 commit 08f077da9298ff65cc6f85f90d2770000a1beee9
17610 Author: David Brownell <dbrownell@users.sourceforge.net>
17611 Date: Thu Apr 16 19:55:48 2009 -0700
17612
17613 mtdpart command: align output columns
17614
17615 Make the headers in the "mtdparts" command output line up
17616 with their columns ... strike the extra TAB character.
17617
17618 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
17619
17620 commit 06f41f825c23344d889d5419bb5eaeceb3ed2a02
17621 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
17622 Date: Thu Apr 16 10:51:03 2009 +0900
17623
17624 Remove sa1100.h
17625
17626 sa1100.h is not used anywhere, then remove it.
17627
17628 $ find . -name '*.h' -empty -print
17629 ./include/sa1100.h
17630 $ git grep 'sa1100.h' .
17631 $
17632
17633 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
17634 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17635
17636 commit 7d3d30b1b3fbd0a07db254ead99fa6fff4f4d992
17637 Author: Stefan Roese <sr@denx.de>
17638 Date: Tue Apr 14 17:51:21 2009 +0200
17639
17640 UBIFS: Remove tnc_commit.c which is not used in the read-only version
17641
17642 I missed removing this file while implementing the UBIFS support. It's
17643 not referenced at all, so let's remove it. Thanks to Artem Bityutskiy
17644 for spotting.
17645
17646 Signed-off-by: Stefan Roese <sr@denx.de>
17647
17648 commit 6356daff70867822bdb23cea49f98e65421a25b8
17649 Author: Adrian Hunter <adrian.hunter@nokia.com>
17650 Date: Tue Apr 14 17:50:38 2009 +0200
17651
17652 UBIFS: fix recovery bug
17653
17654 UBIFS did not recovery in a situation in which it could
17655 have. The relevant function assumed there could not be
17656 more nodes in an eraseblock after a corrupted node, but
17657 in fact the last (NAND) page written might contain anything.
17658 The correct approach is to check for empty space (0xFF bytes)
17659 from then on.
17660
17661 Signed-off-by: Adrian Hunter <adrian.hunter@nokia.com>
17662 Signed-off-by: Stefan Roese <sr@denx.de>
17663
17664 commit 351f40caf2f7806b2cefb93e077ea619b9f684e8
17665 Author: Gao Guanhua <B22826@freescale.com>
17666 Date: Tue Apr 14 14:37:35 2009 +0800
17667
17668 fs: Fix the wrong type of var
17669
17670 The filelen should be signed type, not unsigned type.
17671 otherwise, The condition as below never take.
17672 if (filelen < 0)
17673
17674 Signed-off-by: Gao Guanhua <B22826@freescale.com>
17675 Signed-off-by: Dave Liu <daveliu@freescale.com>
17676
17677 commit 05f474c4d0469bebc0bb05df60a39dc7fdf28e62
17678 Author: Wolfgang Denk <wd@denx.de>
17679 Date: Tue Apr 28 00:29:34 2009 +0200
17680
17681 Update CHANGELOG
17682
17683 Signed-off-by: Wolfgang Denk <wd@denx.de>
17684
17685 commit ad74cae9ff8790727bc81ee91c6bca7d50dca446
17686 Author: David Brownell <dbrownell@users.sourceforge.net>
17687 Date: Thu Apr 16 23:15:15 2009 -0700
17688
17689 dm9000 EEPROM reading bugfix
17690
17691 Make the U-Boot dm9000 driver read addresses from EEPROM just
17692 like Linux does ... read six bytes, instead of reading twelve
17693 bytes and then discarding every other one.
17694
17695 Using the right Ethernet address is a big win.
17696
17697 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
17698 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17699 Acked-by: Ben Warren <biggerbadderben@gmail.com>
17700
17701 commit d4c02e6f5d49880123e7f584b88f857ffd874381
17702 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
17703 Date: Wed Feb 25 14:27:24 2009 +0900
17704
17705 rtl8169: fix cache coherency problem
17706
17707 Fix the problem that cannot access actual data when CPU data cache enabled.
17708
17709 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
17710 Tested-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17711 Acked-by: Ben Warren <biggerbadderben@gmail.com>
17712
17713 commit a85693b3bd4431b05b7df608b6f7733c0f80c53e
17714 Author: Dirk Behme <dirk.behme@googlemail.com>
17715 Date: Tue Apr 21 17:30:51 2009 +0200
17716
17717 OMAP3: Fix changed mmc init command
17718
17719 In recent U-Boot mmcinit changed to mmc init.
17720
17721 Signed-off-by: Steve Sakoman <steve@sakoman.com>
17722 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17723
17724 commit 34b76a14f676bc6501c27a96564e4dfb4793f033
17725 Author: Wolfgang Denk <wd@denx.de>
17726 Date: Sun Apr 26 20:39:26 2009 +0200
17727
17728 lib_arm/board.c: remove misleading "test-only" comment.
17729
17730 For a long time, the print_cpuinfo() declaration in lib_arm/board.c
17731 had been marked as "test-only", which is plain wrong considering
17732 current usage. Delete this misleading comment.
17733
17734 Signed-off-by: Wolfgang Denk <wd@denx.de>
17735
17736 commit 7239c5da5e9197accb3dfe395be4502c3b9bca8e
17737 Author: David Brownell <dbrownell@users.sourceforge.net>
17738 Date: Sun Apr 12 15:40:16 2009 -0700
17739
17740 minor DaVinci clock cleanup
17741
17742 Minor cleanup to clock-related defines for DaVinci DM6446 boards:
17743
17744 - CONFIG_SYS_CLK_FREQ is unused; remove it.
17745
17746 - CONFIG_SYS_NS16550_CLK must be the same as CONFIG_SYS_HZ_CLOCK
17747
17748 On DM6446 both of those peripheral clocks actually come from the
17749 same source, the primary oscillator. Having them use the same
17750 symbol avoids bugs in the clone'n'modify development cycle.
17751
17752 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
17753
17754 commit ffd8c7170d55c34bbfcfd2c84093dcaff796cbf3
17755 Author: Minkyu Kang <mk7.kang@samsung.com>
17756 Date: Mon Apr 6 19:59:29 2009 +0900
17757
17758 s3c64xx: remove unnecessary definition
17759
17760 CONFIG_S3C6400 is must defined at config header file
17761 That definition is unnecessary at this file
17762
17763 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
17764
17765 commit 14b9308d511b53042ef478936e367a67282df66a
17766 Author: Heiko Schocher <hs@denx.de>
17767 Date: Fri Apr 24 06:50:45 2009 +0200
17768
17769 83xx: searching "muram-data" by compatible property
17770
17771 if using CONFIG_BOOTCOUNT_LIMIT feature on a MPC8360 CPU
17772 in the muram-data node, the reg entry needs to be updated.
17773 This is done in fdt_fixup_muram(), but we should use
17774 the compatible "fsl,qe-muram-data" for searching the
17775 node instead of searching the muram-data node with
17776 an absolute path.
17777
17778 Signed-off-by: Heiko Schocher <hs@denx.de>
17779 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17780
17781 commit 8e15088794807944b221c11609d36789efc7f767
17782 Author: Anatolij Gustschin <agust@denx.de>
17783 Date: Thu Apr 23 21:29:34 2009 +0200
17784
17785 mpc83xx: MPC8360ERDK: fix environment offset configuration bug
17786
17787 The size of U-Boot binary for MPC8360ERDK increased
17788 (> 2 flash sectors now), so 'saveenv' will partially
17789 overwrite U-Boot in flash and will brick the board.
17790 This patch moves environment offset to fourth flash
17791 sector and also fixes CONFIG_SYS_MONITOR_LEN.
17792
17793 Signed-off-by: Anatolij Gustschin <agust@denx.de>
17794 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17795
17796 commit 3c172c4fdbbb5858fae38478d6399be4a16be3fc
17797 Author: Michael Zaidman <michael.zaidman@gmail.com>
17798 Date: Sat Apr 4 01:43:00 2009 +0300
17799
17800 NetLoop initialization bug
17801
17802 The patch fixes the bug of partial initialization of global network
17803 parameters.
17804
17805 Upon u-boot's start up the first ping command causes a failure of the
17806 consequent TFTP command. It happens in the recently added mechanism of
17807 the NetLoop initialization where initialization of global network
17808 parameters is separated in the NetInitLoop routine which is called per
17809 env_id change. Thus, ping request will initialize the network parameters
17810 necessary for ping operation only, afterwards the env_changed_id will be
17811 set to the env_id that will prevent all following initialization requests
17812 from other protocols.
17813 The problem is that the initialized by ping subset of network parameters
17814 is not sufficient for other protocols and particularly for TFTP which
17815 requires the NetServerIp also.
17816
17817 Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
17818 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17819
17820 commit b11f664f52c2855990107c18f242223377183575
17821 Author: Timur Tabi <timur@freescale.com>
17822 Date: Thu Apr 9 10:27:05 2009 -0500
17823
17824 net: fix ULI 526x macro usage in netdev.h
17825
17826 Change netdev.h to use CONFIG_ULI526X instead of CONFIG_ULI526. CONFIG_ULI526X
17827 is used everywhere else, so that's the correct macro name. Without this fix,
17828 Ethernet will not work on the Freescale MPC8610 HPCD.
17829
17830 Signed-off-by: Timur Tabi <timur@freescale.com>
17831 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17832
17833 commit 7ee38c044ca5041d3378d6507580ea4ec344af96
17834 Author: David Brownell <dbrownell@users.sourceforge.net>
17835 Date: Sun Apr 12 15:38:06 2009 -0700
17836
17837 fix DaVinci NS16550_REG_SIZE regression
17838
17839 Update the DaVinci DM6446 boards to use the new convention
17840 for CONFIG_SYS_NS16550_REG_SIZE ... the size hasn't changed
17841 from the original 4 bytes, but these chips are little-endian.
17842
17843 (Resolves a regression added recently by the include/ns16550.h
17844 patch to "Unify structure declaration for registers". The code
17845 previously worked just fine because the registers were accessed
17846 as host-endian words, not as bytes.)
17847
17848 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
17849
17850 commit dfc99e143fca44a492918ac6cf3f76ee9c2473a9
17851 Author: Mike Frysinger <vapier@gentoo.org>
17852 Date: Sun Apr 12 22:29:20 2009 -0400
17853
17854 cmd_nand: drop duplicate NULL ptr check
17855
17856 The first if statement checks for NULL ptrs, so there is no need to check
17857 it again in later else cases (such as .oob).
17858
17859 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17860 CC: Scott Wood <scottwood@freescale.com>
17861
17862 commit 7732cef2eeb4e339cfcd8553fab773af73a20805
17863 Author: David Brownell <dbrownell@users.sourceforge.net>
17864 Date: Mon Apr 13 08:03:38 2009 -0700
17865
17866 CMD_UBI != MTD_PARTITIONS
17867
17868 Fix dependency goofage: it should certainly be possible to have the
17869 partition support without bringing in UBI commands.
17870
17871 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
17872 Acked-by: Stefan Roese <sr@denx.de>
17873
17874 commit 6ebff365eb63093ca35b687316002535c6a18820
17875 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17876 Date: Thu Apr 16 21:30:48 2009 +0200
17877
17878 at91sam9/at91cap: fix CONFIG_SYS_HZ to 1000
17879
17880 The timer has been rewrote with a precision at ~0,18%
17881
17882 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17883 Tested-by: Sergey Lapin <slapin@ossfans.org>
17884 Tested-by: Eric BENARD <ebenard@free.fr>
17885
17886 commit f0a2c7b4b64eacd06bb272856bcc056be8719f5a
17887 Author: Ilko Iliev <iliev@ronetix.at>
17888 Date: Thu Apr 16 21:30:48 2009 +0200
17889
17890 at91: add support for the PM9263 board of Ronetix GmbH
17891
17892 The PM9263 board is based on the AT91SAM9263-EK board.
17893
17894 Here is the page on Ronetix website:
17895 http://www.ronetix.at/starter_kit_9263.html
17896
17897 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
17898 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17899
17900 commit dc39ae9513c32dfeb9e018dc0d22c6484514fefb
17901 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17902 Date: Thu Apr 16 21:30:44 2009 +0200
17903
17904 at91sam9/at91cap: improve clock framework
17905
17906 calculate dynamically the clock rate and pllb setting for usb
17907
17908 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17909
17910 commit dd7c302099ef5590069bdbf292aaa8230cd59de7
17911 Author: Stefan Roese <sr@denx.de>
17912 Date: Wed Apr 15 14:08:48 2009 +0200
17913
17914 ppc4xx: Disable POST memory test on NAND-booting Kilauea
17915
17916 Don't run the memory POST on the NAND-booting version. It will
17917 overwrite part of the U-Boot image which is already loaded from NAND
17918 to SDRAM. We were just lucky that it booted at all with this SDRAM
17919 test enabled.
17920
17921 Signed-off-by: Stefan Roese <sr@denx.de>
17922
17923 commit 9a929170be89b27bce677504da27e88600c06c49
17924 Author: Stefan Roese <sr@denx.de>
17925 Date: Wed Apr 15 14:06:26 2009 +0200
17926
17927 ppc4xx: Disable POST memory test on NAND-booting Sequoia
17928
17929 Don't run the memory POST on the NAND-booting version. It will
17930 overwrite part of the U-Boot image which is already loaded from NAND
17931 to SDRAM. We were just lucky that it booted at all with this SDRAM
17932 test enabled.
17933
17934 Signed-off-by: Stefan Roese <sr@denx.de>
17935
17936 commit 17c1b0e89b8be7d90f605eb19af9218c6275bfb3
17937 Author: Stefan Roese <sr@denx.de>
17938 Date: Wed Apr 15 11:32:53 2009 +0200
17939
17940 ppc4xx: Remove unused code for Sequoia NAND booting version
17941
17942 The current define of get_bus_freq() in the CONFIG_NAND_SPL #ifdef is not
17943 used at all. This patch changes it's define to the currently used value of
17944 133333333 and removes the unnecessary code.
17945
17946 Signed-off-by: Stefan Roese <sr@denx.de>
17947
17948 commit cf9409885cbe01405bad76790e99f8adf3351f4d
17949 Author: Stefan Roese <sr@denx.de>
17950 Date: Wed Apr 15 10:50:48 2009 +0200
17951
17952 ppc4xx: Add "booting from NAND" to 4xx NAND-booting targets
17953
17954 This additional text in the bootup log helps to see if the board is
17955 configured for NAND-booting. Especially helpful for boards that can
17956 boot from NOR and NAND (e.g. most of the AMCC eval boards).
17957
17958 Signed-off-by: Stefan Roese <sr@denx.de>
17959
17960 commit 5132106a27b8fb302677852b26ffd319b40d17e2
17961 Author: Stefan Roese <sr@denx.de>
17962 Date: Wed Apr 8 10:36:22 2009 +0200
17963
17964 ppc4xx: Fixup chip-selects in dtb for NAND-booting Sequoia
17965
17966 Currently the NOR & NAND support in Linux only works for the "standard"
17967 Sequoia, the version booting for NOR flash. The NAND-booting version
17968 has the chip-selects swapped. Here the chip-select mappings:
17969
17970 "Standard" NOR-booting version:
17971 CS0 NOR
17972 CS3 NAND
17973
17974 NAND-booting version:
17975 CS0 NAND
17976 CS3 NOR
17977
17978 With this path the dtb gets fixed-up, so that the correct chip-select
17979 numbers are patched in the dtb enabling correct NOR & NAND support
17980 in Linux on the NAND-booting Sequoia version.
17981
17982 Signed-off-by: Stefan Roese <sr@denx.de>
17983
17984 commit aad4eca4ba8d597747199d8af723426681557dda
17985 Author: Mike Frysinger <vapier@gentoo.org>
17986 Date: Sat Apr 4 09:10:27 2009 -0400
17987
17988 Blackfin: audit UART for all known anomalies
17989
17990 There is no code change here, just new comments, but this keeps me from
17991 having to do another audit from scratch in the future.
17992
17993 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17994
17995 commit 8ef929afa43c77c9573caa57c6e17a97a33775c0
17996 Author: Mike Frysinger <vapier@gentoo.org>
17997 Date: Sat Apr 4 08:40:13 2009 -0400
17998
17999 Blackfin: add check for anomaly 05000362
18000
18001 DESCRIPTION:
18002 The column address width settings for banks 2 and 3 are misconnected in
18003 the SDRAM controller. Accesses to bank 2 will result in an error if the
18004 Column Address Width for bank 3 (EB3CAW ) is not set to be the same as
18005 that of bank 2.
18006
18007 WORKAROUND:
18008 If using bank 2, make sure that banks 2 and 3 have the same column address
18009 width settings in the EBIU_SDBCTL register. This must be the case
18010 regardless of whether or not bank 3 is enabled.
18011
18012 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18013
18014 commit c2e07449f546fb375289cdac1a608fdc20357873
18015 Author: Mike Frysinger <vapier@gentoo.org>
18016 Date: Sat Apr 4 08:29:55 2009 -0400
18017
18018 Blackfin: add comment about anomaly 05000430 avoidance
18019
18020 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18021
18022 commit 48ab1509254a4c175e4f65c478a978928ffe09ec
18023 Author: Mike Frysinger <vapier@gentoo.org>
18024 Date: Sat Apr 4 08:10:22 2009 -0400
18025
18026 Blackfin: add workaround for anomaly 05000242
18027
18028 DESCRIPTION:
18029 If the DF bit is set prior to a hardware reset, the PLL will continue to
18030 divide CLKIN by 2 after the hardware reset, but the DF bit itself will be
18031 cleared in the PLL_CTL register.
18032
18033 WORKAROUND:
18034 Reprogram the PLL with DF cleared if the desire is to not divide CLKIN by
18035 2 after reset.
18036
18037 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18038
18039 commit ce1fe4ba6bb9df7c57351436fa17d1af8bbe7916
18040 Author: Mike Frysinger <vapier@gentoo.org>
18041 Date: Sat Apr 4 08:09:24 2009 -0400
18042
18043 Blackfin: add workaround for anomaly 05000171
18044
18045 DESCRIPTION:
18046 The Boot ROM is executed at power up/reset and changes the value of the
18047 SICA_IWR registers from their default reset value of 0xFFFF, but does not
18048 restore them.
18049
18050 WORKAROUND:
18051 User code should not rely on the default value of these registers. Set
18052 the desired values explicitly.
18053
18054 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18055
18056 commit 51ee6e057f7a920e2a125cd9f985d10f625e355f
18057 Author: Mike Frysinger <vapier@gentoo.org>
18058 Date: Sat Apr 4 08:22:36 2009 -0400
18059
18060 Blackfin: update anomaly sheets
18061
18062 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18063
18064 commit a343ba87ea0320ca0a4ecfa2c42cd9d4f18883df
18065 Author: Graf Yang <graf.yang@analog.com>
18066 Date: Sat Apr 4 07:45:57 2009 -0400
18067
18068 Blackfin: nand: flush peripheral before polling it
18069
18070 We need to make sure the data written to the nand flash controller makes
18071 it there before we start polling its status register. Otherwise, we may
18072 get stale data and return before the controller is actually ready.
18073
18074 Signed-off-by: Graf Yang <graf.yang@analog.com>
18075 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18076 Acked-by: Scott Wood <scottwood@freescale.com>
18077
18078 commit 3ccbfb25f48af78e7092ac75f3115e924e76c748
18079 Author: Remy Bohmer <linux@bohmer.net>
18080 Date: Sun Apr 5 11:43:28 2009 +0200
18081
18082 Support for PXA27X UDC.
18083
18084 This Patch adds Support for PXA27X UDC.
18085 (Rebased to drivers/usb reorganisation)
18086
18087 Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
18088 Signed-off-by: Remy Bohmer <linux@bohmer.net>
18089
18090 commit 2731b9a86685190d26b1883f27afda5ac8e1a313
18091 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18092 Date: Fri Apr 3 12:46:58 2009 +0200
18093
18094 drivers/usb: regorganisation
18095
18096 move to linux usb driver organisation
18097
18098 as following
18099
18100 drivers/usb/gadget
18101 drivers/usb/host
18102 drivers/usb/musb
18103
18104 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18105 Signed-off-by: Remy Bohmer <linux@bohmer.net>
18106
18107 commit d04371a116d102e587ba7aa4c329b441cdbea3f4
18108 Author: Todor I Mollov <tmollov@ucsd.edu>
18109 Date: Sat Apr 4 06:53:06 2009 -0400
18110
18111 Blackfin: spi: make cs deassert function deterministic
18112
18113 Blackfin SPI driver was not driving the SPI chip-select high before
18114 putting the chip-select signals into tri-state mode. This is probably
18115 something that slipped by unnoticed in most designs. If the signals are
18116 put directly into a tri-state mode, then the board is relying on the
18117 pull-up resistors to pull up the chip-select before the next transaction.
18118 Most of the time this is fine, except when you have two transactions that
18119 follow each other very closely, such as the flash erase and read status
18120 register commands. In this case I was seeing a 500ns separation between
18121 the transactions. In my setup, with a 10kOhm pull-up, it would meet
18122 timing spec about half the time and resulted in intermittent errors. (A
18123 stronger pull up would fix this, but our design is targeted for low power
18124 consumption and a 3.3kOhm @ 3.3v is 3.3mW of needless power consumption.)
18125 I modified the spi_cs_deactivate() function in bfin_spi.c to drive the
18126 chip-selects high before putting them into tri-state. For me, this
18127 resulted in a rise time of 5ns instead of the previous rise time of about
18128 1us, and fully satisfied the timing spec of the chip.
18129
18130 Signed-off-by: Todor I Mollov <tmollov@ucsd.edu>
18131 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18132
18133 commit c6fadb9c73a6a3e0c7f20696e978304a593a8d2d
18134 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18135 Date: Sat Dec 13 21:08:05 2008 +0100
18136
18137 integratorap: fix PCI support
18138
18139 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18140
18141 commit 1c397508c836dfcb01fb2471c71de0727051f117
18142 Author: Dirk Behme <dirk.behme@googlemail.com>
18143 Date: Mon Mar 30 21:15:23 2009 +0200
18144
18145 OMAP3: Update Overo pin mux for new expansion board
18146
18147 A new Overo expansion board uses GPIO 14, 21, 22 and 23 for LED's and
18148 switches. This patch changes the pinmux configuration for those pins.
18149 They were previously set up for unused MMC3_DAT4-7.
18150
18151 Signed-off-by: Steve Sakoman <steve@sakoman.com>
18152 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
18153
18154 commit ab298231518675b3784aea88ee9b978438f99e63
18155 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18156 Date: Sun Apr 5 13:08:03 2009 +0200
18157
18158 arm: unify reset command
18159
18160 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18161
18162 commit b3acb6cd4059dfb29a5e99095d802717f53ff784
18163 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18164 Date: Sun Apr 5 13:06:31 2009 +0200
18165
18166 arm: clean cache management
18167
18168 unify arm cache management except for non standard cache as ARM7TDMI
18169
18170 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18171
18172 commit 677e62f43235de9a1701204d7bcea0fb3d233fa1
18173 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18174 Date: Sun Apr 5 13:02:43 2009 +0200
18175
18176 arm: update co-processor 15 access
18177
18178 import system.h from linux
18179
18180 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18181
18182 commit 23e4af49e066a53cd3e3659b68ef90572d88de84
18183 Author: Guennadi Liakhovetski <lg@denx.de>
18184 Date: Sun Apr 5 00:42:02 2009 +0200
18185
18186 ARM: add the imx31_phycore_eet target to MAINTAINERS
18187
18188 imx31_phycore_eet is a variant of the imx31_phycore board with a few
18189 extensions, which justifies a separate entry in the MAINTAINERS list,
18190 whereas normally all entries sharing a single configuration file and a
18191 board/ directory have only one entry in MAINTAINERS.
18192
18193 Reported-by: Wolfgang Denk <wd@denx.de>
18194 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
18195
18196 commit 69c5bf29908b3a7f8e23bd9891b7ecc5b21f23e5
18197 Author: Guennadi Liakhovetski <lg@denx.de>
18198 Date: Sun Apr 5 00:37:07 2009 +0200
18199
18200 ARM: fix out-of-tree build of imx31_phycore_eet
18201
18202 Fix out-of-tree build of the imx31_phycore_eet target.
18203
18204 Reported-by: Wolfgang Denk <wd@denx.de>
18205 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
18206
18207 commit 3c853f31d6a8e4407f73a2ca2c63d383a245f237
18208 Author: Jon Smirl <jonsmirl@gmail.com>
18209 Date: Sat Apr 4 17:44:51 2009 -0400
18210
18211 mpc5200: reduce delays in i2c
18212
18213 The previous code waited 1000us before checking i2c
18214 status. Measurement shows i2c is usually ready in
18215 under 50us. Change the polling interval to 15us,
18216 loop 6,667 times to keep the polling timeout constant
18217 at 100ms.
18218
18219 commit 36003268968949110ef145d9f2eaf8439c96d25b
18220 Author: Sanjeev Premi <premi@ti.com>
18221 Date: Fri Apr 3 14:00:07 2009 +0530
18222
18223 OMAP: Fix compile issue
18224
18225 Fixes this compile error:
18226 board.c: In function 'do_switch_ecc':
18227 board.c:339: error: 'cmd_tbl_t' has no member named 'help'
18228 make[1]: *** [board.o] Error 1
18229 make[1]: Leaving directory `/db/psp_git/users/a0756819/u-boot/cpu/arm_cortexa8/omap3'
18230 make: *** [cpu/arm_cortexa8/omap3/libomap3.a] Error 2
18231
18232 This is due to the fact that current command uses long
18233 help for the usage print even if the CONFIG_SYS_LONGHELP
18234 is not enabled. (Thanks Jean-Christophe for explanation).
18235
18236 Signed-off-by: Sanjeev Premi <premi@ti.com>
18237
18238 commit 342c1a5d9ab74febf3226a86216dc5aa05295d46
18239 Author: Minkyu Kang <mk7.kang@samsung.com>
18240 Date: Fri Apr 3 09:56:16 2009 +0900
18241
18242 s3c64xx: fix the wrong gpio offset
18243
18244 This patch fix the wrong gpio offset
18245
18246 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
18247
18248 commit ab0689c316c9b2ee33f4de1c50263b64e539f12a
18249 Author: Kyungmin Park <kmpark@infradead.org>
18250 Date: Wed Nov 26 10:18:13 2008 +0900
18251
18252 Move machine specific code to board at s3c64xx (v2)
18253
18254 Move machine specific code to smdk6400.
18255 Some board use OneNAND instead of NAND.
18256
18257 Some register MP0_CS_CFG[5:0] are controled by both h/w and s/w.
18258 So it's better to use macro instead of hard-coded value.
18259
18260 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
18261
18262 commit 767f3acd9f6e1dcb8ada926c333945382eddc7e8
18263 Author: Tom Rix <Tom.Rix@windriver.com>
18264 Date: Wed Apr 1 22:02:19 2009 -0500
18265
18266 ZOOM1 Remove legacy NAND defines
18267
18268 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
18269
18270 commit 5891151707ee5902fe62d554c247f42865815757
18271 Author: Tom Rix <Tom.Rix@windriver.com>
18272 Date: Wed Apr 1 22:02:20 2009 -0500
18273
18274 OMAP3 Fix multiline formatting in board init files.
18275
18276 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
18277
18278 commit c0a14aedc3440d6591b8c86d45861a0a8b46e11d
18279 Author: Wolfgang Denk <wd@denx.de>
18280 Date: Sun Apr 5 00:27:57 2009 +0200
18281
18282 Update CHANGELOG, coding style cleanup.
18283
18284 commit f63728c804ab7413a67d70f6774cd30c3f7b40fb
18285 Author: Wolfgang Denk <wd@denx.de>
18286 Date: Sun Apr 5 00:18:44 2009 +0200
18287
18288 One more fix for building env_embedded.o
18289
18290 In addition to the changes for CONFIG_ENV_IS_IN_FLASH as done in
18291 commit afcbce07, we also need to do the same for
18292 CONFIG_ENV_IS_IN_EEPROM and CONFIG_ENV_IS_IN_NVRAM.
18293
18294 Signed-off-by: Wolfgang Denk <wd@denx.de>
18295
18296 commit e3d1ac7bb1955d36980d267cb4cec40b0f7d30b5
18297 Author: Scott Wood <scottwood@freescale.com>
18298 Date: Thu Apr 2 16:15:10 2009 -0500
18299
18300 common/image.c: Relocate strings in tables.
18301
18302 Without this, u-boot can crash or print garbage if the original link
18303 address no longer points to a valid string.
18304
18305 Signed-off-by: Scott Wood <scottwood@freescale.com>
18306
18307 commit 3a671fc06ae1d9e8eba76600372317c75ae0eb3e
18308 Author: Scott Wood <scottwood@freescale.com>
18309 Date: Thu Apr 2 16:10:36 2009 -0500
18310
18311 mpc8260: Fill in brg's clock-frequency in device tree.
18312
18313 Signed-off-by: Scott Wood <scottwood@freescale.com>
18314
18315 commit c73ed274a211699739d83c2cef92853dc6716e15
18316 Author: Scott Wood <scottwood@freescale.com>
18317 Date: Thu Apr 2 18:20:43 2009 -0500
18318
18319 MPC8260ADS: Add nfsboot/ramboot to default environment.
18320
18321 This brings it in line with other Freescale boards.
18322
18323 Signed-off-by: Scott Wood <scottwood@freescale.com>
18324
18325 commit c203ef5db0476a8c4f6dd86b2e9e9db0ea973f84
18326 Author: Andreas Huber <andreas.huber@keymile.com>
18327 Date: Thu Apr 2 17:15:34 2009 +0200
18328
18329 UBI/cfi-mtd: Fix mtd name for multiple chips
18330
18331 On platforms with multiple NOR chips, currently only the first one
18332 can be selected using the "ubi part" command. This patch fixes this
18333 problem by using different names for the NOR "mtd devices".
18334
18335 It also changes the name of the NOR MTD device from "cfi-mtd" to
18336 "norX" (X indexing the device numer) to better match the mtdparts
18337 defaults.
18338
18339 Signed-off-by: Stefan Roese <sr@denx.de>
18340 Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
18341
18342 commit 6b6bb02f27fcabfb37ea717fb7e243248e1e2acf
18343 Author: Peter Korsgaard <jacmet@sunsite.dk>
18344 Date: Tue Mar 31 17:52:16 2009 +0200
18345
18346 tools/setlocalversion: use git svn instead of git-svn
18347
18348 Use the new "git <subcmd>" syntax instead of the deprecated
18349 "git-<subcmd>".
18350
18351 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
18352
18353 commit 7fa96a9a54eb0d87d73888ec2565cda790ba0dff
18354 Author: Mingkai Hu <Mingkai.hu@freescale.com>
18355 Date: Tue Mar 31 14:09:40 2009 +0800
18356
18357 eSPI: add the eSPI register support
18358
18359 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
18360
18361 commit 869f6bf4def5a053fbd1aecd8b2fc36f05196c0b
18362 Author: Minkyu Kang <mk7.kang@samsung.com>
18363 Date: Mon Mar 30 14:55:51 2009 +0900
18364
18365 cmd_mmc: add support for device command for selecting mmc device
18366
18367 This patch improves device command for selecting mmc device
18368
18369 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
18370
18371 commit 9abc9ef8fbe079bf75a634ce64b7dcdb7b0d8bdc
18372 Author: Alan Carvalho de Assis <acassis@gmail.com>
18373 Date: Sat Mar 28 19:50:16 2009 -0300
18374
18375 Small fix to m5282evb
18376
18377 This is just a small fix to get u-boot on m5282evb.
18378
18379 Signed-off-by: Alan Carvalho de Assis <acassis@gmail.com>
18380
18381 commit febd7e4174e54579c9aa165c85c519fe5288f9d2
18382 Author: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
18383 Date: Fri Mar 27 10:21:14 2009 +0100
18384
18385 UBIFS: add R/O compatibility
18386
18387 Now UBIFS is supported by u-boot. If we ever decide to change the
18388 media format, then people will have to upgrade their u-boots to
18389 mount new format images. However, very often it is possible to
18390 preserve R/O forward-compatibility, even though the write
18391 forward-compatibility is not preserved.
18392
18393 This patch introduces a new super-block field which stores the
18394 R/O compatibility version.
18395
18396 Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
18397 Acked-by: Adrian Hunter <Adrian.Hunter@nokia.com>
18398 Signed-off-by: Stefan Roese <sr@denx.de>
18399
18400 commit 852dbfdd56f68eb67d138b306a64e4de58dabb91
18401 Author: Mike Frysinger <vapier@gentoo.org>
18402 Date: Mon Mar 23 22:27:34 2009 -0400
18403
18404 more command usage cleanup
18405
18406 Fix up a few dangling commands like in "Command usage cleanup" commit.
18407
18408 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18409
18410 commit b93b24bf76f8a8220b236df3a5f30b2204eb4edc
18411 Author: Ladislav Michl <ladis@linux-mips.org>
18412 Date: Mon Mar 23 12:06:07 2009 +0100
18413
18414 Separate mtdparts command from jffs2
18415
18416 On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
18417 > Currently the mtdparts commands are included in the jffs2 command support.
18418 > This doesn't make sense anymore since other commands (e.g. UBI) use this
18419 > infrastructure as well now. This patch separates the mtdparts commands from
18420 > the jffs2 commands making it possible to only select mtdparts when no JFFS2
18421 > support is needed.
18422
18423 ... and to make it useful for NAND chips as well, we should also remove now
18424 unrelated CONFIG_JFFS2_NAND. Note that struct part_info etc is in
18425 jffs2/load_kernel.h which is a bit misleading filename for that purpose,
18426 but that can be fixed later (tm).
18427
18428 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
18429
18430 commit b196ca75503ce307c535b87bf47d51f05e7530df
18431 Author: Mike Frysinger <vapier@gentoo.org>
18432 Date: Sun Mar 22 22:18:01 2009 -0400
18433
18434 smc91111_eeprom: move board-specific init into SMC91111_EEPROM_INIT()
18435
18436 Rather than sticking Blackfin-specific stuff into the eeprom example, use
18437 an indirect macro so that any board can override it with their own magic
18438 sauce in their board config file.
18439
18440 Also fix some spurious semi-colons in defines while I'm at it ...
18441
18442 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18443 CC: Ben Warren <biggerbadderben@gmail.com>
18444
18445 commit f5cf2ef2ad2a8bf321712ab460ed846120163d74
18446 Author: Sascha Hauer <s.hauer@pengutronix.de>
18447 Date: Sat Mar 21 09:38:46 2009 -0400
18448
18449 mpc52xx phy: initialize only when needed
18450
18451 Do not initialize phy on startup, instead initialize it
18452 when we actually need it.
18453
18454 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
18455
18456 commit 03bab0091948196b9558248684c04f60943ca4b5
18457 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18458 Date: Mon Mar 30 16:51:40 2009 +0200
18459
18460 at91sam9263ek: enable hush and auto complete support
18461
18462 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18463 Acked-by: Stelian Pop <stelian@popies.net>
18464
18465 commit 4758ebdd53571d4d183be5c2db8f0ee4ef368915
18466 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18467 Date: Fri Mar 27 23:26:44 2009 +0100
18468
18469 at91: move dataflash spi driver to drivers/spi
18470
18471 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18472
18473 commit 2b7178afce59f71e95da657273f4132012098c1f
18474 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18475 Date: Fri Mar 27 23:26:44 2009 +0100
18476
18477 at91: move usb driver to drivers/usb
18478
18479 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18480
18481 commit f82518d7f443ebac5f8821103a3c521c963aa6ee
18482 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18483 Date: Fri Mar 27 23:26:43 2009 +0100
18484
18485 at91rm9200: Reset update
18486
18487 Update the rm9200 reset sequence to try executing a board-specific reset
18488 function and move specific board reset to board.
18489
18490 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18491
18492 commit 3524049cd053746298e4cfab2449882e75c146fc
18493 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18494 Date: Fri Mar 27 23:26:43 2009 +0100
18495
18496 at91rm9200: move serial shutdown code to serial drivers
18497
18498 introduce serial_exit for this purpose. Use it only when the rm9200
18499 serial driver is active
18500
18501 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18502
18503 commit beebd851cdbc9dd070bcdfec1fd8f17e3cc91bc0
18504 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18505 Date: Fri Mar 27 23:26:43 2009 +0100
18506
18507 at91rm9200: move serial driver to drivers/serial
18508
18509 add CONFIG_AT91RM9200_USART to activate the driver
18510
18511 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18512
18513 commit cb82a532669f6b02225ec3429ea4d49ff2b97d0a
18514 Author: Ulf Samuelsson <ulf@atmel.com>
18515 Date: Fri Mar 27 23:26:43 2009 +0100
18516
18517 Add support for the AT91RM9200EK Board.
18518
18519 The AT91RM9200-EK Evaluation Board supports the AT91RM9200
18520 ARM9-based 32-bit RISC microcontroller and enables real-time code development
18521 and evaluation.
18522
18523 Here is the chip page on Atmel website:
18524 http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3507
18525
18526 with
18527 - NOR (cfi driver)
18528 - DataFlash
18529 - USB OHCI
18530 - Net
18531 - I2C (hard)
18532
18533 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
18534 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18535
18536 commit b9c0e4c29e3ec12668ac50e954e7c9ba8f7aa10a
18537 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18538 Date: Fri Mar 27 23:26:42 2009 +0100
18539
18540 add dataflash mmc mux missing support
18541
18542 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18543
18544 commit 2a325ce3c705ab2d82760afc541c511328472df8
18545 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18546 Date: Fri Mar 27 23:26:42 2009 +0100
18547
18548 at91rm9200dk: Move conditional compilation to Makefile
18549
18550 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18551
18552 commit 90a92a708d5180a20d600ba0fc2352ec76dc3829
18553 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18554 Date: Fri Mar 27 23:26:42 2009 +0100
18555
18556 at91: rename DATAFLASH_MMC_SELECT to CONFIG_DATAFLASH_MMC_SELECT
18557
18558 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18559
18560 commit 843a2654bce74192de2b5a43474fdc27a572ab40
18561 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18562 Date: Fri Mar 27 23:26:42 2009 +0100
18563
18564 at91sam9: add watchdog support
18565
18566 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
18567 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18568
18569 commit a47492ac60657dd9d59c713aa049319ea6eabd52
18570 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18571 Date: Fri Mar 27 13:14:52 2009 +0100
18572
18573 at91sam9/at91cap: spi init add hardware chip select support
18574
18575 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18576
18577 commit 66932ac3929c7a145a6ef6574a96fd7535154951
18578 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18579 Date: Sat Apr 4 19:15:40 2009 +0200
18580
18581 netstar: fix crc32.c dependancy location
18582
18583 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18584
18585 commit 42f9ebff2f758bef524780a00c712eb63a72d99b
18586 Author: Scott Wood <scottwood@freescale.com>
18587 Date: Fri Apr 3 15:24:40 2009 -0500
18588
18589 MPC8260ADS: Define CONFIG_HAS_ETH0.
18590
18591 This is required so that the MAC address will be updated in the device tree.
18592
18593 Signed-off-by: Scott Wood <scottwood@freescale.com>
18594
18595 commit 8701eceffdf77e2908d0b58add0dabc16edf6087
18596 Author: Scott Wood <scottwood@freescale.com>
18597 Date: Fri Apr 3 15:26:45 2009 -0500
18598
18599 PQ2FADS: Enable PCI.
18600
18601 PCI on PQ2FADS is very similar to PCI on MPC8272ADS.
18602
18603 Signed-off-by: Scott Wood <scottwood@freescale.com>
18604
18605 commit 83863df04bd30bfe2430b0c43ca9f78596d3f0bc
18606 Author: Wolfgang Denk <wd@denx.de>
18607 Date: Sat Apr 4 16:57:50 2009 +0200
18608
18609 Fix quoting bug introduced by commit 74de7aef
18610
18611 Signed-off-by: Wolfgang Denk <wd@denx.de>
18612
18613 commit ecf3fb223a56e3c6aa696d94d694eeaca0f44d33
18614 Author: Wolfgang Denk <wd@denx.de>
18615 Date: Sat Apr 4 16:14:51 2009 +0200
18616
18617 Fix implicit declaration of function 'htons'
18618
18619 Include <netinet/in.h> instead of <linux/in.h> to get htons()
18620 prototpye.
18621
18622 Signed-off-by: Wolfgang Denk <wd@denx.de>
18623
18624 commit e6a6789f41f0560ce280089fbd3f1bd0f0f64306
18625 Author: Kumar Gala <galak@kernel.crashing.org>
18626 Date: Sat Apr 4 10:21:02 2009 -0500
18627
18628 fsl_law: Fix bug in calculation of LAW sizing
18629
18630 In set_ddr_laws() when we determined how much of the size requested
18631 to be mapped was covered by the the first LAW we needed to recalculate
18632 the size based on what was actually mapped.
18633
18634 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18635
18636 commit 32049b4048ff8e59bd5ba6160d6d5206d283b2a2
18637 Author: Kumar Gala <galak@kernel.crashing.org>
18638 Date: Thu Apr 2 13:57:05 2009 -0500
18639
18640 fsl_pci: Move prototypes into fsl_pci.h and remove explicit externs
18641
18642 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18643
18644 commit c8514622e2713d9c47919acfe23fce386782afe7
18645 Author: Kumar Gala <galak@kernel.crashing.org>
18646 Date: Thu Apr 2 13:22:48 2009 -0500
18647
18648 fsl_pci: Renamed immap_fsl_pci.h to fsl_pci.h
18649
18650 Rename the pci header for FSL HW so we can move some prototypes
18651 in there and stop doing explicit externs
18652
18653 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18654
18655 commit afcbce07e9323c0e8aeb783ba7ce6104860fd7a7
18656 Author: Wolfgang Denk <wd@denx.de>
18657 Date: Sat Apr 4 16:10:40 2009 +0200
18658
18659 Fix building of env_embedded.o
18660
18661 Since commit a706bfc7 common/env_embedded.o and tools/envcrc were
18662 only built when CONFIG_ENV_IS_EMBEDDED was set, but this breaks
18663 building for many boards.
18664
18665 We always have to build these files when CONFIG_ENV_IS_IN_FLASH is
18666 set.
18667
18668 Signed-off-by: Wolfgang Denk <wd@denx.de>
18669
18670 commit a31e091ad70915278fb15b79d6ae53ea2d44b251
18671 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18672 Date: Sat Apr 4 12:49:11 2009 +0200
18673
18674 rename include/zlib.h to include/u-boot/zlib.h
18675
18676 Some systems have zlib.h installed in /usr/include/. This isn't the
18677 desired file for u-boot code - we want the one in include/zlib.h.
18678 This rename will avoid the conflict.
18679
18680 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18681 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18682
18683 commit ae644c178f097874a92a6d934f364985fc7e075a
18684 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18685 Date: Sat Apr 4 12:46:31 2009 +0200
18686
18687 tools/Makefile: fix image.c dependancy location
18688
18689 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18690 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18691
18692 commit b074a7081124d7f05fd1651a3bc0b5579fdfa473
18693 Author: Mike Frysinger <vapier@gentoo.org>
18694 Date: Sat Apr 4 07:42:25 2009 -0400
18695
18696 tools: add ncb to gitignore
18697
18698 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18699
18700 commit 453c0d7558215cbc8636d94af172886d84e0dbba
18701 Author: Detlev Zundel <dzu@denx.de>
18702 Date: Fri Apr 3 16:45:46 2009 +0200
18703
18704 include/ns16550.h: Unify structure declaration for registers
18705
18706 Instead of special casing the different access patterns, use common
18707 code with light macros sprinkled in to accomodate for the different
18708 layouts of the register structure.
18709
18710 Note that this also changes the types of the registers for the
18711 "positively packed (>1)" cases. As the registers truly are unsigned
18712 chars, this is surely the Right Thing, but it is a semantic change.
18713 Note that for this case depending on the endianness on the bus, we may
18714 see a change of behaviour.
18715
18716 Signed-off-by: Detlev Zundel <dzu@denx.de>
18717
18718 commit 0a145ce6e7075aa0f4869d6f6149a5ff205d95df
18719 Author: Peter Tyser <ptyser@xes-inc.com>
18720 Date: Fri Mar 13 18:54:52 2009 -0500
18721
18722 Delete now unused tools/Makefile.win32
18723
18724 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18725
18726 commit 2f8d396b9302eddcd8d552648e101a46b7a80acd
18727 Author: Peter Tyser <ptyser@xes-inc.com>
18728 Date: Fri Mar 13 18:54:51 2009 -0500
18729
18730 Add support for building native win32 tools
18731
18732 Add support for compiling the host tools in the tools directory using
18733 the MinGW toolchain. This produces executables which can be used on
18734 standard Windows computers without requiring cygwin.
18735
18736 One must specify the MinGW compiler and strip utilities as if they
18737 were the host toolchain in order to build win32 executables, eg:
18738
18739 make HOSTCC=i586-mingw32msvc-gcc HOSTSTRIP=i586-mingw32msvc-strip tools
18740
18741 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18742
18743 commit e50abf662efbf4ce0e731062c8d3c8ec54763ae2
18744 Author: Peter Tyser <ptyser@xes-inc.com>
18745 Date: Fri Mar 13 18:54:50 2009 -0500
18746
18747 tools/Makefile: Simplify HOST_CFLAGS/HOST_LDFLAGS generation
18748
18749 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18750
18751 commit b0d4d7219a4806e46affc96bd1f65397194a6e72
18752 Author: Peter Tyser <ptyser@xes-inc.com>
18753 Date: Fri Mar 13 18:54:49 2009 -0500
18754
18755 tools/Makefile: Create generic build rules
18756
18757 Create a few generic build rules to replace the current method which has
18758 1 build target for each file
18759
18760 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18761
18762 commit 273174ddbcce215c42f6c307470cd5580a3f72bf
18763 Author: Peter Tyser <ptyser@xes-inc.com>
18764 Date: Fri Mar 13 18:54:48 2009 -0500
18765
18766 tools/Makefile: Use auto-generated object file dependencies
18767
18768 Files in the SRCS variable have their dependencies automatically
18769 generated so remove duplicate explicit dependencies
18770
18771 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18772
18773 commit fb8b33c1e6d621ea3347a75ad3a42a386b44e589
18774 Author: Peter Tyser <ptyser@xes-inc.com>
18775 Date: Fri Mar 13 18:54:47 2009 -0500
18776
18777 tools/Makefile: Remove symlinks for remaining source files
18778
18779 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18780
18781 commit eed073315b6447eceadf7468a4c2b757442c7c6f
18782 Author: Peter Tyser <ptyser@xes-inc.com>
18783 Date: Fri Mar 13 18:54:46 2009 -0500
18784
18785 tools/Makefile: Dynamically generate libfdt object dependencies
18786
18787 Add the libfdt files to the SRCS variable so that they have their
18788 dependencies automatically generated
18789
18790 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18791
18792 commit c0170175393b94560fa7a5da6dd31377df5f4a72
18793 Author: Peter Tyser <ptyser@xes-inc.com>
18794 Date: Fri Mar 13 18:54:45 2009 -0500
18795
18796 tools/Makefile: Remove symlinks for fdt targets
18797
18798 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18799
18800 commit 45d6bdff68877ea214ff33cc1c89a29c76e96f51
18801 Author: Peter Tyser <ptyser@xes-inc.com>
18802 Date: Fri Mar 13 18:54:44 2009 -0500
18803
18804 tools/Makefile: Add libfdt/ to the include search path
18805
18806 This change makes the process of symlinking libfdt_internal.h
18807 unnecessary
18808
18809 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18810
18811 commit fba0e3a0814f9bf48c32a4c8a7987c36ae96651b
18812 Author: Peter Tyser <ptyser@xes-inc.com>
18813 Date: Fri Mar 13 18:54:43 2009 -0500
18814
18815 tools: Remove unecessary symlinking of zlib.h
18816
18817 crc32.c uses the zlib.h header in include/u-boot/zlib.h. The symlink
18818 was previously necessary to give U-Boot's version of zlib.h precedence
18819 over the host computer's version of zlib.h.
18820
18821 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18822
18823 commit 40b8d909ace06f6f494dee08ffa64a82493e72e9
18824 Author: Peter Tyser <ptyser@xes-inc.com>
18825 Date: Fri Mar 13 18:54:42 2009 -0500
18826
18827 tools/Makefile: Add tools/ to the include search path
18828
18829 This change makes the process of symlinking mkimage.h and fdt_host.h
18830 unnecessary
18831
18832 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18833
18834 commit 1cd300de5e19c9e8383ee2eb2b6bd3b8b9378c78
18835 Author: Peter Tyser <ptyser@xes-inc.com>
18836 Date: Fri Mar 13 18:54:41 2009 -0500
18837
18838 tools/Makefile: Compile ncb when CONFIG_NETCONSOLE
18839
18840 Also conditionally add ncb.o to OBJ_FILES list
18841
18842 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18843
18844 commit 123c48a21ce08b4a33f36e96cc75f92324e761d7
18845 Author: Peter Tyser <ptyser@xes-inc.com>
18846 Date: Fri Mar 13 18:54:40 2009 -0500
18847
18848 tools/Makefile: Make gen_eth_addr dependent upon CONFIG_CMD_NET
18849
18850 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18851
18852 commit 4d93a0a807b8ca0289ba5da00c646cd2d54af120
18853 Author: Peter Tyser <ptyser@xes-inc.com>
18854 Date: Fri Mar 13 18:54:39 2009 -0500
18855
18856 tools/Makefile: Make envcrc dependent upon CONFIG_ENV_IS_EMBEDDED
18857
18858 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18859
18860 commit cd26a31a23f9a58ba52870f8ffb57d77d1baee20
18861 Author: Peter Tyser <ptyser@xes-inc.com>
18862 Date: Fri Mar 13 18:54:38 2009 -0500
18863
18864 tools/Makefile: Make inca-swap-bytes dependent on CONFIG_INCA_IP
18865
18866 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18867
18868 commit 7cd5cbc34699ccc15d0277f48375cad928d04faf
18869 Author: Peter Tyser <ptyser@xes-inc.com>
18870 Date: Fri Mar 13 18:54:37 2009 -0500
18871
18872 tools/Makefile: Make ubsha1 dependent upon CONFIG_SHA1_CHECK_UB_IMG
18873
18874 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18875
18876 commit eeba8617908e33f7e7db3b1588c04ca65b856793
18877 Author: Peter Tyser <ptyser@xes-inc.com>
18878 Date: Fri Mar 13 18:54:36 2009 -0500
18879
18880 tools/Makefile: Make img2srec dependent upon CONFIG_CMD_LOADS
18881
18882 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18883
18884 commit 335ffe7e0e0a30e90ce409c3279016a582157d8e
18885 Author: Peter Tyser <ptyser@xes-inc.com>
18886 Date: Fri Mar 13 18:54:35 2009 -0500
18887
18888 tools/Makefile: Build bmp_logo only when LCD or VIDEO logos are enabled
18889
18890 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18891
18892 commit ee3584a5970230ee96aae19505ad3226734ee4ff
18893 Author: Peter Tyser <ptyser@xes-inc.com>
18894 Date: Fri Mar 13 18:54:34 2009 -0500
18895
18896 tools/Makefile: Split variable declarations into multiple lines
18897
18898 Split variable declarations into multiple lines and use the standard
18899 VAR-y convention. Also move object and binary variable declarations to
18900 after config.mk has been included to allow for these lists to utilize
18901 the CONFIG_XXX variables.
18902
18903 These changes lay the groundwork for conditional compilation of files
18904 in the tools directory.
18905
18906 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18907
18908 commit 21d28e95ed874ab1ed9787f939d8a53e99d30ddb
18909 Author: Peter Tyser <ptyser@xes-inc.com>
18910 Date: Fri Mar 13 18:54:33 2009 -0500
18911
18912 tools/Makefile: Remove inappropriate double-tabs
18913
18914 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18915
18916 commit 652f4ba076689fd0acd447561a777b1c440a4b57
18917 Author: Peter Tyser <ptyser@xes-inc.com>
18918 Date: Fri Mar 13 18:54:32 2009 -0500
18919
18920 tools/Makefile: Remove HOSTARCH HOSTOS defines
18921
18922 The values of HOSTARCH and HOSTOS which are exported from the top-level
18923 Makefile should be used
18924
18925 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18926
18927 commit 2eeb4e95fbfafe54645fae7ec0b2594101f0573b
18928 Author: Peter Tyser <ptyser@xes-inc.com>
18929 Date: Fri Mar 13 18:54:31 2009 -0500
18930
18931 gen_eth_addr: Use POSIX rand() and srand()
18932
18933 Replace random()/srandom() use with rand()/srand() to support
18934 compilation with the mingw toolchain. The rand()/srand() functions are
18935 generally more common and are functionally equivalent to the original
18936 random()/srandom() calls.
18937
18938 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18939
18940 commit 24d2ae5e9debe4b75151a55251031a14477fa875
18941 Author: Peter Tyser <ptyser@xes-inc.com>
18942 Date: Fri Mar 13 18:54:28 2009 -0500
18943
18944 elf.h: Use stdint.h to provide standard typedefs for WIN32
18945
18946 The original code provided an incomplete set of typedefs for WIN32
18947 compiles and replicated the standard typedefs that are already
18948 provided by stdint.h
18949
18950 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18951
18952 commit a706bfc7d0e2d1935c5670045288e6cd1ffdfabc
18953 Author: Peter Tyser <ptyser@xes-inc.com>
18954 Date: Fri Mar 13 18:54:27 2009 -0500
18955
18956 common/Makefile: Conditionally compile env_embedded.o
18957
18958 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18959
18960 commit 2b48f7d5f62835f87278efb498397b6ae9e2d117
18961 Author: Peter Tyser <ptyser@xes-inc.com>
18962 Date: Fri Mar 13 18:54:26 2009 -0500
18963
18964 Makefile: Add removal of *.exe files to clean target
18965
18966 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18967
18968 commit d0d6144e0e4a03a68311b781f3dde38dc9316b82
18969 Author: Peter Tyser <ptyser@xes-inc.com>
18970 Date: Fri Mar 13 18:54:25 2009 -0500
18971
18972 Makefile: Make autoconf.mk a dependency of the depend target
18973
18974 The original code did not generate autoconf.mk until after some targets
18975 dependencies had already been calculated, for example the directories in
18976 the SUBDIRS variable
18977
18978 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18979
18980 commit 75eb82ec7cacb18d059d701b35677b93d2bb7596
18981 Author: unsik Kim <donari75@gmail.com>
18982 Date: Wed Feb 25 11:31:24 2009 +0900
18983
18984 mflash: Initial mflash support
18985
18986 Mflash is fusion memory device mainly targeted consumer eletronic and
18987 mobile phone.
18988 Internally, it have nand flash and other hardware logics and supports
18989 some different operation (ATA, IO, XIP) modes.
18990
18991 IO mode is custom mode for the host that doesn't have IDE interface.
18992 (Many mobile targeted SoC doesn't have IDE bus)
18993
18994 This driver support mflash IO mode.
18995
18996 Followings are brief descriptions about IO mode.
18997
18998 1. IO mode based on ATA protocol and uses some custom command. (read
18999 confirm, write confirm)
19000 2. IO mode uses SRAM bus interface.
19001
19002 Signed-off-by: unsik Kim <donari75@gmail.com>
19003
19004 commit 200779e3e2a9aeda7030b171a8c39d7797019917
19005 Author: Detlev Zundel <dzu@denx.de>
19006 Date: Fri Apr 3 11:53:01 2009 +0200
19007
19008 Rename common ns16550 constants with UART_ prefix to prevent conflicts
19009
19010 Fix problems introduced in commit
19011 7b5611cdd12ca0cc33f994f0d4a4454788fc3124 [inka4x0: Add hardware
19012 diagnosis functions for inka4x0] which redefined MSR_RI which is
19013 already used on PowerPC systems.
19014
19015 Also eliminate redundant definitions in ps2mult.h. More cleanup will
19016 be needed for other redundant occurrences though.
19017
19018 Signed-off-by: Detlev Zundel <dzu@denx.de>
19019
19020 commit 99067b08f4a0ce20ff337a35211239f334d8f451
19021 Author: Scott Wood <scottwood@freescale.com>
19022 Date: Wed Apr 1 15:33:24 2009 -0500
19023
19024 Noisily disable the legacy NAND subsystem.
19025
19026 Legacy NAND is marked for feature removal after April 2009 (i.e. this
19027 upcoming release). There are still several boards that reference it
19028 (though many do so only for disk-on-chip support which has been silently
19029 disabled for a while now). These boards will now fail to build
19030 with #error, though the code is still there if the user removes #error.
19031
19032 The plan is to remove the code outright in the next release, along with
19033 any board code that refers to it (such as board/esd/common/auto_update.c).
19034
19035 Also, remove the legacy NAND API description from README.nand.
19036
19037 Signed-off-by: Scott Wood <scottwood@freescale.com>
19038
19039 commit 69bcabb51686fdd133cb1848c0d3b0a4fc6ca5cf
19040 Author: apgmoorthy <moorthy.apg@samsung.com>
19041 Date: Fri Mar 27 14:45:23 2009 +0530
19042
19043 Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
19044
19045 Currently OneNAND initial program loader (ipl) reads only block 0 ie 128KB.
19046 However, u-boot image for apollon board is 195KB making the board
19047 unbootable with OneNAND.
19048
19049 Fix ipl to read CONFIG_SYS_MONITOR_LEN.
19050 CONFIG_SYS_MONITOR_LEN macro holds the U-Boot image size.
19051
19052 Signed-off-by: Rohit Hagargundgi <h.rohit@samsung.com>
19053 Signed-off-by: Gangheyamoorthy <moorthy.apg@samsung.com>
19054 Signed-off-by: Scott Wood <scottwood@freescale.com>
19055
19056 commit 74de7aefd79690bae8cf5a5120f5962d444be089
19057 Author: Wolfgang Denk <wd@denx.de>
19058 Date: Wed Apr 1 23:34:12 2009 +0200
19059
19060 Add "source" command; prepare removal of "autoscr" command
19061
19062 According to the doc/feature-removal-schedule.txt, the "autoscr"
19063 command will be replaced by the "source" command in approximately 6
19064 months from now.
19065
19066 This patch prepares this change and starts a 6 month transition
19067 period as follows:
19068
19069 - The new "source" command has been added, which implements exactly
19070 the same functionlaity as the old "autoscr" command before
19071 - The old "autoscr" command name is kept as an alias for compatibility
19072 - Command sequences, script files atc. have been adapted to use the
19073 new "source" command
19074 - Related environment variables ("autoscript", "autoscript_uname")
19075 have *not* been adapted yet; these will be renamed resp. removed in
19076 a separate patch when the support for the "autoscr" command get's
19077 finally dropped.
19078
19079 Signed-off-by: Wolfgang Denk <wd@denx.de>
19080
19081 commit 78237df55248034a2d7c2daea992b9dbe7ca8e96
19082 Author: Wolfgang Denk <wd@denx.de>
19083 Date: Thu Apr 2 17:31:09 2009 +0200
19084
19085 Add "GPL cleanup" task to feature-removal-schedule.txt
19086
19087 Announce removal of all non-GPL or GPL-incompatible files
19088 after August 2009.
19089
19090 Signed-off-by: Wolfgang Denk <wd@denx.de>
19091
19092 commit d9596ffbdc79cea285010b67dd20a4618303f624
19093 Author: Mike Frysinger <vapier@gentoo.org>
19094 Date: Thu Apr 2 12:51:28 2009 -0400
19095
19096 sf: stmicro: dont send 4 bytes when reading status register
19097
19098 I can't find anywhere in the datasheet that says the status register needs
19099 3 dummy bytes sent to it before being able to read back the first real
19100 result. Tests on a Blackfin board show that after writing the opcode, the
19101 status register starts coming back immediately. So only write out the
19102 read status register opcode before polling the result.
19103
19104 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19105 CC: Jason McMullan <mcmullan@netapp.com>
19106 CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19107
19108 commit 1abe365ffcfc29c061e8fd8b45551be5ad1428dd
19109 Author: Mike Frysinger <vapier@gentoo.org>
19110 Date: Thu Apr 2 08:11:31 2009 -0400
19111
19112 sf: set common timeouts in seconds, not milliseconds
19113
19114 Since timeouts are only hit when there is a problem in the system, we
19115 don't want to prematurely timeout on a functioning setup. Thus having
19116 low timeouts (in milliseconds) doesn't gain us anything in the production
19117 case, but rather increases likely hood of causing problems where none
19118 otherwise exist.
19119
19120 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19121 CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19122
19123 commit 2a6ce1115b3cbe746965cfa0058ce645b6c1ada1
19124 Author: Mike Frysinger <vapier@gentoo.org>
19125 Date: Thu Apr 2 06:51:49 2009 -0400
19126
19127 sf: stmicro: use common page timeout define
19128
19129 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19130 CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19131
19132 commit 0dcdbb172c2fdf60c5c578980308b312fd56496f
19133 Author: Mike Frysinger <vapier@gentoo.org>
19134 Date: Sat Mar 28 06:41:09 2009 -0400
19135
19136 sf: always read 5 bytes for the idcode
19137
19138 Some SPI flash drivers like to have extended id information available
19139 (like the spansion flash), so rather than making it re-issue the ID cmd
19140 to get at the last 2 bytes, have the common code read 5 bytes rather than
19141 just 3. This also matches the Linux behavior where it always reads 5 id
19142 bytes from all flashes.
19143
19144 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19145 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19146 CC: Mingkai Hu <Mingkai.hu@freescale.com>
19147
19148 commit 9726ba4abaa16cd6c385ad350d403f98a8eacf52
19149 Author: Mike Frysinger <vapier@gentoo.org>
19150 Date: Fri Mar 27 16:34:21 2009 -0400
19151
19152 sf: stmicro: drop redundant id read
19153
19154 The common SPI flash code reads the idcode and passes it down to the SPI
19155 flash driver, so there is no need to read it again ourselves.
19156
19157 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19158 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19159 CC: Jason McMullan <mcmullan@netapp.com>
19160 CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19161
19162 commit 1c5874374e091b4bb62917c519861f7682fe066e
19163 Author: Mike Frysinger <vapier@gentoo.org>
19164 Date: Fri Mar 27 19:27:58 2009 -0400
19165
19166 sf: add driver for SST flashes
19167
19168 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19169 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19170
19171 commit f773a1bbdb8f3bf1ddab2874f36f043c4f8f044d
19172 Author: Mike Frysinger <vapier@gentoo.org>
19173 Date: Mon Mar 23 23:03:58 2009 -0400
19174
19175 sf: drop DEBUG defines
19176
19177 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19178 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19179
19180 commit 6b850a9fa8a216f3692da2511cb1a6c16409b1af
19181 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19182 Date: Sun Jan 4 07:44:07 2009 +0100
19183
19184 mtd: add some at45 spi flash support
19185
19186 - AT45DB321D
19187 - AT45DB161D
19188 - AT45DB081D
19189 - AT45DB041D
19190 - AT45DB021D
19191 - AT45DB011D
19192
19193 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19194 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19195
19196 commit 6805e4bf83e6f444f7411101228766c8a7aec5f7
19197 Author: Mingkai Hu <Mingkai.hu@freescale.com>
19198 Date: Tue Mar 31 14:09:41 2009 +0800
19199
19200 mtd: SPI Flash: Support the Spansion Flash
19201
19202 Add MTD SPI Flash support for S25FL008A, S25FL016A,
19203 S25FL032A, S25FL064A, S25FL128P.
19204
19205 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
19206 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19207
19208 commit 40587701924aa0afc86b3840421b4cc6de42c748
19209 Author: Mike Frysinger <vapier@gentoo.org>
19210 Date: Mon Mar 30 20:56:45 2009 -0400
19211
19212 Blackfin: force all boards to HZ of 1000
19213
19214 Since the Blackfin timer code requires HZ to be 1000, barf on any board
19215 that tries to use a different value.
19216
19217 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19218
19219 commit f4032d2eec9d71a59c6c724671e577f67a76839b
19220 Author: Mike Frysinger <vapier@gentoo.org>
19221 Date: Fri Mar 27 21:07:45 2009 -0400
19222
19223 Blackfin: bf533-stamp: drop old spi flash driver
19224
19225 Now that the common SPI flash code supports all the flashes, we can stop
19226 using the old driver.
19227
19228 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19229
19230 commit bc72f50a659d0d1b551817e1910b9b2be1c7e496
19231 Author: Mike Frysinger <vapier@gentoo.org>
19232 Date: Thu Mar 26 15:42:12 2009 -0400
19233
19234 Blackfin: add BF538/BF539 SPI portmux handling
19235
19236 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19237
19238 commit 46ac352f0f9406a5f9aa157ac62867fb4650dfd3
19239 Author: Mike Frysinger <vapier@gentoo.org>
19240 Date: Mon Mar 23 22:36:10 2009 -0400
19241
19242 Blackfin: do not delay on output bytes
19243
19244 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19245
19246 commit dbc6ab9f75bd0c13d3f42692e9463f8ab65fc382
19247 Author: Mike Frysinger <vapier@gentoo.org>
19248 Date: Mon Mar 23 22:17:27 2009 -0400
19249
19250 Blackfin: drop newline from OTP help
19251
19252 Looks like I accidentally added a newline to the OTP help when merging and
19253 older change.
19254
19255 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19256
19257 commit d3c38d96b991d641a33f7748130dae008563cdc9
19258 Author: Mike Frysinger <vapier@gentoo.org>
19259 Date: Sun Mar 22 23:43:31 2009 -0400
19260
19261 Blackfin: convert bfin_sdh to legacy mmc
19262
19263 The Blackfin SDH controller is still using the legacy framework, so update
19264 the driver to use the renamed functions.
19265
19266 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19267
19268 commit d248cfb2d940b742f6bfdba9b832a3df96da3101
19269 Author: Mike Frysinger <vapier@gentoo.org>
19270 Date: Sun Feb 22 16:30:38 2009 -0500
19271
19272 Blackfin: bf537-stamp: split CF/IDE code out into dedicated cf-ide.c
19273
19274 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19275
19276 commit ad9073211ca9e62162a39851e082b8d07a662fb6
19277 Author: Mike Frysinger <vapier@gentoo.org>
19278 Date: Fri Feb 13 17:10:58 2009 -0500
19279
19280 Blackfin: fix crash when booting from external memory
19281
19282 When testing a u-boot binary that hasn't been booted from the bootrom, we
19283 have to make sure the bootstruct structure has sane storage space. If we
19284 don't, the initcode will crash when it tries to dereference an invalid
19285 pointer.
19286
19287 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19288
19289 commit 84a9dda324c3faa56be14449d7519b993d9397a9
19290 Author: Mike Frysinger <vapier@gentoo.org>
19291 Date: Sun Oct 12 21:32:52 2008 -0400
19292
19293 Blackfin: bf518f-ezbrd: new board port
19294
19295 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19296
19297 commit 0c31ddf7b70f77dede42dc82ecab7753a819acaa
19298 Author: Mike Frysinger <vapier@gentoo.org>
19299 Date: Sun Oct 12 21:30:48 2008 -0400
19300
19301 Blackfin: bf526-ezbrd: new board port
19302
19303 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19304
19305 commit 5c45f7cac2f74e2c14aa6b028cd969651cc9ac8e
19306 Author: Mike Frysinger <vapier@gentoo.org>
19307 Date: Sun Oct 12 21:25:33 2008 -0400
19308
19309 Blackfin: bf538f-ezkit: new board port
19310
19311 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19312
19313 commit d9a5d113b93583c984711127ab8503e136ed1e4a
19314 Author: Mike Frysinger <vapier@gentoo.org>
19315 Date: Sun Oct 12 20:59:12 2008 -0400
19316
19317 Blackfin: bf527-ezkit: new board port
19318
19319 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19320
19321 commit 76d21803ddd7dc4bcb81739ea2d3cd679e052f46
19322 Author: Mike Frysinger <vapier@gentoo.org>
19323 Date: Sun Oct 12 05:05:42 2008 -0400
19324
19325 Blackfin: bf548-ezkit: new board port
19326
19327 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19328
19329 commit 67b89c79e72fe86b0ea0199425d880630beb95d8
19330 Author: Laurent Gregoire <laurent.gregoire@tomtom.com>
19331 Date: Tue Mar 3 14:23:59 2009 +0100
19332
19333 libfdt: Fix C++ compile-time cast error on gnu 4.2.1
19334
19335 Allow the inclusion of libfdt.h in C++ source.
19336
19337 Signed-off-by: Laurent Gregoire <laurent.gregoire@tomtom.com>
19338 Acked-by: David Gibson <david@gibson.dropbear.id.au>
19339
19340 commit 13d93f38e86818739317b0206d597265cf9e675e
19341 Author: Emil Medve <Emilian.Medve@Freescale.com>
19342 Date: Mon Feb 23 10:43:36 2009 -0600
19343
19344 Fix a possible overflow case detected by gcc 4.3.2
19345
19346 .../dtc/libfdt/fdt_sw.c: In function 'fdt_end_node':
19347 .../dtc/libfdt/fdt_sw.c:81: error: assuming signed overflow does not occur when assuming that (X + c) < X is always false
19348
19349 Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
19350
19351 commit a22d9cfbb5bcfb3dc6ffd64d391b568e8a0ce383
19352 Author: David Gibson <david@gibson.dropbear.id.au>
19353 Date: Fri Feb 6 14:03:24 2009 +1100
19354
19355 libfdt: Rework/cleanup fdt_next_tag()
19356
19357 Currently, callers of fdt_next_tag() must usually follow the call with
19358 some sort of call to fdt_offset_ptr() to verify that the blob isn't
19359 truncated in the middle of the tag data they're going to process.
19360 This is a bit silly, since fdt_next_tag() generally has to call
19361 fdt_offset_ptr() on at least some of the data following the tag for
19362 its own operation.
19363
19364 This patch alters fdt_next_tag() to always use fdt_offset_ptr() to
19365 verify the data between its starting offset and the offset it returns
19366 in nextoffset. This simplifies fdt_get_property() which no longer has
19367 to verify itself that the property data is all present.
19368
19369 At the same time, I neaten and clarify the error handling for
19370 fdt_next_tag(). Previously, fdt_next_tag() could return -1 instead of
19371 a tag value in some circumstances - which almost none of the callers
19372 checked for. Also, fdt_next_tag() could return FDT_END either because
19373 it encountered an FDT_END tag, or because it reached the end of the
19374 structure block - no way was provided to tell between these cases.
19375
19376 With this patch, fdt_next_tag() always returns FDT_END with a negative
19377 value in nextoffset for an error. This means the several places which
19378 loop looking for FDT_END will still work correctly - they only need to
19379 check for errors at the end. The errors which fdt_next_tag() can
19380 report are:
19381 - -FDT_ERR_TRUNCATED if it reached the end of the structure
19382 block instead of finding a tag.
19383
19384 - -FDT_BADSTRUCTURE if a bad tag was encountered, or if the
19385 tag data couldn't be verified with fdt_offset_ptr().
19386
19387 This patch also updates the callers of fdt_next_tag(), where
19388 appropriate, to make use of the new error reporting.
19389
19390 Finally, the prototype for the long gone _fdt_next_tag() is removed
19391 from libfdt_internal.h.
19392
19393 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
19394
19395 commit 2c0b843e710aa1e2da25c2592e6dbe5d0b0ab7da
19396 Author: David Gibson <david@gibson.dropbear.id.au>
19397 Date: Fri Feb 6 14:01:56 2009 +1100
19398
19399 libfdt: Rework fdt_next_node()
19400
19401 Currently fdt_next_node() will find the next node in the blob
19402 regardless of whether it is above, below or at the same level in the
19403 tree as the starting node - the depth parameter is updated to indicate
19404 which is the case. When a depth parameter is supplied, this patch
19405 makes it instead terminate immediately when it finds the END_NODE tag
19406 for a node at depth 0. In this case it returns the offset immediately
19407 past the END_NODE tag.
19408
19409 This has a couple of advantages. First, this slightly simplifies
19410 fdt_subnode_offset(), which no longer needs to explicitly check that
19411 fdt_next_node()'s iteration hasn't left the starting node. Second,
19412 this allows fdt_next_node() to be used to implement
19413 _fdt_node_end_offset() considerably simplifying the latter function.
19414
19415 The other users of fdt_next_node() either don't need to iterate out of
19416 the starting node, or don't pass a depth parameter at all. Any
19417 callers that really need to iterate out of the starting node, but keep
19418 tracking depth can do so by biasing the initial depth value.
19419
19420 This is a semantic change, but I think it's very unlikely to break any
19421 existing library users.
19422
19423 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
19424
19425 commit c123098035be8bae3859bbfbd06861f197c07631
19426 Author: Scott Wood <scottwood@freescale.com>
19427 Date: Tue Mar 31 17:49:36 2009 -0500
19428
19429 mpc83xx: Set guarded bit on BAT that covers the end of the address space
19430
19431 The mpc8313erdb board currently sets DBAT6 to cover all of the final 256MiB of
19432 address space; however, not all of this space is covered by a device. In
19433 particular, flash sits at 0xfe000000-0xfe7fffff, and nothing is mapped
19434 at the far end of the address space.
19435
19436 In zlib, there is a loop that references p[-1] if p is non-NULL. Under
19437 some circumstances, this leads to the CPU speculatively loading from
19438 0xfffffff8 if p is NULL. This leads to a machine check.
19439
19440 Signed-off-by: Scott Wood <scottwood@freescale.com>
19441
19442 continuation to the remaining mpc83xx boards that suffer from the same problem.
19443
19444 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19445
19446 commit c2eb8be7f760a2efe30a495bfb10857838dcf3fa
19447 Author: Kim Phillips <kim.phillips@freescale.com>
19448 Date: Mon Mar 30 14:28:05 2009 -0500
19449
19450 rtc: remove broken rtc_read and rtc_write declarations
19451
19452 commit 04e11cf3 "rtc: add support for 4543 RTC (manufactured by e.g.
19453 EPSON)" introduces the following build error on boards configuring e.g,
19454 the ds1374 rtc:
19455
19456 Configuring for MPC837XEMDS board...
19457 ds1374.c:103: error: static declaration of 'rtc_read' follows non-static declaration
19458 /home/r1aaha/git/u-boot/include/rtc.h:64: error: previous declaration of 'rtc_read' was here
19459 ds1374.c:104: error: conflicting types for 'rtc_write'
19460 /home/r1aaha/git/u-boot/include/rtc.h:65: error: previous declaration of 'rtc_write' was here
19461
19462 this reverts the erroneous chunk.
19463
19464 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19465 Acked-by: Detlev Zundel <dzu@denx.de>
19466 CC: Detlev Zundel <dzu@denx.de>
19467 CC: Andreas Pfefferle <ap@denx.de>
19468
19469 commit fc39c2fd51e64707de4d61ed49479ebea2847e1b
19470 Author: Kumar Gala <galak@kernel.crashing.org>
19471 Date: Tue Mar 31 17:58:13 2009 -0500
19472
19473 85xx/86xx: Ensure MP boot page is not used
19474
19475 We had a bug on 86xx in which the boot page used to bring up secondary
19476 cores was being overwritten and used for the malloc region in u-boot.
19477
19478 We need to reserve the region of memory that the boot page is going to
19479 be put at so nothing uses it.
19480
19481 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19482 Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
19483
19484 commit c840d26c752141b94bbc24ac748ddd45752a955a
19485 Author: Kumar Gala <galak@kernel.crashing.org>
19486 Date: Tue Mar 31 23:11:05 2009 -0500
19487
19488 85xx: Introduce determine_mp_bootpg() helper.
19489
19490 Match determine_mp_bootpg() that was added for 86xx. We need this to
19491 address a bug introduced in v2009.03 with 86xx MP booting. We have to
19492 make sure to reserve the region of memory used for the MP bootpg() so
19493 other u-boot code doesn't use it.
19494
19495 Also added a comment about how cpu_reset() is dealing w/an errata on
19496 early 85xx MP HW.
19497
19498 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19499
19500 commit 7649a590b53ee548f41428bf20780f74ce9fc099
19501 Author: Kumar Gala <galak@kernel.crashing.org>
19502 Date: Tue Mar 31 23:02:38 2009 -0500
19503
19504 86xx: Cleanup MP support
19505
19506 * Use CONFIG_MP instead of CONFIG_NUM_CPUS to match 85xx
19507 * Introduce determine_mp_bootpg() helper. We'll need this to address a
19508 bug introduced in v2009.03 with 86xx MP booting. We have to make sure
19509 to reserve the region of memory used for the MP bootpg() so other
19510 u-boot code doesn't use it.
19511 * Added dummy versions of cpu_reset(), cpu_status() & cpu_release() to
19512 allow cmd_mp.c to build and work. In the future we should look at
19513 implementing all these functions. This could be common w/85xx if we
19514 use spin tables on 86xx.
19515
19516 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19517
19518 commit f6ef8b7a43ed7f68a4bb524faad5e4f75ea3e3e2
19519 Author: Becky Bruce <beckyb@kernel.crashing.org>
19520 Date: Tue Mar 31 18:38:37 2009 -0500
19521
19522 mpc8641hpcn/sbc8641d: Add missing board_lmb_reserves
19523
19524 We're missing the board_lmb_reserve definitions that allow
19525 cpu_mp_lmb_reserve to be called; this means that Linux
19526 is free to reallocate reserved pages. Linux currently boots
19527 because we're getting lucky - the page we've reserved is
19528 high enough in memory that it isn't allocated by Linux
19529 while we still need it to be in existence.
19530
19531 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
19532 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19533
19534 commit 0fc4f64c59873a47d555dd66bad25797d4ecb0ed
19535 Author: Ladislav Michl <ladis@linux-mips.org>
19536 Date: Tue Mar 31 13:43:10 2009 +0200
19537
19538 NetStar: fix NAND
19539
19540 Fix NAND support broken during new NAND code merge. Move those few lines of
19541 code to board/netstar/netstar.c
19542
19543 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
19544
19545 commit d144f94d590b5190a9963bd0f2026b2a7ce67eda
19546 Author: Jens Scharsig <esw@bus-elektronik.de>
19547 Date: Tue Mar 31 08:18:29 2009 +0200
19548
19549 soft_i2c.c compiler/linker error
19550
19551 This patch fix the compiler/linker errors
19552
19553 common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed'
19554 common/cmd_i2c.c:1256: undefined reference to `i2c_set_bus_speed'
19555
19556 if board use CONFIG_I2C_CMD_TREE and CONFIG_I2C_MULTI_BUS is not
19557 uesd/undef (wrong define order)
19558
19559 and
19560
19561 removes additional empty lines
19562
19563 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
19564
19565 commit 765547dc5e0e8cbe6b8f4ea8a5d6ff237935c352
19566 Author: Haiying Wang <Haiying.Wang@freescale.com>
19567 Date: Fri Mar 27 17:02:45 2009 -0400
19568
19569 MPC85xx: Add MPC8569MDS board support
19570
19571 This patch adds MPC8569MDS board support. The UART, QE UEC1 and UEC2, BRD
19572 EEPROM on I2C2 bus, PCI express and DDR3 SPD are supported in this patch.
19573
19574 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
19575 Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
19576 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19577
19578 commit 22b6dbc1696d927d938dd4e16f65d83c0d4fb3f4
19579 Author: Haiying Wang <Haiying.Wang@freescale.com>
19580 Date: Fri Mar 27 17:02:44 2009 -0400
19581
19582 MPC85xx: Add MPC8569 CPU support
19583
19584 There is a workaround for MPC8569 CPU Errata, which needs to set Bit 13 of
19585 LBCR in 4K bootpage. We setup a temp TLB for eLBC controller in bootpage,
19586 then invalidate it after LBCR bit 13 is set.
19587
19588 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
19589 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19590
19591 commit 2d4de6ae5be54b367a72a7ef4e0cf36a9cd4881f
19592 Author: Haiying Wang <Haiying.Wang@freescale.com>
19593 Date: Thu Mar 26 17:01:49 2009 -0400
19594
19595 MPC85xx: Load and enable QE microcode patch in IRAM
19596
19597 For the silicon which doesn't have ROM support in QE, it always needs to load
19598 a pre-built ucode binary to IRAM so that QE can work.
19599
19600 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
19601 Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
19602
19603 commit 1b3e4044a28a3d95b0aad41bdc52482bb2cc9b2b
19604 Author: Kumar Gala <galak@kernel.crashing.org>
19605 Date: Thu Mar 19 09:16:10 2009 -0500
19606
19607 85xx: Add support for additional e500mc features
19608
19609 * Enable backside L2
19610 * e500mc no longer has timebase enable in HID (moved to CCSR register)
19611
19612 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19613
19614 commit c360ceac0286159f94d9d1a9496fc9858c8d9bec
19615 Author: Dave Liu <daveliu@freescale.com>
19616 Date: Sat Mar 14 12:48:30 2009 +0800
19617
19618 fsl-ddr: add the DDR3 SPD infrastructure
19619
19620 - support mirrored DIMMs, not support register DIMMs
19621 - test passed on P2020DS board with MT9JSF12872AY-1G1D1
19622 - test passed on MPC8569MDS board with MT8JSF12864HY-1G1D1
19623
19624 Signed-off-by: Dave Liu <daveliu@freescale.com>
19625 Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
19626
19627 commit 6a8197836702991468cead5ead073f589e2623ad
19628 Author: Dave Liu <daveliu@freescale.com>
19629 Date: Sat Mar 14 12:48:19 2009 +0800
19630
19631 fsl-ddr: Fix two bugs in the ddr infrastructure
19632
19633 1. wr_lat
19634 UM said the total write latency for DDR2 is equal to
19635 WR_LAT + ADD_LAT, the write latency is CL + ADD_LAT - 1.
19636 so, the WR_LAT = CL - 1;
19637 2. rd_to_pre
19638 we missed to add the ADD_LAT for DDR2 case.
19639
19640 Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
19641 Signed-off-by: Dave Liu <daveliu@freescale.com>
19642
19643 commit 540dcf1cb86961e11aa92c47671f27762c581d8c
19644 Author: Kumar Gala <galak@kernel.crashing.org>
19645 Date: Thu Mar 26 01:34:39 2009 -0500
19646
19647 83xx: Use common LSDMR defines from asm/fsl_lbc.h
19648
19649 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19650 Acked-by: Kim Phillips <kim.phillips@freescale.com>
19651
19652 commit b0fe93eda69721aef1fdef576164b668fad83bbd
19653 Author: Kumar Gala <galak@kernel.crashing.org>
19654 Date: Thu Mar 26 01:34:38 2009 -0500
19655
19656 85xx: Use common LSDMR defines from asm/fsl_lbc.h
19657
19658 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19659
19660 commit 0088c298f0eeb90ec001f744e9959dea83dd563a
19661 Author: Kumar Gala <galak@kernel.crashing.org>
19662 Date: Thu Mar 26 01:34:37 2009 -0500
19663
19664 Add LSDMR (SDRAM Mode Register) definition on localbus
19665
19666 The masks for various bit defines of LSDMR are common and thus we can
19667 define them in one place rather than replicating them in each config.h
19668
19669 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19670
19671 commit 89c00fb15859213788f0ad089934c376fb356099
19672 Author: Ladislav Michl <ladis@linux-mips.org>
19673 Date: Mon Mar 30 18:58:41 2009 +0200
19674
19675 OMAP: use {read,write}l to access timer registers
19676
19677 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
19678
19679 commit 81472d893fa565c9d300928a40e504a689bde131
19680 Author: Ladislav Michl <ladis@linux-mips.org>
19681 Date: Mon Mar 30 18:58:41 2009 +0200
19682
19683 OMAP: rename timer divisor
19684
19685 Divisor field is called PTV not PVT.
19686
19687 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
19688 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19689
19690 commit fe672d60b2a8c9e803596ba4533fa1776015551d
19691 Author: Ladislav Michl <ladis@linux-mips.org>
19692 Date: Mon Mar 30 18:58:40 2009 +0200
19693
19694 OMAP: reindent timer code
19695
19696 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
19697
19698 commit b3f66b0ba09949e0796ce7fad6367f75f15ed890
19699 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19700 Date: Mon Mar 30 18:58:40 2009 +0200
19701
19702 s3c2410: move nand driver to drivers/mtd/nand
19703
19704 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19705
19706 commit d3b635774194404bcd424f6b376419bce22076ad
19707 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19708 Date: Mon Mar 30 18:58:40 2009 +0200
19709
19710 s3c24x0: move i2c driver to drivers/i2c
19711
19712 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19713
19714 commit 300f99f4539dd5caf7e19af5e4ea5eb259445913
19715 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19716 Date: Mon Mar 30 18:58:39 2009 +0200
19717
19718 s3c24x0: move serial driver to drivers/serial
19719
19720 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19721
19722 commit 942ba9969b9efa25f816c238861ecb339c54ed73
19723 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19724 Date: Mon Mar 30 18:58:39 2009 +0200
19725
19726 davinci: move i2c driver to drivers/i2c
19727
19728 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19729
19730 commit ee4f3e2765a1c65c9861c5d2cf2e6feb84b90bd8
19731 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19732 Date: Mon Mar 30 18:58:39 2009 +0200
19733
19734 davinci: move nand driver to drivers/mtd/nand
19735
19736 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19737
19738 commit d3e55d0774a180c1837bd7ddec464015e883bd86
19739 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19740 Date: Mon Mar 30 18:58:38 2009 +0200
19741
19742 imx: move serial driver to drivers/serial
19743
19744 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19745
19746 commit 2344bb8de2354101a8264c2123303c9d8d2aed3c
19747 Author: Detlev Zundel <dzu@denx.de>
19748 Date: Mon Mar 30 00:31:36 2009 +0200
19749
19750 inka4x0: Use proper accessor macros for memory mapped registers.
19751
19752 Signed-off-by: Detlev Zundel <dzu@denx.de>
19753
19754 commit e979e85fd39b06436922bb4d6bb5fafcbc775182
19755 Author: Detlev Zundel <dzu@denx.de>
19756 Date: Mon Mar 30 00:31:35 2009 +0200
19757
19758 inka4x0: Add hardware diagnosis and RTC in configuration.
19759
19760 This patch adds the board specific communication routines needed by
19761 the external 4543 RTC.
19762
19763 Signed-off-by: Detlev Zundel <dzu@denx.de>
19764 Signed-off-by: Andreas Pfefferle <ap@denx.de>
19765
19766 commit 7b5611cdd12ca0cc33f994f0d4a4454788fc3124
19767 Author: Detlev Zundel <dzu@denx.de>
19768 Date: Mon Mar 30 00:31:34 2009 +0200
19769
19770 inka4x0: Add hardware diagnosis functions for inka4x0
19771
19772 This patch adds advanced diagnosis functions for the inka4x0 board.
19773
19774 Signed-off-by: Andreas Pfefferle <ap@denx.de>
19775 Signed-off-by: Detlev Zundel <dzu@denx.de>
19776
19777 commit 04e11cf383ff6231535fd981023bb1306b2133d4
19778 Author: Detlev Zundel <dzu@denx.de>
19779 Date: Mon Mar 30 00:31:33 2009 +0200
19780
19781 rtc: add support for 4543 RTC (manufactured by e.g. EPSON)
19782
19783 Signed-off-by: Detlev Zundel <dzu@denx.de>
19784 Signed-off-by: Andreas Pfefferle <ap@denx.de>
19785
19786 commit 572e6179adb5447ff42ec2aa5cf3a26decf97583
19787 Author: Detlev Zundel <dzu@denx.de>
19788 Date: Mon Mar 30 00:31:32 2009 +0200
19789
19790 drivers/twserial: Add protocol driver for "three wire serial" interface.
19791
19792 This pretty unintelligent interface is used on some RTC chips.
19793
19794 Signed-off-by: Detlev Zundel <dzu@denx.de>
19795
19796 commit a6ef3ddeafbe8007af3662cc4509b897c53ab395
19797 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19798 Date: Sun Mar 29 23:01:42 2009 +0200
19799
19800 arm720t/clps7111: move serial driver to drivers/serial
19801
19802 add CONFIG_CLPS7111_SERIAL to activate the driver
19803
19804 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19805
19806 commit 6790c55704531eb98f76b51d50e0f73d19fa2988
19807 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19808 Date: Sun Mar 29 23:01:42 2009 +0200
19809
19810 lpc2292: move serial driver to drivers/serial
19811
19812 add CONFIG_LPC2292_SERIAL to activate the driver
19813
19814 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19815
19816 commit 176a600d0ecdaccbac483d2ba992d0119f853119
19817 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19818 Date: Sun Mar 29 23:01:42 2009 +0200
19819
19820 ks8695: move serial driver to drivers/serial
19821
19822 add CONFIG_KS8695_SERIAL to activate the driver
19823
19824 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19825
19826 commit 6d27bca15d445fcf07d6e7e30ced95c945c875ea
19827 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19828 Date: Sun Mar 29 23:01:42 2009 +0200
19829
19830 s3c64xx: move usb driver to drivers/usb
19831
19832 add CONFIG_USB_S3C64XX to activate the driver
19833
19834 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19835
19836 commit ecfa8dda2f55e1fbe12dee0b5cc16e7d484674c9
19837 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19838 Date: Sun Mar 29 23:01:41 2009 +0200
19839
19840 imx31: move serial driver to drivers/serial
19841
19842 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19843
19844 commit 9ea91c9fefb3920d735533a7798c1a44a3ed3ffc
19845 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19846 Date: Sun Mar 29 23:01:41 2009 +0200
19847
19848 netarm: move serial driver to drivers/serial
19849
19850 add CONFIG_NETARM_SERIAL to activate the driver
19851
19852 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19853
19854 commit 412ab705888742add435dd6ffc2e8bda14962235
19855 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19856 Date: Sun Mar 29 23:01:41 2009 +0200
19857
19858 sa1100: move serial driver to drivers/serial
19859
19860 add CONFIG_SA1100_SERIAL to activate the driver
19861
19862 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19863
19864 commit b2368754a9202225fd072e159fb78da7d2cdb623
19865 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19866 Date: Sun Mar 29 23:01:41 2009 +0200
19867
19868 s3c44b0: extract cache from cpu.c
19869
19870 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19871
19872 commit 40fd626223eae5363719bcb9a6896f08ceeee90a
19873 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19874 Date: Sun Mar 29 23:01:41 2009 +0200
19875
19876 s3c44b0: move serial driver to drivers/serial
19877
19878 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19879
19880 commit 5fe1377cc46199fe71c47be4b1aa81440ae96f9f
19881 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19882 Date: Sun Mar 29 23:01:40 2009 +0200
19883
19884 s3c44b0: move rtc driver to drivers/rtc
19885
19886 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19887
19888 commit 50f601cca8985615f9e3de4c34887448ade8a64b
19889 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19890 Date: Sun Mar 29 23:01:40 2009 +0200
19891
19892 s3c44b0: move i2c driver to drivers/i2c
19893
19894 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19895
19896 commit 281dfb0c0c531194f99e60d6285cca4e2a9fb1b6
19897 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19898 Date: Sun Mar 29 23:01:36 2009 +0200
19899
19900 s3c4510b: move specific code to soc directory
19901
19902 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19903
19904 commit 04531f3c11c693dc54924f82c41979d960309c9d
19905 Author: Ladislav Michl <ladis@linux-mips.org>
19906 Date: Wed Mar 25 23:43:58 2009 +0100
19907
19908 NetStar: add RTC support
19909
19910 Add RTC support.
19911
19912 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
19913
19914 commit 71f7bd305d9768bcb7ddbe4b5823cbf3b3597b11
19915 Author: Ladislav Michl <ladis@linux-mips.org>
19916 Date: Wed Mar 25 23:43:50 2009 +0100
19917
19918 NetStar: use generic flash driver
19919
19920 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
19921
19922 commit 3f464b0fc009d41d2734c08e472eb6d445f73a5c
19923 Author: Ladislav Michl <ladis@linux-mips.org>
19924 Date: Mon Mar 16 23:31:20 2009 +0100
19925
19926 NetStar: update crcit utility
19927
19928 Make crc32 function to match its prototype. Use more meaningful identifiers.
19929
19930 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
19931
19932 commit 488f5d8790c451fc527fe5d2ef218f2a5e40ea17
19933 Author: Ladislav Michl <ladis@linux-mips.org>
19934 Date: Mon Mar 23 17:46:27 2009 +0100
19935
19936 Remove nowhere used symbol CONFIG_SYS_CLKS_IN_HZ
19937
19938 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
19939
19940 commit 88685b5f62274167ad2ba8a58e108d89ff71955b
19941 Author: Wolfgang Denk <wd@denx.de>
19942 Date: Sun Mar 29 00:58:16 2009 +0100
19943
19944 VCMA9: fix compile errors
19945
19946 Fix these:
19947 cmd_vcma9.c:82: warning: implicit declaration of function 'eth_getenv_enetaddr'
19948 cmd_vcma9.c:89: error: 'enetaddr' undeclared (first use in this function)
19949
19950 Signed-off-by: Wolfgang Denk <wd@denx.de>
19951
19952 commit 26e42cbd786241fec370a0b92ad591f4e9cc423b
19953 Author: Wolfgang Denk <wd@denx.de>
19954 Date: Sun Mar 29 00:54:21 2009 +0100
19955
19956 ARM: fix warning: 'print_eth' defined but not used
19957
19958 This warning got issued for all ARM systems that don't have
19959 CONFIG_CMD_NET enabled.
19960
19961 Signed-off-by: Wolfgang Denk <wd@denx.de>
19962
19963 commit fd88d91a639ce41b825c8d50dc2182050e98fe53
19964 Author: Ladislav Michl <ladis@linux-mips.org>
19965 Date: Mon Mar 23 18:16:34 2009 +0100
19966
19967 cs8900 compile fix
19968
19969 cs8900.c: In function 'eth_init':
19970 cs8900.c:164: warning: passing argument 2 of 'eth_getenv_enetaddr' from incompatible pointer type
19971 cs8900.c:165: error: invalid operands to binary <<
19972 cs8900.c:166: error: invalid operands to binary <<
19973 cs8900.c:167: error: invalid operands to binary <<
19974
19975 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
19976 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19977
19978 commit d2567be915036720693f3ddd00c39b5b4d86fb8d
19979 Author: Wolfgang Denk <wd@denx.de>
19980 Date: Sat Mar 28 20:16:16 2009 +0100
19981
19982 Fix implicit declaration of function 'eth_[gs]etenv_enetaddr'
19983
19984 ...and some other compile warnings.
19985
19986 Signed-off-by: Wolfgang Denk <wd@denx.de>
19987
19988 commit 97b05d7d524a6b4f195f07b8f90e98561a85596c
19989 Author: Wolfgang Denk <wd@denx.de>
19990 Date: Sat Mar 28 16:17:29 2009 +0100
19991
19992 mpc8xx/ether.c: fix warning: unused variable 'bd'
19993
19994 Also minor coding style cleanup.
19995
19996 Signed-off-by: Wolfgang Denk <wd@denx.de>
19997
19998 commit 2dce551e10728f9e5655279f761f1d3cc0a8fe90
19999 Author: Detlev Zundel <dzu@denx.de>
20000 Date: Wed Mar 25 17:27:52 2009 +0100
20001
20002 command.c: Expose the core of do_help as _do_help to the rest of u-boot.
20003
20004 Other commands implementing subcommands can reuse this code nicely.
20005
20006 Signed-off-by: Detlev Zundel <dzu@denx.de>
20007 Signed-off-by: Andreas Pfefferle <ap@denx.de>
20008
20009 commit 4e325fbfa4dea04eceb6392e00807c40d214dc6f
20010 Author: Detlev Zundel <dzu@denx.de>
20011 Date: Tue Mar 24 18:02:33 2009 +0100
20012
20013 mpc5xxx: Add structure definition for several more register blocks.
20014
20015 Signed-off-by: Detlev Zundel <dzu@denx.de>
20016
20017 commit 739b0e594677a0676577bc95db4495a5563fc7f8
20018 Author: Detlev Zundel <dzu@denx.de>
20019 Date: Fri Mar 27 15:03:55 2009 +0100
20020
20021 MAINTAINERS: Add entry for 'inka4x0' board.
20022
20023 Signed-off-by: Detlev Zundel <dzu@denx.de>
20024
20025 commit e55ecec45340755ef47cbbb13fb35ceed60eb115
20026 Author: Detlev Zundel <dzu@denx.de>
20027 Date: Fri Mar 27 15:03:54 2009 +0100
20028
20029 MAINTAINERS: Keep list sorted.
20030
20031 Signed-off-by: Detlev Zundel <dzu@denx.de>
20032
20033 commit 0baeca4b09b703728f8e66b52418039fd8f8ce35
20034 Author: Mike Frysinger <vapier@gentoo.org>
20035 Date: Thu Mar 26 11:17:41 2009 -0400
20036
20037 karef/metrobox/xpedite1k: fix eth_setenv_enetaddr typos
20038
20039 The function is called "eth_setenv_enetaddr", not "eth_putenv_enetaddr".
20040
20041 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20042 CC: Ben Warren <biggerbadderben@gmail.com>
20043
20044 commit 76756e41cde0a617e781a604cc47dfaef63697cd
20045 Author: Heiko Schocher <hs@denx.de>
20046 Date: Thu Mar 26 07:33:59 2009 +0100
20047
20048 ppc: cleanup compiler errors/warnings
20049
20050 Current u-boot top of tree builds with warnings/errors for
20051 the following boards:
20052
20053 ads5121 cpci5200 mecp5200 v38b IAD210 MBX MBX860T NX823
20054 RPXClassic debris PN62
20055
20056 following patch solves this.
20057
20058 Signed-off-by: Heiko Schocher <hs@denx.de>
20059 Acked-by: Mike Frysinger <vapier@gentoo.org>
20060
20061 commit 3edf68c47fdd52f19c1e840771c19ba90cf5ced1
20062 Author: Stefan Roese <sr@denx.de>
20063 Date: Thu Mar 26 16:14:13 2009 +0100
20064
20065 ppc4xx: Sequoia: Fix TLB reassignment in NAND booting code
20066
20067 This patch fixes a bug in the Sequoia TLB init code to reconfigure
20068 the correct TLB (boot space) after running from RAM. This bug was
20069 introduced with patch 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
20070 [ppc4xx: Make Sequoia boot vxWorks] which changed the order of the
20071 TLB in the Sequoia init.S file.
20072
20073 Signed-off-by: Stefan Roese <sr@denx.de>
20074
20075 commit e2b66fe453a3679f807b37fc5923d89214302764
20076 Author: Wolfgang Denk <wd@denx.de>
20077 Date: Thu Mar 26 10:00:57 2009 +0100
20078
20079 ads5121: enable instruction cache
20080
20081 Enabling the instruction cache significantly accelerates U-Boot
20082 operations like CRC checking, image uncompression, etc.
20083
20084 Kudos to Andrea Scian for pointing out.
20085
20086 Signed-off-by: Wolfgang Denk <wd@denx.de>
20087
20088 commit 33e88c557b29c84c52039ba05993fa70fe62afe3
20089 Author: Jon Smirl <jonsmirl@gmail.com>
20090 Date: Sun Mar 22 22:55:45 2009 -0400
20091
20092 mpc5200: suppress printf until console initialized
20093
20094 On boards which have the environment in eeprom, i2c_init() is called
20095 before the console and RAM are initialized.
20096 Suppress printfs until the console is initialized.
20097
20098 Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
20099 Acked-by: Heiko Schocher <hs@denx.de>
20100
20101 commit 0c6926736effbb9a19047949b7e9b3e8feab7c46
20102 Author: Guennadi Liakhovetski <lg@denx.de>
20103 Date: Wed Mar 25 11:36:50 2009 +0100
20104
20105 ARM: Add the imx31_phycore_eet board to MAKEALL
20106
20107 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20108
20109 commit 917cfc70c18b74fa8a80189bdce8395199fa8360
20110 Author: Nishanth Menon <nm@ti.com>
20111 Date: Wed Mar 25 22:13:56 2009 +0100
20112
20113 OMAP3:Beagle: Enable mtdparts
20114
20115 http://www.denx.de/wiki/DULG/UBootCmdGroupFlash#UBootCmdFlMtdparts
20116 provides a flexible way to create and maintain u-boot mtd
20117 partitions. This allows commands such as "nand erase fs"
20118 to work and the user no longer needs to decode the absolute
20119 nand offsets. This patch enables this function for beagleboard
20120
20121 Signed-off-by: Nishanth Menon <nm@ti.com>
20122 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20123
20124 commit 4de1a5daab079ddc8ce1274144700203d692105c
20125 Author: Mike Frysinger <vapier@gentoo.org>
20126 Date: Sun Feb 22 16:26:35 2009 -0500
20127
20128 Blackfin: bf537-stamp: split post code out into dedicated post.c
20129
20130 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20131
20132 commit 5e8f245743ed14c89e495ba2c027703db9813160
20133 Author: Mike Frysinger <vapier@gentoo.org>
20134 Date: Sat Oct 11 22:51:56 2008 -0400
20135
20136 Blackfin: add support for S25FL128 parts
20137
20138 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20139
20140 commit bf1e028bf3eab1d702fa0627cade4460688f3913
20141 Author: Mike Frysinger <vapier@gentoo.org>
20142 Date: Sat Oct 11 22:51:23 2008 -0400
20143
20144 Blackfin: overhaul SPI flash handling to speed things up
20145
20146 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20147
20148 commit efcc08cededa2168b96f12a22a5872340880d334
20149 Author: Mike Frysinger <vapier@gentoo.org>
20150 Date: Sat Oct 11 22:51:05 2008 -0400
20151
20152 Blackfin: add support for SST SPI flashes
20153
20154 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20155
20156 commit 5b8cfbe63f7242ebb1008f30bbbc85a9d54b38cf
20157 Author: Mike Frysinger <vapier@gentoo.org>
20158 Date: Sat Oct 11 22:50:10 2008 -0400
20159
20160 Blackfin: add hack for crappy m25p80
20161
20162 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20163
20164 commit 6f5fd56f0832ea5c254e2e4be84ea21fc8ecd5c5
20165 Author: Mike Frysinger <vapier@gentoo.org>
20166 Date: Wed Jan 21 20:47:12 2009 -0500
20167
20168 Blackfin: bf537-stamp: increase monitor size
20169
20170 The new jffs2 code pushed the code size just over the limit, so increase
20171 the limit a bit more.
20172
20173 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20174
20175 commit f82caaccc87e1f76448ff42a6b930e59797e4f65
20176 Author: Mike Frysinger <vapier@gentoo.org>
20177 Date: Mon Dec 8 16:16:11 2008 -0500
20178
20179 Blackfin: bf537-stamp: bump default SCLK up to 125MHz
20180
20181 Since all of the bf537-stamp and bf537-ezkit boards out there can handle it,
20182 increase the speed of SCLK to 125MHz rather than 100MHz.
20183
20184 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20185
20186 commit 751e54c3b77311b720b794813cce20546f288ada
20187 Author: Mike Frysinger <vapier@gentoo.org>
20188 Date: Sat Oct 11 22:44:14 2008 -0400
20189
20190 Blackfin: bf537-stamp: rewrite MAC-in-flash handling
20191
20192 Use the common net eth functions to setup the env/global data with the MAC
20193 address, and properly handle the case where CONFIG_SYS_NO_FLASH is defined.
20194
20195 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20196
20197 commit 88f9faffb383bbc6f23b8cc8519c5ffecfa2c8ad
20198 Author: Mike Frysinger <vapier@gentoo.org>
20199 Date: Tue Dec 9 13:47:39 2008 -0500
20200
20201 Blackfin: add clkin_hz= to default kernel command line for ADI boards
20202
20203 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20204
20205 commit 9f64ba2412d3cede9eb1f290987e5c3a28df3232
20206 Author: Mike Frysinger <vapier@gentoo.org>
20207 Date: Sun Oct 12 23:49:13 2008 -0400
20208
20209 Blackfin: bf533-stamp: bump up default clocks
20210
20211 Since the hardware can handle it, bump the default clocks from 80mhz SCLK
20212 and 398mhz CCLK to 100mhz SCLK and 498mhz CCLK.
20213
20214 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20215
20216 commit 23fd959eeaaa0434ac7f9c1191de66c76d97d699
20217 Author: Mike Frysinger <vapier@gentoo.org>
20218 Date: Sat Oct 11 22:40:22 2008 -0400
20219
20220 Blackfin: bf533-stamp: rewrite startup LED notifications
20221
20222 Again, don't clobber pins that we aren't actually using, and use the common
20223 LED framework rather than our own hob-job-but-not-really-working.
20224
20225 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20226
20227 commit cf6f469e2730fc8ab3523808b828be000d6eee77
20228 Author: Mike Frysinger <vapier@gentoo.org>
20229 Date: Sun Jun 1 09:09:48 2008 -0400
20230
20231 Blackfin: unify common ADI board settings
20232
20233 Rather than duplicate the same ADI settings in every ADI board, create a
20234 common ADI config header and have all ADI boards start using that. This
20235 will also make merging the ~10 boards I have to forward port a lot easier.
20236
20237 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20238
20239 commit 196c74311f394c6eb08bd9ab07a35671299b9851
20240 Author: Kyungmin Park <kmpark@infradead.org>
20241 Date: Tue Mar 3 09:05:53 2009 +0900
20242
20243 Reduce OneNAND IPL common code
20244
20245 OneNAND IPL has common codes for RAM init, load data, and jump to 2nd
20246 bootloader, but it's common code used about 300~400 bytes. So board
20247 specific codes, such as lowlevel_init, can't has enough code. It make
20248 a difficult to implement OneNAND IPL.
20249
20250 his patch make this common code as small as possible. and give
20251 lowlevel_init can have more codes.
20252
20253 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20254 Signed-off-by: Scott Wood <scottwood@freescale.com>
20255
20256 commit 16f2f5a351004129e79e79816697a367fd9e5446
20257 Author: Wolfgang Grandegger <wg@grandegger.com>
20258 Date: Wed Feb 11 18:38:24 2009 +0100
20259
20260 Add multi-chip NAND support for the TQM8548 modules
20261
20262 This patches configures the NAND UPM-FSL driver with multi-chip
20263 support for the Micron MT29F8G08FAB NAND flash memory on the
20264 TQM8548 modules.
20265
20266 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
20267 Signed-off-by: Scott Wood <scottwood@freescale.com>
20268
20269 commit 33846df28fa1f4cf96a96c18142d48d813caa892
20270 Author: Wolfgang Grandegger <wg@grandegger.com>
20271 Date: Wed Feb 11 18:38:23 2009 +0100
20272
20273 Add wait flags to support board/chip specific delays
20274
20275 The NAND flash on the TQM8548_BE modules requires a short delay after
20276 running the UPM pattern like the MPC8360ERDK board does. The TQM8548_BE
20277 requires a further short delay after writing out a buffer. Normally the
20278 R/B pin should be checked, but it's not connected on the TQM8548_BE.
20279 The corresponding Linux FSL UPM driver uses similar delay points at the
20280 same locations. To manage these extra delays in a more general way, I
20281 introduced the "wait_flags" field allowing the board-specific driver to
20282 specify various types of extra delay.
20283
20284 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
20285 Signed-off-by: Scott Wood <scottwood@freescale.com>
20286
20287 commit 06e9f7df054d26d7f49c56bf9a6844b193ad6313
20288 Author: Wolfgang Grandegger <wg@grandegger.com>
20289 Date: Wed Feb 11 18:38:22 2009 +0100
20290
20291 Add support for TQM-specific chip select logic to FSL-UPM
20292
20293 For the NAND chips on the TQM8548 modules, a special chip-select logic is
20294 used. It uses dedicated address lines to be set via UPM machine address
20295 register (mar). This patch adds such support to the FSL-UPM driver.
20296
20297 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
20298 Signed-off-by: Scott Wood <scottwood@freescale.com>
20299
20300 commit e93c1c169d49eda7babad9c781f541e2e34f0ff0
20301 Author: Wolfgang Grandegger <wg@grandegger.com>
20302 Date: Wed Feb 11 18:38:21 2009 +0100
20303
20304 Add multi chip support to the FSL-UPM driver
20305
20306 This patch adds support for multi-chip NAND devices to the FSL-UPM
20307 driver. The "dev_ready" callback of the "struct fsl_upm_nand" is now
20308 called with the argument "chip_nr" to allow testing the proper chip
20309 select line. The NAND support of the MPC8360ERDK is updated as well.
20310 No other boards are currently using the FSL UPM driver.
20311
20312 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
20313 Signed-off-by: Scott Wood <scottwood@freescale.com>
20314
20315 commit 672ed2aee91b4856f6671fc72cd34168d8f1b624
20316 Author: Wolfgang Grandegger <wg@grandegger.com>
20317 Date: Wed Feb 11 18:38:20 2009 +0100
20318
20319 Enable multi chip support in the NAND layer
20320
20321 This patch adds support for NAND_MAX_CHIPS to the MTD NAND layer.
20322 Multi-chips devices are displayed as shown:
20323
20324 Device 0: 2x NAND 512MiB 3,3V 8-bit, sector size 128 KiB
20325
20326 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
20327 Signed-off-by: Scott Wood <scottwood@freescale.com>
20328
20329 commit 74398b23f9c2ffdc137fd92910a46e3333fb93f9
20330 Author: Mike Frysinger <vapier@gentoo.org>
20331 Date: Sat Oct 11 21:58:33 2008 -0400
20332
20333 Blackfin: put memory into self-refresh before/after programming clocks
20334
20335 When initializing the core clocks, stick external memory into self-refresh.
20336 This gains us a few cool things:
20337 - support suspend-to-RAM with Linux
20338 - reprogram clocks automatically when doing "go" on u-boot.bin in RAM
20339 - make sure settings are stable before flashing new version
20340 - finally fully unify initialize startup code path between LDR/non-LDR
20341
20342 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20343
20344 commit d347d572ab1f2d47bf257c9f7ca2e602038a136b
20345 Author: Mike Frysinger <vapier@gentoo.org>
20346 Date: Sat Oct 11 21:56:08 2008 -0400
20347
20348 Blackfin: do not program voltage regulator on parts that do not have one
20349
20350 Some newer Blackfins (like the BF51x) do not have an on-chip voltage
20351 regulator, so do not attempt to program the memory as if it does.
20352
20353 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20354
20355 commit 0d4f24b70f7a979f58174f3eb271874950b551b6
20356 Author: Mike Frysinger <vapier@gentoo.org>
20357 Date: Sun Jun 1 01:28:24 2008 -0400
20358
20359 Blackfin: setup a sane default EBIU_SDBCTL for SDRAM controllers
20360
20361 If the board config does not specify an explicit EBIU_SDBCTL value, set it
20362 up with sane values based on other configuration options.
20363
20364 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20365
20366 commit 3986e981f565c08f10c7e526af8cb518d741c349
20367 Author: Mike Frysinger <vapier@gentoo.org>
20368 Date: Sat Dec 6 18:06:58 2008 -0500
20369
20370 Blackfin: handle reboot anomaly 432
20371
20372 Workaround anomaly 432:
20373 The bfrom_SysControl() firmware function does not clear the SIC_IWR1
20374 register before executing the PLL programming sequence. Therefore, any
20375 interrupt enabled in the SIC_IWR1 register prior to the call to
20376 bfrom_SysControl() can prematurely terminate the idle sequence required
20377 for the PLL to relock properly. SIC_IWR0 is properly handled.
20378
20379 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20380
20381 commit 7e1d212b6da492c6ea32c62af92e185284f41291
20382 Author: Mike Frysinger <vapier@gentoo.org>
20383 Date: Sat Oct 18 04:04:49 2008 -0400
20384
20385 Blackfin: kill off LDR jump block
20386
20387 The Boot ROM uses EVT1 as the entry point so set that rather than having
20388 to use a tiny jump block in the default EVT1 location.
20389
20390 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20391
20392 commit a75fa148d60b1975403441e45565621bba50d2d9
20393 Author: Mike Frysinger <vapier@gentoo.org>
20394 Date: Tue Jan 6 10:00:48 2009 -0500
20395
20396 Blackfin: simplify symbol_lookup() a bit
20397
20398 No need to skip a byte as the symbol table handles this.
20399
20400 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20401
20402 commit 59f0978a7e78d20277ddbde7caf0ea877f3cfd98
20403 Author: Mike Frysinger <vapier@gentoo.org>
20404 Date: Sat Feb 7 05:43:21 2009 -0500
20405
20406 Blackfin: fix SIC_RVECT definition: it is 16bits, not 32bits
20407
20408 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20409
20410 commit 58130f8920151d9e8942bbdf3388f2defb47e415
20411 Author: Mike Frysinger <vapier@gentoo.org>
20412 Date: Sat Feb 7 05:41:17 2009 -0500
20413
20414 Blackfin: drop SPORT_TX read helper macros
20415
20416 The SPORT_TX registers cannot be read (the hardware will trigger an error),
20417 so drop the read helper macros.
20418
20419 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20420
20421 commit 820b076c449688bcd4af6db5a33ae424d1a60d0e
20422 Author: Mike Frysinger <vapier@gentoo.org>
20423 Date: Sat Feb 7 05:25:35 2009 -0500
20424
20425 Blackfin: unify duplicate CPU port definitions
20426
20427 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20428
20429 commit 744fd240d181b0b05b1436e1b655c9a62526c752
20430 Author: Mike Frysinger <vapier@gentoo.org>
20431 Date: Fri Feb 6 00:59:50 2009 -0500
20432
20433 Blackfin: drop now-unused CONFIG_SYS_BFIN_CMD_XXX
20434
20435 With the new CONFIG_XXX system and CONFIG_CMD_XXX handling, these defines
20436 are no longer used/needed.
20437
20438 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20439
20440 commit 45c48953e8a4038bd49c46813fcff5a207867ae4
20441 Author: Mike Frysinger <vapier@gentoo.org>
20442 Date: Mon Oct 6 04:01:26 2008 -0400
20443
20444 Blackfin: print out Flash: before checking it
20445
20446 If there is some problem in the flash init/checking code, it's nicer to see
20447 the message "Flash:" before crashing. This way the source of the problem
20448 is a bit more straightforward.
20449
20450 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20451
20452 commit 1c7a79a04eb916f685f7275520b5eea6968a1559
20453 Author: Mike Frysinger <vapier@gentoo.org>
20454 Date: Thu Aug 7 15:33:09 2008 -0400
20455
20456 Blackfin: safely flush data caches when in writeback mode
20457
20458 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20459
20460 commit c06f2b13022703611bc3e512bd34f9014a46f448
20461 Author: Mike Frysinger <vapier@gentoo.org>
20462 Date: Thu Aug 7 13:21:48 2008 -0400
20463
20464 Blackfin: update lockbox api according to latest documentation
20465
20466 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20467
20468 commit 2decc2a8d17a5397cb5956e46c8466c736e305a2
20469 Author: Mike Frysinger <vapier@gentoo.org>
20470 Date: Sat Oct 11 21:49:06 2008 -0400
20471
20472 Blackfin: mark bfin_reset static
20473
20474 The function is only used locally, so mark it static.
20475
20476 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20477
20478 commit 974473caa732f63312687ef2bd2d22dad8e99b9a
20479 Author: Sonic Zhang <Sonic.Zhang@analog.com>
20480 Date: Fri Mar 20 19:28:20 2009 -0400
20481
20482 Blackfin: spi: there is no PORTJ_FER MMR on BF537
20483
20484 Since the PORTJ on the BF537 is peripheral-only (no GPIO functionality),
20485 then there is no PORTJ_FER register for us to worry about.
20486
20487 Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
20488 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20489
20490 commit e82b762f293debc53c5afa90f37264f6b07520f9
20491 Author: Mike Frysinger <vapier@gentoo.org>
20492 Date: Tue Mar 17 13:58:23 2009 -0400
20493
20494 Blackfin: fix jtag console tstc
20495
20496 The jtag tstc operation was checking the hardware to see if data is
20497 available from it (which is fine for the jtag getc operation), but the
20498 higher layers need to know whether any data is available. Since we have
20499 to read up to 4 bytes at a time from the hardware, the higher layers need
20500 to know they can consume the cached bytes as well.
20501
20502 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20503
20504 commit bc683f58b1f1d8d20546fe019483967a51a49df1
20505 Author: Mike Frysinger <vapier@gentoo.org>
20506 Date: Sun Feb 22 16:23:41 2009 -0500
20507
20508 Blackfin: bf537-stamp: move CONFIG_POST handling to COBJS-$(...)
20509
20510 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20511
20512 commit 8996d1608acb8f59fcb186dc7ed7d87f8fee1297
20513 Author: Mike Frysinger <vapier@gentoo.org>
20514 Date: Sun Feb 22 16:02:27 2009 -0500
20515
20516 Blackfin: unify net-related init code
20517
20518 Unify all of the net-related init code in the common Blackfin board init
20519 code to clean up the ifdef mess a bit.
20520
20521 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20522
20523 commit c6ea30e52ea82af4858d2b6f99e0fd2ea276d657
20524 Author: Mike Frysinger <vapier@gentoo.org>
20525 Date: Wed Feb 18 12:51:48 2009 -0500
20526
20527 Blackfin: fix SWRST/SYSCR register sizes
20528
20529 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20530
20531 commit a9d6777d39154978b9ef9c682b2627a3480b194c
20532 Author: Mike Frysinger <vapier@gentoo.org>
20533 Date: Wed Feb 18 12:51:31 2009 -0500
20534
20535 Blackfin: update anomaly lists
20536
20537 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20538
20539 commit 4d7c32dad2e787f890ebcd51bfb723a126913c90
20540 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20541 Date: Thu Mar 19 18:31:38 2009 +0100
20542
20543 avr32: fix cacheflush.h location introducted by d8f2aa3298610b
20544
20545 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20546 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20547
20548 commit 3a3baf3ee61e6b28af3b49ebabc9ab4f6015aa48
20549 Author: Eric Schumann <E.Schumann@phytec.de>
20550 Date: Sat Mar 21 09:59:34 2009 -0400
20551
20552 Make flash protection work, when the environment is in EEPROM
20553
20554 On the pcm030 the environment is located in the onboard EEPROM. But we want
20555 to handle flash sector protection in a safe manner. So we must read the
20556 unlock environment variable from EEPROM instead from flash.
20557
20558 This patch is required as long the evironment is saved into the EEPROM.
20559
20560 Stefan: Additional change as suggested by Wolfgang, use bigger char array
20561 (instead of 4).
20562
20563 Signed-off-by: Eric Schumann <E.Schumann@phytec.de>
20564 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
20565 Acked-by: Wolfgang Denk <wd@denx.de>
20566 Signed-off-by: Stefan Roese <sr@denx.de>
20567
20568 commit de3ce8c59f48f99779d7d7379a5432ded12ec06c
20569 Author: Jon Smirl <jonsmirl@gmail.com>
20570 Date: Sat Mar 21 11:17:56 2009 -0400
20571
20572 Add define for mpc5200 CDM_CLK_ENA
20573
20574 Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
20575
20576 commit df486b1fa3f750b153eac7daa0b3bf1f594e5098
20577 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
20578 Date: Sun Mar 22 14:48:16 2009 +0100
20579
20580 at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC.
20581
20582 AT91sam9g20 is an evolution of the at91sam9260 with a faster clock speed.
20583
20584 The AT91SAM9G20-EK board is an updated revision of the AT91SAM9260-EK board.
20585 It is essentially the same, with a few minor differences.
20586
20587 Here is the chip page on Atmel website:
20588 http://www.atmel.com/dyn/products/product_card.asp?part_id=4337
20589
20590 Signed-off-by: Justin Waters <justin.waters@timesys.com>
20591 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
20592 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20593
20594 commit 118d168035cc93f586da4812c89cb153eb9f4243
20595 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20596 Date: Sun Mar 22 14:28:14 2009 +0100
20597
20598 cmc_pu2: fix implicit declaration of function 'eth_setenv_enetaddr'
20599
20600 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20601
20602 commit 176c4a982c6531f96426afaa1126cf9a5e2d5e03
20603 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20604 Date: Sun Mar 22 14:28:13 2009 +0100
20605
20606 cmc_pu2: fix misc_init_r prototype
20607
20608 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20609
20610 commit 53158aea995221706b42c7bad9f717b31ae20414
20611 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20612 Date: Sun Jan 11 03:32:01 2009 +0100
20613
20614 at91sam9xeek: fix soc name
20615
20616 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20617
20618 commit 74c076d6c33d6d42ab065541a38383587879e7b7
20619 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20620 Date: Sun Mar 22 10:22:34 2009 +0100
20621
20622 at91sam9/at91cap: move nand drivers to drivers/mtd/nand
20623
20624 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20625
20626 commit 163966087d62680547f188a93c61d01c8155254e
20627 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20628 Date: Sat Mar 21 21:08:01 2009 +0100
20629
20630 atmel/at91/boards: compile dataflash partition only when dataflash is
20631
20632 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20633
20634 commit e2c0476f958f8e0b269a1118f4ba4a5cd475aa56
20635 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20636 Date: Sat Mar 21 21:08:00 2009 +0100
20637
20638 at91sam9/at91cap: move common macb initialisation to cpu
20639
20640 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20641
20642 commit f3f91f886bc8927fd692ac411b7423a87ffec532
20643 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20644 Date: Sat Mar 21 21:08:00 2009 +0100
20645
20646 at91sam9/at91cap: move common usb host initialisation to cpu
20647
20648 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20649
20650 commit a484b00b86e72ac6da6ee4fce13dbc6b256672fe
20651 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20652 Date: Sat Mar 21 21:08:00 2009 +0100
20653
20654 at91sam9/at91cap: move common led management to cpu
20655
20656 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20657
20658 commit 7ebafb7ec1a0285af8380623c009576f92583b98
20659 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20660 Date: Sat Mar 21 21:07:59 2009 +0100
20661
20662 at91sam9/at91cap: move common spi initialisation to cpu
20663
20664 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20665
20666 commit 1332a2a0694c8e10a5bade397cf83645b2c3fd7e
20667 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20668 Date: Sat Mar 21 21:07:59 2009 +0100
20669
20670 at91sam9/at91cap: move common serial initialisation to cpu
20671
20672 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20673
20674 commit e60beb13cf0135dc71c541021487b5ccc4d269cb
20675 Author: Wolfgang Denk <wd@denx.de>
20676 Date: Sat Mar 21 22:04:41 2009 +0100
20677
20678 Prepare 2009.03
20679
20680 Update CHANGELOG
20681
20682 Signed-off-by: Wolfgang Denk <wd@denx.de>
20683
20684 commit 9e78dae2b276c5bf9ab92cd85173f6cb92b1b7d5
20685 Author: Vivek Kutal <vivek.kutal@azingo.com>
20686 Date: Mon Feb 23 21:35:11 2009 +0530
20687
20688 Replaced endpoint numbers with appropriate macros in usbtty.c.
20689
20690 Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
20691 Signed-off-by: Remy Bohmer <linux@bohmer.net>
20692
20693 commit faac4fd852e39cb1d7a740801b060e41aeacef1f
20694 Author: Michael Lawnick <ml.lawnick@gmx.de>
20695 Date: Thu Mar 19 10:06:41 2009 +0100
20696
20697 UBIFS: Missing offset relocation for compressor 'none'
20698
20699 On systems where U-Boot is linked to another address than it really lays
20700 (e.g. backup image), calls via function pointers must be fixed with a
20701 '+= gd->reloc_off'.
20702 This was not done for none_compr in ubifs_compressors_init() what leads
20703 to system crash on ubifsmount command.
20704
20705 Signed-off-by: Michael Lawnick <ml.lawnick@gmx.de>
20706 Acked-by: Stefan Roese <sr@denx.de>
20707
20708 commit ce6d0c8de031f345bde745f3b855082adf1c4e45
20709 Author: Stefan Roese <sr@denx.de>
20710 Date: Thu Mar 19 15:35:50 2009 +0100
20711
20712 UBIFS: Add UBIFS commands
20713
20714 This patchset adds these UBIFS related commands:
20715
20716 - ubifsmount
20717 Mount an UBIFS volume
20718
20719 - ubifsls
20720 List a directory of the mounted UBIFS volume
20721
20722 - ubifsload
20723 Load a file from the mounted UBIFS volume to memory
20724
20725 Signed-off-by: Stefan Roese <sr@denx.de>
20726
20727 commit 9eefe2a2b37a838558e3d213a9f5519503d0c180
20728 Author: Stefan Roese <sr@denx.de>
20729 Date: Thu Mar 19 15:35:05 2009 +0100
20730
20731 UBIFS: Implement read-only UBIFS support in U-Boot
20732
20733 The U-Boot UBIFS implementation is largely a direct copy from the current
20734 Linux version (2.6.29-rc6). As already done in the UBI version we have an
20735 "abstraction layer" to redefine or remove some OS calls (e.g. mutex_lock()
20736 ...). This makes it possible to use the original Linux code with very
20737 little changes. And by this we can better update to later Linux versions.
20738
20739 I removed some of the Linux features that are not used in the U-Boot
20740 version (e.g. garbage-collection, write support).
20741
20742 Signed-off-by: Stefan Roese <sr@denx.de>
20743 CC: Artem Bityutskiy <dedekind@infradead.org>
20744 CC: Adrian Hunter <ext-Adrian.Hunter@nokia.com>
20745
20746 commit b1b4e89a0f3b75854c39a62cae41bad56d210adf
20747 Author: Stefan Roese <sr@denx.de>
20748 Date: Thu Mar 19 15:34:56 2009 +0100
20749
20750 Add LZO decompressor support
20751
20752 This patch adds LZO decompression support to U-Boot. It is needed for
20753 the upcoming UBIFS support, since UBIFS uses LZO as default compressor/
20754 decompressor. Since we only support read-only in UBIFS, only the
20755 decompressor is needed.
20756
20757 All this is copied with minor changes from the current Linux kernel
20758 version (2.6.28-rc8).
20759
20760 This patch only implements this LZO decompressor support for PPC.
20761 Other platforms using UBIFS will have to add the required
20762 "include/asm/unaligned.h" as well. It should be fairly easy to copy this
20763 from the Linux source tree as I have done it for PPC in this patch.
20764
20765 Signed-off-by: Stefan Roese <sr@denx.de>
20766
20767 commit 68d7d65100e84df00bca971c114092731b441090
20768 Author: Stefan Roese <sr@denx.de>
20769 Date: Thu Mar 19 13:30:36 2009 +0100
20770
20771 Separate mtdparts command from jffs2
20772
20773 Currently the mtdparts commands are included in the jffs2 command support.
20774 This doesn't make sense anymore since other commands (e.g. UBI) use this
20775 infrastructure as well now. This patch separates the mtdparts commands from
20776 the jffs2 commands making it possible to only select mtdparts when no JFFS2
20777 support is needed.
20778
20779 Signed-off-by: Stefan Roese <sr@denx.de>
20780 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20781
20782 commit 02a301cd5087eaffdf456e0a5cec1100c4d9a398
20783 Author: Stefan Roese <sr@denx.de>
20784 Date: Wed Feb 25 12:11:15 2009 +0100
20785
20786 powerpc: Only use eth_getenv_enetaddr() if networking is enabled
20787
20788 Signed-off-by: Stefan Roese <sr@denx.de>
20789
20790 commit 5c4fa9b474af95d60f019ec6369cbe77b9dab4b5
20791 Author: Grzegorz Bernacki <gjb@semihalf.com>
20792 Date: Tue Mar 17 10:06:40 2009 +0100
20793
20794 Add support for the digsy MTC board.
20795
20796 This is the InterControl custom device based on the MPC5200B chip.
20797
20798 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
20799
20800 commit ff7dc067369e30066744f096995aef7d97574d15
20801 Author: Stefan Roese <sr@denx.de>
20802 Date: Mon Feb 23 16:52:36 2009 +0100
20803
20804 powerpc: Fix compilation warning in board.c
20805
20806 Fix this warning:
20807
20808 board.c: In function 'board_init_r':
20809 board.c:653: warning: unused variable 'i'
20810 board.c:651: warning: unused variable 'e'
20811
20812 Signed-off-by: Stefan Roese <sr@denx.de>
20813
20814 commit 9cd690160d3ce1a7fb4ceeee6c99cedb1ac1d49c
20815 Author: Stefan Roese <sr@denx.de>
20816 Date: Mon Feb 23 16:42:51 2009 +0100
20817
20818 ppc4xx: Don't write the MAC address into the internal SoC registers
20819
20820 Remove this code. It's not needed. The 4xx EMAC driver stores the MAC
20821 addresses into the SoC registers instead.
20822
20823 Signed-off-by: Stefan Roese <sr@denx.de>
20824
20825 commit bb57ad4be76d0e2e7f9ec56678235cc9872ff40f
20826 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20827 Date: Fri Feb 20 10:19:19 2009 +0100
20828
20829 ppc4xx: Use correct io accessors for esd 405/440 boards
20830
20831 This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
20832 macros. Also volatile pointer references are replaced by the
20833 new accessors.
20834
20835 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
20836 Signed-off-by: Stefan Roese <sr@denx.de>
20837
20838 commit 049216f045fd8e0f45bcef121c2bb1c7d3de6988
20839 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20840 Date: Fri Feb 20 10:19:18 2009 +0100
20841
20842 ppc4xx: Use correct io accessors for esd 405 boards
20843
20844 This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
20845 macros. Also volatile pointer references are replaced by the
20846 new accessors.
20847
20848 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
20849 Signed-off-by: Stefan Roese <sr@denx.de>
20850
20851 commit a59205d1519375d027f97a545ad642ab20fce6f8
20852 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20853 Date: Fri Feb 20 10:19:17 2009 +0100
20854
20855 ppc4xx: Cleanup linker scripts of esd 4xx boards
20856
20857 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
20858 Signed-off-by: Stefan Roese <sr@denx.de>
20859
20860 commit 2f103ee284e68934a648732db5e0b6ceb4a1ed8f
20861 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20862 Date: Fri Feb 20 10:19:16 2009 +0100
20863
20864 ppc4xx: Update TEXT_BASE for DASA_SIM boards
20865
20866 Fix building DASA_SIM boards by increasing U-Boot's size in flash.
20867
20868 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
20869 Signed-off-by: Stefan Roese <sr@denx.de>
20870
20871 commit 09db8f4de6805f1dde510c167f20e56a5405d29e
20872 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20873 Date: Fri Feb 20 10:19:15 2009 +0100
20874
20875 ppc4xx: DU405 maintenance fix
20876
20877 -strip unused features
20878 -fix resetting phy
20879
20880 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
20881 Signed-off-by: Stefan Roese <sr@denx.de>
20882
20883 commit 75511b47ac2647be48218dbb93af05b21f404f67
20884 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20885 Date: Fri Feb 20 10:19:14 2009 +0100
20886
20887 ppc4xx: Abort autoboot only by space key on CPCI405 boards
20888
20889 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20890 Signed-off-by: Stefan Roese <sr@denx.de>
20891
20892 commit e17ee157ca9ff0d4cc5841d06c4b70c1603df29c
20893 Author: Graeme Russ <graeme.russ@gmail.com>
20894 Date: Tue Feb 24 21:14:56 2009 +1100
20895
20896 Add basic relocation to i386 port
20897
20898 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
20899
20900 commit 8c63d47651f77d9fb887cad433370b866eb0a193
20901 Author: Graeme Russ <graeme.russ@gmail.com>
20902 Date: Tue Feb 24 21:14:45 2009 +1100
20903
20904 Implement SC520 timers
20905
20906 Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
20907
20908 commit 6d7f610b09f813b1239eedcbfe921cfd439aea25
20909 Author: Graeme Russ <graeme.russ@gmail.com>
20910 Date: Tue Feb 24 21:14:32 2009 +1100
20911
20912 Factor out SC520 sub-features
20913
20914 Moved sub-features of the SC520 code which is currently selectively compiled
20915 using #ifdef out of sc520.c into individual files selectively compiled via
20916 the makefile
20917
20918 Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
20919
20920 commit abf0cd3dff227cfb6e82ad13be62e28e6e89d5df
20921 Author: Graeme Russ <graeme.russ@gmail.com>
20922 Date: Tue Feb 24 21:13:40 2009 +1100
20923
20924 Rewrite i386 interrupt handling
20925
20926 Rewrite interrupt handling functionality for the i386 port. Separated
20927 functionality into separate CPU and Architecture components.
20928
20929 It appears as if the i386 interrupt handler functionality was intended
20930 to allow multiple handlers to be installed for a given interrupt.
20931 Unfortunately, this functionality was not fully implemented and also
20932 had the problem that irq_free_handler() does not allow the passing
20933 of the handler function pointer and therefore could never be used to
20934 free specific handlers that had been installed for a given IRQ.
20935
20936 There were also various issues with array bounds not being fully
20937 tested.
20938
20939 I had two objectives in mind for the new implementation:
20940
20941 1) Keep the implementation as similar as possible to existing
20942 implementations. To that end, I have used the leon2/3
20943 implementations as the reference
20944
20945 2) Seperate CPU and Architecture specific elements. All specific i386
20946 interrupt functionality is now in cpu/i386/ with the high level
20947 API and architecture specific code in lib_i386. Functionality
20948 specific to the PC/AT architecture (i.e. cascaded i8259 PICs) has
20949 been further split out into an individual file to allow for the
20950 implementation of the PIC architecture of the SC520 CPU (supports
20951 more IRQs)
20952
20953 Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
20954
20955 commit ece444b42b71eb5bce34a24ec584573b3c8c4a98
20956 Author: Graeme Russ <graeme.russ@gmail.com>
20957 Date: Tue Feb 24 21:12:35 2009 +1100
20958
20959 Move ali512x.h
20960
20961 Moved ali512x.h from include/asm-i386/ic/ to /include
20962
20963 Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
20964
20965 commit 6d83e3ac61dcdbcb7f04664309a9689fe01c5704
20966 Author: Graeme Russ <graeme.russ@gmail.com>
20967 Date: Tue Feb 24 21:12:20 2009 +1100
20968
20969 Rename SC520 Configuration Options
20970
20971 Options are now all uniformly CONFIG_SYS_SC520_<option>
20972
20973 Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
20974
20975 commit f62fb99941c625605aa16a0097b396a5c16d2c88
20976 Author: Trent Piepho <xyzzy@speakeasy.org>
20977 Date: Wed Feb 18 15:22:05 2009 -0800
20978
20979 Fix all linker script to handle all rodata sections
20980
20981 A recent gcc added a new unaligned rodata section called '.rodata.str1.1',
20982 which needs to be added the the linker script. Instead of just adding this
20983 one section, we use a wildcard ".rodata*" to get all rodata linker section
20984 gcc has now and might add in the future.
20985
20986 However, '*(.rodata*)' by itself will result in sub-optimal section
20987 ordering. The sections will be sorted by object file, which causes extra
20988 padding between the unaligned rodata.str.1.1 of one object file and the
20989 aligned rodata of the next object file. This is easy to fix by using the
20990 SORT_BY_ALIGNMENT command.
20991
20992 This patch has not be tested one most of the boards modified. Some boards
20993 have a linker script that looks something like this:
20994
20995 *(.text)
20996 . = ALIGN(16);
20997 *(.rodata)
20998 *(.rodata.str1.4)
20999 *(.eh_frame)
21000
21001 I change this to:
21002
21003 *(.text)
21004 . = ALIGN(16);
21005 *(.eh_frame)
21006 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
21007
21008 This means the start of rodata will no longer be 16 bytes aligned.
21009 However, the boundary between text and rodata/eh_frame is still aligned to
21010 16 bytes, which is what I think the real purpose of the ALIGN call is.
21011
21012 Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
21013
21014 commit 566b652c7cdb0e5e0529bb3d1eaffbd2bf45a032
21015 Author: Mike Frysinger <vapier@gentoo.org>
21016 Date: Wed Feb 11 18:26:08 2009 -0500
21017
21018 remove bi_enet*addr from global data for all arches
21019
21020 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21021 CC: Ben Warren <biggerbadderben@gmail.com>
21022 CC: Daniel Hellstrom <daniel@gaisler.com>
21023 CC: Michal Simek <monstr@seznam.cz>
21024 CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21025 CC: Scott McNutt <smcnutt@psyent.com>
21026 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21027
21028 commit eb85aa594c1b57a1e3be9689b65171a137a36432
21029 Author: Mike Frysinger <vapier@gentoo.org>
21030 Date: Wed Feb 11 20:07:19 2009 -0500
21031
21032 ppc: mark global bi_enet*addr as legacy
21033
21034 The environment is the canonical storage location of the mac address, so
21035 we're killing off the global data location and moving everything to
21036 querying the env directly.
21037
21038 In the ppc case, these things are part of the legacy ABI, so keep them
21039 around but mark them as legacy so no new code will touch them.
21040
21041 Also stop calling load_sernum_ethaddr() since all boards now implement
21042 this as a stub.
21043
21044 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21045 CC: Ben Warren <biggerbadderben@gmail.com>
21046
21047 commit 9c150102bc1de375d36d97a1cc2dd0e9639b15df
21048 Author: Mike Frysinger <vapier@gentoo.org>
21049 Date: Wed Feb 11 20:09:52 2009 -0500
21050
21051 boards: get mac address from env and move load_sernum_ethaddr() to board init
21052
21053 The environment is the canonical storage location of the mac address, so
21054 we're killing off the global data location and moving everything to
21055 querying the env directly.
21056
21057 Rather than have common ppc code call a board-specific function like
21058 load_sernum_ethaddr(), have each board call it in its own board-specific
21059 misc_init_r() function.
21060
21061 The boards that get converted here are:
21062 - kup4k/kup4x
21063 - pcs440ep
21064 - tqm8xx
21065
21066 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21067 CC: Ben Warren <biggerbadderben@gmail.com>
21068 CC: Stefan Roese <sr@denx.de>
21069
21070 commit 92b50ffef978f05858a0ff4cbe88430bc51a28a2
21071 Author: Mike Frysinger <vapier@gentoo.org>
21072 Date: Wed Feb 11 19:55:01 2009 -0500
21073
21074 cmc_pu2: get mac address from environment
21075
21076 The environment is the canonical storage location of the mac address, so
21077 we're killing off the global data location and moving everything to
21078 querying the env directly.
21079
21080 Also rename load_sernum_ethaddr() to misc_init_r() so we don't need to
21081 handle this board specially in common ARM code.
21082
21083 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21084 CC: Ben Warren <biggerbadderben@gmail.com>
21085
21086 commit d8d21e699d7fcfb6ab11635110266dd09b7edc62
21087 Author: Mike Frysinger <vapier@gentoo.org>
21088 Date: Mon Feb 16 18:03:14 2009 -0500
21089
21090 boards: move board_get_enetaddr() into board-specific init
21091
21092 The environment is the canonical storage location of the mac address, so
21093 we're killing off the global data location and moving everything to
21094 querying the env directly.
21095
21096 Rather than have the common ppc code have board-specific hooks, move the
21097 board_get_enetaddr() function into the board-specific init functions.
21098
21099 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21100 CC: Ben Warren <biggerbadderben@gmail.com>
21101
21102 commit f11e6ff5b1859d9213f0d501b3309e065f487543
21103 Author: Mike Frysinger <vapier@gentoo.org>
21104 Date: Wed Feb 11 19:39:55 2009 -0500
21105
21106 arm: get mac address from environment
21107
21108 The environment is the canonical storage location of the mac address, so
21109 we're killing off the global data location and moving everything to
21110 querying the env directly.
21111
21112 Some warts are remaining and should be killed off (by moving the func to
21113 the appropriate board init code):
21114 - davinci_eth_set_mac_addr
21115 - cs8900_get_enetaddr
21116 - smc_set_mac_addr
21117
21118 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21119 CC: Ben Warren <biggerbadderben@gmail.com>
21120
21121 commit 0107cf66f7346e8c7d6cf0fe99d2f265134afd59
21122 Author: Mike Frysinger <vapier@gentoo.org>
21123 Date: Wed Feb 11 19:36:20 2009 -0500
21124
21125 nx823: get mac address from environment
21126
21127 The environment is the canonical storage location of the mac address, so
21128 we're killing off the global data location and moving everything to
21129 querying the env directly.
21130
21131 For the nx823, the serial number is moved out of load_sernum_ethaddr() and
21132 into misc_init_r() as is the env setup. This lets us kill off the former
21133 function in the process.
21134
21135 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21136 CC: Ben Warren <biggerbadderben@gmail.com>
21137
21138 commit 19b5b533ccd522abeb501d510750693c35e20456
21139 Author: Mike Frysinger <vapier@gentoo.org>
21140 Date: Wed Feb 11 18:27:18 2009 -0500
21141
21142 lib_*/board.c: do not initialize bi_enet*addr in global data
21143
21144 Since everyone is using the environment for mac address storage, there is
21145 no point in seeding the global data.
21146
21147 The arches that are converted here:
21148 i386
21149 m68k
21150 microblaze
21151 mips
21152 nios
21153 nios2
21154 sh
21155 sparc
21156
21157 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21158 CC: Ben Warren <biggerbadderben@gmail.com>
21159 CC: Daniel Hellstrom <daniel@gaisler.com>
21160 CC: Michal Simek <monstr@seznam.cz>
21161 CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21162 CC: Scott McNutt <smcnutt@psyent.com>
21163 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21164
21165 commit 740e8ba7d475c49c1b76058e1bf354e376b5c4e0
21166 Author: Mike Frysinger <vapier@gentoo.org>
21167 Date: Wed Feb 11 19:19:54 2009 -0500
21168
21169 npe: get mac address from environment
21170
21171 The environment is the canonical storage location of the mac address, so
21172 we're killing off the global data location and moving everything to
21173 querying the env directly.
21174
21175 The resulting code can also be simplified even further.
21176
21177 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21178 CC: Stefan Roese <sr@denx.de>
21179 CC: Ben Warren <biggerbadderben@gmail.com>
21180
21181 commit 6bacfa6a8e9b264d37c1262fc1f3e948d1feab81
21182 Author: Mike Frysinger <vapier@gentoo.org>
21183 Date: Wed Feb 11 19:18:41 2009 -0500
21184
21185 cpu/: get mac address from environment
21186
21187 The environment is the canonical storage location of the mac address, so
21188 we're killing off the global data location and moving everything to
21189 querying the env directly.
21190
21191 The cpus that get converted here:
21192 at91rm9200
21193 mpc512x
21194 mpc5xxx
21195 mpc8260
21196 mpc8xx
21197 ppc4xx
21198
21199 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21200 CC: Ben Warren <biggerbadderben@gmail.com>
21201 CC: John Rigby <jrigby@freescale.com>
21202 CC: Stefan Roese <sr@denx.de>
21203
21204 commit 03f3d8d3b39cf85c0ce7ca903b436701e8aa610b
21205 Author: Mike Frysinger <vapier@gentoo.org>
21206 Date: Wed Feb 11 19:09:54 2009 -0500
21207
21208 lan91c96/smc91111/smc911x: get mac address from environment
21209
21210 The environment is the canonical storage location of the mac address, so
21211 we're killing off the global data location and moving everything to
21212 querying the env directly.
21213
21214 Also, do not bother checking the EEPROM if the env is setup. This
21215 simplifies the code greatly.
21216
21217 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21218 Signed-off-by: Wolfgang Dnek <wd@denx.de>
21219 CC: Ben Warren <biggerbadderben@gmail.com>
21220 CC: Rolf Offermanns <rof@sysgo.de>
21221 CC: Erik Stahlman <erik@vt.edu>
21222 CC: Daris A Nevil <dnevil@snmc.com>
21223 CC: Sascha Hauer <s.hauer@pengutronix.de>
21224
21225 commit c527ce92511cbf723c2ca77bee1cf9ecf83dac81
21226 Author: Mike Frysinger <vapier@gentoo.org>
21227 Date: Wed Feb 11 19:14:09 2009 -0500
21228
21229 sh_eth: get mac address from environment
21230
21231 The environment is the canonical storage location of the mac address, so
21232 we're killing off the global data location and moving everything to
21233 querying the env directly.
21234
21235 The sh_eth driver can also be simplified a bit by using enetaddr member of
21236 the eth_device structure.
21237
21238 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21239 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21240 CC: Carlos Munoz <carlos@kenati.com>
21241 CC: Ben Warren <biggerbadderben@gmail.com>
21242
21243 commit 0a5238cea90665c230297a8fd77bb0b3b61ca177
21244 Author: Mike Frysinger <vapier@gentoo.org>
21245 Date: Wed Feb 11 19:06:09 2009 -0500
21246
21247 cs8900: get mac address from environment
21248
21249 The environment is the canonical storage location of the mac address, so
21250 we're killing off the global data location and moving everything to
21251 querying the env directly.
21252
21253 The cs8900 driver also changes slightly in that the hardware is not
21254 consulted if the mac address in the env is sane.
21255
21256 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21257 CC: Marius Groeger <mgroeger@sysgo.de>
21258 CC: Ben Warren <biggerbadderben@gmail.com>
21259
21260 commit c4b8762f11d337e6a9d90c227b2871d65d372469
21261 Author: Mike Frysinger <vapier@gentoo.org>
21262 Date: Wed Feb 11 19:04:25 2009 -0500
21263
21264 bcm570x: get mac address from environment
21265
21266 The environment is the canonical storage location of the mac address, so
21267 we're killing off the global data location and moving everything to
21268 querying the env directly.
21269
21270 Since the address is in the PLM_DEVICE_BLOCK structure already, there is
21271 no need to pass the NodeAddress as a second parameter. So drop the second
21272 argument to the LM_SetMacAddress() function (and update the tigon3 driver
21273 accordingly).
21274
21275 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21276 CC: Ben Warren <biggerbadderben@gmail.com>
21277
21278 commit d3f871482f06f6a4eaf4a3fafde84846bad87b4f
21279 Author: Mike Frysinger <vapier@gentoo.org>
21280 Date: Wed Feb 11 19:01:26 2009 -0500
21281
21282 drivers/net/: get mac address from environment
21283
21284 The environment is the canonical storage location of the mac address, so
21285 we're killing off the global data location and moving everything to
21286 querying the env directly.
21287
21288 The drivers that get converted here:
21289 3c589
21290 4xx_enet
21291 dc2114x
21292 dm9000x
21293 enc28j60
21294 fsl_mcdmafec
21295 ks8695eth
21296 mcffec
21297 rtl8019
21298 rtl8169
21299 s3c4510b_eth
21300 xilinx_emac
21301 xilinx_emaclite
21302
21303 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21304 CC: Ben Warren <biggerbadderben@gmail.com>
21305 CC: Rolf Offermanns <rof@sysgo.de>
21306 CC: Stefan Roese <sr@denx.de>
21307 CC: Sascha Hauer <saschahauer@web.de>
21308 CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21309 CC: Greg Ungerer <greg.ungerer@opengear.com>
21310 CC: Xue Ligong <lgxue@hotmail.com>
21311 CC: Masami Komiya <mkomiya@sonare.it>
21312 CC: Curt Brune <curt@cucy.com>
21313 CC: Michal SIMEK <monstr@monstr.eu>
21314
21315 commit b6b4625d175019e387e5b0f65a17322a78f6bb90
21316 Author: Mike Frysinger <vapier@gentoo.org>
21317 Date: Wed Feb 11 18:38:38 2009 -0500
21318
21319 boards: get mac address from environment
21320
21321 The boards that get converted here to use the environment for the mac
21322 address rather than global data:
21323 debris
21324 mgcoge
21325 mgsuvd
21326 muas3001
21327 netstal
21328 pn62
21329 sixnet
21330 vcma9
21331 xilinx (the ones that use xilinx_enet)
21332
21333 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21334 CC: Ben Warren <biggerbadderben@gmail.com>
21335 CC: Sangmoon Kim <dogoil@etinsys.com>
21336 CC: Heiko Schocher <hs@denx.de>
21337 CC: David Mueller <d.mueller@elsoft.ch>
21338 CC: Niklaus Giger <niklaus.giger@netstal.com>
21339 CC: Wolfgang Grandegger <wg@denx.de>
21340 CC: Dave Ellis <DGE@sixnetio.com>
21341 CC: Ricardo Ribalda <ricardo.ribalda@uam.es>
21342
21343 commit 06a0c4381a65ed500c816a05b9ae7b207c3b1d4b
21344 Author: Mike Frysinger <vapier@gentoo.org>
21345 Date: Wed Feb 11 18:36:45 2009 -0500
21346
21347 AmigaOneG3SE/enet: get mac address from environment
21348
21349 Always use the MAC address that is stored in the environment first before
21350 falling back to the ROM. This also cuts out any comparison steps: if the
21351 mac in the env is sane, the ROM is never consulted.
21352
21353 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21354 CC: Thomas Frieden <ThomasF@hyperion-entertainment.com>
21355 CC: Ben Warren <biggerbadderben@gmail.com>
21356
21357 commit 56b555a644f3cbb1b3929cb52b61d3ce483885f5
21358 Author: Mike Frysinger <vapier@gentoo.org>
21359 Date: Wed Feb 11 18:52:38 2009 -0500
21360
21361 nvedit: do not update global bi_enetaddr and do not call eth_set_enetaddr()
21362
21363 Since the ethernet layer handles updating of device addresses itself from
21364 the environment, there is no point in calling eth_set_enetaddr().
21365
21366 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21367 CC: Ben Warren <biggerbadderben@gmail.com>
21368
21369 commit 5013533467c1de731c2f0c9beb4b41ce3f07cbeb
21370 Author: Mike Frysinger <vapier@gentoo.org>
21371 Date: Wed Feb 11 18:54:07 2009 -0500
21372
21373 lynxkdi: get mac address from environment
21374
21375 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21376 CC: Ben Warren <biggerbadderben@gmail.com>
21377
21378 commit 62c93d92f1b6266b2f33c5f403931b51cbd2a246
21379 Author: Mike Frysinger <vapier@gentoo.org>
21380 Date: Wed Feb 11 18:51:43 2009 -0500
21381
21382 bootvx: get mac address from environment
21383
21384 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21385 CC: Niklaus Giger <niklaus.giger@member.fsf.org>
21386 CC: Ben Warren <biggerbadderben@gmail.com>
21387
21388 commit de2dff6ff89f98c6062f4d224fd434a3ede035d1
21389 Author: Mike Frysinger <vapier@gentoo.org>
21390 Date: Wed Feb 11 18:50:10 2009 -0500
21391
21392 bdinfo: get mac address from environment
21393
21394 Add a new print_eth() function to automate the eth*addr env var acquisition
21395 and display. Affects all arches.
21396
21397 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21398 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21399 CC: Scott McNutt <smcnutt@psyent.com>
21400 CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21401 CC: Michal Simek <monstr@seznam.cz>
21402 CC: Daniel Hellstrom <daniel@gaisler.com>
21403 CC: Ben Warren <biggerbadderben@gmail.com>
21404
21405 commit 95823ca0773356860e622ee3304a4b7cafcbf19a
21406 Author: Mike Frysinger <vapier@gentoo.org>
21407 Date: Wed Feb 11 18:23:48 2009 -0500
21408
21409 net: get mac address from environment and use eth util funcs
21410
21411 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21412 CC: Ben Warren <biggerbadderben@gmail.com>
21413
21414 commit 500b6c51e4c41f4562cb48344af98deb7e342731
21415 Author: Mike Frysinger <vapier@gentoo.org>
21416 Date: Mon Oct 13 15:06:25 2008 -0400
21417
21418 Blackfin: bfin_mac: force boards to setup the MAC themselves
21419
21420 Since the on-chip MAC does not have an eeprom or similar interface, force
21421 all Blackfin boards that use this driver to setup the board data with a
21422 proper MAC.
21423
21424 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21425 CC: Ben Warren <biggerbadderben@gmail.com>
21426
21427 commit 6ff4137f2ad640e4fc8ea1b0455161ddff1f6730
21428 Author: Mike Frysinger <vapier@gentoo.org>
21429 Date: Wed Feb 11 14:12:34 2009 -0500
21430
21431 doc/README.enetaddr: document proper MAC usage
21432
21433 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21434 CC: Ben Warren <biggerbadderben@gmail.com>
21435
21436 commit 3f6e6993e92fd0658da1746d1c84644612ee520b
21437 Author: Mike Frysinger <vapier@gentoo.org>
21438 Date: Thu Jan 29 19:43:44 2009 -0500
21439
21440 net: new utility functions for working with enetaddr's
21441
21442 Declare new utility functions for converting between the environment
21443 variables (eth*addr) and the binary MAC address representation. This way
21444 we can unify all the random places that already do this kind of thing.
21445
21446 The functions in question:
21447 eth_parse_enetaddr - "..." -> {...}
21448 eth_getenv_enetaddr - env -> {...}
21449 eth_setenv_enetaddr - {...} -> env
21450
21451 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21452 CC: Ben Warren <biggerbadderben@gmail.com>
21453
21454 commit b6446b67758ea1e41223f0782924bb73fd0a89d0
21455 Author: Mike Frysinger <vapier@gentoo.org>
21456 Date: Tue Feb 17 00:00:53 2009 -0500
21457
21458 convert print_IPaddr() to %pI4
21459
21460 Now that our printf functions support the %pI4 modifier like the kernel,
21461 let's drop the inflexible print_IPaddr() function and covert over to the
21462 %pI4 modifier.
21463
21464 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21465 CC: Ben Warren <biggerbadderben@gmail.com>
21466
21467 commit 6c6166f52983dac775e3852f9d0f49d033f27108
21468 Author: Mike Frysinger <vapier@gentoo.org>
21469 Date: Mon Feb 16 23:21:36 2009 -0500
21470
21471 vsprintf: pull updates from Linux kernel
21472
21473 This brings in support for the %p modifier which allows us to easily print
21474 out things like ip addresses, mac addresses, and pointers.
21475
21476 It also converts the rarely used 'q' length modifier to the common 'L'
21477 modifier when dealing with quad types.
21478
21479 While this new code is a bit larger (~1k .text), most of it should be made
21480 up by converting the existing ip/mac address code to use format modifiers.
21481
21482 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21483
21484 commit a43ea5cc6d612471fbc74f0a26b2bea5864aa1d6
21485 Author: Jon Smirl <jonsmirl@gmail.com>
21486 Date: Thu Mar 19 23:04:18 2009 -0400
21487
21488 .gitignore for generated files in api_examples directory
21489
21490 Add .gitignore for generated files in api_examples directory
21491
21492 Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
21493 Signed-off-by: Wolfgang Denk <wd@denx.de>
21494
21495 commit 40281a9ca21a6b6d7b996b4d4eeaa19026337231
21496 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21497 Date: Wed Mar 18 12:27:04 2009 +0900
21498
21499 net: sh_eth: Remove sh_eth_reset() from halt function
21500
21501 sh_eth_reset is function to reset Ether IP.
21502 The MAC address is stored in IP, but it is initialized by this function.
21503 OS (e.g. Linux Kernel) can not use this device when initialized.
21504 This revises this problem.
21505
21506 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21507
21508 commit f8853d105da7d69bc92a5b4578f9b85234e558ec
21509 Author: Anatolij Gustschin <agust@denx.de>
21510 Date: Fri Mar 20 12:45:50 2009 +0100
21511
21512 ppc4xx: Fix bug in PCI outbound map configuration for canyonlands
21513
21514 PCI outbound address map configuration doesn't match the
21515 PCI memory address range covered by appropriate TLB entry
21516 configuration for canyonlands causing machine check
21517 exceptions while accessing PCI memory regions. This patch
21518 provides a fix for this issue.
21519
21520 Kazuaki Ichinohe observed and reported this issue while
21521 testing display output with PCI ATI video card on canyonlands.
21522
21523 Signed-off-by: Anatolij Gustschin <agust@denx.de>
21524 Signed-off-by: Stefan Roese <sr@denx.de>
21525
21526 commit 7a88601a34132548c3c591ea87ab3468b51121b0
21527 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21528 Date: Fri Mar 6 10:09:37 2009 -0500
21529
21530 CFI: geometry reversal for STMicro M29W320DT
21531
21532 Follow up to the flash_fixup_stm to fix geometry reversal
21533 on STMicro M29W320ET flash chip. The M29W320DT has 4 erase region.
21534
21535 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21536 Signed-off-by: Stefan Roese <sr@denx.de>
21537
21538 commit 069f4364d807d7fdea3de7385ad2f8d83c587aec
21539 Author: Mike Frysinger <vapier@gentoo.org>
21540 Date: Wed Feb 25 17:29:40 2009 -0500
21541
21542 smc911x_eeprom: update register API
21543
21544 The smc911x driver changed the naming convention for its register funcs,
21545 so update the eeprom code accordingly.
21546
21547 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21548 CC: Ben Warren <biggerbadderben@gmail.com>
21549
21550 commit 6a397ef0e6c58caab8bf427d447714bc9b3bb9d4
21551 Author: Grzegorz Bernacki <gjb@semihalf.com>
21552 Date: Tue Mar 17 10:06:39 2009 +0100
21553
21554 mpc52xx: Get rid of board-specific #ifdef's in cpu/mpc5xxx/ide.c
21555
21556 Total5200 and digsy MTC use I2C port 2 pins as a ATA chip select.
21557 To avoid adding board-specific ifdefs to cpu/mpc5xxx/ide.c new
21558 define CONFIG_SYS_ATA_CS_ON_I2C2 was introduced. It is used by
21559 Total5200 and will be used by digsy MTC and other boards with
21560 ATA CS on I2C pins.
21561
21562 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
21563
21564 commit 1b6275dfb173bd2edb8f208dd050d6f47ae39654
21565 Author: Heiko Schocher <hs@denx.de>
21566 Date: Thu Mar 12 07:37:34 2009 +0100
21567
21568 8xx: add support for new keymile kmsupx4 board.
21569
21570 This patch adds support for the kmsupx4 board from Keymile,
21571 based on a Freescale MPC852T CPU
21572
21573 - serial console on SMC1
21574 - 32 MB SDRAM
21575 - 32 MB NOR Flash
21576 - Ethernet over SCC3
21577 - I2C Bitbang
21578
21579 Signed-off-by: Heiko Schocher <hs@denx.de>
21580
21581 commit d044954fe2a7e7a3dd104eb9c9d2104e38da2911
21582 Author: Heiko Schocher <hs@denx.de>
21583 Date: Thu Mar 12 07:37:28 2009 +0100
21584
21585 8xx, mgsuvd: rename board to a more generic name
21586
21587 renaming the "mgsuvd" board port into "km8xx", because
21588 there come more similar boards from keymile.
21589 Compiling the mgsuvd board with "make mgsuvd_config"
21590 remains.
21591
21592 Signed-off-by: Heiko Schocher <hs@denx.de>
21593
21594 commit 18b2f35bde1672e074a3d5048383cb56fda745cb
21595 Author: Heiko Schocher <hs@denx.de>
21596 Date: Thu Mar 12 07:37:23 2009 +0100
21597
21598 8xx, mgsuvd: Coding Style cleanup config file
21599
21600 Signed-off-by: Heiko Schocher <hs@denx.de>
21601
21602 commit 364123db6730d32330f818b65360d2cd27396667
21603 Author: Heiko Schocher <hs@denx.de>
21604 Date: Thu Mar 12 07:37:18 2009 +0100
21605
21606 powerpc: common updates for keymile boards
21607
21608 - added to keymile-common.h:
21609 - bootcount support
21610 - COMMAND HISTORY
21611 - CONFIG_AUTO_COMPLETE
21612 - CONFIG_SYS_FLASH_PROTECTION
21613 - JFFS2 support
21614 - CONFIG_VERSION_VARIABLE
21615 - extracted common I2C settings for all boards
21616 - common default environment settings summarized
21617
21618 Signed-off-by: Heiko Schocher <hs@denx.de>
21619
21620 commit 506f391888b82d1b83bdd749c3cea9eb2fd64df8
21621 Author: Heiko Schocher <hs@denx.de>
21622 Date: Thu Mar 12 07:37:15 2009 +0100
21623
21624 8xx, icache: enabling ICache not before running from RAM
21625
21626 with the new CONFIG_SYS_DELAYED_ICACHE config option, ICache
21627 is not enabled before code runs from RAM.
21628
21629 Signed-off-by: Heiko Schocher <hs@denx.de>
21630
21631 commit cabf7b9c83bd780a5805ddbb4c0ce431d5b9f9f3
21632 Author: Heiko Schocher <hs@denx.de>
21633 Date: Thu Mar 12 07:37:11 2009 +0100
21634
21635 82xx, mgcoge: fix environment sector size
21636
21637 Size of one environment sector is 0x20000.
21638
21639 Signed-off-by: Heiko Schocher <hs@denx.de>
21640
21641 commit 27057d416c7cc9eb1860953da8836352c07f13e9
21642 Author: Ladislav Michl <ladis@linux-mips.org>
21643 Date: Mon Mar 16 23:27:31 2009 +0100
21644
21645 NetStar: config reindentation
21646
21647 Fix indentation broken by symbol renames. "Sort" driver related definitons.
21648
21649 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
21650
21651 commit 8d8235f84d3ef3f29b7d14e741369b5824b5bb4a
21652 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21653 Date: Tue Mar 17 11:21:43 2009 +0000
21654
21655 ColdFire: Fix incorrect definition
21656
21657 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21658
21659 commit 9017d9325a5067b2ab0d70a2d3c907620c9ab7f8
21660 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21661 Date: Mon Mar 2 19:16:45 2009 +0000
21662
21663 ColdFire: Fix M5329EVB and M5373EVB nand issue
21664
21665 The Nand flash was unable to read and write properly
21666 due to Nand Chip Select (nCE) setup was in reverse
21667 order. Also, increase the Nand time out value to 60.
21668
21669 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21670
21671 commit 42b68af1062f75bb4a91cf47e329a7e8100cd815
21672 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21673 Date: Tue Jan 27 15:19:35 2009 +0000
21674
21675 ColdFire: PLATFORM_CPPFLAGS updates for new compiler
21676
21677 Update PLATFORM_CPPFLAGS to accept 4.3.x version of
21678 ColdFire compiler.
21679
21680 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21681
21682 commit d6e4baf49987fc6f75e8574c0c27301a828b3132
21683 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21684 Date: Tue Jan 27 12:57:47 2009 +0000
21685
21686 ColdFire: Provide gzip image size V2 & V3 platforms
21687
21688 Default gzip bootm size is 8MB. Some platforms require
21689 more than 8MB
21690
21691 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21692
21693 commit c3a9e6374210679a81f611c1bcf968988bc20e41
21694 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21695 Date: Wed Feb 18 11:49:31 2009 +0000
21696
21697 ColdFire: Fix M54451 serial boot dram setup
21698
21699 The serial boot dram extended/standard mode register was not
21700 setup and was using default DRAM setup causing the U-boot was
21701 unstable to boot up in serial mode.
21702
21703 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21704
21705 commit 32d11d58159a575f08a982cad8a5a941ffe5cc3d
21706 Author: arun c <arun.edarath@gmail.com>
21707 Date: Thu Dec 4 15:57:15 2008 +0530
21708
21709 Coldfire: XL Bus minor fixes
21710
21711 According to coldfire manual data timeout > address time out
21712 also use correct macro to program XARB_CFG
21713
21714 Signed-off-by: Arun C <arunedarath@mistralsolutions.com>
21715
21716 commit 65d8bc94d8214812ccdf3372d3fef845cf4ec2e5
21717 Author: Scott Wood <scottwood@freescale.com>
21718 Date: Tue Mar 17 12:06:04 2009 -0500
21719
21720 NAND: Have nboot accept .e and .i as legacy no-ops.
21721
21722 This was intended to happen before, but a trivial bug prevented it.
21723
21724 Signed-off-by: Scott Wood <scottwood@freescale.com>
21725
21726 commit 0987505540918b2464b73069af3a5b766dbd3ceb
21727 Author: Ladislav Michl <ladis@linux-mips.org>
21728 Date: Fri Mar 13 14:38:19 2009 +0100
21729
21730 NAND: Make nboot skip bad blocks
21731
21732 nboot command currently does not skip bad blocks and gives read error when
21733 loading image stored over bad block. With patch applied, nboot works as
21734 expected:
21735
21736 Device 0 bad blocks:
21737 00780000
21738 014a0000
21739 02000000
21740 02cc0000
21741 04aa0000
21742
21743 Loading from NAND 128MiB 3,3V 8-bit, offset 0x2c00000
21744 Image Name: Linux-2.6.22-omap1
21745 Created: 2008-11-20 23:44:32 UTC
21746 Image Type: ARM Linux Kernel Image (uncompressed)
21747 Data Size: 1052520 Bytes = 1 MB
21748 Load Address: 10008000
21749 Entry Point: 10008000
21750 Skipping bad block 0x02cc0000
21751 Automatic boot of image at addr 0x10400000 ...
21752 ...
21753
21754 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
21755 Signed-off-by: Scott Wood <scottwood@freescale.com>
21756
21757 commit 0b2f38fe3c4555dd2b81c69880403c13ad723153
21758 Author: Stefan Roese <sr@denx.de>
21759 Date: Thu Mar 12 07:27:25 2009 +0100
21760
21761 ppc4xx: lwmon5: Only use one CS (rank) in DDR2 configuration
21762
21763 This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
21764 the DDR2 configuration to only use one CS (rank). As this code is most
21765 likely copied from the original Sequoia version, this error was copied
21766 as well.
21767
21768 This patch also removes some dead code.
21769
21770 Signed-off-by: Stefan Roese <sr@denx.de>
21771
21772 commit 9199b9cc8f56aca26504b48cf702176208f46e54
21773 Author: Stefan Roese <sr@denx.de>
21774 Date: Thu Mar 12 07:24:40 2009 +0100
21775
21776 ppc4xx: PMC440: Only use one CS (rank) in DDR2 configuration
21777
21778 This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
21779 the DDR2 configuration to only use one CS (rank). As this code is most
21780 likely copied from the original Sequoia version, this error was copied
21781 as well.
21782
21783 Signed-off-by: Stefan Roese <sr@denx.de>
21784
21785 commit ee86fd15e1ccda4be41f1dba82b8c9efea9a3145
21786 Author: Mikhail Zolotaryov <lebon@lebon.org.ua>
21787 Date: Wed Mar 11 10:54:46 2009 +0200
21788
21789 Fix AMCC Sequoia board DDR memory configuration
21790
21791 Sequoia board schematics (DES0211_11_SCH_11.pdf, page 5, unit U1D)
21792 specifies that BankSel#1 is not connected, while bootloader memory
21793 configuration is (board/amcc/sequoia/sdram.c):
21794 mtsdram(DDR0_10, 0x00000300);
21795 i.e. both Chip Selects used - not correct.
21796
21797 If we change to correct value here:
21798 mtsdram(DDR0_10, 0x00000100);
21799 memory is accessible OK also.
21800
21801 Signed-off-by: Mikhail Zolotaryov <lebon@lebon.org.ua>
21802 Signed-off-by: Stefan Roese <sr@denx.de>
21803
21804 commit b3dd629e78870ba2dc9f8032978721c0fa02a856
21805 Author: Wolfgang Denk <wd@denx.de>
21806 Date: Sun Mar 15 22:40:09 2009 +0100
21807
21808 Prepare 2009.03-rc2
21809
21810 Update CHANEGLOG, fix minor coding style issue.
21811
21812 Signed-off-by: Wolfgang Denk <wd@denx.de>
21813
21814 commit 394d30dd1ee23b80fd5e59e17ebe0feca927ab31
21815 Author: Jerry Van Baren <gvb.uboot@gmail.com>
21816 Date: Fri Mar 13 11:40:10 2009 -0400
21817
21818 mpc83xx: Add bank configuration to FSL spd_sdram.c
21819
21820 The routine assumed 4 bank SDRAMs, enhance to configure for 4 or 8
21821 bank SDRAMs.
21822
21823 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
21824 Acked-by: Dave Liu <daveliu@freescale.com>
21825 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21826
21827 commit b581626c1e2474a3dadf69d4f0e0582eccbc4235
21828 Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
21829 Date: Fri Mar 13 08:58:14 2009 +0100
21830
21831 mpc83xx: correctly set encryption and I2C bus 0 clock
21832
21833 This patch makes sure the correct mask is applied when setting
21834 the encryption and I2C bus 0 clock in SCCR.
21835 Failing to do so may lead to ENCCM being 0 in which case I2C bus 0
21836 won't function.
21837
21838 Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
21839 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21840
21841 commit e6a6a704151c2d7e4a7b485545b48a6020ccca17
21842 Author: Dirk Behme <dirk.behme@googlemail.com>
21843 Date: Thu Mar 12 19:30:50 2009 +0100
21844
21845 OMAP3: Add support for OMAP3 die ID
21846
21847 Read and store OMAP3 die ID in U-Boot environment.
21848
21849 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
21850
21851 commit f949bd8d089ec3059c460ac829c0d919e1d7af0e
21852 Author: Jon Smirl <jonsmirl@gmail.com>
21853 Date: Wed Mar 11 15:08:56 2009 -0400
21854
21855 MPC5200 FEC MII speed register
21856
21857 Set a non-zero speed in the MII register so that MII commands will work.
21858
21859 Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
21860
21861 commit 94a353611b93ac4cb4434a5f7e98aa0902da919e
21862 Author: Yusuke.Goda <goda.yusuke@renesas.com>
21863 Date: Fri Mar 13 16:08:18 2009 +0900
21864
21865 sh: ap325rxa: Change the wait cycle in the area 5
21866
21867 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
21868 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21869
21870 commit 2db0e1278b9f11263e0a13326b57d4f99781f7ac
21871 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
21872 Date: Wed Feb 25 16:04:26 2009 +0900
21873
21874 sh: Fix cannot work rtl8139 on r2dplus
21875
21876 The rtl8139 driver use pci_mem_to_phys. So it need PCI system memory
21877 registration.
21878
21879 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
21880 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21881
21882 commit 64f3c0b8ba99d6651db59273e497ab5e857c8d4f
21883 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21884 Date: Fri Feb 27 18:35:41 2009 +0900
21885
21886 sh: Add netdev header fixing of warning/build
21887
21888 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21889 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21890
21891 commit ada9318252f51c2626e9837c623f9812b0308dea
21892 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
21893 Date: Tue Mar 3 15:11:17 2009 +0900
21894
21895 sh: Add support 32-Bit Extended Address Mode to sh7785lcr
21896
21897 We can built 'make sh7785lcr_32bit_config'. And add new command "pmb"
21898 for this mode. This command changes PMB for using 512MB system memory.
21899
21900 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
21901 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21902
21903 commit 06b18163b57e6b0349b0c299222d50e7b1e41e50
21904 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
21905 Date: Wed Feb 25 14:26:42 2009 +0900
21906
21907 sh: Add some register value configurable to PCI of SH7780
21908
21909 Some register value was hardcoded for System memory size 128MB and
21910 memory offset 0x08000000. This patch fixed the problem.
21911
21912 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
21913 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21914
21915 commit 06e2735eb85cbea7cecb3c308d6d078b3651b22c
21916 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
21917 Date: Wed Feb 25 14:26:52 2009 +0900
21918
21919 sh: Add system memory registration to PCI for SH4
21920
21921 It is necessary for some pci device driver.
21922
21923 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
21924 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21925
21926 commit b3061b40db691245a7bb9a55354b4edacbf3902d
21927 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
21928 Date: Wed Feb 25 14:26:55 2009 +0900
21929
21930 sh: Add value for PCI system memory registration of sh7785lcr
21931
21932 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
21933 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21934
21935 commit 6d84ae3956a6cd7aebd86f661130752594e60124
21936 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
21937 Date: Tue Mar 3 15:11:08 2009 +0900
21938
21939 sh: Add macros for SH-4A 32-Bit Address Extended Mode
21940
21941 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
21942 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21943
21944 commit 3e3eec39de8fe0ae62e6e4d4e3fa4442ee9ed6b1
21945 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21946 Date: Tue Feb 3 13:35:05 2009 +0900
21947
21948 sh: use write{8,16,32} in ms7720se lowlevel_init
21949
21950 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21951 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21952
21953 commit 0452352df118bc9dd684a056aaaa5fb4aed1178a
21954 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
21955 Date: Mon Mar 9 18:07:53 2009 -0500
21956
21957 tsec: report when there is no vendor specific PHY support
21958
21959 Commit af1c2b84 added a generic phy support, with an ID of zero
21960 and a 32 bit mask; meaning that it will match on any PHY ID.
21961
21962 The problem is that there is a test that checked if a matching
21963 PHY was found, and if not, it printed the non-matching ID.
21964 But since there will always be a match (on the generic PHY,
21965 worst case), this test will never trip.
21966
21967 In the case of a misconfigured PHY address, or of a PHY that
21968 isn't explicitly supported outside of the generic support,
21969 you will never see the ID of 0xffffffff, or the ID of the
21970 real (but unsupported) chip. It will silently fall through
21971 onto the generic support.
21972
21973 This change makes that test useful again, and ensures that
21974 the selection of generic PHY support doesn't happen without
21975 some sort of notice. It also makes it explicitly clear that
21976 the generic PHY must be last in the PHY table.
21977
21978 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
21979 Acked-by: Andy Fleming <afleming@freescale.com>
21980
21981 commit c279dfc10186ceba78d3862036f158750e86599a
21982 Author: Wolfgang Denk <wd@denx.de>
21983 Date: Mon Mar 9 10:53:05 2009 +0100
21984
21985 SIMPC8313 board: fix out of tree building.
21986
21987 Fix typo in makefile which broke out of tree builds.
21988
21989 Also use expolicit "rm" instead of "ln -sf" which is known to be
21990 unreliable.
21991
21992 Signed-off-by: Wolfgang Denk <wd@denx.de>
21993 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21994
21995 commit 49b5aff491bd574935ecaf8545152066a25eff3d
21996 Author: ksi@koi8.net <ksi@koi8.net>
21997 Date: Mon Feb 23 10:53:13 2009 -0800
21998
21999 Add eTSEC 1/2 IO override control (corrected)
22000
22001 This adds tsec12ioovcr to include/asm-ppc/immap_85xx.h (was reserved.)
22002
22003 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
22004
22005 commit 48c2b7bb432da84fcce05b4db6efad0be73a93dc
22006 Author: Andy Fleming <afleming@freescale.com>
22007 Date: Fri Mar 6 19:05:52 2009 -0600
22008
22009 fsl: Remove unnecessary debug printfs
22010
22011 These were left in accidentally, and are not really useful unless the
22012 code is as broken as it was when it was being developed.
22013
22014 Signed-off-by: Andy Fleming <afleming@freescale.com>
22015
22016 commit 0ee84b88b78bce425190d8cd7adf4c30cba0c2f0
22017 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
22018 Date: Tue Feb 24 02:37:59 2009 -0600
22019
22020 Fix mpc85xx ddr-gen3 ddr_sdram_cfg.
22021
22022 Commit e1be0d25, "32bit BUg fix for DDR2 on 8572" prevented other
22023 sdram_cfg bits (such as ecc and self_refresh_in_sleep) from being set.
22024
22025 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
22026
22027 commit a922fdb87af25c25c032424908dcf60fbf3250ea
22028 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22029 Date: Tue Feb 24 06:13:10 2009 +0100
22030
22031 PXA: timer use do_div and simplify it
22032
22033 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22034
22035 commit 4b00d1aa82b6af9b4e628a5729a12086e44558b3
22036 Author: Wolfgang Denk <wd@denx.de>
22037 Date: Mon Mar 9 10:51:39 2009 +0100
22038
22039 SIMPC8313 board: fix out of tree building.
22040
22041 Fix typo in makefile which broke out of tree builds.
22042
22043 Also use expolicit "rm" instead of "ln -sf" which is known to be
22044 unreliable.
22045
22046 Signed-off-by: Wolfgang Denk <wd@denx.de>
22047
22048 commit f70fd13e2fe4cf58e251271c27f9c06e141d7f9a
22049 Author: Heiko Schocher <hs@denx.de>
22050 Date: Tue Feb 24 11:30:51 2009 +0100
22051
22052 8360, kmeter1: added bootcount feature.
22053
22054 add CONFIG_BOOTCOUNT_LIMIT feature for 8360 CPU.
22055
22056 The bootcounter uses 8 bytes from the muram,
22057 because no other memory was found on this
22058 CPU for the bootcount feature. So we must
22059 correct the muram size in DTS before booting
22060 Linux.
22061
22062 This feature is actual only implemented for
22063 MPC8360, because not all 83xx CPU have qe,
22064 and therefore no muram, which this feature
22065 uses.
22066
22067 Signed-off-by: Heiko Schocher <hs@denx.de>
22068 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22069
22070 commit 1e7ed2565031e01abc18c713030a0a9829c07684
22071 Author: Heiko Schocher <hs@denx.de>
22072 Date: Tue Feb 24 11:30:48 2009 +0100
22073
22074 83xx, kmeter: QE_ENET10 errata for Silicon Revision 2.1
22075
22076 old code implemented the QE_ENET10 errata only for Silicon
22077 Revision 2.0. New code reads now the Silicon Revision
22078 register and sets dependend on the Silicon Revision the
22079 values as advised in the QE_ENET10 errata.
22080
22081 Signed-off-by: Heiko Schocher <hs@denx.de>
22082 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22083
22084 commit 605f78e34a3f0103693b891f2573edd352e7d495
22085 Author: Heiko Schocher <hs@denx.de>
22086 Date: Tue Feb 24 11:30:44 2009 +0100
22087
22088 83xx, kmeter1: updates for 2009.03
22089
22090 - HRCW update
22091 HRCWH_BOOTSEQ_DISABLE not HRCWH_BOOTSEQ_NORMAL
22092 HRCWH_LALE_EARLY added
22093 - DDR-SDRAM settings modified. This solves sporadically
22094 problems with this memory.
22095 - CS1 now 128 MB window size
22096 - CS3 now 512 MB window size
22097 - PRAM activated
22098 - MTDPARTS_DEFAULT defined
22099 - CONFIG_HOSTNAME added
22100 - MONITOR_LEN now 384 KB
22101
22102 Signed-off-by: Heiko Schocher <hs@denx.de>
22103 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22104
22105 commit 118cbe3c35c898f8d020b29d6dc180307cacf147
22106 Author: Heiko Schocher <hs@denx.de>
22107 Date: Tue Feb 24 11:30:40 2009 +0100
22108
22109 83xx, kmeter1: autodetect size of DDR II RAM
22110
22111 it is possible that some board variants have different DDR II
22112 RAM sizes. So we autodetect the size of the assembled RAM.
22113
22114 Signed-off-by: Heiko Schocher <hs@denx.de>
22115 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22116
22117 commit c1bce4fff750d734b1fa7467eb08f93902c97ca6
22118 Author: Heiko Schocher <hs@denx.de>
22119 Date: Tue Feb 24 11:30:37 2009 +0100
22120
22121 83xx, i2c: add mux support for fsl_i2c
22122
22123 This patch adds I2C mux support for the fsl_i2c driver. This
22124 allows you to add "new" i2c busses, which are reached over
22125 i2c muxes. For more infos, please look in the README and
22126 search for CONFIG_I2C_MUX.
22127
22128 Signed-off-by: Heiko Schocher <hs@denx.de>
22129 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22130
22131 commit 19f0e93041dbfe22f8d39b98e4f7f9ea87b77803
22132 Author: Heiko Schocher <hs@denx.de>
22133 Date: Tue Feb 24 11:30:34 2009 +0100
22134
22135 83xx, kmeter1: add I2C, dtt, eeprom support
22136
22137 This patch adds I2C support for the Keymile kmeter1 board.
22138 It uses the First I2C Controller from the CPU, for
22139 accessing 4 temperature sensors, an eeprom with IVM data
22140 and the booteeprom over a pca9547 mux.
22141
22142 Signed-off-by: Heiko Schocher <hs@denx.de>
22143 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22144
22145 commit db1d72afd77287bc8577210f3f71ab249dcf146f
22146 Author: Heiko Schocher <hs@denx.de>
22147 Date: Tue Feb 24 11:30:30 2009 +0100
22148
22149 i2c, dtt: move dtt_init () to board_init_r ()
22150
22151 In case where a board not uses CONFIG_POST, it is not
22152 necessary to init the DTTs when running from flash.
22153
22154 Signed-off-by: Heiko Schocher <hs@denx.de>
22155 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22156
22157 commit 5b0055547f0246908b79cc300170d87380b69e18
22158 Author: Dave Liu <daveliu@freescale.com>
22159 Date: Wed Feb 25 12:31:32 2009 +0800
22160
22161 83xx: Fix some bugs in spd sdram code
22162
22163 1. RD_TO_PRE missed to add the AL, and need min 2 clocks for
22164 tRTP according to DDR2 JEDEC spec.
22165 2. WRTORD - tWTR need min 2 clocks according to DDR2 JEDEC spec.
22166 3. add the support of DDR2-533,667,800 DIMMs
22167 4. cpo
22168 5. make the AL to min to gain better performance.
22169
22170 The Micron MT9HTF6472CHY-667D1 DIMMs test passed on
22171 MPC837xEMDS platform at 266MHz/333MHz/400MHz data rate.
22172
22173 items 1, 2 and 5:
22174 Acked-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
22175
22176 Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
22177 Signed-off-by: Dave Liu <daveliu@freescale.com>
22178 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22179
22180 commit b7be63abec45858c044f0fbd6aeef524c4663f9b
22181 Author: Valeriy Glushkov <gvv@lstec.com>
22182 Date: Wed Feb 4 18:27:49 2009 +0200
22183
22184 MPC8349ITX: several config issues fixed
22185
22186 The previous version rebooted forever with DDR bigger than 256MB.
22187 Access the DS1339 RTC chip is on I2C1 bus.
22188 Allow DHCP.
22189
22190 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
22191 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22192
22193 commit 7e2ec1de1d2d723b59d7dd2fb85ff71b952d63af
22194 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22195 Date: Thu Feb 19 18:20:39 2009 +0300
22196
22197 mpc83xx: MPC837XEMDS: Initialize SerDes before negating PCIE reset signal
22198
22199 The SerDes initialization should be finished before negating the reset
22200 signal according to the reference manual. This isn't an issue on real
22201 hardware, but we'd better stick to the specifications anyway.
22202
22203 Suggested-by: Liu Dave <DaveLiu@freescale.com>
22204 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22205 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22206
22207 commit 9c2d63ec0e9520948b6d598ea32e9aa4e0de847f
22208 Author: Heiko Schocher <hs@denx.de>
22209 Date: Wed Feb 25 12:28:32 2009 +0100
22210
22211 i2c, dtt: move dtt_init () to board_init_r ()
22212
22213 it is not necessary to init the DTTs so early,
22214 so move this init to board_init_r ().
22215
22216 Signed-off-by: Heiko Schocher <hs@denx.de>
22217
22218 commit 00cc5595a7caac8066b408774383a956c2e26797
22219 Author: Anatolij Gustschin <agust@denx.de>
22220 Date: Wed Feb 25 20:28:13 2009 +0100
22221
22222 lcd: Fix compilation warning in common/lcd.c
22223
22224 Fix following warning while compilation for mcc200 board:
22225
22226 lcd.c: In function 'lcd_display_bitmap':
22227 lcd.c:625: warning: unused variable 'cmap'
22228
22229 Signed-off-by: Anatolij Gustschin <agust@denx.de>
22230
22231 commit f5a77a09c93fe7f04c0c56f64ea436f7d318d674
22232 Author: Graeme Russ <graeme.russ@gmail.com>
22233 Date: Tue Feb 24 21:11:24 2009 +1100
22234
22235 Moved SC520 Files (fix commit 407976185e0dda2c90e89027121a1071b9c77bfb)
22236
22237 Fixes commit 407976185e0dda2c90e89027121a1071b9c77bfb
22238
22239 Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
22240
22241 commit 75ba6d693b8f6247aa4b81323a2ee2fa28222215
22242 Author: Mike Frysinger <vapier@gentoo.org>
22243 Date: Mon Feb 23 10:29:47 2009 -0500
22244
22245 smc911x: split out useful defines/functions into local header
22246
22247 The smc911x driver has a lot of useful defines/functions which can be used
22248 by pieces of code (such as example eeprom programmers). Rather than
22249 forcing each place to duplicate these defines/functions, split them out
22250 of the smdc911x driver into a local header.
22251
22252 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22253 Acked-by: Ben Warren <biggerbadderben@gmail.com>
22254 CC: Sascha Hauer <s.hauer@pengutronix.de>
22255 CC: Guennadi Liakhovetski <lg@denx.de>
22256 CC: Magnus Lilja <lilja.magnus@gmail.com>
22257 CC: Ben Warren <biggerbadderben@gmail.com>
22258
22259 commit a2bb7105a79af8f2ffa9f87256fce6c1cbcbd8e1
22260 Author: Guennadi Liakhovetski <lg@denx.de>
22261 Date: Tue Feb 24 10:44:02 2009 +0100
22262
22263 ARM: add an "eet" variant of the imx31_phycore board
22264
22265 The "eet" variant of the imx31_phycore board has an OLED display, using a
22266 s6e63d6 display controller on the first SPI interface, using GPIO57 as a
22267 chip-select for it. With this configuration you can display 256 colour BMP
22268 images in 16-bit RGB (RGB565) LCD mode.
22269
22270 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22271 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22272
22273 commit 0c99f6ab31c5635874ba7a2e8d37791bfbf02f8f
22274 Author: Guennadi Liakhovetski <lg@denx.de>
22275 Date: Fri Feb 6 10:37:57 2009 +0100
22276
22277 video: add an i.MX31 framebuffer driver
22278
22279 Add a driver for the Synchronous Display Controller and the Display
22280 Interface on i.MX31, using IPU for DMA channel setup. So far only
22281 displaying of bitmaps is supported, no text output.
22282
22283 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22284 Acked-by: Anatolij Gustschin <agust@denx.de>
22285
22286 commit b245e65ee3c4cce3ccf008a21f4528239655876c
22287 Author: Guennadi Liakhovetski <lg@denx.de>
22288 Date: Fri Feb 6 10:37:53 2009 +0100
22289
22290 LCD: support 8bpp BMPs on 16bpp displays
22291
22292 This patch also simplifies some ifdefs in lcd.c, introduces a generic
22293 vidinfo_t, which new drivers are encouraged to use and old drivers to switch
22294 over to.
22295
22296 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22297 Acked-by: Anatolij Gustschin <agust@denx.de>
22298
22299 commit a303dfb0e9a93e516ea9427b5c09543d5f74ade1
22300 Author: Mark Jackson <mpfj@mimc.co.uk>
22301 Date: Fri Feb 6 10:37:49 2009 +0100
22302
22303 Add 16bpp BMP support
22304
22305 This patch adds 16bpp BMP support to the common lcd code.
22306
22307 Use CONFIG_BMP_16BPP and set LCD_BPP to LCD_COLOR16 to enable the code.
22308
22309 At the moment it's only been tested on the MIMC200 AVR32 board, but extending
22310 this to other platforms should be a simple task !!
22311
22312 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
22313 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22314 Acked-by: Anatolij Gustschin <agust@denx.de>
22315
22316 commit 689551c5ff1b394b88412f3df22144e79468d3a9
22317 Author: Guennadi Liakhovetski <lg@denx.de>
22318 Date: Fri Feb 6 10:37:41 2009 +0100
22319
22320 A driver for the S6E63D6 SPI display controller from Samsung
22321
22322 This is a driver for the S6E63D6 SPI OLED display controller from Samsung.
22323 It only provides access to controller's registers so the client can freely
22324 configure it.
22325
22326 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22327 Acked-by: Anatolij Gustschin <agust@denx.de>
22328
22329 commit fc7a93c84f3f134484811a0d9ad751fbc1a7da6d
22330 Author: Guennadi Liakhovetski <lg@denx.de>
22331 Date: Fri Feb 13 09:26:40 2009 +0100
22332
22333 i.MX31: support GPIO as a chip-select in the mxc_spi driver
22334
22335 Some SPI devices have special requirements on chip-select handling.
22336 With this patch we can use a GPIO as a chip-select and strictly follow
22337 the SPI_XFER_BEGIN and SPI_XFER_END flags.
22338
22339 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22340 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22341
22342 commit b30de3cccf8867566cd314e7c7033904afa5dc9d
22343 Author: Guennadi Liakhovetski <lg@denx.de>
22344 Date: Sat Feb 7 01:18:07 2009 +0100
22345
22346 i.MX31: add a simple gpio driver
22347
22348 This is a minimal driver, so far only managing output. It will
22349 be used by the mxc_spi.c driver.
22350
22351 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22352 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22353
22354 commit f9b6a1575d9f1ca192e4cb60e547aa66f08baa3f
22355 Author: Guennadi Liakhovetski <lg@denx.de>
22356 Date: Sat Feb 7 00:09:12 2009 +0100
22357
22358 i.MX31: fix SPI driver for shorter than 32 bit
22359
22360 Fix setting the SPI Control register, 8 and 16-bit transfers
22361 and a wrong pointer in the free routine in the mxc_spi driver.
22362
22363 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22364 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22365
22366 commit 7e91558032a0c1932dd7f4f562f9c7cc55efc496
22367 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22368 Date: Thu Feb 19 18:20:52 2009 +0300
22369
22370 mpc83xx: MPC837XERDB: Add PCIe support
22371
22372 On MPC8377E-RDB and MPC8378E-RDB boards we have PCIe and mini-PCIe
22373 slots. Let's support them.
22374
22375 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22376 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22377
22378 commit 50a4d08e8f31debbd4ea12caf1265f3643c38d5b
22379 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22380 Date: Thu Feb 19 18:20:50 2009 +0300
22381
22382 mpc83xx: PCI: Fix hard-coded first_busno value
22383
22384 We should use pci_last_busno() in pci_init_bus(), otherwise we'll
22385 erroneously re-use PCI0's first_busno for PCI1 hoses.
22386
22387 NOTE: The patch is untested. All MPC83xx FSL boards I have have
22388 PCI1 in miniPCI form, for which I don't have any cards handy.
22389
22390 But looking in cpu/mpc85xx/pci.c:
22391 ...
22392 #ifdef CONFIG_MPC85XX_PCI2
22393 hose = &pci_hose[1];
22394
22395 hose->first_busno = pci_hose[0].last_busno + 1;
22396
22397 And considering that we do the same for MPC83xx PCI-E support,
22398 I think this patch is correct.
22399
22400 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22401 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22402
22403 commit a5878d427128c1a9226045ebe05fbadaa02eb9dd
22404 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22405 Date: Thu Feb 19 18:20:46 2009 +0300
22406
22407 mpc83xx: PCI: Fix bus-range fdt fixups for PCI1 controllers
22408
22409 This patch fixes copy-paste issue: pci_hose[0]'s first and last
22410 busnos were used to fixup pci1's nodes.
22411
22412 We don't see this bug triggering only because Linux reenumerate
22413 buses anyway.
22414
22415 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22416 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22417
22418 commit b24a99f6666ac278ec9f9c1334518af828833d19
22419 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22420 Date: Thu Feb 19 18:20:44 2009 +0300
22421
22422 mpc83xx: PCIe: Fix CONFIG_PCI_SCAN_SHOW reporting bogus values
22423
22424 This patch fixes an issue in config space read accessors: we should
22425 fill-in the value even if we fail (e.g. skipping devices), otherwise
22426 CONFIG_PCI_SCAN_SHOW reports bogus values during boot up.
22427
22428 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22429 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22430
22431 commit e2d72ba543c7b6924b5b5d393dcd80b2b9c3a022
22432 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22433 Date: Thu Feb 19 18:20:42 2009 +0300
22434
22435 mpc83xx: PCIe: Don't start bus enumeration at 0
22436
22437 Currently we assign first_busno = 0 for the first PCIe hose, but this
22438 scheme won't work if we have ordinary PCI hose already registered (its
22439 first_busno value is 0 too).
22440
22441 The old code worked fine only because we have PCI disabled on
22442 MPC837XEMDS boards in stand-alone mode (see commit 00f7bbae92e3b13f2b3
22443 "mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards").
22444 But on MPC837XERDB boards we have PCI and PCIe, so the bug actually
22445 triggers.
22446
22447 So, to fix the issue, we should use pci_last_busno() + 1 for the
22448 first_busno (i.e. last available busno).
22449
22450 Reported-by: Huang Changming <Chang-Ming.Huang@freescale.com>
22451 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22452 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22453
22454 commit cc2a8c7751ddbae3116660064f446888538b93e9
22455 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22456 Date: Thu Feb 19 18:20:41 2009 +0300
22457
22458 PCI: Add pci_last_busno() helper
22459
22460 This is just a handy routine that reports last PCI busno: we walk
22461 down all the hoses and return last hose's last_busno.
22462
22463 Will be used by PCI/PCIe initialization code.
22464
22465 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22466 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22467
22468 commit bd76729bcbfd64b5d016a9b936f058931fc06eaf
22469 Author: Becky Bruce <beckyb@kernel.crashing.org>
22470 Date: Mon Feb 23 13:56:51 2009 -0600
22471
22472 MPC86xx: set CONFIG_MAX_MEM_MAPPED to 2G by default
22473
22474 Currently, we get 256MB as the default, but since all the 86xx
22475 board configs define a 2G BAT mapping for RAM, raise default
22476 to 2G.
22477
22478 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
22479 Acked-by: Jon Loeliger <jdl@freescale.com>
22480
22481 commit 2331e18b9df0ab98ebf3ab44c0efea1311949aaa
22482 Author: Becky Bruce <beckyb@kernel.crashing.org>
22483 Date: Thu Feb 12 10:43:32 2009 -0600
22484
22485 mpc8641hpcn: Indicate 36-bit addr map in boot messages
22486
22487 If 36-bit addressing is enabled, print a message on the console
22488 when we boot.
22489
22490 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
22491
22492 commit 58a518c3d8a2c7de11d414e8b903495daee7dc7e
22493 Author: Mark Jackson <mpfj-list@mimc.co.uk>
22494 Date: Fri Feb 13 15:48:18 2009 +0000
22495
22496 Setup extra MIMC200 chip selects
22497
22498 Added code to setup the extra Flash and FRAM chip selects as used on the
22499 MIMC200 board.
22500
22501 V2 moves the init code from the common "cpu.c" file into the board specific
22502 setup file.
22503
22504 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
22505 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22506
22507 commit 80534886a72a0088eef9e781a8e0b7d04ea41f36
22508 Author: Mark Jackson <mpfj@mimc.co.uk>
22509 Date: Mon Nov 24 12:10:56 2008 +0000
22510
22511 MIMC200: tidy GCLK init code
22512
22513 Change the MIMC200 startup code to use the built-in (rather than
22514 hard-coded) funtions for setting up gclk outputs.
22515
22516 We'll also move the code to the new, more-appropriate
22517 board_postclk_init() routine.
22518
22519 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
22520 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22521
22522 commit b423f94063bf04e92047ff85c7e53441eb3b712b
22523 Author: Olav Morken <olavmrk@gmail.com>
22524 Date: Fri Jan 23 12:56:32 2009 +0100
22525
22526 AVR32: Must add NOPs after disabling interrupts for AT32UC3A0512ES
22527
22528 The AT32UC3A0512ES chip has a bug when disabling interrupts. As a
22529 workaround, two NOPs can be inserted.
22530
22531 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
22532 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
22533 Signed-off-by: Olav Morken <olavmrk@gmail.com>
22534 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22535
22536 commit f5f652fa91aa69db8117d211af1b4fe09f2edd3b
22537 Author: Gunnar Rangoy <gunnar@rangoy.com>
22538 Date: Fri Jan 23 12:56:29 2009 +0100
22539
22540 AVR32: Make GPIO implmentation cpu dependent
22541
22542 There are some differences in the implementation of GPIO in the
22543 at32uc chip compared to the ap700x series.
22544
22545 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
22546 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
22547 Signed-off-by: Olav Morken <olavmrk@gmail.com>
22548 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22549
22550 commit a38de083d2979db3680f0d0978c509a172c8fa00
22551 Author: Olav Morken <olavmrk@gmail.com>
22552 Date: Fri Jan 23 12:56:28 2009 +0100
22553
22554 AVR32: Move addrspace.h to arch-directory, and move some functions from io.h to addrspace.h
22555
22556 The AVR32A architecture (which AT32UC3A-series is based on) has a
22557 different memory layout than the AVR32B-architecture. This patch moves
22558 addrspace.h to an arch-dependent directory in preparation for
22559 AT32UC3A-support. It also moves some address-space manipulation
22560 functions from io.h to addrspace.h.
22561
22562 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
22563 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
22564 Signed-off-by: Olav Morken <olavmrk@gmail.com>
22565 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22566
22567 commit d8f2aa3298610b44127dbc4796d8038aa5847e0b
22568 Author: Olav Morken <olavmrk@gmail.com>
22569 Date: Fri Jan 23 12:56:27 2009 +0100
22570
22571 AVR32: Make cacheflush cpu-dependent
22572
22573 The AT32UC3A series of processors doesn't contain any cache, and issuing
22574 cache control instructions on those will cause an exception. This commit
22575 makes cacheflush.h arch-dependent in preparation for the AT32UC3A-support.
22576
22577 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
22578 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
22579 Signed-off-by: Olav Morken <olavmrk@gmail.com>
22580 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22581
22582 commit 2f70c49e5b9813635ad73666aa30f304c7fdeda9
22583 Author: Heiko Schocher <hs@denx.de>
22584 Date: Tue Feb 10 09:38:52 2009 +0100
22585
22586 netloop: speed up NetLoop
22587
22588 NetLoop polls every cycle with getenv some environment variables.
22589 This is horribly slow, especially when the environment is big.
22590
22591 This patch reads only the environment variables in NetLoop,
22592 when they were changed.
22593
22594 Also moved the init part of the NetLoop function in a seperate
22595 function.
22596
22597 Signed-off-by: Heiko Schocher <hs@denx.de>
22598 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22599
22600 commit ad2d16393e9f684e4a9255f42e8bfdd819b67a87
22601 Author: Mike Frysinger <vapier@gentoo.org>
22602 Date: Mon Dec 22 02:56:07 2008 -0500
22603
22604 smc911x_eeprom: new example app for managing newer SMC parts
22605
22606 A forward port of the last version to work with the newer smc911x driver.
22607 I only have a board with a LAN9218 part on it, so that is the only one
22608 I've tested. But there isn't anything in this that would make it terribly
22609 chip specific afaik.
22610
22611 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22612 CC: Sascha Hauer <s.hauer@pengutronix.de>
22613 CC: Guennadi Liakhovetski <lg@denx.de>
22614 CC: Magnus Lilja <lilja.magnus@gmail.com>
22615 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22616
22617 commit 736323a490b664ec0edc3ddb2c1c4a6824db45c6
22618 Author: Pieter Henning <phenning@vastech.co.za>
22619 Date: Sun Feb 22 23:17:15 2009 -0800
22620
22621 Added Vitesse VSC8211 definitions to TSEC driver
22622
22623 Added the struct containing PHY settings for the Vitesse VSC8211 phy to
22624 the phy_info list in tsec.c
22625
22626 Signed-off-by: Pieter Henning <phenning@vastech.co.za>
22627 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22628
22629 commit 32688e572ff96715b41420e9a7f280db6c399b65
22630 Author: Wolfgang Denk <wd@denx.de>
22631 Date: Mon Feb 23 00:22:21 2009 +0100
22632
22633 Update CHANGELOG; Prepare 2009.03-rc1
22634
22635 Signed-off-by: Wolfgang Denk <wd@denx.de>
22636
22637 commit 80b827c2b78329c6503b271e43d9eb693d644710
22638 Author: Wolfgang Denk <wd@denx.de>
22639 Date: Sun Feb 22 23:45:40 2009 +0100
22640
22641 ARM: synchronize mach-types.h with linux v2.6.29-rc5-315-g683fdc5
22642
22643 The file was generated from building versatile_defconfig.
22644
22645 Signed-off-by: Wolfgang Denk <wd@denx.de>
22646
22647 commit 14209ac13ff631e36c9a9dd426c59c2e2f5dab00
22648 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
22649 Date: Sun Feb 22 14:24:11 2009 +0900
22650
22651 MIPS: Fix GCC-4.2 'discards qualifiers from pointer target type' warnings
22652
22653 Compiling dbau1x00 and gth2 boards with GCC-4.2, you would see new warnings
22654 like this:
22655
22656 skuribay@ubuntu:u-boot.git$ ./MAKEALL dbau1000
22657 Configuring for dbau1x00 board...
22658 au1x00_eth.c: In function 'au1x00_send':
22659 au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
22660 au1x00_eth.c: In function 'au1x00_recv':
22661 au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
22662 au1x00_eth.c: In function 'au1x00_init':
22663 au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
22664 au1x00_eth.c: In function 'au1x00_recv':
22665 au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
22666 au1x00_eth.c: In function 'au1x00_init':
22667 au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
22668 au1x00_eth.c: In function 'au1x00_send':
22669 au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
22670
22671 We're passing a volatile pointer to a function which is expecting a non-
22672 volatile pointer. That's potentially dangerous, so gcc warns about it.
22673 Confirmed with ELDK 4.2 (GCC 4.2.2) and Sourcey G++ 4.2 (GCC 4.2.3).
22674
22675 To fix this, we add a volatile attribute to the argument in question.
22676 The virt_to_phys function in Linux kernel also does the same thing.
22677
22678 Signed-off-by: Stefan Roese <sr@denx.de>
22679 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
22680
22681 commit aba45c85b22f8c57fc2fedba8e948e06c2e2f5b3
22682 Author: Dirk Behme <dirk.behme@googlemail.com>
22683 Date: Fri Feb 20 17:51:28 2009 +0100
22684
22685 OMAP3: Clean up MMC code
22686
22687 Clean up OMAP3 MMC code:
22688
22689 * Convert register access to struct & readx/writex style
22690 * Replace hardcode values by macros
22691 * Remove macro defined twice
22692
22693 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
22694
22695 commit cfcdf4a9b361d015c0debac73fbf7c511df4a934
22696 Author: Dirk Behme <dirk.behme@googlemail.com>
22697 Date: Thu Feb 12 18:55:43 2009 +0100
22698
22699 OMAP3: Pandora: Update pin mux
22700
22701 Clock pin must have input enabled for MMC3 to work.
22702 Also enable pull-ups for cmd/data lines to be consistent
22703 with remaining MMC host pin setup.
22704
22705 Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
22706
22707 commit 6530a8bf8a0274b9419141e4c2c5a235cce5380f
22708 Author: Dirk Behme <dirk.behme@googlemail.com>
22709 Date: Thu Feb 12 18:55:42 2009 +0100
22710
22711 OMAP3: Add OMAP3 auto detection
22712
22713 This patch adds OMAP3 cpu type auto detection based on OMAP3 register
22714 and removes hardcoded values.
22715
22716 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
22717 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
22718
22719 commit f956fd0338f4990793a10f767929ba4963665261
22720 Author: Dirk Behme <dirk.behme@googlemail.com>
22721 Date: Thu Feb 12 18:55:41 2009 +0100
22722
22723 OMAP3: Beagle: Add board revision detection
22724
22725 With BeagleBoard revision C some HW changes are introduced (e.g. PinMUX)
22726 which might need different software handling. For this, GPIO pin 171 (GPIO
22727 module 6, offset 11) can be used to check for board revision. If this pin
22728 is low, we have a rev C board. Else it must be a revision Ax or Bx board.
22729
22730 To handle board differences you can call function beagle_get_revision().
22731 E.g.:
22732
22733 if (beagle_get_revision()) {
22734
22735 /* do special revision C stuff here */
22736
22737 }
22738
22739 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
22740
22741 commit 288f3cd912918b97919d13b6f7fb13fbddf74d68
22742 Author: Dirk Behme <dirk.behme@googlemail.com>
22743 Date: Thu Feb 12 18:55:40 2009 +0100
22744
22745 OMAP3: Overo: Clean up pin mux and GPIO configuration
22746
22747 * Make Overo GPIO114 an input for touchscreen PENDOWN
22748 * Make Overo GPIO144-147 readable
22749 * Make Overo EHCI pinmux match beagle rev c setup
22750 * Adjust pinmux for SMSC911X network chip support
22751 * Remove unnecessary GPIO setup
22752 * Fix merge error in Makefile
22753
22754 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
22755 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
22756
22757 commit 2579019b8248e5f166e60e37065766efc8a49dbc
22758 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22759 Date: Sun Feb 22 17:08:41 2009 +0100
22760
22761 nmdk8815: fix onenand support
22762
22763 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22764
22765 commit 0176c03a2469676df5bf19cf93a1a6f582f6a120
22766 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22767 Date: Sun Feb 22 17:56:50 2009 +0100
22768
22769 nomadik/nand: fix 'ecc512' discards qualifiers from pointer target type
22770
22771 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22772
22773 commit 9751a456f702ba2fcdfd1bdbc0138927ef007858
22774 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22775 Date: Sun Feb 22 17:49:43 2009 +0100
22776
22777 davinci: fix implicit declaration of function 'davinci_errata_workarounds'
22778
22779 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22780
22781 commit 4f5728987f4f9f7845688482aa2b7f2127768165
22782 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22783 Date: Sun Feb 22 15:49:28 2009 +0100
22784
22785 arm: add uart dcc support
22786
22787 Serial driver via the EmbeddedICE macrocell's DCC channel using
22788 co-processor 14.
22789
22790 It does include a timeout to ensure that the system does not
22791 totally freeze when there is nothing connected to read.
22792
22793 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22794
22795 commit 0cd18fa982f9a8c1a90ce971379a7d6408976d48
22796 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
22797 Date: Fri Nov 21 14:35:56 2008 -0500
22798
22799 ARM DaVinci: Add common peripherals and modules enable functions.
22800
22801 Taken all the duplicated code for enabling common modules and apply
22802 software workarounds from the board specific code into common
22803 functions. Also added comments explaining the workarounds
22804 (from TI errata documents) and replaced some numerical bit numbers
22805 with more meaningful defines.
22806
22807 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
22808
22809 commit d3be1bcae7a8207e0a79ffd035d0e90f80378295
22810 Author: Alessandro Rubini <rubini@unipv.it>
22811 Date: Mon Feb 9 15:53:33 2009 +0100
22812
22813 Enable Ethernet for Nomadik 8815 Evaluation Kit
22814
22815 This trivially enables Ethernet support in the debug board
22816 by setting up the proper chip select.
22817
22818 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
22819 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
22820
22821 commit 0d8c6eab2481046e9446264bfe9402bb98ddf433
22822 Author: Alessandro Rubini <rubini@unipv.it>
22823 Date: Mon Feb 9 15:53:31 2009 +0100
22824
22825 Nand driver for Nomadik SoC
22826
22827 This driver implements the ECC algorithm described in
22828 the CPU data sheet and uses the OOB layout chosen in
22829 already-released development systems (shipped with a custom-made
22830 u-boot 1.3.1).
22831
22832 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
22833 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
22834
22835 commit ef339cc2b68e4cbef3f9376a45315e1b974bbd8d
22836 Author: Alessandro Rubini <rubini@unipv.it>
22837 Date: Mon Feb 9 15:53:31 2009 +0100
22838
22839 Added nomadik.h header
22840
22841 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
22842 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
22843
22844 commit 60ece6d8043d1dd80f5dd32c541213716d624b19
22845 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22846 Date: Wed Oct 29 20:05:18 2008 +0900
22847
22848 r8a66597-hcd: fix cannot use external hub
22849
22850 Fix the problem that cannot use external hub, because this driver
22851 did not control correctly a DEVADDx register.
22852
22853 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22854 Signed-off-by: Remy Bohmer <linux@bohmer.net>
22855
22856 commit e1ffaee728190e76a4596a3579d94e730143585f
22857 Author: Mike Frysinger <vapier@gentoo.org>
22858 Date: Thu Feb 19 01:20:27 2009 -0500
22859
22860 Blackfin: disable syscontrol code for now
22861
22862 Looks like the initcode updates fell out of order during my merges. The
22863 patch that really fixes up this code is part of power-on overhaul and so
22864 is too large for merging at this point. Instead, we can disable the code
22865 as no currently in-tree board depends on it. The next merge window will
22866 fix things up properly.
22867
22868 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22869
22870 commit 1b228d68f54832edd867ef98520f760f68192ab7
22871 Author: Mike Frysinger <vapier@gentoo.org>
22872 Date: Thu Feb 19 01:19:49 2009 -0500
22873
22874 Blackfin: bf537-stamp: fix I2C board defines
22875
22876 The previous merge for cleaning up the I2C driver incorrectly reverted the
22877 CFG_xxx rename for some of the I2C defines.
22878
22879 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22880 Signed-off-by: Heiko Schocher <hs@denx.de>
22881
22882 commit 09fee8e8677a6265e89144ccc163bf00e321769e
22883 Author: Wolfgang Denk <wd@denx.de>
22884 Date: Sun Feb 22 01:19:52 2009 +0100
22885
22886 Coding Style cleanup; update CHANGELOG
22887
22888 Signed-off-by: Wolfgang Denk <wd@denx.de>
22889
22890 commit 1dcb50afbb63a439320a985380a0af2dca079d1e
22891 Author: Wolfgang Denk <wd@denx.de>
22892 Date: Sun Feb 22 01:17:47 2009 +0100
22893
22894 Makefile: fix cleanup
22895
22896 Commit e4943ec5 moved the ARM boards to a vendor directory but forgot
22897 to adapt the cleanup rules in the Makefile
22898
22899 Signed-off-by: Wolfgang Denk <wd@denx.de>
22900
22901 commit edff7bcc4d5540df8b416274652ff02e94c38b9e
22902 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
22903 Date: Fri Feb 20 13:01:56 2009 -0500
22904
22905 Cleanup the comment for m68k linux boot argument passing.
22906
22907 This patch clarifies the way m68k passes linux boot argument.
22908 The one gotcha here is that the assembly instruction that
22909 the compiler uses to jump to the kernel is 'jsr' which pushes the
22910 program counter for the instruction after the jsr into the stack pointer.
22911
22912 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
22913 Signed-off-by: Wolfgang Denk <wd@denx.de>
22914
22915 commit 4d41650eec959668280a612467bd95c7b8398513
22916 Author: Peter Griffin <pgriffin@mpc-data.co.uk>
22917 Date: Tue Feb 10 16:44:45 2009 +0000
22918
22919 sh: Fix rsk7203 in tree build
22920
22921 Signed-off-by: Peter Griffin <pgriffin@mpc-data.co.uk>
22922
22923 commit fca0cecff73db99d99ad094cca7980472b8a11b5
22924 Author: Minkyu Kang <mk7.kang@samsung.com>
22925 Date: Wed Feb 18 09:05:52 2009 +0900
22926
22927 bootm: Reduce the unnecessary memmove
22928
22929 Although load address and image start address are same address,
22930 bootm command always does memmove.
22931 That is unnecessary memmove and can be taken few milliseconds
22932 (about 500 msec to 1000 msec).
22933 If skip this memmove, we can reduce the boot time.
22934
22935 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
22936
22937 commit 670cbde8da83690fed1064c3358f54ae1d693ed2
22938 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
22939 Date: Sun Feb 15 22:29:15 2009 +0100
22940
22941 fpga: Fix Spartan III FPGA booting
22942
22943 This patch does some minor fixing of the Xilinx Spartan III
22944 FPGA boot code:
22945
22946 - Fixed call order of post configuration callback and
22947 success message printing (result of copy-paste?)
22948 - remove obsolete comment
22949 - minor coding style cleanup
22950
22951 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22952
22953 commit 3818b677641038d27b2663fbd6771ad38c932f86
22954 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
22955 Date: Sun Feb 15 22:28:36 2009 +0100
22956
22957 fpga: Fix Spartan II FPGA booting
22958
22959 This patch does some minor fixing of the Xilinx Spartan II
22960 FPGA boot code:
22961
22962 - Fixed call order of post configuration callback and
22963 success message printing (result of copy-paste?)
22964 - relocate post configuration callback only when it
22965 is implemented
22966 - remove obsolete comment
22967 - minor coding style cleanup
22968
22969 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22970
22971 commit b4746d8bf9f4ed6dc8a76c5d52db669604aff84b
22972 Author: Mike Frysinger <vapier@gentoo.org>
22973 Date: Wed Feb 11 20:26:52 2009 -0500
22974
22975 drivers/serial/ns16550: move ifdef into Makefile COBJS-$(...)
22976
22977 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22978
22979 commit 6bcb4b806cef8a5dd08fac9a4a672b96d9ee804e
22980 Author: Derek Ou <dou@siconix.com>
22981 Date: Tue Feb 3 16:00:07 2009 -0700
22982
22983 lcd_putc bug fix for tab.
22984
22985 Signed-off-by: Derek Ou <dou@siconix.com>
22986
22987 commit 35c9e14d8096e519fe76c953a43d52a09617345c
22988 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
22989 Date: Mon Feb 2 09:46:21 2009 +0900
22990
22991 MIPS: cpu/mips/Makefile: Add a missing START line
22992
22993 In the commit 79b51ff8205f0354d5300570614c1d2db499679c ([MIPS] cpu/mips/
22994 Makefile: Split [CS]OBJS onto separate lines), I wrongly deleted a START
22995 line. This patch puts it back.
22996
22997 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
22998
22999 commit 9a63b7f4f8f3c99cf017e0d3d4a152dfcd913b5a
23000 Author: Wolfgang Denk <wd@denx.de>
23001 Date: Sat Feb 21 21:51:21 2009 +0100
23002
23003 Enable ext2 support for TQM8xxL/M based boards
23004
23005 Signed-off-by: Wolfgang Denk <wd@denx.de>
23006
23007 commit e3ba7f137c7c454ad626cd0bd2e84d73c7a8644f
23008 Author: Tom Rix <Tom.Rix@windriver.com>
23009 Date: Fri Feb 20 03:47:50 2009 +0100
23010
23011 ARM:PXA Use new definitions in mmc.h
23012
23013 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
23014 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23015
23016 commit 682beeac34dc9ab18fab58b26973d2e29d113717
23017 Author: Andy Fleming <afleming@freescale.com>
23018 Date: Fri Feb 20 03:47:50 2009 +0100
23019
23020 Reduce the scope of PXA's mmc_read/mmc_write/mmc_bread functions
23021
23022 These names are being taken over by the new MMC framework. Hopefuly
23023 the PXA can be easily ported, and these functions will go away entirely.
23024
23025 Signed-off-by: Andy Fleming <afleming@freescale.com>
23026 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23027
23028 commit b03d92e5584935886ff91d5aa0755dc8888b7187
23029 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23030 Date: Fri Feb 20 03:47:50 2009 +0100
23031
23032 pxa: move mmc drivers to drivers/mmc
23033
23034 introduce new macro CONFIG_PXA_MMC to activate it
23035
23036 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23037
23038 commit 9490f465642c80c054854689a2ef1a77d65cf1f3
23039 Author: Tom Rix <Tom.Rix@windriver.com>
23040 Date: Thu Feb 19 19:27:22 2009 -0600
23041
23042 ARM:PXA Remove redefinition of mmc_cid and mmc_csd.
23043
23044 These structures are defined in the common mmc.h
23045
23046 This was compile checked on cerf250.
23047
23048 commit 94a3312920b6f9b5da27309549fb73650718c10a
23049 Author: Micha Kalfon <smichak.uv@gmail.com>
23050 Date: Wed Feb 11 19:50:11 2009 +0200
23051
23052 pxa: fixing get_timer to return time in miliseconds.
23053
23054 Fixing the get_timer function to return time in miliseconds instead of
23055 ticks. Also fixed PXA boards to use the conventional value of 1000 for
23056 CONFIG_SYS_HZ.
23057
23058 Signed-off-by: Micha Kalfon <smichak.uv@gmail.com>
23059
23060 commit e5e88c3614b79b54719905f66aefb51f9494bc1f
23061 Author: Tom Rix <Tom.Rix@windriver.com>
23062 Date: Thu Feb 19 16:45:43 2009 -0600
23063
23064 ARM:OMAP3 Change mmc_init to mmc_legacy_init
23065
23066 omap3_mmc.c was changed to define mmc_legacy_init.
23067 Remove unused functions.
23068
23069 Compile tested on all arm
23070 Runtime tested on Zoom1.
23071
23072 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
23073
23074 commit 9e80bb21629988063574f88ca0d28baadff4d963
23075 Author: Heiko Schocher <hs@denx.de>
23076 Date: Thu Feb 19 17:23:58 2009 +0100
23077
23078 82xx, mgcoge: updates for 2009.03
23079
23080 - activate CS4 for accessing the FPGA
23081 - activate Rx buf len > 1 on SMC
23082 - pram activated
23083 - MTDPARTS_DEFAULT defined
23084 - update the size of the flashes in the DTS
23085 before booting Linux
23086 - MONITOR_LEN updated to 384k
23087 - added CONFIG_HOSTNAME
23088 - added CONFIG_ENV_BUFFER_PRINT
23089 - Environment size reduced to 16k
23090
23091 Signed-off-by: Heiko Schocher <hs@denx.de>
23092
23093 commit df909554e2401f307925e1bd45d576e4176d9de9
23094 Author: Heiko Schocher <hs@denx.de>
23095 Date: Thu Feb 19 17:24:01 2009 +0100
23096
23097 8xx, mgsuvd: updates for 2009.03
23098
23099 - activate Rx buf len > 1 on SMC
23100 - pram activated
23101 - MTDPARTS_DEFAULT defined
23102 - update the size of the flash in the DTS
23103 before booting Linux
23104 - MONITOR_LEN updated to 384k
23105 - added CONFIG_HOSTNAME
23106 - added CONFIG_ENV_BUFFER_PRINT
23107 - Environment size reduced to 16k
23108
23109 Signed-off-by: Heiko Schocher <hs@denx.de>
23110
23111 commit 3511b4e208e12be85b532866f1c660aa2e021557
23112 Author: Dirk Behme <dirk.behme@googlemail.com>
23113 Date: Wed Feb 18 19:59:39 2009 +0100
23114
23115 MMC: Don't use new framework code if not enabled
23116
23117 Don't use code of new MMC framework in cmd_mmc if CONFIG_GENERIC_MMC
23118 isn't enabled.
23119
23120 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
23121
23122 commit 32482be67775e00b4cbc49fba62347c1ecc6229c
23123 Author: Wolfgang Denk <wd@denx.de>
23124 Date: Thu Feb 19 13:53:29 2009 +0100
23125
23126 TQM8xxL: make some room in low memory for future needs
23127
23128 THe TQM8xxL use a ahnd-optimized linker script to efficiently use the
23129 small boot sectors in the flash. This patch makes some room in the
23130 first sector to prepare for a size increase of lib_generic/vsprintf.o
23131 by a future patch.
23132
23133 Signed-off-by: Wolfgang Denk <wd@denx.de>
23134
23135 commit c157cec3c3f6dfc194532b3a3ca87f85b642962a
23136 Author: Kim Phillips <kim.phillips@freescale.com>
23137 Date: Wed Feb 18 18:06:18 2009 -0600
23138
23139 README: remove duplicate entry
23140
23141 it's been around since the original commit (2ad6b513) that added two
23142 identical entries.
23143
23144 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23145
23146 commit 1bba30efe1717bea13026e15c7c7d906419fac69
23147 Author: Wolfgang Denk <wd@denx.de>
23148 Date: Thu Feb 19 00:41:08 2009 +0100
23149
23150 Coding style cleanup, update CHANGELOG
23151
23152 Signed-off-by: Wolfgang Denk <wd@denx.de>
23153
23154 commit 369d0aa9674b65c83f8553b9bcf9d207dc369223
23155 Author: Kim Phillips <kim.phillips@freescale.com>
23156 Date: Wed Feb 18 17:43:59 2009 -0600
23157
23158 sata_sil3114: fix compiler warning
23159
23160 judging from other printfs in the same file, it seems ata should be
23161 postpended with the interface number, not the address of the global
23162 port variable. Fixes this for current u-boot-mpc83xx tree:
23163
23164 Configuring for MPC8349ITX board...
23165 sata_sil3114.c: In function 'sata_bus_softreset':
23166 sata_sil3114.c:99: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
23167 sata_sil3114.c:108: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
23168
23169 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23170
23171 commit f5675aa5ceeef30740970ab8ca0c8cbc324945cd
23172 Author: Ron Madrid <ron_madrid@sbcglobal.net>
23173 Date: Wed Feb 18 14:30:44 2009 -0800
23174
23175 Create configuration option for restricted ns16550 functions
23176
23177 This patch will create a configuration option for a minimum configuration for
23178 the ns16550 serial driver at drivers/serial/ns16550.c and will apply this new
23179 configuration option to the SIMPC8313.h config file in order to fix the NAND
23180 bootstrap build error. This option will exclude all functions with exception of
23181 NS16550_putc and NS16550_init. This will be used primarily to save space and
23182 remove unused code from builds in which space is limited.
23183
23184 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
23185
23186 commit 7b0bc0219db8981613259473cf19699ac259b4fb
23187 Author: Kim Phillips <kim.phillips@freescale.com>
23188 Date: Wed Feb 18 16:14:29 2009 -0600
23189
23190 mkconfig: include board config.h before asm/config.h
23191
23192 swapping the include order suppresses warnings for board configs
23193 that define their own CONFIG_MAX_MEM_MAPPED:
23194
23195 In file included from /home/r1aaha/git/u-boot/include/config.h:5,
23196 from /home/r1aaha/git/u-boot/include/common.h:35,
23197 from simpc8313.c:26:
23198 /home/r1aaha/git/u-boot/include/configs/SIMPC8313.h:81:1: warning:
23199 "CONFIG_MAX_MEM_MAPPED" redefined
23200 In file included from /home/r1aaha/git/u-boot/include/config.h:4,
23201 from /home/r1aaha/git/u-boot/include/common.h:35,
23202 from simpc8313.c:26:
23203 /home/r1aaha/git/u-boot/include/asm/config.h:28:1: warning: this is
23204 the location of the previous definition
23205
23206 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23207
23208 commit b8845abdc0dcf20d0944e965153f5ae7a9c3077c
23209 Author: Wolfgang Denk <wd@denx.de>
23210 Date: Wed Feb 18 21:35:38 2009 +0100
23211
23212 Fix build errors after making flash_get_info() non-static
23213
23214 Fix for these build problems:
23215 error: static declaration of 'flash_get_info' follows non-static declaration
23216
23217 Signed-off-by: Wolfgang Denk <wd@denx.de>
23218
23219 commit b4996d6b2140e5da7f1c346f37a67b19907b307a
23220 Author: Stefan Roese <sr@denx.de>
23221 Date: Wed Feb 18 13:18:00 2009 +0100
23222
23223 ppc4xx: PCIe: Change 16GB inbound memory to 4GB
23224
23225 This patch fixes a problem recently seen on some 4xx platforms. For
23226 example on Kilauea PCIe slot #0.
23227
23228 Signed-off-by: Stefan Roese <sr@denx.de>
23229
23230 commit f50fe4bd613c6d35a2c34055f02e9501dd6a9ad5
23231 Author: Stefan Roese <sr@denx.de>
23232 Date: Wed Feb 18 14:05:37 2009 +0100
23233
23234 ppc4xx: Some more PMC405 coding-style cleanup
23235
23236 Signed-off-by: Stefan Roese <sr@denx.de>
23237
23238 commit 2f6eb9170bf91b72ea51dcea2a8b9c11b0e20bc5
23239 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
23240 Date: Sun Feb 15 22:27:47 2009 +0100
23241
23242 ppc4xx: Update PMC405 board support
23243
23244 This patch prepares the good old PMC405 board support for
23245 upcoming PMC405V2 patches.
23246
23247 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23248 Signed-off-by: Stefan Roese <sr@denx.de>
23249
23250 commit c553b5f4a0c77fc76e1d25e71c8aaa47657e2d6f
23251 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
23252 Date: Sun Feb 15 22:26:54 2009 +0100
23253
23254 ppc4xx: Cleanup PMC405 board support
23255
23256 This patch fixes coding style for PMC405 board support.
23257 Also some unneeded features/code is removed.
23258
23259 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23260 Signed-off-by: Stefan Roese <sr@denx.de>
23261
23262 commit b4e85d0f37b5b924fbf834867ad6d0b31b86f667
23263 Author: Ilya Yanok <yanok@emcraft.com>
23264 Date: Thu Feb 5 04:08:20 2009 +0100
23265
23266 qong: changes to Dave/DENX Qong configuration
23267
23268 1. Changes to the default environment:
23269 - "bootcmd" defined as "run flash_self"
23270 - "saveenv" command removed from "update"
23271 - "uboot" changed to "u-boot" (also in "load")
23272 - "addmtd" variable defined (and added to all boot commands)
23273 2. CONFIG_CMD_JFFS2 defined to enable "mtdparts" command
23274 3. MTDIDS_DEFAULT and MTDPARTS_DEFAULT defined
23275 4. CONFIG_SYS_CBSIZE changed from 256 to 512. That solves the problem
23276 with truncated "bootargs" environment variable.
23277
23278 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
23279
23280 commit 5f0320108870e5d62983d1d5c13a2a087dddf686
23281 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23282 Date: Sun Feb 1 17:07:52 2009 +0100
23283
23284 common/console: avoid ifdef CONFIG_CONSOLE_MUX when it's possible
23285
23286 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23287
23288 commit ec6f14994602276660f7264c6ab3b91ef1f7614d
23289 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23290 Date: Sun Feb 1 17:07:51 2009 +0100
23291
23292 common/console: coding style cleanup
23293
23294 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23295
23296 commit daaf74f176b548dfd34a9990231f4189201d57ba
23297 Author: Mike Frysinger <vapier@gentoo.org>
23298 Date: Thu Jan 29 20:02:23 2009 -0500
23299
23300 mpc8xx_pcmcia: move CONFIG_8xx out of .c file and into Makefile
23301
23302 Move the CONFIG_8xx mpc8xx_pcmcia.c protection out of the C file and
23303 into the Makefile so we avoid pointless compiling of the file.
23304
23305 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23306
23307 commit 7bd2722e890bc877a3c057d7ccddc80451c99939
23308 Author: Mike Frysinger <vapier@gentoo.org>
23309 Date: Thu Jan 29 20:02:07 2009 -0500
23310
23311 disk: convert part_* files to COBJ-$(CONFIG_XXX) style
23312
23313 Move the CONFIG_XXX out of the part_XXX.c file and into Makefile to
23314 avoid pointless compiles.
23315
23316 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23317
23318 commit f05fa9205e04986176dc7ab8b710bcb5fbe9f338
23319 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
23320 Date: Thu Jan 29 10:35:40 2009 +0200
23321
23322 include/image.h: Ease grepping of image_* functions
23323
23324 Because the functions have been defined using macros, grepping for
23325 their definitions is not possible. This patch adds the real function
23326 names in comments.
23327
23328 Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
23329 Acked-by: Mike Frysinger <vapier@gentoo.org>
23330
23331 commit bdab39d358e63aa47f400a8a76b8d5f283842df3
23332 Author: Mike Frysinger <vapier@gentoo.org>
23333 Date: Wed Jan 28 19:08:14 2009 -0500
23334
23335 rename CONFIG_CMD_ENV to CONFIG_CMD_SAVEENV
23336
23337 The CONFIG_CMD_ENV option controls enablement of the `saveenv` command
23338 rather than a generic "env" command, or anything else related to the
23339 environment. So, let's make sure the define is named accordingly.
23340
23341 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23342
23343 commit 8b0592b89e0f9f81c9e150c81d96f8a43e4d6101
23344 Author: Valeriy Glushkov <gvv@lstec.com>
23345 Date: Fri Jan 23 20:02:17 2009 +0200
23346
23347 disable imls command if no flash is defined
23348
23349 Default CONFIG_CMD_IMLS must be disabled when CONFIG_SYS_NO_FLASH is defined
23350
23351 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
23352
23353 commit 923aa48126259c13de95131203f1d28bfa5cb889
23354 Author: Rafal Jaworowski <raj@semihalf.com>
23355 Date: Fri Jan 23 13:27:18 2009 +0100
23356
23357 API: Improve glue mid-layer of the API demo application.
23358
23359 - Extend ub_dev_read() and ub_dev_recv() so they return the length actually
23360 read, which allows for better control and error handling (this introduces
23361 additional error code API_ESYSC returned by the glue mid-layer).
23362
23363 - Clean up definitions naming and usage.
23364
23365 - Other minor cosmetics.
23366
23367 Note these changes do not touch the API proper, so the interface between
23368 U-Boot and standalone applications remains unchanged.
23369
23370 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
23371
23372 commit 44a94e596ba0f6d0951b165403c520bf55b1c56f
23373 Author: Rafal Jaworowski <raj@semihalf.com>
23374 Date: Fri Jan 23 13:27:17 2009 +0100
23375
23376 API: Only output test data when reading was successful.
23377
23378 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
23379
23380 commit 7fb6c4f9b06c5539043c8bfc6565710b8090841d
23381 Author: Rafal Jaworowski <raj@semihalf.com>
23382 Date: Fri Jan 23 13:27:16 2009 +0100
23383
23384 API: Provide syscall entry point for the ARM architecture.
23385
23386 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
23387 Acked-by: Rafal Jaworowski <raj@semihalf.com>
23388
23389 commit b84d7d8f1e1066f810866304a16a3583f88e7c98
23390 Author: Rafal Jaworowski <raj@semihalf.com>
23391 Date: Fri Jan 23 13:27:15 2009 +0100
23392
23393 API: Use stack pointer as API signature search hint in the glue layer.
23394
23395 De-hardcode range in RAM we search for the API signature. Instead use the stack
23396 pointer as a hint to narrow down the range in which the signature could reside
23397 (it is malloc'ed on the U-Boot heap, and is hoped to remain in some proximity
23398 from stack area). Adjust PowerPC code in API demo to the new scheme.
23399
23400 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
23401 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
23402
23403 commit 86b4bafdfaf669ede8fd99044abc7e27ea29b4f5
23404 Author: Wolfgang Denk <wd@denx.de>
23405 Date: Tue Feb 17 10:26:38 2009 +0100
23406
23407 TQM8260: fix locations of kernel and ramdisk images in flash
23408
23409 After introducing redundant environment the kernel images was
23410 overlapping with environment.
23411
23412 Signed-off-by: Wolfgang Denk <wd@denx.de>
23413
23414 commit 2b68b23373f96199a0cafbfd7a9f79ed62381ebb
23415 Author: Heiko Schocher <hs@denx.de>
23416 Date: Wed Feb 11 19:26:15 2009 +0100
23417
23418 83xx: add missing TIMING_CFG1_CASLAT_* defines
23419
23420 Signed-off-by: Heiko Schocher <hs@denx.de>
23421 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23422
23423 commit c9e34fe2e86f7b6cc8260f4b24cbdc7dd81e04c5
23424 Author: Valeriy Glushkov <gvv@lstec.com>
23425 Date: Thu Feb 5 14:35:21 2009 +0200
23426
23427 mpc8349itx: allow SATA boot from the onboard SIL1334
23428
23429 This patch allows using of SATA devices connected
23430 to the onboard PCI SIL1334 SATA controller.
23431
23432 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
23433 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23434
23435 commit e1ac387f4645499746856adc1aeaa9787da2eca6
23436 Author: Andy Fleming <afleming@freescale.com>
23437 Date: Thu Oct 30 16:50:14 2008 -0500
23438
23439 83xx: Add eSDHC support on 8379 EMDS board
23440
23441 Signed-off-by: Andy Fleming <afleming@freescale.com>
23442
23443 commit 80522dc8369a89938369fbcee572e662373bc9a3
23444 Author: Andy Fleming <afleming@freescale.com>
23445 Date: Thu Oct 30 16:51:33 2008 -0500
23446
23447 85xx: Add eSDHC support for 8536 DS
23448
23449 Signed-off-by: Andy Fleming <afleming@freescale.com>
23450
23451 commit 50586ef24ed5caf6ce5591df76f355009da2cd79
23452 Author: Andy Fleming <afleming@freescale.com>
23453 Date: Thu Oct 30 16:47:16 2008 -0500
23454
23455 Add support for the Freescale eSDHC found on 8379 and 8536 SoCs
23456
23457 This uses the new MMC framework
23458
23459 Some contributions by Dave Liu <daveliu@freescale.com>
23460
23461 Signed-off-by: Andy Fleming <afleming@freescale.com>
23462
23463 commit 272cc70b211e945e4413122aa73868f6ada732a5
23464 Author: Andy Fleming <afleming@freescale.com>
23465 Date: Thu Oct 30 16:41:01 2008 -0500
23466
23467 Add MMC Framework
23468
23469 Here's a new framework (based roughly off the linux one) for managing
23470 MMC controllers. It handles all of the standard SD/MMC transactions,
23471 leaving the host drivers to implement only what is necessary to
23472 deal with their specific hardware.
23473
23474 This also hooks the infrastructure into the PowerPC board code
23475 (similar to how the ethernet infrastructure now hooks in)
23476
23477 Some of this code was contributed by Dave Liu <daveliu@freescale.com>
23478
23479 Signed-off-by: Andy Fleming <afleming@freescale.com>
23480
23481 commit 1de97f9856f697380cc504126ab92561ed238803
23482 Author: Andy Fleming <afleming@freescale.com>
23483 Date: Thu Oct 30 16:31:39 2008 -0500
23484
23485 Eliminated arch-specific mmc header requirement
23486
23487 The current MMC infrastructure relies on the existence of an
23488 arch-specific header file. This isn't necessary, and a couple
23489 drivers were forced to implement dummy files to meet this requirement.
23490 Instead, we move the stuff in those header files into a more appropriate
23491 place, and eliminate the stubs and the #include of asm/arch/mmc.h
23492
23493 Signed-off-by: Andy Fleming <afleming@freescale.com>
23494
23495 commit abb5466ccf4ce50f412d459586f4f4b81cb73ac3
23496 Author: Andy Fleming <afleming@freescale.com>
23497 Date: Thu Oct 30 16:21:00 2008 -0500
23498
23499 Convert mmc_init to mmc_legacy_init
23500
23501 This is to get it out of the way of incoming MMC framework
23502
23503 Signed-off-by: Andy Fleming <afleming@freescale.com>
23504
23505 commit b2e2ed0233a5ef299361abec4fbdaefb63456eff
23506 Author: Andy Fleming <afleming@freescale.com>
23507 Date: Thu Oct 30 16:19:25 2008 -0500
23508
23509 Eliminate support for using MMC as memory
23510
23511 MMC cards are not memory, so we stop treating them that way.
23512
23513 Signed-off-by: Andy Fleming <afleming@freescale.com>
23514
23515 commit e1be0d25ecf494ae81245ca438738ba839d6329b
23516 Author: Poonam_Aggrwal-b10812 <b10812@freescale.com>
23517 Date: Sun Jan 4 08:46:38 2009 +0530
23518
23519 32bit BUg fix for DDR2 on 8572
23520
23521 This errata fix is required for 32 bit DDR2 controller on 8572.
23522 May also be required for P10XX20XX platforms
23523
23524 Signed-off-by: Poonam_Agarwal-b10812 <b10812@lc1106.zin33.ap.freescale.net>
23525
23526 commit e0c4fac79d4d74572ddd43f75e7189cecca8d0ad
23527 Author: Andy Fleming <afleming@freescale.com>
23528 Date: Mon Feb 16 09:40:20 2009 -0600
23529
23530 TQM85xx: Fix a couple warnings in TQM8548 build
23531
23532 The ecm variable in sdram.c was being declared for all 8548, but only
23533 used by specific 8548 boards, so we make that variable require those
23534 specific boards, too
23535
23536 The nand code was using an index "i" into a table, and then re-using "i"
23537 to set addresses for each upm. However, then it relied on the old value
23538 of i still being there to enable things. Changed the second "i" to "j"
23539
23540 Signed-off-by: Andy Fleming <afleming@freescale.com>
23541
23542 commit cf07a5baece0ecfc5284cfda8a4e68eaf92782f8
23543 Author: Wolfgang Grandegger <wg@grandegger.com>
23544 Date: Wed Feb 11 18:38:26 2009 +0100
23545
23546 MPC85xx: TQM8548: workaround for erratum DDR 19 and 20
23547
23548 This patch adds the workaround for erratum DDR20 according to MPC8548
23549 Device Errata document, Rev. 1: "CKE signal may not function correctly
23550 after assertion of HRESET". Furthermore, the bug DDR19 is fixed in
23551 processor version 2.1 and the work-around must be removed.
23552
23553 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
23554
23555 commit 080408fdc71706adcb883d22125637c54f6010b1
23556 Author: Wolfgang Grandegger <wg@grandegger.com>
23557 Date: Wed Feb 11 18:38:25 2009 +0100
23558
23559 MPC85xx: TQM8548: use cache for AG and BE variants
23560
23561 This patch makes accesses to the system memory cachable by removing the
23562 caching-inhibited and guarded flags from the relevant TLB entries for
23563 the TQM8548_BE and TQM8548_AG modules. FYI, the Freescale MPC85* boards
23564 are configured similarly.
23565
23566 This results in a big averall performace improvement. TFTP downloads,
23567 NAND Flash accesses, kernel boots, etc. are much faster.
23568
23569 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
23570
23571 commit dc5f55d636d7bf21ba17758fac4b929ec4c059f2
23572 Author: Wolfgang Grandegger <wg@grandegger.com>
23573 Date: Wed Feb 11 18:38:24 2009 +0100
23574
23575 MPC85xx: TQM8548_AG: add 1 GiB DDR2-SDRAM configuration
23576
23577 This patch add support for the 1 GiB DDR2-SDRAM on the TQM8548_AG
23578 module.
23579
23580 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
23581 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
23582
23583 commit 88b0e88d186479349e5a2b771e82775109e10fb4
23584 Author: Wolfgang Grandegger <wg@grandegger.com>
23585 Date: Wed Feb 11 18:38:23 2009 +0100
23586
23587 MPC85xx: TQM8548: fix SDRAM timing for 533 MHz
23588
23589 According to new TQM8548 timing specification:
23590 Refresh Recovery: 34 -> 53 clocks
23591 CKE pulse width: 1 -> 3 cycles
23592 Window for four activities: 13 -> 14 cycles
23593
23594 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
23595 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
23596
23597 commit a865bcdac89278cac4dfc07dec8299403110499d
23598 Author: Wolfgang Grandegger <wg@grandegger.com>
23599 Date: Wed Feb 11 18:38:22 2009 +0100
23600
23601 MPC85xx: TQM8548: add support for the TQM8548_AG module
23602
23603 The TQM8548_AG is a variant of the TQM8548 module with 1 GiB memory,
23604 CAN and without PCI/PCI-X and RTC. U-Boot can be built for this module
23605 with "$ make TQM8548_AG_config".
23606
23607 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
23608
23609 commit ad7ee5d43b0db94079d56521dabca25674f28747
23610 Author: Wolfgang Grandegger <wg@grandegger.com>
23611 Date: Wed Feb 11 18:38:21 2009 +0100
23612
23613 MPC85xx: TQM8548: add support for the TQM8548_BE module
23614
23615 The TQM8548_BE is a variant of the TQM8548 module with NAND and CAN
23616 interface. With NAND support, the image is significantly larger and
23617 TEXT_BASE is adjusted accordingly. U-Boot can be built for this
23618 module with "$ make TQM8548_BE_config".
23619
23620 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
23621
23622 commit a318234878c346e673b2ef8dc4b14b338fe7fc2b
23623 Author: Wolfgang Grandegger <wg@grandegger.com>
23624 Date: Wed Feb 11 18:38:20 2009 +0100
23625
23626 MPC85xx: TQM85xx: make standard PCI/PCI-X configurable
23627
23628 The TQM8548_AG module does not have the standard PCI/PCI-X interface
23629 connected but just the PCI Express interface . So far it was not
23630 possible to disable it without disabling the complete PCI interface
23631 (CONFIG_PCI) including PCI Express.
23632
23633 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
23634
23635 commit 31ca9119c3186cec579b54d2a7a2b361b4d2b7bf
23636 Author: Wolfgang Grandegger <wg@grandegger.com>
23637 Date: Wed Feb 11 18:38:19 2009 +0100
23638
23639 MPC85xx: TQM85xx: fix flash protection for boot loader
23640
23641 As the reset vector is located at 0xfffffffc, all flash sectors from the
23642 beginning of the U-Boot binary to 0xffffffff must be protected. On the
23643 TQM8548-AG having small sectors at the end of the flash it happened that
23644 the last two sector were not protected and an "erase all" left an
23645 un-bootable system behind:
23646
23647 Bank # 2: CFI conformant FLASH (32 x 16) Size: 32 MB in 270 Sectors
23648 AMD Standard command set, Manufacturer ID: 0xEC, Device ID: 0x257E
23649 Erase timeout: 8192 ms, write timeout: 1 ms
23650
23651 FFFA0000 E RO FFFC0000 RO FFFE0000 RO FFFE4000 RO FFFE8000 RO
23652 FFFEC000 RO FFFF0000 RO FFFF4000 RO FFFF8000 E FFFFC000
23653
23654 The same bug seems to be in drivers/mtd/cfi_flash.c:flash_init() and many
23655 board BSPs as well.
23656
23657 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
23658
23659 commit a1c8a719262151f97119e76166043ee3da3f97b2
23660 Author: Peter Tyser <ptyser@xes-inc.com>
23661 Date: Fri Feb 6 14:30:40 2009 -0600
23662
23663 86xx: Update CPU info output on bootup
23664
23665 - Update style of 86xx CPU information on boot to more closely
23666 match 85xx boards
23667 - Fix detection of 8641/8641D
23668 - Use strmhz() to display frequencies
23669 - Display L1 information
23670 - Display L2 cache size
23671 - Fixed CPU/SVR version output
23672
23673 == Before ==
23674 Freescale PowerPC
23675 CPU:
23676 Core: E600 Core 0, Version: 0.2, (0x80040202)
23677 System: Unknown, Version: 2.1, (0x80900121)
23678 Clocks: CPU:1066 MHz, MPX: 533 MHz, DDR: 266 MHz, LBC: 133 MHz
23679 L2: Enabled
23680 Board: X-ES XPedite5170 3U VPX SBC
23681
23682 == After ==
23683 CPU: 8641D, Version: 2.1, (0x80900121)
23684 Core: E600 Core 0, Version: 2.2, (0x80040202)
23685 Clock Configuration:
23686 CPU:1066.667 MHz, MPX:533.333 MHz
23687 DDR:266.667 MHz (533.333 MT/s data rate), LBC:133.333 MHz
23688 L1: D-cache 32 KB enabled
23689 I-cache 32 KB enabled
23690 L2: 512 KB enabled
23691 Board: X-ES XPedite5170 3U VPX SBC
23692
23693 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23694
23695 commit 22c00f8d7d454d77e759df58415d2d3f3d7e154c
23696 Author: Peter Tyser <ptyser@xes-inc.com>
23697 Date: Thu Feb 5 11:25:24 2009 -0600
23698
23699 86xx: Update Global Utilities structure
23700
23701 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23702
23703 commit 4ef630df773e45806d701bf5d25c328778bb4cde
23704 Author: Peter Tyser <ptyser@xes-inc.com>
23705 Date: Thu Feb 5 11:25:25 2009 -0600
23706
23707 86xx: Reset update
23708
23709 Update the 86xx reset sequence to try executing a board-specific reset
23710 function. If the board-specific reset is not implemented or does not
23711 succeed, then assert #HRESET_REQ. Using #HRESET_REQ is a more standard
23712 reset procedure than the previous method and allows all board
23713 peripherals to be reset if needed.
23714
23715 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23716
23717 commit edf0e2524a8c6a3e91c009c496a0aa0ae89cd8ab
23718 Author: Kumar Gala <galak@kernel.crashing.org>
23719 Date: Tue Feb 10 23:53:40 2009 -0600
23720
23721 fsl-ddr: Allow system to boot if we have more than 4G of memory
23722
23723 Previously if we >=4G of memory and !CONFIG_PHYS_64BIT we'd report
23724 an error and hang. Instead of doing that since DDR is mapped in the
23725 lowest priority LAWs we setup the DDR controller and the max amount
23726 of memory we report back is what we can map (CONFIG_MAX_MEM_MAPPED)
23727
23728 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23729 Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
23730
23731 commit 8d949aff38cfb4388cbd73876e77bcd06d601f20
23732 Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
23733 Date: Wed Jan 21 17:17:33 2009 -0600
23734
23735 mpc85xx: Add support for the P2020
23736
23737 Added various p2020 processor specific details:
23738 * SVR for p2020, p2020E
23739 * immap updates for LAWs and DDR on p2020
23740 * LAW defines related to p2020
23741
23742 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
23743 Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
23744 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23745
23746 commit cb69e4de8702e108324e1c40363f30ef6f2e2918
23747 Author: Kumar Gala <galak@kernel.crashing.org>
23748 Date: Tue Feb 10 17:36:15 2009 -0600
23749
23750 85xx: print boot header info to distinquish 36-bit addr map on MPC8572 DS
23751
23752 Added some info that is printed out when we boot to distiquish if we
23753 built MPC8572DS_config vs MPC8572DS_36BIT_config since they have
23754 different address maps.
23755
23756 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23757
23758 commit feede8b07013b33fca8dd2a916b3ac86bf4d4c0a
23759 Author: Andy Fleming <afleming@freescale.com>
23760 Date: Fri Dec 5 20:10:22 2008 -0600
23761
23762 Fixup SGMII PHY ids in the device tree
23763
23764 The device tree's PHY addresses need to be fixed up if we're using the
23765 SGMII Riser Card.
23766
23767 The 8572, 8536, and 8544 DS boards were modified to call this function.
23768
23769 Code idea taken from Liu Yu <yu.liu@freescale.com>
23770
23771 Signed-off-by: Andy Fleming <afleming@freescale.com>
23772
23773 commit 5dc0cf68f8f101042997d75188081d8526d705ea
23774 Author: Andy Fleming <afleming@freescale.com>
23775 Date: Wed Feb 11 15:10:31 2009 -0600
23776
23777 Make some minor whitespace changes to eliminate line-wrapping
23778
23779 Signed-off-by: Andy Fleming <afleming@freescale.com>
23780
23781 commit 9e56986a2b74d197f51eca70fad7b836b1900c4d
23782 Author: Andy Fleming <afleming@freescale.com>
23783 Date: Wed Feb 11 15:07:24 2009 -0600
23784
23785 Add eth_get_dev_by_index
23786
23787 This allows code to iterate through the ethernet devices
23788
23789 Signed-off-by: Andy Fleming <afleming@freescale.com>
23790
23791 commit b67305120aaf268a6140125346678166d14f1f47
23792 Author: Kumar Gala <galak@kernel.crashing.org>
23793 Date: Mon Feb 9 22:03:04 2009 -0600
23794
23795 85xx: Fix bug in device tree setup in 36-bit physical confg
23796
23797 In the 36-bit physical config for MPC8572DS when need the start address
23798 of memory and it size to be kept in phys_*_t instead of a ulong since
23799 we support >4G of memory in the config and ulong cant represent that.
23800 Otherwise we end up seeing the memory node in the device tree reporting
23801 back we have memory starting @ 0 and of size 0.
23802
23803 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23804
23805 commit ad97dce18445ff05bf326094e691a01aa95aa8dc
23806 Author: Kumar Gala <galak@kernel.crashing.org>
23807 Date: Mon Feb 9 22:03:05 2009 -0600
23808
23809 85xx: Fix address map for 36-bit config of MPC8572DS
23810
23811 When we introduced the 36-bit config of the MPC8572DS board we had the
23812 wrong PCI MEM bus address map. Additionally, the change to the address
23813 map exposes a small issue in our dummy read on the ULI bus. We need
23814 to use the new mapping functions to handle that read properly in the
23815 36-bit config.
23816
23817 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23818
23819 commit f8523cb0815b2d3d2d780b7d49ca614105555f58
23820 Author: Kumar Gala <galak@kernel.crashing.org>
23821 Date: Fri Feb 6 09:56:35 2009 -0600
23822
23823 85xx: Fix how we map DDR memory
23824
23825 Previously we only allowed power-of-two memory sizes and didnt
23826 handle >2G of memory. Now we will map up to CONFIG_MAX_MEM_MAPPED
23827 and should properly handle any size that we can make in the TLBs
23828 we have available to us
23829
23830 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23831
23832 commit 1542fbdeec0d1e2a6df13189df8dcb1ce8802be3
23833 Author: Kumar Gala <galak@kernel.crashing.org>
23834 Date: Fri Feb 6 09:56:34 2009 -0600
23835
23836 fsl-ddr: ignore memctl_intlv_ctl setting if only one DDR controller
23837
23838 If we only have one controller we can completely ignore how
23839 memctl_intlv_ctl is set. Otherwise other levels of code get confused
23840 and think we have twice as much memory.
23841
23842 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23843
23844 commit b29dee3c906e9daaf6baf7772d2e15e26b8636b8
23845 Author: Kumar Gala <galak@kernel.crashing.org>
23846 Date: Wed Feb 4 09:35:57 2009 -0600
23847
23848 85xx: Format cpu freq printing to handle 8 cores
23849
23850 Only print 4 cpu freq per line. This way when we have 8 cores its a
23851 bit more readable.
23852
23853 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23854
23855 commit 9704f9caf53f5cae547d8c5e1ae94aa4e57b160f
23856 Author: Abraham, Thomas <t-abraham@ti.com>
23857 Date: Tue Oct 28 16:51:31 2008 +0530
23858
23859 USB: Remove LUN number from CDB
23860
23861 The LUN number is not part of the Command Descriptor Block (CDB) for scsi inquiry, request sense, test unit ready, read capacity and read10 commands. This patch removes the LUN number information from the CDB.
23862
23863 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
23864 Signed-off-by: Remy Bohmer <linux@bohmer.net>
23865
23866 commit f3c0de636252f3a18654c8f9c6370a9574a7e755
23867 Author: Atin Malaviya <atin.malaviya@gmail.com>
23868 Date: Tue Feb 3 15:17:10 2009 -0500
23869
23870 Added usbtty_configured() check. Fixed attribute(packed) warnings.
23871
23872 V3: Fixed line-wrap problem due to user error in mail!
23873
23874 Added usb_configured() checks in usbtty_puts() and usbtty_putc() to get around a hang
23875 when usb is not connected and the user has set up multi-io (setenv stdout serial,usbtty etc).
23876 Got rid of redundant __attribute__((packed)) directives that were causing warnings from gcc.
23877
23878 Signed-off-by: Atin Malaviya <atin.malaviya@gmail.com>
23879 Signed-off-by: Remy Bohmer <linux@bohmer.net>
23880
23881 commit e7de18afe8ecf96a51ef981d06066eeb6b1254e7
23882 Author: Guennadi Liakhovetski <lg@denx.de>
23883 Date: Fri Feb 13 09:23:36 2009 +0100
23884
23885 i.MX31: Start the I2C clock on driver initialisation
23886
23887 i.MX31 powers on with most clocks running, so, after a power on this explicit
23888 clock start up is not required. However, as Linux boots it disables most clocks
23889 to save power. This includes the I2C clock. If we then soft reboot from Linux
23890 the I2C clock stays off. This breaks the phycore, which has its environment in
23891 I2C EEPROM. Fix the problem by explicitly starting the clock in I2C driver
23892 initialisation routine.
23893
23894 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
23895 Ack-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23896
23897 commit 15208ac9eae1c340c4bc11f70cbf5c9da78a57ba
23898 Author: Mike Frysinger <vapier@gentoo.org>
23899 Date: Wed Feb 11 20:36:14 2009 -0500
23900
23901 i2c.h: drop i2c_reg_{read, write} hack for Blackfin parts
23902
23903 The Blackfin i2c driver has been rewritten thus the special ifdefs in the
23904 common code are no longer needed.
23905
23906 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23907
23908 commit c2d9befa0b4695b89476fb5d259742c09afe243f
23909 Author: Heiko Schocher <hs@denx.de>
23910 Date: Thu Feb 12 08:08:54 2009 +0100
23911
23912 82xx, mgcoge: fix compile error
23913
23914 With actual u-boot compiling the mgcoge port fails, because
23915 since commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56 it is
23916 necessary to define CONFIG_NET_MULTI.
23917
23918 Seems to me the mgcoge port is the only actual existing 8260
23919 port who uses CONFIG_ETHER_ON_SCC, so no other 8260 port needed
23920 to be fixed.
23921
23922 Signed-off-by: Heiko Schocher <hs@denx.de>
23923
23924 commit 9cacf4fc4035eabe9d9ae2a9a188c51a8027c91e
23925 Author: Dirk Eibach <eibach@gdsys.de>
23926 Date: Mon Feb 9 08:18:34 2009 +0100
23927
23928 ppc4xx: Add README entry for CONFIG_PCI_DISABLE_PCIE
23929
23930 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
23931 Signed-off-by: Stefan Roese <sr@denx.de>
23932
23933 commit 7369f0e384e2a831be13a7773a58242c9173fa9c
23934 Author: Carolyn Smith <carolyn.smith@tektronix.com>
23935 Date: Thu Feb 12 06:13:44 2009 +0100
23936
23937 ppc4xx: Fix initialization of the SDRAM_CODT register
23938
23939 This fixes the initialization of the SDRAM_CODT register in the ppc4xx DDR2
23940 initialization code. It also removes use of the SDRAM_CODT_FEEDBACK_RCV_SINGLE_END
23941 and SDRAM_CODT_FEEDBACK_DRV_SINGLE_END #define's since they are reserved bits.
23942
23943 Signed-off-by: Carolyn Smith <carolyn.smith@tektronix.com>
23944 Signed-off-by: Stefan Roese <sr@denx.de>
23945
23946 commit cef0efaf2fa55d1f25066cfb02bd984c27f9ca31
23947 Author: Stefan Roese <sr@denx.de>
23948 Date: Wed Feb 11 09:29:33 2009 +0100
23949
23950 ppc4xx: Fix problem with board_eth_init() vs cpu_eth_init() on AMCC boards
23951
23952 Some AMCC eval boards do have a board_eth_init() function calling
23953 pci_eth_init(). These boards need to call cpu_eth_init() explicitly now
23954 with the new eth_init rework.
23955
23956 Signed-off-by: Stefan Roese <sr@denx.de>
23957
23958 commit c645012aefebb301e6907d148c6c8efacac049d4
23959 Author: Adam Graham <agraham@amcc.com>
23960 Date: Mon Feb 9 13:18:12 2009 -0800
23961
23962 ppc4xx: Autocalibration can set RDCC to over aggressive value.
23963
23964 The criteria of the AMCC SDRAM Controller DDR autocalibration
23965 U-Boot code is to pick the largest passing write/read/compare
23966 window that also has the smallest SDRAM_RDCC.[RDSS] Read Sample
23967 Cycle Select value.
23968
23969 On some Kilauea boards the DDR autocalibration algorithm can
23970 find a large passing write/read/compare window with a small
23971 SDRAM_RDCC.[RDSS] aggressive value of Read Sample Cycle Select
23972 value "T1 Sample".
23973
23974 This SDRAM_RDCC.[RDSS] Read Sample Cycle Select value of
23975 "T1 Sample" proves to be to aggressive when later on U-Boot
23976 relocates into DDR memory and executes.
23977
23978 The memory traces on the Kilauea board are short so on some
23979 Kilauea boards the SDRAM_RDCC.[RDSS] Read Sample Cycle Select
23980 value of "T1 Sample" shows up as a potentially valid value for
23981 the DDR autocalibratiion algorithm.
23982
23983 The fix is to define a weak default function which provides
23984 the minimum SDRAM_RDCC.[RDSS] Read Sample Cycle Select value
23985 to accept for DDR autocalibration. The default will be the
23986 "T2 Sample" value. A board developer who has a well defined
23987 board and chooses to be more aggressive can always provide
23988 their own board specific string function with the more
23989 aggressive "T1 Sample" value or stick with the default
23990 minimum SDRAM_RDCC.[RDSS] value of "T2".
23991
23992 Also put in a autocalibration loop fix for case where current
23993 write/read/compare passing window size is the same as a prior
23994 window size, then in this case choose the write/read/compare
23995 result that has the associated smallest RDCC T-Sample value.
23996
23997 Signed-off-by: Adam Graham <agraham@amcc.com>
23998 Signed-off-by: Stefan Roese <sr@denx.de>
23999
24000 commit 2ede879fcb67470524847bb4fc8972651bb46184
24001 Author: Stefan Roese <sr@denx.de>
24002 Date: Wed Feb 11 09:37:12 2009 +0100
24003
24004 ppc4xx: Fix problem with CONFIG_MAX_MEM_MAPPED in include/asm-ppc/config.h
24005
24006 CONFIG_SDRAM_PPC4xx_IBM_DDR2 is not set when include/asm-ppc/config.h is
24007 included. So for katmai, CONFIG_MAX_MEM_MAPPED will get set to 256MB.
24008
24009 It makes perfect sense to set CONFIG_MAX_MEM_MAPPED to 2GB for all PPC4xx
24010 boards right now.
24011
24012 Signed-off-by: Stefan Roese <sr@denx.de>
24013
24014 commit f15c6515fc23f83c51f3de272ca23d86b80e81b1
24015 Author: Wolfgang Denk <wd@denx.de>
24016 Date: Thu Feb 12 00:08:39 2009 +0100
24017
24018 Coding style cleanup; update CHANGELOG
24019
24020 Signed-off-by: Wolfgang Denk <wd@denx.de>
24021
24022 commit 5fc56b907d993260b9ebdb137af66fe69635ae9e
24023 Author: Peter Tyser <ptyser@xes-inc.com>
24024 Date: Fri Jan 30 16:36:40 2009 -0600
24025
24026 Add feature-removal-schedule.txt
24027
24028 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24029
24030 commit 255d28e1642e8fc32a6753226be1a96b481ce111
24031 Author: Heiko Schocher <hs@denx.de>
24032 Date: Tue Feb 10 09:32:38 2009 +0100
24033
24034 8xx serial, smc: Coding-Style cleanup serial SMC driver
24035
24036 Signed-off-by: Heiko Schocher <hs@denx.de>
24037
24038 commit 2b3f12c214346508cae3f1245808c1ca54c81fdd
24039 Author: Heiko Schocher <hs@denx.de>
24040 Date: Tue Feb 10 09:31:47 2009 +0100
24041
24042 8xx serial, smc: add configurable SMC Rx buffer len
24043
24044 This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
24045 With this option it is possible to allow the receive
24046 buffer for the SMC on 8xx to be greater then 1. In case
24047 CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
24048 old version.
24049
24050 When defining CONFIG_SYS_SMC_RXBUFLEN also
24051 CONFIG_SYS_MAXIDLE must be defined to setup the maximum
24052 idle timeout for the SMC.
24053
24054 Signed-off-by: Heiko Schocher <hs@denx.de>
24055
24056 commit e915f8bb73d74178bc21d3a457959883b1afd1c0
24057 Author: Mike Frysinger <vapier@gentoo.org>
24058 Date: Thu Feb 5 21:04:36 2009 -0500
24059
24060 common/{hush, kgdb, serial}.c: build by COBJS-$(...) in Makefile
24061
24062 Move global '#ifdef CONFIG_xxx .... #endif' out of the .c files and into
24063 the COBJS-$(CONFIG_xxx) in the Makefile. Also delete unused var in kgdb
24064 code in the process.
24065
24066 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24067
24068 commit ab76e9848a1f4db64d14233741d739a3b3360c93
24069 Author: Mike Frysinger <vapier@gentoo.org>
24070 Date: Thu Feb 5 21:04:50 2009 -0500
24071
24072 bzip2: move ifdef handling to Makefile COBJS-$(...)
24073
24074 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24075
24076 commit ae0b05df04e1cc65c5ad19ccd362f4be82df7316
24077 Author: Jerry Van Baren <gvb.uboot@gmail.com>
24078 Date: Thu Feb 5 22:18:02 2009 -0500
24079
24080 Fix whitespace damage: double space changed to a tab
24081
24082 At some point an intentional double space at the end of the sentence
24083 got changed into a tab in the GPL header line:
24084 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24085
24086 This patch fixes the damage.
24087
24088 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
24089
24090 commit 4f975678de995b55749d5e84590c268972a7c835
24091 Author: Heiko Schocher <hs@denx.de>
24092 Date: Tue Feb 10 09:53:29 2009 +0100
24093
24094 cfi: make flash_get_info() non static
24095
24096 If on your board is more than one flash, you must know
24097 the size of every single flash, for example, for updating
24098 the DTS before booting Linux. So make this function
24099 flash_get_info() extern, and you can have all info
24100 about your flashes.
24101
24102 Signed-off-by: Heiko Schocher <hs@denx.de>
24103 Signed-off-by: Stefan Roese <sr@denx.de>
24104
24105 commit 86321fc1128c93a10ac4afb9d317b0df8ece0f9e
24106 Author: Ben Warren <biggerbadderben@gmail.com>
24107 Date: Thu Feb 5 23:58:25 2009 -0800
24108
24109 net: removed board-specific CONFIGs from MPC5xxx FEC driver
24110
24111 Added new CONFIG options for the three type of MAC-PHY interconnect and
24112 applied them all relevant board config files
24113
24114 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24115
24116 commit 638ed3e296e70fab286d157b7adedaaa4a09a474
24117 Author: Mike Frysinger <vapier@gentoo.org>
24118 Date: Thu Feb 5 21:04:47 2009 -0500
24119
24120 net/sntp.c: move ifdef into Makefile COBJS-$(...)
24121
24122 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24123 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24124
24125 commit 9e5be8214ba751436e57c3be044bf6dccb9a6687
24126 Author: Andy Fleming <afleming@freescale.com>
24127 Date: Tue Feb 3 18:26:41 2009 -0600
24128
24129 tsec: Fix a bug in soft-resetting
24130
24131 SOFT_RESET must be asserted for at least 3 TX clocks. Usually, that's about 30
24132 clock cycles, so it's been mostly working. But we had no guarantee, and at
24133 slower bitrates, it's just over a microsecond (over 1000 clock cycles). This
24134 enforces a 2 microsecond gap between assertion and deassertion.
24135
24136 Signed-off-by: Andy Fleming <afleming@freescale.com>
24137 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24138
24139 commit 09fcc8b5d86903b76e7e4d1d879d6f4bca25c27b
24140 Author: Simon Munton <simon@nidoran.m5data.com>
24141 Date: Mon Feb 2 09:44:08 2009 +0000
24142
24143 Fix 100Mbs ethernet operation on sh7763 based boards
24144
24145 100Mbs ethernet does not work on sh7763 chips due to the wrong value being
24146 used in the GECMR register. Following diff fixes the problem
24147
24148 Signed-off-by: Simon Munton <simon@nidoran.m5data.com>
24149 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24150
24151 commit 2bc2a8f6dc9fdda465317da59474e65c24a398a2
24152 Author: ksi@koi8.net <ksi@koi8.net>
24153 Date: Fri Feb 6 16:27:55 2009 -0800
24154
24155 Fix MPC8260 with ethernet on SCC
24156
24157 This fixes MPC8260 compilation with ethernet on SCC. Probably was a
24158 typo or something...
24159
24160 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
24161 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24162
24163 commit ae5d8f613cec1a6af7bf1fc9c42a3b856f021023
24164 Author: Heiko Schocher <hs@denx.de>
24165 Date: Fri Jan 30 12:56:15 2009 +0100
24166
24167 82xx serial, smc: Coding-Style cleanup serial SMC driver
24168
24169 Signed-off-by: Heiko Schocher <hs@denx.de>
24170
24171 commit c92fac91a06c60f874c605e3ca80dd407c1caaa7
24172 Author: Heiko Schocher <hs@denx.de>
24173 Date: Fri Jan 30 12:55:38 2009 +0100
24174
24175 82xx serial, smc: add configurable SMC Rx buffer len
24176
24177 This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
24178 With this option it is possible to allow the receive
24179 buffer for the SMC on 82xx to be greater then 1. In case
24180 CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
24181 old version.
24182
24183 When defining CONFIG_SYS_SMC_RXBUFLEN also
24184 CONFIG_SYS_MAXIDLE must be defined to setup the maximum
24185 idle timeout for the SMC.
24186
24187 Signed-off-by: Heiko Schocher <hs@denx.de>
24188
24189 commit bced7ccefa08512c54a6d146658ff7dbc33d5dfe
24190 Author: Kumar Gala <galak@kernel.crashing.org>
24191 Date: Fri Feb 6 08:08:06 2009 -0600
24192
24193 ppc: Fix roll over bug in flush_cache()
24194
24195 If we call flush_cache(0xfffff000, 0x1000) it would never
24196 terminate the loop since end = 0xffffffff and we'd roll over
24197 our counter from 0xfffffe0 to 0 (assuming a 32-byte cache line)
24198
24199 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24200
24201 commit 87c9063963561d3d01064be34d0c30855a56587b
24202 Author: Kumar Gala <galak@kernel.crashing.org>
24203 Date: Thu Feb 5 20:40:58 2009 -0600
24204
24205 ppc: Move CONFIG_MAX_MEM_MAPPED to common config.h
24206
24207 Moved CONFIG_MAX_MEM_MAPPED to the asm/config.h so its kept consistent
24208 between the two current users (lib_ppc/board.c, 44x SPD DDR2).
24209
24210 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24211 Acked-by: Stefan Roese <sr@denx.de>
24212
24213 commit 47d41cc3a11a03c6d56146d056145df73f47eb50
24214 Author: Kumar Gala <galak@kernel.crashing.org>
24215 Date: Thu Feb 5 20:40:57 2009 -0600
24216
24217 Add an architecture specific config.h for common defines
24218
24219 We have common defines that we duplicate in various ways. Having an
24220 arch specific config.h gives us a common location for those defines.
24221
24222 Eventually we should be able to replace this when we have proper
24223 Kconfig support.
24224
24225 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24226
24227 commit 4c78d4a6c01621721b732418e1c6da684a56bbb1
24228 Author: Becky Bruce <beckyb@kernel.crashing.org>
24229 Date: Tue Feb 3 18:10:56 2009 -0600
24230
24231 mpc8641hpcn: Change PCI MEM pci bus address
24232
24233 Now that the rest of u-boot can support it, change the PCI bus
24234 address of the PCI MEM regions from 0x80000000 to 0xc0000000,
24235 and use the same bus address for both PCI1 and PCI2. This will
24236 maximize the amount of PCI address space left over to map RAM
24237 on systems with large amounts of memory.
24238
24239 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24240
24241 commit 1785dbeed43599eed1d8875673c96912cd770141
24242 Author: Becky Bruce <beckyb@kernel.crashing.org>
24243 Date: Tue Feb 3 18:10:55 2009 -0600
24244
24245 drivers/block/ahci: Fix pci mapping bug
24246
24247 The code assumes that the pci bus address and the virtual
24248 address used to access a region are the same, but they might
24249 not be. Fix this assumption.
24250
24251 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24252
24253 commit d591a80e74091e7a0658d165721e6c7de2ef0bcd
24254 Author: Becky Bruce <beckyb@kernel.crashing.org>
24255 Date: Tue Feb 3 18:10:54 2009 -0600
24256
24257 MPC8641HPCN: Enable CONFIG_ADDR_MAP
24258
24259 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24260
24261 commit 49f46f3bf08aaf7b1db131a1082f1e603bb7a94b
24262 Author: Becky Bruce <beckyb@kernel.crashing.org>
24263 Date: Tue Feb 3 18:10:53 2009 -0600
24264
24265 mpc8641hpcn: Clean up PCI mapping concepts
24266
24267 Clean up PCI mapping concepts in the 8641 config - rename _BASE
24268 to _BUS, as it's actually a PCI bus address, separate virtual
24269 and physical addresses into _VIRT and _PHYS, and use each
24270 appopriately.
24271
24272 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24273
24274 commit c9315e6b4f244981de0b2eaaa29a7838a165b494
24275 Author: Becky Bruce <beckyb@kernel.crashing.org>
24276 Date: Tue Feb 3 18:10:52 2009 -0600
24277
24278 mpc86xx: Add support to populate addr map based on BATs
24279
24280 If CONFIG_ADDR_MAP is enabled, update the address map
24281 whenever we write a bat.
24282
24283 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24284
24285 commit d35ae5a938679bd7e18167faf79d0fb3c6639b51
24286 Author: Becky Bruce <beckyb@kernel.crashing.org>
24287 Date: Tue Feb 3 18:10:51 2009 -0600
24288
24289 powerpc: Move duplicated BAT defines to mmu.h
24290
24291 The BAT fields are architected; there's no need for these to be in
24292 cpu-specific files. Drop the duplication and move these to
24293 include/asm-ppc/mmu.h. Also, remove the BL_xxx defines that were only
24294 used by the alaska board, and switch to using the BATU_BL_xxx defines
24295 used by all the other boards. The BL_ defines previously in use
24296 had to be shifted into the proper position for use, which was inefficient.
24297
24298 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24299
24300 commit 6e61fae4d360a1380b63e7d007b31477e366bcce
24301 Author: Becky Bruce <beckyb@kernel.crashing.org>
24302 Date: Tue Feb 3 18:10:50 2009 -0600
24303
24304 drivers/pci: Create pci_map_bar function
24305
24306 It is no longer always true that the pci bus address can be
24307 used as the virtual address for pci accesses. pci_map_bar()
24308 is created to return the virtual address for a pci region.
24309
24310 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24311
24312 commit 2ecca3401775b125c3b9ff65766befb23989414b
24313 Author: Becky Bruce <beckyb@kernel.crashing.org>
24314 Date: Tue Feb 3 18:10:49 2009 -0600
24315
24316 mpc8641hpcn: Set up outbound pci windows before inbound
24317
24318 Because the inbound pci windows are mapped generously, set up
24319 the more specific outbound windows first. This way, when we
24320 search the pci regions for something, we will hit on the more
24321 specific region. This can actually be a problem on systems
24322 with large amounts of RAM.
24323
24324 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24325
24326 commit b81b773ead0687114dc8a800f99ea6e504447739
24327 Author: Becky Bruce <beckyb@kernel.crashing.org>
24328 Date: Mon Feb 2 16:34:52 2009 -0600
24329
24330 mpc8641hpcn: Use physical address in flash banks defintion
24331
24332 If the VA and PA of the flash aren't the same, the banks list
24333 should be initialized to hold the physical address. Correct this.
24334
24335 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24336
24337 commit 0d19f6c8cbe71b9e6d8c6bd6742ed2551e918870
24338 Author: Ilya Yanok <yanok@emcraft.com>
24339 Date: Tue Feb 10 00:22:31 2009 +0100
24340
24341 qong: support for Dave/DENX QongEVB-LITE board
24342
24343 This patch adds support for Dave/DENX QongEVB-LITE i.MX31-based board.
24344
24345 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
24346 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24347
24348 commit 62cbc408f52fc9a5eb849e0b882c504780c9d183
24349 Author: Ilya Yanok <yanok@emcraft.com>
24350 Date: Mon Feb 9 18:45:28 2009 +0100
24351
24352 dnet: driver for Dave DNET ethernet controller
24353
24354 Driver for Dave DNET ethernet controller (used on Dave/DENX
24355 QongEVB-LITE board).
24356
24357 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
24358 Acked-by: Ben Warren <biggerbadderben@gmail.com>
24359
24360 commit 2d43e873a29ca4959ba6a30fc7fb396d3fd0dccf
24361 Author: Kumar Gala <galak@kernel.crashing.org>
24362 Date: Fri Feb 6 09:49:32 2009 -0600
24363
24364 pci: give preference to non-PCI_REGION_SYS_MEMORY regions when matching
24365
24366 When we search for an address match in pci_hose_{phys_to_bus,bus_to_phys}
24367 we should give preference to memory regions that aren't system memory.
24368
24369 Its possible that we have over mapped system memory in the regions and
24370 we want to avoid depending on the order of the regions.
24371
24372 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24373
24374 commit ff4e66e93c1ad47644be3b4ffd6a46e1ce9b6612
24375 Author: Kumar Gala <galak@kernel.crashing.org>
24376 Date: Fri Feb 6 09:49:31 2009 -0600
24377
24378 pci: Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY for clarity
24379
24380 The PCI_REGION_MEMORY and PCI_REGION_MEM are a bit to similar and
24381 can be confusing when reading the code.
24382
24383 Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY to clarify its used
24384 for system memory mapping purposes.
24385
24386 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24387
24388 commit 54dc517328709c204a9cbf7a253d9f8e6c4b26ec
24389 Author: Ilya Yanok <yanok@emcraft.com>
24390 Date: Sun Feb 8 00:59:43 2009 +0300
24391
24392 mx31: add GPIO registers definitions
24393
24394 Added definitions for i.MX31 processor GPIO registers.
24395
24396 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
24397
24398 commit 8da601280a8acbc3385784780ed35130e53812f1
24399 Author: Peter Tyser <ptyser@xes-inc.com>
24400 Date: Wed Feb 4 13:47:22 2009 -0600
24401
24402 NAND: Add timeout for reset command
24403
24404 Without the timeout present an infinite loop can occur if the
24405 NAND device is broken or not present.
24406
24407 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24408 Signed-off-by: Scott Wood <scottwood@freescale.com>
24409
24410 commit 10dc6a9bef73d7d4cb25b3fde27ee91f8484b126
24411 Author: Peter Tyser <ptyser@xes-inc.com>
24412 Date: Wed Feb 4 13:39:40 2009 -0600
24413
24414 NAND: Silence warning when CONFIG_SYS_NAND_QUIET_TEST
24415
24416 Commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b removed support
24417 for disabling the "No NAND device found!!!" warning when
24418 CONFIG_SYS_NAND_QUIET_TEST was defined. This re-adds support
24419 for silencing the warning.
24420
24421 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24422 Signed-off-by: Scott Wood <scottwood@freescale.com>
24423
24424 commit ad09ab2e3ac28f304372eceb4a5cb4d24e102a13
24425 Author: Valeriy Glushkov <gvv@lstec.com>
24426 Date: Mon Jan 19 16:32:59 2009 +0200
24427
24428 NAND: Fixed invalid pointers to static relocated chip names
24429
24430 Dear Wolfgang,
24431
24432 You are right, the patch was ugly.
24433 The new one seems to be better.
24434
24435 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
24436 Signed-off-by: Scott Wood <scottwood@freescale.com>
24437
24438 commit e7deec1bf6fa3b3a21cd8d14fe2a909a42efc9d8
24439 Author: Nishanth Menon <nm@ti.com>
24440 Date: Mon Feb 2 18:20:12 2009 -0600
24441
24442 ARM:OMAP3:Zoom1: Add nand unlock option
24443
24444 Enable NAND_UNLOCK option for unlocking nand for
24445 erase/write operations
24446
24447 Signed-off-by: Nishanth Menon <nm@ti.com>
24448
24449 commit 5a9427dc9b8438759db3f67a1e547062f76eb18d
24450 Author: derek@siconix.com <derek@siconix.com>
24451 Date: Mon Jan 26 14:08:17 2009 -0700
24452
24453 env_nand: fix env memory release
24454
24455 This fixes a bug that tmp environment memory not being released.
24456
24457 Signed-off-by: Derek Ou <dou@siconix.com>
24458 Signed-off-by: Scott Wood <scottwood@freescale.com>
24459
24460 commit 05fd88776419df59e7f37bac063a209409dd801d
24461 Author: Guennadi Liakhovetski <lg@denx.de>
24462 Date: Fri Feb 6 10:37:45 2009 +0100
24463
24464 ARM: remove unused variable
24465
24466 The "size" variable in start_armboot() in lib_arm/board.c is only really
24467 used in "#ifndef CONFIG_SYS_NO_FLASH" case, and even there it can be
24468 eliminated (thanks to Jean-Christophe PLAGNIOL-VILLARD for a suggestion.)
24469
24470 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
24471
24472 commit 6989e4f546d960a407dd5425f800dff9751c8132
24473 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24474 Date: Thu Feb 5 09:33:50 2009 -0500
24475
24476 Coldfire: M527x: Add missing GPIO register address defines
24477
24478 Add missing GPIO registers address definition for Coldfire M5271.
24479
24480 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24481
24482 commit c4ff77f5e6c3a01610ce97434c0d59acb1476f95
24483 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24484 Date: Fri Jan 23 14:42:58 2009 -0500
24485
24486 Coldfire: mcfmii: Allow non-autonegotiating PHYs to use mii command
24487
24488 Modified mii_init to support boards with PHYs that are not set to
24489 autonegotiate, but still want to use u-boot's mii commands to probe
24490 the smi bus. Such PHYs will not set the Autonegotiate-done bit.
24491
24492 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24493
24494 commit 92d3e6e0ffcbb7224c83104f8d87b5b4bf39a38f
24495 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24496 Date: Fri Jan 23 11:44:30 2009 -0500
24497
24498 Coldfire: Applied baudrate formula of serial_init to serial_setbrg
24499
24500 Applied the patch for baudrate divider value truncation for
24501 serial_init to serial_setbrg as well.
24502
24503 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24504
24505 commit 8706ef378f2db1ef65b9c2f909561f23e3dc2148
24506 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24507 Date: Fri Jan 23 14:07:05 2009 -0500
24508
24509 Coldfire: M5271EVB: Board header update (dependencies)
24510
24511 Cleanup for M5271EVB:
24512 Added clarification on the use of CONFIG_SYS_CLOCK.
24513 Modified to use u-boot's HUSH parser.
24514 Cleanup on environment settings.
24515 Removed compiler warning by defining CONFIG_SYS_CS0_*
24516
24517 Dependencies:
24518 Added the use of CONFIG_SYS_MCF_SYNCR for clock multiplier.
24519 This depends on a patch to include/asm-m68k/m5271.h
24520 that defines the multiplier and divider ratios.
24521
24522 Removed the definition of CONFIG_SYS_FECI2C.
24523 This depends on a patch that removes the use of it in
24524 cpu/mcf52x2/cpu_init.c
24525
24526 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24527
24528 commit e0db344fabfeb4f9649846f94838f51172f6a1f6
24529 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24530 Date: Thu Jan 29 14:36:06 2009 -0500
24531
24532 Coldfire: M5271: Allow board header file to specify clock multiplier
24533
24534 M5271 dynamic clock multiplier. It is currently fixed at 100MHz.
24535
24536 Allow the board header file to set their own multiplier and divider.
24537 Added the #define for the multiplier and divider to the cpu header file.
24538
24539 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24540
24541 commit d1ef25dd81c79dcfad5c2ff0162b1bea21d04bc3
24542 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24543 Date: Fri Jan 23 10:47:13 2009 -0500
24544
24545 Coldfire: M5271EVB: Remove usage of CONFIG_SYS_FECI2C
24546
24547 Discontinue the use of CONFIG_SYS_FECI2C (only used by M5271EVB).
24548 Use read-modify-write to activate the FEC pins without disabling I2C.
24549
24550 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24551
24552 commit ee73cc59ab904976af3c33b454fc84f78618b2d1
24553 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24554 Date: Fri Jan 23 09:45:34 2009 -0500
24555
24556 Coldfire: cmd_bdinfo cleanup
24557
24558 CONFIG_M68K bdinfo cleanup:
24559
24560 Fixed compiler warning about baudrate printing.
24561 format '%d' expects type 'int', but argument 2 has type 'long unsigned int'.
24562
24563 Added printing of "cpufreq"
24564
24565 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24566
24567 commit 4ffc39050aa46ed8a3d29732293dff769e54fffa
24568 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24569 Date: Fri Jan 23 09:27:00 2009 -0500
24570
24571 Coldfire: Fix half-baud UART by adding M5271 to Coldfire v2 core list
24572
24573 Added the CONFIG_M5271 to the list of Coldfire V2 processor. This
24574 was causing the bus clock (not CPU clock) to be declared twice as
24575 fast as it actually is. This causes UARTS to operate at half the
24576 specified baudrate.
24577
24578 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24579
24580 commit 59d1bda7f92c8a28c3aba94e48063749d425949f
24581 Author: Dirk Eibach <eibach@gdsys.de>
24582 Date: Tue Feb 3 15:15:21 2009 +0100
24583
24584 ppc4xx: Make PCIE support selectable
24585
24586 On some platforms PCIE support is not required, but would be included
24587 because the cpu supports it. To reduce fooprint it is now configurable
24588 via CONFIG_PCI_DISABLE_PCIE.
24589
24590 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
24591 Signed-off-by: Stefan Roese <sr@denx.de>
24592
24593 commit b129eff5ede394cc1faeb6dbf6a987e91abce552
24594 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24595 Date: Tue Feb 3 22:13:16 2009 +0100
24596
24597 ppc4xx: Only fixup opb attached UARTs
24598
24599 This patch updates the fdt UART clock fixup code to
24600 only touch CPU internal UARTs on 4xx systems.
24601 Only these UARTs are definitely clocked by gd->uart_clk.
24602
24603 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24604 Signed-off-by: Stefan Roese <sr@denx.de>
24605
24606 commit 4b7e3d045cc82f7f7b6f3a19b54a814da36ac52c
24607 Author: Mike Frysinger <vapier@gentoo.org>
24608 Date: Tue Jan 13 11:00:29 2009 -0500
24609
24610 Blackfin: move default boot SPI CS to common code
24611
24612 Move the default SPI CS that we boot from into common code so that it can
24613 be used in other SPI drivers and environment settings.
24614
24615 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24616
24617 commit f790ef6ff12381cb0e43de54fb2b0f1204ad8ed6
24618 Author: Mike Frysinger <vapier@gentoo.org>
24619 Date: Wed Dec 10 12:33:54 2008 -0500
24620
24621 Blackfin: dynamically update UART speed when initializing
24622
24623 Previously, booting over the UART required the baud rate to be known ahead
24624 of time. Using a bit of tricky simple math, we can calculate the new board
24625 rate based on the old divisors.
24626
24627 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24628 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
24629
24630 commit 97f265f14f23050f3cb997f617f3a6917b843ea2
24631 Author: Mike Frysinger <vapier@gentoo.org>
24632 Date: Tue Dec 9 17:21:08 2008 -0500
24633
24634 Blackfin: add support for fast SPI reads with Boot ROM
24635
24636 Newer Blackfin boot roms support using the fast SPI read command rather than
24637 just the slow one. If the functionality is available, then use it.
24638
24639 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24640
24641 commit 67619982bfc5cd62710a48e3cbffc304cb78c341
24642 Author: Mike Frysinger <vapier@gentoo.org>
24643 Date: Sat Oct 11 21:46:52 2008 -0400
24644
24645 Blackfin: check for reserved settings in DDR MMRs
24646
24647 Some bits of the DDR MMRs should not be set. If they do, bad things may
24648 happen (like random failures or hardware destruction).
24649
24650 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24651
24652 commit 622a8dc0958dd599743348ea94eb10b9d0be8ae6
24653 Author: Mike Frysinger <vapier@gentoo.org>
24654 Date: Sat Oct 11 21:54:00 2008 -0400
24655
24656 Blackfin: set default voltage levels for BF538/BF539 parts
24657
24658 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24659
24660 commit 09dc6b0bbd1d5e39cdddeebc059f9a75630e4f6f
24661 Author: Mike Frysinger <vapier@gentoo.org>
24662 Date: Sun Jun 1 01:29:57 2008 -0400
24663
24664 Blackfin: use on-chip syscontrol() rom function when available
24665
24666 Newer Blackfin's have an on-chip rom with a syscontrol() function that needs
24667 to be used to properly program the memory and voltage settings as it will
24668 include (possibly critical) factory tested bias values.
24669
24670 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24671
24672 commit e1fb6d0d52fbe3fbc1a4c651dacf11e9c1417f63
24673 Author: Stefan Roese <sr@denx.de>
24674 Date: Thu Feb 5 11:44:52 2009 +0100
24675
24676 cfi_flash: Fix typo in cfi_flash.c
24677
24678 Patch "flash/cfi_flash: Use virtual sector start address, not phys"
24679 introduced a small typo and compilation warning for systems with CFI
24680 legacy support (e.g. hcu4). This patch fixes it.
24681
24682 Signed-off-by: Stefan Roese <sr@denx.de>
24683
24684 commit 28745db969b72693754991c838f68a7fb4a8b1ab
24685 Author: Stefan Roese <sr@denx.de>
24686 Date: Thu Jan 29 11:21:38 2009 +0100
24687
24688 jedec_flash: Only use manufacturer defines from common flash.h
24689
24690 This patch removes the double defined manufacturer defines from
24691 jedec_flash.c. Since the common defines in flash.h are 32bit
24692 we now need the (16) cast. This patch also removes the compilation
24693 warning (e.g. seen on hcu5):
24694
24695 ./MAKEALL hcu5
24696 Configuring for hcu5 board...
24697 jedec_flash.c:219: warning: large integer implicitly truncated to unsigned type
24698
24699 Signed-off-by: Stefan Roese <sr@denx.de>
24700
24701 commit ec21d5cfcb6b4e7fcdd5c6e926e1a824900706f2
24702 Author: Stefan Roese <sr@denx.de>
24703 Date: Thu Feb 5 11:25:57 2009 +0100
24704
24705 cfi_flash: Silence compilation warning
24706
24707 Patch "flash/cfi_flash: Use virtual sector start address, not phys"
24708 introduced a small compilation warning. This patch fixes it.
24709
24710 Signed-off-by: Stefan Roese <sr@denx.de>
24711
24712 commit 09ce9921a7d8b1ce764656b14b42217bbf4faa38
24713 Author: Becky Bruce <beckyb@kernel.crashing.org>
24714 Date: Mon Feb 2 16:34:51 2009 -0600
24715
24716 flash/cfi_flash: Use virtual sector start address, not phys
24717
24718 include/flash.h was commented to say that the address in
24719 flash_info->start was a physical address. However, from u-boot's
24720 point of view, and looking at most flash code, it makes more
24721 sense for this to be a virtual address. So I corrected the
24722 comment to indicate that this was a virtual address.
24723
24724 The only flash driver that was actually treating the address
24725 as physical was the mtd/cfi_flash driver. However, this code
24726 was using it inconsistently as it actually directly dereferenced
24727 the "start" element, while it used map_physmem to get a
24728 virtual address in other places. I changed this driver so
24729 that the code which initializes the info->start field calls
24730 map_physmem to get a virtual address, eliminating the need for
24731 further map_physmem calls. The code is now consistent.
24732
24733 The *only* place a physical address should be used is when defining the
24734 flash banks list that is used to initialize the flash_info struct,
24735 usually found in the board config file.
24736
24737 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24738 Signed-off-by: Stefan Roese <sr@denx.de>
24739
24740 commit 657f2062d8e17ebf4a55f52c9e71c07c0c94c779
24741 Author: Wolfgang Denk <wd@denx.de>
24742 Date: Wed Feb 4 09:42:20 2009 +0100
24743
24744 Fix compiler warning
24745
24746 (shows up only when DEBUG is enabled)
24747
24748 Signed-off-by: Wolfgang Denk <wd@denx.de>
24749
24750 commit 47832cd15ae02fb6fde8ebed5b272f85775f2ceb
24751 Author: Mike Frysinger <vapier@gentoo.org>
24752 Date: Mon Oct 6 03:45:55 2008 -0400
24753
24754 Blackfin: update anomaly lists
24755
24756 Update the anomaly lists to match latest anomaly sheets.
24757
24758 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24759
24760 commit 70a4da45e16b72e8e5b0baaecdaee9be8619647d
24761 Author: Ralph Kondziella <rk@argos-messtechnik.de>
24762 Date: Mon Jan 26 12:34:36 2009 -0700
24763
24764 ADS5121 Add PATA support
24765
24766 Original patch from Ralph Kondziella
24767 plus clean up by Wolfgang Denk
24768 plus changes by John Rigby
24769 use ips clock not lpc
24770 port forward to current u-boot release
24771
24772 Signed-off-by: Ralph Kondziella <rk@argos-messtechnik.de>
24773 Signed-off-by: Wolfgang Denk <wd@denx.de>
24774 Signed-off-by: John Rigby <jrigby@freescale.com>
24775
24776 commit abfbd0ae4967df18102345db4f4b529a13da107b
24777 Author: Martha Marx <mmarx@silicontkx.com>
24778 Date: Mon Jan 26 10:45:07 2009 -0700
24779
24780 ADS5121 Add IC Ident Module (IIM) support
24781
24782 IIM (IC Identification Module) is the fusebox for the mpc5121.
24783 Use #define CONFIG_IIM to turn on the clock for this module
24784 use #define CONFIG_CMD_FUSE to add fusebox commands.
24785 Fusebox commands include the ability to read
24786 the status, read the register cache, override the register cache,
24787 program the fuses and sense them.
24788
24789 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
24790 Signed-off-by: John Rigby <jrigby@freescale.com>
24791
24792 commit 14d19cd1bce9a24b1335598f1568140f4950e4d9
24793 Author: John Rigby <jrigby@freescale.com>
24794 Date: Fri Jan 23 10:33:15 2009 -0700
24795
24796 ADS5121 Fix rev2 silicon pci iopad config
24797
24798 Reset config is not correct
24799
24800 Signed-off-by: John Rigby <jrigby@freescale.com>
24801
24802 commit 4c154252c480b13f69ce1b71a9530b0515da76a6
24803 Author: John Rigby <jrigby@freescale.com>
24804 Date: Wed Nov 19 13:57:34 2008 -0700
24805
24806 ADS5121 DIU Add diu_bmp_addr env
24807
24808 Add support for using a bmp other than
24809 FSL_Logo_BMP for the DIU splash screen.
24810
24811 Can now set the env var "diu_bmp_addr" to
24812 the address of a BMP in flash to use instead
24813 of the default FSL_Logo_BMP.
24814
24815 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
24816 Signed-off-by: John Rigby <jrigby@freescale.com>
24817
24818 commit 92c20fbd3a7788c1a154f50a3f44f28a7763f99a
24819 Author: John Rigby <jrigby@freescale.com>
24820 Date: Thu Oct 30 16:39:35 2008 -0600
24821
24822 ADS5121 DIU Make inclusion of FSL logo optional
24823
24824 Make inclusion of FSL logo optional and
24825 turn it off by default.
24826
24827 Signed-off-by: John Rigby <jrigby@freescale.com>
24828
24829 commit bd99ec149abe94e7f6b2bda4766d701b4005053f
24830 Author: Remy Bohmer <linux@bohmer.net>
24831 Date: Sun Feb 1 12:27:53 2009 +0100
24832
24833 Compile warning fix in onenand_uboot.h
24834
24835 Regression since merge window after 2009.01
24836
24837 Signed-off-by: Remy Bohmer <linux@bohmer.net>
24838
24839 commit a270d1e7295c3d829f42c0480117941dfc1c6477
24840 Author: Stefan Roese <sr@denx.de>
24841 Date: Thu Jan 29 06:33:55 2009 +0100
24842
24843 USB: Add EHCI support for VCT EHCI controller (really with driver now)
24844
24845 Somehow I missed the real driver part in my last patch version. This patch
24846 now adds the driver.
24847
24848 Signed-off-by: Stefan Roese <sr@denx.de>
24849 Signed-off-by: Remy Bohmer <linux@bohmer.net>
24850
24851 commit 716ebf436c9e43df6740e0172f6b2a81ddbf1b8e
24852 Author: Cliff Cai <cliff.cai@analog.com>
24853 Date: Sat Nov 29 18:22:38 2008 -0500
24854
24855 Blackfin: add driver for on-chip MMC/SD controller
24856
24857 This is a port of the Linux Blackfin on-chip SDH driver to U-Boot.
24858
24859 Signed-off-by: Cliff Cai <cliff.cai@analog.com>
24860 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24861
24862 commit 6e87ea0ca951465eba144ab2e6dba6fb507737a2
24863 Author: Mike Frysinger <vapier@gentoo.org>
24864 Date: Sat Oct 11 22:47:34 2008 -0400
24865
24866 Blackfin: add port muxing for BF51x SPI
24867
24868 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24869
24870 commit fc68f9f85959664d528daea2aef5ef54974331ce
24871 Author: Mike Frysinger <vapier@gentoo.org>
24872 Date: Tue Jan 6 06:16:19 2009 -0500
24873
24874 Blackfin: output booting source when booting
24875
24876 Knowing the booting source of the part is useful, especially when the part
24877 can switch dynamically between sources.
24878
24879 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24880
24881 commit 8df3ce0f49c37947800ac7c84e751499882619fc
24882 Author: Mike Frysinger <vapier@gentoo.org>
24883 Date: Thu Dec 11 06:30:46 2008 -0500
24884
24885 Blackfin: set default CONFIG_ENV_SPI_CS based on bootrom
24886
24887 Set the default CONFIG_ENV_SPI_CS value to match the SPI CS that is used by
24888 the Blackfin on-chip bootrom to boot out of SPI flash.
24889
24890 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24891
24892 commit 2b4a486e6fac502d8b883e344cc4012283945b3d
24893 Author: Mike Frysinger <vapier@gentoo.org>
24894 Date: Thu Dec 11 04:06:26 2008 -0500
24895
24896 Blackfin: update asm-blackfin/posix_types.h to latest Linux version
24897
24898 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24899
24900 commit e5eb93e77391bcc308697116c544ea1340aaae8a
24901 Author: Mike Frysinger <vapier@gentoo.org>
24902 Date: Sat Dec 6 02:54:52 2008 -0500
24903
24904 Blackfin: add port I bits
24905
24906 Some people need to access port I, so make sure the pins are defined.
24907
24908 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24909
24910 commit 8a6b272596d43de0db4943eac7af58c3534c4026
24911 Author: Sonic Zhang <Sonic.Zhang@analog.com>
24912 Date: Wed Nov 26 22:16:45 2008 -0500
24913
24914 Blackfin: add driver for on-chip ATAPI controller
24915
24916 This is a port of the Linux Blackfin on-chip ATAPI driver to U-Boot.
24917
24918 Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
24919 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24920
24921 commit be9d8c780e6831cb84b7d4590ceae03dca8fc10b
24922 Author: Mike Frysinger <vapier@gentoo.org>
24923 Date: Wed Nov 26 21:43:06 2008 -0500
24924
24925 Blackfin: add driver for on-chip NAND controller
24926
24927 This is a port of the Linux Blackfin on-chip NFC driver to U-Boot.
24928
24929 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24930
24931 commit 4148e02abae9a099f4444b5e168ebc2b911d2295
24932 Author: Mike Frysinger <vapier@gentoo.org>
24933 Date: Wed Nov 12 07:18:15 2008 -0500
24934
24935 Blackfin: build with -mno-fdpic
24936
24937 Use the -mno-fdpic flag so that any Blackfin toolchain can be used to build
24938 up u-boot, including ones that output FDPIC ELF by default.
24939
24940 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24941
24942 commit 70e95589a24a2d83ad00317e4a9611d0211ecb58
24943 Author: Mike Frysinger <vapier@gentoo.org>
24944 Date: Tue Nov 11 05:43:57 2008 -0500
24945
24946 Blackfin: fix up EBIU defines
24947
24948 The EBIU defines for EBSZ 256/512 were incorrect.
24949
24950 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24951
24952 commit 961954ea0ec8dc4341034c1a1ff3107ec0527809
24953 Author: Mike Frysinger <vapier@gentoo.org>
24954 Date: Wed Nov 5 12:45:24 2008 -0500
24955
24956 Blackfin: use 8/16/32 bit transfer widths in dma_memcpy()
24957
24958 Rather than using 8bit transfers for everything, use 8/16/32 bit transfers
24959 as usable with the source/destination addresses and the count size.
24960
24961 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24962
24963 commit b93c68648426f906d63b98117496b6415f505f39
24964 Author: Mike Frysinger <vapier@gentoo.org>
24965 Date: Wed Nov 5 08:50:23 2008 -0500
24966
24967 Blackfin: only flag L1 instruction for DMA memcpy
24968
24969 The performance difference from doing an 8 bit DMA memcpy vs an optimized
24970 core memcpy can be pretty big when you add in the overhead of setting up the
24971 MDMA registers, cache flushes, etc... So only use dma_memcpy() when we
24972 actually require it.
24973
24974 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24975
24976 commit e347c092a3b3a2ce1e72f25f4829163634d09fbe
24977 Author: Mike Frysinger <vapier@gentoo.org>
24978 Date: Wed Nov 5 07:20:37 2008 -0500
24979
24980 Blackfin: dma_memcpy(): fix random failures
24981
24982 We have to make sure the DMA channel is actually disabled in hardware before
24983 attempting to reprogram it. Otherwise the new settings are ignored and we
24984 end up with random hangs/failures.
24985
24986 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24987
24988 commit fdce83c108846d6f0d5b1774e1cc29f2573a6ad3
24989 Author: Mike Frysinger <vapier@gentoo.org>
24990 Date: Tue Nov 4 00:04:03 2008 -0500
24991
24992 Blackfin: rewrite cache handling functions
24993
24994 Take the cache flush functions from the kernel as they use hardware loops in
24995 order to get optimal performance.
24996
24997 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24998
24999 commit 84c5f0dc47d17593fd81206614891bdc94f6d51c
25000 Author: Mike Frysinger <vapier@gentoo.org>
25001 Date: Mon Nov 3 22:30:05 2008 -0500
25002
25003 Blackfin: setup bi_enetaddr for single nets
25004
25005 For systems with CONFIG_NET_MULTI disabled, bi_enetaddr does not get setup
25006 based on $ethaddr, so set it up.
25007
25008 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25009
25010 commit 40599239e7875b39e2a5c12e6545992041c72c52
25011 Author: Mike Frysinger <vapier@gentoo.org>
25012 Date: Fri Oct 24 22:48:47 2008 -0400
25013
25014 Blackfin: cache core/system clock values
25015
25016 Calculating the clocks requires a bit of calls to gcc math functions, so
25017 cache the values after the first run since they'll most likely never
25018 change once U-Boot is up and running.
25019
25020 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25021
25022 commit 6957a6209b02f6b69607fc47425f13731cc477f1
25023 Author: Mike Frysinger <vapier@gentoo.org>
25024 Date: Fri Oct 24 18:18:16 2008 -0400
25025
25026 Blackfin: enable --gc-sections
25027
25028 Start building all Blackfin boards with -ffunction-sections/-fdata-sections
25029 and linking with --gc-sections.
25030
25031 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25032
25033 commit ee1d2001ea7fbabb2b9256026dc5468f057337f8
25034 Author: Mike Frysinger <vapier@gentoo.org>
25035 Date: Mon Oct 20 21:08:54 2008 -0400
25036
25037 Blackfin: dont check baud if it wont actually get used
25038
25039 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25040
25041 commit 400f5778f375bc99c73c8488c555def261ccfab7
25042 Author: Mike Frysinger <vapier@gentoo.org>
25043 Date: Tue Oct 14 07:54:09 2008 -0400
25044
25045 Blackfin: add driver for on-chip SPI controller
25046
25047 This fills out the SPI backend for the Blackfin on-chip SPI peripheral.
25048
25049 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25050
25051 commit 7a1e87b1062e6eac0704c6fc2f7c661caf8814cd
25052 Author: Mike Frysinger <vapier@gentoo.org>
25053 Date: Sat Oct 18 05:33:51 2008 -0400
25054
25055 Blackfin: only build post code when CONFIG_POST
25056
25057 Save some time by using CONFIG_POST in the Makefile rather than C files.
25058
25059 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25060
25061 commit 6d7d4803c74bb86e1b401b1199e63381a62b9382
25062 Author: Mike Frysinger <vapier@gentoo.org>
25063 Date: Thu Jan 8 11:57:57 2009 -0500
25064
25065 Blackfin: bfin_mac: cleanup pointer/casts for aliasing issues
25066
25067 Redo how pointers are managed to get rid of ugly casts and strict pointer
25068 aliasing issues that are highlighted by gcc 4.3.
25069
25070 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25071 Acked-by: Ben Warren <biggerbadderben@gmail.com>
25072
25073 commit 092d2487baf7c29343c165e3ae82ea8a7f9e679b
25074 Author: Mike Frysinger <vapier@gentoo.org>
25075 Date: Tue Dec 9 17:46:21 2008 -0500
25076
25077 Blackfin: bfin_mac: convert CONFIG_BFIN_MAC_RMII to CONFIG_RMII
25078
25079 No point in having a Blackfin-specific define "CONFIG_BFIN_MAC_RMII" that
25080 does exactly the same thing as common "CONFIG_RMII".
25081
25082 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25083 Acked-by: Ben Warren <biggerbadderben@gmail.com>
25084
25085 commit 8eed6ca51e50fade6887e8bdb1ff6a44116b42b5
25086 Author: Mike Frysinger <vapier@gentoo.org>
25087 Date: Wed Nov 5 06:36:15 2008 -0500
25088
25089 Blackfin: bfin_mac: use common debug()
25090
25091 Rather then defining our own DEBUGF(), just use the common debug().
25092
25093 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25094 Acked-by: Ben Warren <biggerbadderben@gmail.com>
25095
25096 commit a7ec6ac8b2c6dce6fc670a2a855deb6eee340e04
25097 Author: Mike Frysinger <vapier@gentoo.org>
25098 Date: Mon Oct 20 13:59:51 2008 -0400
25099
25100 Blackfin: bfin_mac: respect CONFIG_PHY_{ADDR,CLOCK_FREQ}
25101
25102 Rather than having the on-chip MAC hardcoded to phy address 1 and a speed
25103 of 2.5mhz, use these as defaults if the board doesn't specify otherwise.
25104
25105 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25106 Acked-by: Ben Warren <biggerbadderben@gmail.com>
25107
25108 commit ac45af4e63ea925f4accc98453aab1a1166c196d
25109 Author: Mike Frysinger <vapier@gentoo.org>
25110 Date: Tue Oct 14 04:52:00 2008 -0400
25111
25112 Blackfin: bfin_mac: cleanup MII/PHY functions
25113
25114 Cleanup and rewrite the MII/PHY related functions so that we can reuse the
25115 existing common linux/miiphy.h code and hook into the `mii` command.
25116
25117 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25118 Acked-by: Ben Warren <biggerbadderben@gmail.com>
25119
25120 commit 6b310a05f0d10c751f22468040932139f71c71d3
25121 Author: Mike Frysinger <vapier@gentoo.org>
25122 Date: Tue Oct 14 00:31:30 2008 -0400
25123
25124 Blackfin: bfin_mac: set MDCDIV based on SCLK
25125
25126 Rather than hardcoding MDCDIV to 24 (which is correct for ~125mhz SCLK),
25127 use the real algorithm so it gets set correctly regardless of SCLK.
25128
25129 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25130 Acked-by: Ben Warren <biggerbadderben@gmail.com>
25131
25132 commit 930590f3e49c8f32256edf2e5861e1535a329c6c
25133 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25134 Date: Sat Jan 31 09:10:48 2009 +0100
25135
25136 ixp: move serial to drivers/serial
25137
25138 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25139
25140 commit f90c8022f448bc5e93090e4b714368e52e912f0f
25141 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25142 Date: Sat Jan 31 09:04:58 2009 +0100
25143
25144 ixp: move pci init in arm/board instead of cpu
25145
25146 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25147
25148 commit 8cb79b5f275f1888ccb278a2d2197140444a84b7
25149 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25150 Date: Sat Jan 31 08:56:49 2009 +0100
25151
25152 ixp: move pci drivers to drivers/pci
25153
25154 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25155
25156 commit 012d5bab09a534e4800b02f50cf508e6837202ea
25157 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25158 Date: Sat Jan 31 08:53:44 2009 +0100
25159
25160 ixp: Move conditional compilation to Makefile
25161
25162 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25163
25164 commit f693f501d67434df1f815fd1824a71973ae08207
25165 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25166 Date: Sat Jan 31 08:53:44 2009 +0100
25167
25168 ixp: add missing os define
25169
25170 need by arm-elf toolchains and no impact on the arm-linux one
25171
25172 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25173
25174 commit b4e2f89dfcb206a22d34fa6b34878d85b498b39f
25175 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25176 Date: Sat Jan 31 09:53:39 2009 +0100
25177
25178 ixp: remove the option to include the Microcode
25179
25180 instead the board will have to load it from flash or ram
25181 which will be specified by npe_ucode env var
25182
25183 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25184
25185 commit 1b017baf2071d8daf643bce87250db898c606c66
25186 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25187 Date: Fri Jan 30 09:45:23 2009 +0100
25188
25189 ixp/npe: Move conditional compilation to Makefile
25190
25191 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25192
25193 commit 4e69087a1d6ef2eca6f46026cf5e7399b6c9e7c0
25194 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25195 Date: Wed Jan 28 21:58:04 2009 +0100
25196
25197 SX1: add hardware V2 support
25198
25199 In the V2 the 2 flash has been replace by one 32MB flash
25200
25201 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25202
25203 commit f877f2233dbcd7417c2f0babe6a849099b167f3c
25204 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25205 Date: Wed Jan 28 21:58:03 2009 +0100
25206
25207 SX1: Fix second flash mapping
25208
25209 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25210
25211 commit 47fd3bffed6430c91eb2660f859574ed98be5bd8
25212 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25213 Date: Wed Jan 28 21:58:03 2009 +0100
25214
25215 SX1: add CONFIG_STDOUT_USBTTY to enable preboot stdout redirect to usbtty
25216
25217 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25218
25219 commit cfca33837ec83829c6a49c3bcc86c31bc2495ff6
25220 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25221 Date: Wed Jan 28 21:57:59 2009 +0100
25222
25223 move Samsung's board to board/samsung
25224
25225 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25226
25227 commit e4943ec57466ea5dfa085e7a9e0ec44cb93c4e1e
25228 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25229 Date: Thu Jan 29 12:07:21 2009 +0100
25230
25231 move ARM Ltd. to vendor dir
25232
25233 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25234
25235 commit a87fb1b308a2a375cb9ca74ca0dd3e2c5793d3bf
25236 Author: Larry Johnson <lrj@acm.org>
25237 Date: Wed Jan 28 15:30:37 2009 -0500
25238
25239 ppc4xx: Clean up configuration file for Korat board
25240
25241 This patch updates the default environmental variables for the
25242 Korat PPC 440EPx board, and makes additional minor fixes.
25243
25244 Signed-off-by: Larry Johnson <lrj@acm.org>
25245 Signed-off-by: Stefan Roese <sr@denx.de>
25246
25247 commit f20405e31680efc36293c59b4963db57c9d93df4
25248 Author: Larry Johnson <lrj@acm.org>
25249 Date: Wed Jan 28 15:30:02 2009 -0500
25250
25251 ppc4xx: Add variable "korat_usbcf" for Korat board
25252
25253 The new environment variable "korat_usbcf" selects the USB
25254 port used by the Korat board's CompactFlash controller.
25255
25256 Signed-off-by: Larry Johnson <lrj@acm.org>
25257 Signed-off-by: Stefan Roese <sr@denx.de>
25258
25259 commit fc01ea1e27d5b124f0a1868d0ce569f156d58dfe
25260 Author: Gunnar Rangoy <gunnar@rangoy.com>
25261 Date: Fri Jan 23 12:56:31 2009 +0100
25262
25263 AVR32: macb - Search for PHY id
25264
25265 This patch adds support for searching through available PHY-addresses in
25266 the macb-driver. This is needed for the ATEVK1100 evaluation board,
25267 where the PHY-address will be initialized to either 1 or 7.
25268
25269 This patch adds a config option, CONFIG_MACB_SEARCH_PHY, which when
25270 enabled tells the driver to search for the PHY address.
25271
25272 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
25273 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
25274 Signed-off-by: Olav Morken <olavmrk@gmail.com>
25275 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25276
25277 commit af8626e0c08a780d9ded1d9c4883a89355f60e75
25278 Author: Olav Morken <olavmrk@gmail.com>
25279 Date: Fri Jan 23 12:56:26 2009 +0100
25280
25281 Fix IP alignment problem
25282
25283 This patch removes volatile from:
25284 volatile IP_t *ip = (IP_t *)xip;
25285
25286 Due to a bug, avr32-gcc will assume that ip is aligned on a word boundary when
25287 using volatile, which causes an exception since xip isn't aligned on a word
25288 boundary.
25289
25290 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
25291 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
25292 Signed-off-by: Olav Morken <olavmrk@gmail.com>
25293 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25294
25295 commit 12a8b9db12f82a189ff143a58731007f5469da61
25296 Author: Ron Madrid <ron_madrid@sbcglobal.net>
25297 Date: Wed Jan 28 16:17:21 2009 -0800
25298
25299 Marvell 88E1118 interrupt fix
25300
25301 This patch adjusts the LED control so that interrupt lines are not reading LEDs
25302 and effectively causing indefinite interrupts to the controller.
25303
25304 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
25305 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25306
25307 commit 9a37f2acc31a3296dddd3574ea9eaf7f319807b9
25308 Author: Stefan Roese <sr@denx.de>
25309 Date: Wed Jan 21 17:14:26 2009 +0100
25310
25311 net: smc911x.c: Add LAN9211 to chip_ids[] array
25312
25313 Signed-off-by: Stefan Roese <sr@denx.de>
25314 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25315
25316 commit 75edebe3011c963a7cd84be0f4a987477f2aaf89
25317 Author: Mike Frysinger <vapier@gentoo.org>
25318 Date: Tue Jan 27 16:53:39 2009 -0500
25319
25320 Move is_valid_ether_addr() to include/net.h
25321
25322 Import the is_valid_ether_addr() function from the Linux kernel.
25323
25324 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25325 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25326
25327 commit 268859338c0188eab1d0d3b867b7dad3c5cc734a
25328 Author: Michal Simek <monstr@monstr.eu>
25329 Date: Mon Jan 5 12:25:13 2009 +0100
25330
25331 net: Sort Makefile labels
25332
25333 Signed-off-by: Michal Simek <monstr@monstr.eu>
25334 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25335
25336 commit 1fbcbe9a95f39afb2df6ab8cba25b284b47ebfb2
25337 Author: Wolfgang Denk <wd@denx.de>
25338 Date: Wed Jan 28 23:06:42 2009 +0100
25339
25340 85xx: Fix compile breakage with sbc8540 and sbc8560
25341
25342 This fixes an error which raises just a warning:
25343 sbc8560.c:250: warning: passing argument 2 of 'strmhz' makes integer from pointer without a cast
25344
25345 Signed-off-by: Wolfgang Denk <wd@denx.de>
25346
25347 commit 62625c0b081bd4019cecab14e9fc2e05e48d2a58
25348 Author: Mike Frysinger <vapier@gentoo.org>
25349 Date: Wed Jan 28 13:48:55 2009 -0500
25350
25351 SPD823TS: do not define CONFIG_CMD_ENV
25352
25353 Since the SPD823TS board does not actually have any writable flash to save
25354 its environment, undefine CONFIG_CMD_ENV so the "saveenv" command is
25355 disabled.
25356
25357 This fixes the build error:
25358 common/libcommon.a(cmd_nvedit.o): In function `do_saveenv':
25359 common/cmd_nvedit.c:557: undefined reference to `saveenv'
25360 make: *** [u-boot] Error 1
25361
25362 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25363
25364 commit 7379f45a7bc71941c3920c2f6b3c3faa4d7fd315
25365 Author: Dirk Behme <dirk.behme@googlemail.com>
25366 Date: Wed Jan 28 21:40:16 2009 +0100
25367
25368 OMAP3: Add Zoom1 board support
25369
25370 Support for Zoom MDK with OMAP3430. Details of Zoom MDK available here:
25371 http://www.logicpd.com/products/devkit/ti/zoom_mobile_development_kit
25372
25373 Signed-off-by: Nishanth Menon <nm@ti.com>
25374 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
25375
25376 commit 2be2c6cc674e26237962f5cf4c0d311e139e4241
25377 Author: Dirk Behme <dirk.behme@googlemail.com>
25378 Date: Wed Jan 28 21:39:58 2009 +0100
25379
25380 OMAP3: Add Pandora support
25381
25382 Add Pandora support.
25383
25384 Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
25385 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
25386 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
25387
25388 commit ad9bc8e52d174d699d1367be0b90089e4fdeb933
25389 Author: Dirk Behme <dirk.behme@googlemail.com>
25390 Date: Wed Jan 28 21:39:58 2009 +0100
25391
25392 OMAP3: Add EVM board
25393
25394 Add EVM board support.
25395
25396 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
25397 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
25398 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
25399
25400 commit 9d0fc8110e7e755239329c26f300d5fc9946d3ec
25401 Author: Dirk Behme <dirk.behme@googlemail.com>
25402 Date: Wed Jan 28 21:39:57 2009 +0100
25403
25404 OMAP3: Add Overo board
25405
25406 Add Overo board support.
25407
25408 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
25409 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
25410 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
25411
25412 commit f904cdbb68167c647887f19929ad295dbaac8862
25413 Author: Dirk Behme <dirk.behme@googlemail.com>
25414 Date: Tue Jan 27 18:19:12 2009 +0100
25415
25416 OMAP3: Add common power code, README, and BeagleBoard
25417
25418 Add BeagleBoard support, common power code and README.
25419
25420 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
25421 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
25422
25423 commit 9cda4f104b5313fadc21b75aa781c7a6aaf6ea60
25424 Author: Kumar Gala <galak@kernel.crashing.org>
25425 Date: Wed Jan 28 08:31:10 2009 -0600
25426
25427 85xx: Fix compile breakage with MPC8540EVAL
25428
25429 Configuring for MPC8540EVAL board...
25430 mpc8540eval.c: In function 'checkboard':
25431 mpc8540eval.c:53: error: invalid operands to binary /
25432 make[1]: *** [mpc8540eval.o] Error 1
25433
25434 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25435
25436 commit 1a448db77b10153703bc5e4ad13dd55d88beb1d6
25437 Author: Bryan Wu <bryan.wu@analog.com>
25438 Date: Sun Jan 18 23:04:27 2009 -0500
25439
25440 usb_scan_devices: fix output with no devices
25441
25442 We should check the return of usb_new_device() so that if no USB device is
25443 found, we print out the right message rather than always saying "new usb
25444 device found".
25445
25446 Signed-off-by: Bryan Wu <bryan.wu@analog.com>
25447 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25448 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25449
25450 commit f1c1f540243438246aefb703fdcf16957e3a72e1
25451 Author: Stefan Roese <sr@denx.de>
25452 Date: Thu Jan 22 10:11:21 2009 +0100
25453
25454 USB: Add high-speed (480Mb/s) to all USB related outputs
25455
25456 With this patch the USB related connection speed output ("usb tree" command and
25457 debug output) is now high-speed enabled.
25458
25459 This patch also fixes a compilation warning when debugging is enabled.
25460
25461 Signed-off-by: Stefan Roese <sr@denx.de>
25462 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25463
25464 commit daa2dafb450a8073a4e42fd46cd4e995b208e4cb
25465 Author: Stefan Roese <sr@denx.de>
25466 Date: Wed Jan 21 17:12:19 2009 +0100
25467
25468 USB: Add dcache support to the EHCI driver
25469
25470 This patch adds routines to handle (flush/invalidate) the dcache for the
25471 QH and qTD structures and data buffers. This is needed on platforms using
25472 this EHCI support with dcache enabled (like the MIPS VCT board port).
25473
25474 Signed-off-by: Stefan Roese <sr@denx.de>
25475 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25476
25477 commit 4e0ea0efc1e501186aca8577a4042fc6fa641602
25478 Author: Stefan Roese <sr@denx.de>
25479 Date: Wed Jan 21 17:12:28 2009 +0100
25480
25481 USB: Add EHCI support for VCT EHCI controller
25482
25483 Signed-off-by: Stefan Roese <sr@denx.de>
25484 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25485
25486 commit 832e61418eedfea172bd2fdfd0ea0d199cc70a9d
25487 Author: Stefan Roese <sr@denx.de>
25488 Date: Wed Jan 21 17:12:10 2009 +0100
25489
25490 USB: Add config option to call ehci_hcd_init() again after EHCI reset
25491
25492 This patch adds the config option CONFIG_EHCI_HCD_INIT_AFTER_RESET
25493 to call ehci_hcd_init() again after ehci_reset() is executed. This
25494 is needed for the upcoming VCT EHCI support which needs to re-init
25495 the hcd part again after the EHCI CMD_RESET is executed.
25496
25497 Signed-off-by: Stefan Roese <sr@denx.de>
25498 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25499
25500 commit 597eb28bd9691266b7b804364cda577cdb51d106
25501 Author: Stefan Roese <sr@denx.de>
25502 Date: Wed Jan 21 17:12:01 2009 +0100
25503
25504 USB: Fix speed detection on EHCI cntr with root hub transaction translators
25505
25506 This patch fixes an issue that the speed of USB devices was not detected
25507 correctly on some EHCI controllers. This will be used on the upcoming VCT
25508 EHCI support.
25509
25510 Signed-off-by: Stefan Roese <sr@denx.de>
25511 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25512
25513 commit 20cc06611ea33fc0a67a5e56e6476379d2de3091
25514 Author: Thomas Abraham <t-abraham@ti.com>
25515 Date: Sun Jan 4 09:41:20 2009 +0530
25516
25517 usb : musb : Enabling USB MSC support for DM6446 (TI DaVinci) platform
25518
25519 Enabling USB MSC support for DM6446 (TI DaVinci) platform in the
25520 configuration file.
25521
25522 Signed-off-by: Ravi Babu <ravibabu@ti.com>
25523 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
25524 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
25525 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
25526 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25527
25528 commit 538ef967715322f64ee08efa2296d9682111b014
25529 Author: Thomas Abraham <t-abraham@ti.com>
25530 Date: Sun Jan 4 09:41:16 2009 +0530
25531
25532 usb : musb : Enabling DM6446 (TI DaVinci) USB module power
25533
25534 Enabling DM6446 (TI DaVinci) USB module power and MUSB low-level
25535 controller hook up to USB core layer.
25536
25537 Signed-off-by: Ravi Babu <ravibabu@ti.com>
25538 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
25539 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
25540 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
25541 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25542
25543 commit e142e9f35f8ec61e74bf8019428b003f5070c33b
25544 Author: Thomas Abraham <t-abraham@ti.com>
25545 Date: Sun Jan 4 09:41:13 2009 +0530
25546
25547 usb : musb : Adding DM6446 (TI DaVinci) platform specific USB support
25548
25549 Adding DM6446 (TI DaVinci) platform specific USB functionality for
25550 USB Phy and VBUS initialization.
25551
25552 Signed-off-by: Ravi Babu <ravibabu@ti.com>
25553 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
25554 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
25555 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
25556 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25557
25558 commit a9d39ebe91ecdd5ac0a0cf56ea162a19773db8da
25559 Author: Thomas Abraham <t-abraham@ti.com>
25560 Date: Sun Jan 4 09:41:09 2009 +0530
25561
25562 usb : musb : Adding USB VBUS enable functionality for DM644x DVEVM
25563
25564 Adding USB VBUS enable functionality for DM644x DVEVM (TI DaVinci)
25565 platform.
25566
25567 Signed-off-by: Ravi Babu <ravibabu@ti.com>
25568 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
25569 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
25570 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
25571 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25572
25573 commit a142896934c755e679ba87e227a8e449f39b0012
25574 Author: Thomas Abraham <t-abraham@ti.com>
25575 Date: Sun Jan 4 09:41:03 2009 +0530
25576
25577 usb : musb : Adding host controller driver for Mentor USB controller
25578
25579 Adding Mentor USB core functionality and Mentor USB Host controller
25580 functionality for Mentor USB OTG controller (musbhdrc).
25581
25582 Signed-off-by: Ravi Babu <ravibabu@ti.com>
25583 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
25584 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
25585 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
25586 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25587
25588 commit c7d703f3f3c3d6b020bda4cf633f8a6167c3cd2a
25589 Author: Mike Frysinger <vapier@gentoo.org>
25590 Date: Thu Jan 1 18:27:27 2009 -0500
25591
25592 usb.h: use standard __LITTLE_ENDIAN from Linux headers
25593
25594 Rather than forcing people to define a custom "LITTLEENDIAN", just use the
25595 __LITTLE_ENDIAN one from the Linux byteorder headers that every arch is
25596 already setting up.
25597
25598 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25599 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25600
25601 commit 7b6e31eb17e3ff76238a60803fc531517d516223
25602 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25603 Date: Wed Dec 31 10:33:56 2008 +0100
25604
25605 USB ehci ixp4xx support
25606
25607 Add USB ehci ixp4xx host controller. Test on ixdp465 board.
25608
25609 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
25610 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25611
25612 commit 1ed9f9adc88218841dfeb60b9094a5a548bff009
25613 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25614 Date: Wed Dec 31 10:33:22 2008 +0100
25615
25616 USB ehci remove infinite loop and use handshake function
25617
25618 USB ehci code cleanup. Use handshake instead of infinite while loop
25619 to check the STD_ASS status
25620
25621 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
25622 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25623
25624 commit 8fea2914ac974029b65926ef8247d908f84d202d
25625 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25626 Date: Wed Dec 31 10:32:41 2008 +0100
25627
25628 Add initial support for USB ehci pci
25629
25630 Add USB ehci pci support. This patch doesn't include any
25631 pci_ids and it is not tested on real hardware.
25632
25633 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
25634 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25635
25636 commit 14e4111cdab7e7738ff6a203d445e4d8377f058f
25637 Author: Bryan Wu <Bryan.Wu@analog.com>
25638 Date: Thu Jan 1 19:48:07 2009 -0500
25639
25640 usb_storage: do not reset SanDisk Corporation U3 Cruzer Micro USB thumb drive
25641
25642 The SanDisk Corporation U3 Cruzer Micro 1/4GB Flash Drive 000016244373FFB4
25643 does not like to be reset, so check for it.
25644
25645 Signed-off-by: Bryan Wu <bryan.wu@analog.com>
25646 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25647 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25648
25649 commit 1eb734fed3b79a5e6106dad16e88041894fdab30
25650 Author: Thomas Abraham <t-abraham@ti.com>
25651 Date: Sun Jan 4 12:15:35 2009 +0530
25652
25653 usb : usb_kbd : Populating 'priv' member of USB keyboard device_t structure
25654
25655 This patch populates the 'priv' field of the USB keyboard device_t
25656 structure. The 'priv' field is populated with the address of the
25657 'struct usb_device' structure that represents the USB device.
25658
25659 The 'priv' field can then be used in the 'usb_event_poll' function to
25660 determine the USB device that requires to be polled. An
25661 example of its usage in 'usb_event_poll' function is as below.
25662
25663 device_t *dev;
25664 struct usb_device *usb_kbd_dev;
25665
25666 <snip>
25667
25668 dev = device_get_by_name("usbkbd");
25669 usb_kbd_dev = (struct usb_device *)dev->priv;
25670 iface = &usb_kbd_dev->config.if_desc[0];
25671
25672 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
25673 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25674
25675 commit 366523c26b6320af171459b19e6e0e9e3baa83ca
25676 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25677 Date: Thu Dec 18 10:05:37 2008 +0100
25678
25679 USB change speed
25680
25681 USB changes the speed according to the port status
25682
25683 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
25684 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25685
25686 commit c0d722fe7ee1cb452dfd9246419188b3f6d9c4df
25687 Author: Remy Böhmer <linux@bohmer.net>
25688 Date: Sat Dec 13 22:51:58 2008 +0100
25689
25690 EHCI fix code and ixp4xx test.
25691 USB ehci configuration parameter:
25692
25693 #define CONFIG_CMD_USB 1
25694 #define CONFIG_USB_STORAGE 1
25695 #define CONFIG_USB_EHCI
25696 #define CONFIG_USB_EHCI_IXP4XX 1
25697 #define CONFIG_EHCI_IS_TDI 1
25698 #define CONFIG_EHCI_DESC_BIG_ENDIAN 1
25699 #define CONFIG_EHCI_MMIO_BIG_ENDIAN 1
25700 #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 2
25701 #define CONFIG_LEGACY_USB_INIT_SEQ 1
25702
25703 2 USB Device(s) found
25704 scanning bus for storage devices... 0 Storage Device(s) found
25705 => usb tree
25706
25707 Device Tree:
25708 1 Hub (1.5MBit/s, 0mA)
25709 | u-boot EHCI Host Controller
25710 |
25711 |+-2 Mass Storage (12MBit/s, 100mA)
25712 Sony Storage Media 0C07040930296
25713
25714 =>
25715
25716 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
25717 Signed-off-by: Remy Böhmer <linux@bohmer.net>
25718
25719 commit 51ab142b8b546d5e627b2c8c36d0adae222565f7
25720 Author: michael <michael@panicking.retis>
25721 Date: Thu Dec 11 13:43:55 2008 +0100
25722
25723 [PATCH] This patch add varius fix to the ehci.
25724 - fix ehci_readl, ehci_writel
25725 - introduce new define in ehci.h
25726 - introduce the handshake function for waiting on a register
25727 - fix usb_ehci_fsl with the new HC_LENGTH macro
25728
25729 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
25730 Signed-off-by: Remy Böhmer <linux@bohmer.net>
25731
25732 commit db63299b1dd2894ade542278210bccd046de6435
25733 Author: michael <michael@panicking.retis>
25734 Date: Wed Dec 10 17:55:19 2008 +0100
25735
25736 [PATCH] Fix EHCI usb. I start to test on a
25737 IXP465 board and I find some errors in the code. This
25738 patch fix:
25739 - descriptor initizialization (config, interface and endpoint
25740 must be one next-to the other when the USB_DT_CONFIG message
25741 is send.
25742 - FIX little/endian bigendian (introduce the CONFIG_EHCI_DESC_BIG_ENDIAN
25743 and the CONFIG_EHCI_MMIO_BIG_ENDIAN)
25744 - Introduce the linux version of the usb_config_descriptor and
25745 usb_interface descriptor. This descriptor does't contains
25746 u-boot extension.
25747
25748 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
25749 Signed-off-by: Remy Böhmer <linux@bohmer.net>
25750
25751 commit 6b92487dcf9afe83a3570153d66940fdb293be76
25752 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25753 Date: Fri Nov 28 13:22:09 2008 +0100
25754
25755 USB ehci freescale support
25756
25757 Add USB ehci freescale support
25758
25759 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25760 Signed-off-by: Remy Böhmer <linux@bohmer.net>
25761
25762 commit aaf098cfeed04595d4c5100ffd39095d79edbf90
25763 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25764 Date: Fri Nov 28 13:20:46 2008 +0100
25765
25766 USB ehci core support
25767
25768 Add USB ehci core support
25769
25770 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25771 Signed-off-by: Remy Böhmer <linux@bohmer.net>
25772
25773 commit 3e126484df7868e341545cce740b24b62b0cd3b7
25774 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25775 Date: Fri Nov 28 13:19:19 2008 +0100
25776
25777 Prepare USB layer for ehci
25778
25779 Prepare USB layer for ehci support
25780
25781 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25782 Signed-off-by: Remy Böhmer <linux@bohmer.net>
25783
25784 commit a0cb3fc31e58996a1c5732715ac04159d4d284fd
25785 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25786 Date: Wed Dec 10 15:52:06 2008 +0100
25787
25788 USB storage cleanup patch
25789
25790 Cleanup usb storage
25791
25792 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
25793 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25794
25795 commit fe033ad6d0883063fe857237abb9436fab03208c
25796 Author: Mike Frysinger <vapier@gentoo.org>
25797 Date: Sun Oct 12 06:02:55 2008 -0400
25798
25799 Blackfin: fixup misc warnings such as printf's and missing casts
25800
25801 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25802
25803 commit 1f4a3bb50343719c434d7e2541a2f86480a6d25c
25804 Author: Mike Frysinger <vapier@gentoo.org>
25805 Date: Sun Oct 12 22:09:26 2008 -0400
25806
25807 Blackfin: convert old boards to use COBJS-y Makefile style
25808
25809 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25810
25811 commit 1f75d6f0ff005762d3e6ad92ae4ce2ab366b3bb5
25812 Author: Mike Frysinger <vapier@gentoo.org>
25813 Date: Sat Oct 11 22:38:37 2008 -0400
25814
25815 Blackfin: bf533-stamp: rewrite resource swap logic
25816
25817 The old swap function tended to clobber unrelated pins and screw up masks.
25818 Rewrite the thing from scratch so it only uses the resources it needs.
25819
25820 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25821
25822 commit 29d4ea0a9073c82469184331010136f52edf8db6
25823 Author: Mike Frysinger <vapier@gentoo.org>
25824 Date: Sat Oct 11 22:08:42 2008 -0400
25825
25826 Blackfin: bootldr: implement BF53x/BF56x LDR loader
25827
25828 The BF53x/BF56x parts do not have an on-chip ROM to boot LDRs out of
25829 arbitrary memory locations, so implement a basic one in software.
25830
25831 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25832
25833 commit 8b35e3aeff6c2d747c37697997b3f8a808432329
25834 Author: Mike Frysinger <vapier@gentoo.org>
25835 Date: Sat Oct 11 22:05:42 2008 -0400
25836
25837 Blackfin: implement real write support for OTP
25838
25839 Now that real documentation has been released for the OTP interface and
25840 the on-chip ROM wrt writing/timings, implement support for reading/writing
25841 as well as dumping/locking.
25842
25843 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25844
25845 commit 9372c3214808fab545227d8d0f76b3bfcc6760ec
25846 Author: Mike Frysinger <vapier@gentoo.org>
25847 Date: Sat Oct 11 22:04:05 2008 -0400
25848
25849 Blackfin: update on-chip ROM API
25850
25851 This brings the API for the on-chip ROM in line with the toolchain and
25852 hardware documentation.
25853
25854 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25855
25856 commit 7633903bff432ec7b27905dce7396958553f2be6
25857 Author: Mike Frysinger <vapier@gentoo.org>
25858 Date: Sat Oct 11 21:52:17 2008 -0400
25859
25860 Blackfin: allow serial console to be disabled
25861
25862 Some devices have no UART device pulled out, so allow people to disable the
25863 driver completely in favor of other methods (like JTAG-console).
25864
25865 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25866
25867 commit 36ea8e9ad1107af12d244bba8c73e85b9f655e45
25868 Author: Mike Frysinger <vapier@gentoo.org>
25869 Date: Sat Oct 11 21:51:20 2008 -0400
25870
25871 Blackfin: support console-over-JTAG
25872
25873 The Blackfin JTAG has the ability to pass data via a back-channel without
25874 halting the processor. Utilize that channel to emulate a console.
25875
25876 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25877
25878 commit cf8f2efb5f39c5225da92391c14a07eecbeca881
25879 Author: Mike Frysinger <vapier@gentoo.org>
25880 Date: Sat Oct 11 21:49:06 2008 -0400
25881
25882 Blackfin: handle new anomalies with reset
25883
25884 Workaround fun new anomalies related to software reset of the processor.
25885
25886 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25887
25888 commit b1e9435b643043dd8fbd1fcc47309c6acb7b3c8e
25889 Author: Mike Frysinger <vapier@gentoo.org>
25890 Date: Sat Oct 11 21:44:00 2008 -0400
25891
25892 Blackfin: pass RETX to Linux
25893
25894 Make sure we save the value of RETX at power on and then pass it on to the
25895 kernel so that it can nicely debug a "double-fault-caused-a-reset" crash.
25896
25897 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25898
25899 commit b5eba3fafcccd1979380f12a256bd0e19be3d61e
25900 Author: Mike Frysinger <vapier@gentoo.org>
25901 Date: Sat Oct 11 21:40:26 2008 -0400
25902
25903 Blackfin: clarify relocation comment during init
25904
25905 People often ask questions about the init process and when things go
25906 from flash to relocated base, so clarify the comments a bit.
25907
25908 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25909
25910 commit 95433f6d43ede6b40c1d900f3f704c839aa074f1
25911 Author: Mike Frysinger <vapier@gentoo.org>
25912 Date: Sat Oct 11 21:23:41 2008 -0400
25913
25914 Blackfin: just set SP register directly during init
25915
25916 No need to set the SP register indirectly to the configured value when it
25917 can be set directly.
25918
25919 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25920
25921 commit 51230e6e356ccf4c932e0c4ff54f1e49da02285c
25922 Author: Mike Frysinger <vapier@gentoo.org>
25923 Date: Sat Oct 11 21:15:53 2008 -0400
25924
25925 Blackfin: add portmuxing for UARTs on the BF51x
25926
25927 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25928
25929 commit 4f6a313240c531042f16909a3a170ab047b95779
25930 Author: Mike Frysinger <vapier@gentoo.org>
25931 Date: Sun Jun 1 01:26:29 2008 -0400
25932
25933 Blackfin: respect CONFIG_CLKIN_HALF
25934
25935 As pointed out by Ivan Koryakovskiy, the initialization code was not
25936 actually respecting the CONFIG_CLKIN_HALF option when configuring the
25937 PLL_CTL register.
25938
25939 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25940
25941 commit dc2bfb0b58d7462b9eba68f3ae38e38cada0ad33
25942 Author: Mike Frysinger <vapier@gentoo.org>
25943 Date: Sun Jun 1 01:21:34 2008 -0400
25944
25945 Blackfin: use common memcpy routine during init
25946
25947 Rather than using a local custom memcpy function, just call the existing
25948 optimized Blackfin version.
25949
25950 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25951
25952 commit 362c943347364e9373af4c5530778491ab56ec2e
25953 Author: Mike Frysinger <vapier@gentoo.org>
25954 Date: Wed Apr 9 02:27:06 2008 -0400
25955
25956 Blackfin: set default boot SPI CS for BF538/BF539
25957
25958 The BF538/BF539 use CS2 for booting off of rather than CS1 like newer
25959 Blackfin parts.
25960
25961 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25962
25963 commit 74dde80bd5d55bc146630853ca191aaeea7c30f4
25964 Author: Mike Frysinger <vapier@gentoo.org>
25965 Date: Wed Apr 9 02:20:59 2008 -0400
25966
25967 Blackfin: punt unused BF533-STAMP definitions
25968
25969 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25970
25971 commit fee531eeefc3b5f2c63c7fe27b9f55d924c59c26
25972 Author: Mike Frysinger <vapier@gentoo.org>
25973 Date: Fri Apr 18 20:44:11 2008 -0400
25974
25975 Blackfin: resurrect BF533-STAMP video splash driver
25976
25977 This video driver used to live in the Blackfin cpu directory, but it was
25978 lost during the unification process. This brings it back.
25979
25980 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25981
25982 commit a750d038f2548d846ea1e046d873dc932d041319
25983 Author: Mike Frysinger <vapier@gentoo.org>
25984 Date: Wed Apr 9 02:31:29 2008 -0400
25985
25986 Blackfin: tighten up post memory coding style
25987
25988 No functional changes here; just cleanup code style a bit.
25989
25990 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25991
25992 commit 0649908f92c9bd214dd139aa3d4698c1654a45c6
25993 Author: Mike Frysinger <vapier@gentoo.org>
25994 Date: Wed Apr 9 02:29:18 2008 -0400
25995
25996 Blackfin: bf537-stamp nand: fix more style errors in previous commit
25997
25998 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25999
26000 commit 41f3325ae9add641036d7cb362e884b698e53f07
26001 Author: Mike Frysinger <vapier@gentoo.org>
26002 Date: Sat Oct 11 20:31:17 2008 -0400
26003
26004 Blackfin: drop dead/wrong debug code in initdram()
26005
26006 The DEBUG code in initdram() is quite old and was never really useful, so
26007 just drop it altogether. Common Blackfin debug code does a better job.
26008
26009 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26010
26011 commit 65ba1abd3b90e0b2585745809b78e2651bd3bacb
26012 Author: Mike Frysinger <vapier@gentoo.org>
26013 Date: Sat Oct 11 20:30:28 2008 -0400
26014
26015 Blackfin: bf533-ezkit: shuffle flash defines a little
26016
26017 Some of the flash defines weren't in the correct location and caused build
26018 problems in some configurations, so let's move types and defines to better
26019 local locations.
26020
26021 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26022
26023 commit be853bf86b41e91f4c422f0f56fdf87ea3191266
26024 Author: Mike Frysinger <vapier@gentoo.org>
26025 Date: Mon Oct 6 04:16:47 2008 -0400
26026
26027 Blackfin: overhaul i2c driver
26028
26029 The current Blackfin i2c driver does not work properly with certain devices
26030 due to it breaking up transfers incorrectly. This is a rewrite of the
26031 driver and relocates it to the newer place in the source tree.
26032
26033 Also remove duplicated I2C speed defines in Blackfin board configs and
26034 disable I2C slave address usage since it isn't implemented.
26035
26036 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26037
26038 commit b6edc719a106ab7fa6e6950b4d97bc39c1368e45
26039 Author: Mike Frysinger <vapier@gentoo.org>
26040 Date: Mon Oct 6 04:00:07 2008 -0400
26041
26042 Blackfin: respect CONFIG_SYS_MONITOR_LEN for default flash protection
26043
26044 Respect the CONFIG_SYS_MONITOR_LEN define rather than assuming a size of
26045 128kB when setting up the default flash protection region for U-Boot
26046 itself.
26047
26048 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26049
26050 commit 78a0ba7dc24c9682371f6ee8549b569fb573a329
26051 Author: Mike Frysinger <vapier@gentoo.org>
26052 Date: Mon Oct 6 03:57:39 2008 -0400
26053
26054 Blackfin: respect/check CONFIG_SYS_GBL_DATA_SIZE
26055
26056 When setting up the global data, rather than relying on sizeof(), use the
26057 common CONFIG_SYS_GBL_DATA_SIZE define.
26058
26059 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26060
26061 commit 01815c2d06c5b838f2cd536703e47bd2c9148194
26062 Author: Mike Frysinger <vapier@gentoo.org>
26063 Date: Mon Oct 6 03:52:24 2008 -0400
26064
26065 Blackfin: implement general support for CONFIG_STATUS_LED
26066
26067 Here are the Blackfin-specific and board-independent pieces for status leds.
26068
26069 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26070
26071 commit 6882b5a79a3247494b62c05015fa672557f1bfaa
26072 Author: Mike Frysinger <vapier@gentoo.org>
26073 Date: Mon Oct 6 03:49:32 2008 -0400
26074
26075 Blackfin: do not init i2c in Blackfin board init
26076
26077 The common code takes care of calling i2c_init() when needed, so no point
26078 in us doing it as well.
26079
26080 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26081
26082 commit 1118ea73698eee6e72ef5cbfc00e41746040304f
26083 Author: Mike Frysinger <vapier@gentoo.org>
26084 Date: Mon Oct 6 03:42:20 2008 -0400
26085
26086 Blackfin: bfin_mac: update port muxing
26087
26088 Adds support more Blackfin parts and fixes broken muxing for older ones.
26089
26090 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26091
26092 commit 05b75e48832fc4afeecf8e76d704349557dffa35
26093 Author: Mike Frysinger <vapier@gentoo.org>
26094 Date: Mon Oct 6 03:35:44 2008 -0400
26095
26096 Blackfin: fix dcache handling when doing dma memcpy's
26097
26098 Our dcache invalidate function doesn't just invalidate, it also flushes.
26099 So rename the function accordingly and fix the dma_memcpy() function so it
26100 doesn't inadvertently corrupt the data destination.
26101
26102 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26103
26104 commit 68e5632494168095d75f120af70043b68afd2476
26105 Author: Mike Frysinger <vapier@gentoo.org>
26106 Date: Thu Aug 7 18:56:56 2008 -0400
26107
26108 Blackfin: dont generate ldrs with --force
26109
26110 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26111
26112 commit 746290dfd86a70b41fc5fdd3df1424a647d5c5e8
26113 Author: Mike Frysinger <vapier@gentoo.org>
26114 Date: Thu Aug 7 18:55:30 2008 -0400
26115
26116 Blackfin: pass --bmode/--initcode when creating ldr
26117
26118 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26119
26120 commit 0332e4df71fccf9a96c5a4393e3c5d5daa50880a
26121 Author: Mike Frysinger <vapier@gentoo.org>
26122 Date: Thu Aug 7 18:39:27 2008 -0400
26123
26124 Blackfin: minimize time cache is turned off when replacing cplb entries
26125
26126 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26127
26128 commit 21d631360430cf0ae9099612273cd4de28911ba9
26129 Author: Mike Frysinger <vapier@gentoo.org>
26130 Date: Thu Aug 7 15:31:13 2008 -0400
26131
26132 Blackfin: split cache handling out of dma_memcpy()
26133
26134 Creating a new dma_memcpy() function that skips all cache checks allows us
26135 to use the function in very early init where the cache is not yet setup.
26136
26137 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26138
26139 commit d31eb38512bed377d5d4b3c696662e52120a2e4c
26140 Author: Mike Frysinger <vapier@gentoo.org>
26141 Date: Thu Aug 7 15:30:49 2008 -0400
26142
26143 Blackfin: abort dma_memcpy() for L1 scratchpad
26144
26145 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26146
26147 commit 81b799add709177e838466461f7b9989488b0fd5
26148 Author: Mike Frysinger <vapier@gentoo.org>
26149 Date: Thu Aug 7 15:27:52 2008 -0400
26150
26151 Blackfin: rename bootm.c to boot.c
26152
26153 The boot file contains functions for more than just "bootm", so rename it
26154 accordingly.
26155
26156 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26157
26158 commit d7ca7dd5bfc418ac173e9d2712f6cc2d8147a091
26159 Author: Mike Frysinger <vapier@gentoo.org>
26160 Date: Thu Aug 7 13:22:37 2008 -0400
26161
26162 Blackfin: set more sane default board config values
26163
26164 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26165
26166 commit 36cd52a00794fb15ffab05d640acca92d7482993
26167 Author: Mike Frysinger <vapier@gentoo.org>
26168 Date: Thu Aug 7 15:24:59 2008 -0400
26169
26170 Blackfin: convert CMD_LINE_ADDR to CONFIG_LINUX_CMDLINE_{ADDR,SIZE}
26171
26172 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26173
26174 commit c8054bc12e00669bd7588f2b30fef48aa94babac
26175 Author: Mike Frysinger <vapier@gentoo.org>
26176 Date: Thu Aug 7 13:21:27 2008 -0400
26177
26178 Blackfin: add bit defines for DDR parts
26179
26180 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26181
26182 commit 154502fe0796f3b7a4698378c5d2080ae28a9782
26183 Author: Mike Frysinger <vapier@gentoo.org>
26184 Date: Thu Aug 7 13:21:11 2008 -0400
26185
26186 Blackfin: add defines to describe active bootrom behavior
26187
26188 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26189
26190 commit 2b6fd5c77db9c6ed3cea9799c86ff922cf0107b2
26191 Author: Kim Phillips <kim.phillips@freescale.com>
26192 Date: Tue Jan 27 16:03:53 2009 -0600
26193
26194 mpc83xx: fix undefined reference to `flush_cache' error in simpc8313 build
26195
26196 extend commit c70564e6b1bd08f3230182392238907f3531a87e
26197 "NAND: Fix cache and memory inconsistency issue" to add the cache.o dependency
26198 to the simpc8313 build and fix this:
26199
26200 ...Large Page NAND...Configuring for SIMPC8313 board...
26201 nand_boot_fsl_elbc.o: In function `nand_boot':
26202 nand_spl/board/sheldon/simpc8313/nand_boot_fsl_elbc.c:150: undefined reference to `flush_cache'
26203 make[1]: *** [/home/r1aaha/git/u-boot-mpc83xx/nand_spl/u-boot-spl] Error 1
26204 make: *** [nand_spl] Error 2
26205
26206 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26207
26208 commit 54a7cc4912feefa45be961cc47cc159563725d2f
26209 Author: Wolfgang Denk <wd@denx.de>
26210 Date: Wed Jan 28 09:25:31 2009 +0100
26211
26212 mpc8536ds.c: include sata.h to for needed function prototypes
26213
26214 Signed-off-by: Wolfgang Denk <wd@denx.de>
26215
26216 commit 2fb2604d5c20beb061b0a94282b7f6eb14d00cb8
26217 Author: Peter Tyser <ptyser@xes-inc.com>
26218 Date: Tue Jan 27 18:03:12 2009 -0600
26219
26220 Command usage cleanup
26221
26222 Remove command name from all command "usage" fields and update
26223 common/command.c to display "name - usage" instead of
26224 just "usage". Also remove newlines from command usage fields.
26225
26226 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
26227
26228 commit 79621bc10ba8b8c45d348994aba5b9e4923cb77b
26229 Author: Peter Tyser <ptyser@xes-inc.com>
26230 Date: Tue Jan 27 18:03:11 2009 -0600
26231
26232 amcc: Clean up command usage output
26233
26234 Update taihu and taishan commands to use cmd_usage() function
26235 to display usage messages.
26236
26237 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
26238
26239 commit 62c3ae7c6ef215b1afa614abdf61acf077752207
26240 Author: Peter Tyser <ptyser@xes-inc.com>
26241 Date: Tue Jan 27 18:03:10 2009 -0600
26242
26243 Standardize command usage messages with cmd_usage()
26244
26245 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
26246
26247 commit 84cde2bb409c07c6ef36a192d194359d4e9ccd70
26248 Author: Peter Tyser <ptyser@xes-inc.com>
26249 Date: Tue Jan 27 18:03:09 2009 -0600
26250
26251 pcs440ep: Clean up led command definition
26252
26253 The pcs440ep's led command usage formatting is non-standard. It
26254 was made standard in preparation for larger command usage updates.
26255
26256 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
26257
26258 commit 9507e7867e04dc48c80ee333c2a9a5e70e887f62
26259 Author: Peter Tyser <ptyser@xes-inc.com>
26260 Date: Tue Jan 27 18:03:08 2009 -0600
26261
26262 Clean up diufb command definitions
26263
26264 The diufb command usage formatting is non-standard. It was
26265 made standard in preparation for larger command usage updates.
26266
26267 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
26268
26269 commit 6450a8485836fc80615ae6de6a864c33369b44f5
26270 Author: Wolfgang Denk <wd@denx.de>
26271 Date: Wed Jan 28 00:29:26 2009 +0100
26272
26273 Update CHANGELOG, tiny coding style cleanup.
26274
26275 Signed-off-by: Wolfgang Denk <wd@denx.de>
26276
26277 commit cf7e399fb35b3aea90a27d1df72f45f5d6156204
26278 Author: Mike Frysinger <vapier@gentoo.org>
26279 Date: Tue Jan 27 16:12:21 2009 -0500
26280
26281 SATA: do not auto-initialize during boot
26282
26283 Rather than have the board code initialize SATA automatically during boot,
26284 make the user manually run "sata init". This brings the SATA subsystem in
26285 line with common U-Boot policy.
26286
26287 Rather than having a dedicated weak function "is_sata_supported", people
26288 can override sata_initialize() to do their weird board stuff. Then they
26289 can call the actual __sata_initialize().
26290
26291 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26292
26293 commit 50970839712dda35399e2fa83fe818df9354d618
26294 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
26295 Date: Mon Jan 26 08:45:14 2009 -0500
26296
26297 part_efi: Fix partition size calculation due to inclusive ending LBA.
26298
26299 The ending LBA is inclusive. Hence, the partition size should be
26300 ((ending-LBA + 1) - starting-LBA) to get the proper partition size.
26301
26302 This is confirmed against the results from the parted tool.
26303 (e.g. use parted /dev/sda -s unit S print) and observe the size.
26304
26305 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
26306
26307 commit b5b004ad8a0ac6f98bd5708ec8b22fbddd1c1042
26308 Author: Tomasz Figa <tomasz.figa@gmail.com>
26309 Date: Tue Dec 30 18:35:57 2008 +0100
26310
26311 jffs2: Fix zero sector_size when not using CONFIG_JFFS2_CMDLINE
26312
26313 This patch fixes a bug (?) introduced after inclusion of the new
26314 JFFS2 code.
26315
26316 When not using CONFIG_JFFS2_CMDLINE, the code in cmd_jffs2.c doesn't
26317 fill in part->sector_size (keeping it as 0), but a correct value is
26318 needed by the code in jffs2_1pass.c. This causes all JFFS2 accesses
26319 to be in the same place of the memory, what obviously means
26320 impossibility to use the JFFS2 partition.
26321
26322 This problem is fixed in this patch by including sector size
26323 calculation in non-CONFIG_JFFS2_CMDLINE mtdparts_init variant.
26324
26325 Signed-off-by: Tomasz Figa <tomasz.figa_at_gmail.com>
26326
26327 commit ba69dc26a5fd606da49573bb2f15e756a34f3f98
26328 Author: Mike Frysinger <vapier@gentoo.org>
26329 Date: Tue Dec 30 02:59:25 2008 -0500
26330
26331 saveenv: standardize enablement
26332
26333 Rather than special casing each environment type for enabling the saveenv
26334 command, have them all behave the same. This avoids bitrot as new env
26335 sources are added/removed.
26336
26337 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26338
26339 commit 2ac6985a7466a1c8a7aa8b2fa24d360925a82764
26340 Author: Andrew Dyer <adyer@righthandtech.com>
26341 Date: Mon Dec 29 17:36:01 2008 -0600
26342
26343 soft_i2c.c add option for repeated start in i2c_read()
26344
26345 This patch adds a #define to optionally change the behaviour of
26346 i2c_read() in soft_i2c.c to send an I2C repeated start instead of a
26347 stop-start between sending the device address pointer write and
26348 reading back the data. The current behaviour is retained as the
26349 default.
26350
26351 While most devices will work either way, I have a smart battery(*)
26352 that requires repeated start, and someone at some point found a
26353 device that required a stop-start.
26354
26355 (*) http://www.inspired-energy.com/Standard_Products/NL2054/NL2054%20Rev1.0%20Data%20Sheet.pdf
26356
26357 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
26358
26359 commit 3429071700963ca2f944c51d695a7481af0cee33
26360 Author: Wolfgang Denk <wd@denx.de>
26361 Date: Tue Jan 27 22:07:14 2009 +0100
26362
26363 {delta,zylonite}/lowlevel_init.S: fix typo
26364
26365 Commit 9d803d8c mistakenly changed some constants
26366 from 0x300 into 300 - this patch fixes it.
26367
26368 Pointed out by Tom Evans <tom@ceos.com.au>, see
26369 http://article.gmane.org/gmane.comp.boot-loaders.u-boot/51992 for
26370 details.
26371
26372 Signed-off-by: Wolfgang Denk <wd@denx.de>
26373
26374 commit 1bc434373013af241835c14011ac3f291dccbf53
26375 Author: Stefan Althoefer <stefan.althoefer@web.de>
26376 Date: Sat Dec 20 19:40:41 2008 +0100
26377
26378 drivers/net/e1000.c: missing terminator for supported devices
26379
26380 Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
26381
26382 commit 65f7d41031a70b1649b35020995c505edca91533
26383 Author: Wolfgang Denk <wd@denx.de>
26384 Date: Tue Jan 27 21:36:28 2009 +0100
26385
26386 fat.c: fix warning: array subscript is above array bounds
26387
26388 Fix based on suggestion by David Hawkins <dwh@ovro.caltech.edu>.
26389
26390 Signed-off-by: Wolfgang Denk <wd@denx.de>
26391
26392 commit 107b801cf3fe39612d69d70581ebc3bf5e215554
26393 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26394 Date: Fri Jan 2 15:11:41 2009 +0100
26395
26396 Fix gunzip in case of insufficient output buffer
26397
26398 U-Boot's gunzip() function does not handle the return code
26399 of zlib's inflate() function correctly. gunzip() is implemented
26400 to uncompress all input data in one run. So the correct return
26401 code for the good case is Z_STREAM_END. In case of insufficient
26402 output buffer memory inflate returns Z_OK. For gunzip() this
26403 is an error.
26404
26405 It also makes sense to me to call inflateEnd() also in case
26406 of an error.
26407
26408 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26409
26410 commit 2a61eff6a82f0d6e2335d968799b3fbeb3ff4d8e
26411 Author: Stefan Roese <sr@denx.de>
26412 Date: Wed Jan 21 17:25:01 2009 +0100
26413
26414 MIPS: Add VCT board series support (Part 3/3)
26415
26416 Signed-off-by: Stefan Roese <sr@denx.de>
26417
26418 commit ae691e5719c48f1d2826cb72722497d1d162765b
26419 Author: Stefan Roese <sr@denx.de>
26420 Date: Wed Jan 21 17:24:49 2009 +0100
26421
26422 MIPS: Add VCT board series support (Part 2/3)
26423
26424 Signed-off-by: Stefan Roese <sr@denx.de>
26425
26426 commit 50752790bc9285c0c1c5235e88f3a4ef2eec1e72
26427 Author: Stefan Roese <sr@denx.de>
26428 Date: Wed Jan 21 17:24:39 2009 +0100
26429
26430 MIPS: Add VCT board series support (Part 1/3)
26431
26432 Signed-off-by: Stefan Roese <sr@denx.de>
26433
26434 commit 03d3bfb00806b5441f1871c7408c1749863e0fdc
26435 Author: Stefan Roese <sr@denx.de>
26436 Date: Wed Jan 21 17:20:20 2009 +0100
26437
26438 MIPS: Add flush_dcache_range() and invalidate_dcache_range()
26439
26440 This patch adds flush_/invalidate_dcache_range() to the MIPS architecture.
26441 Those functions are needed for the upcoming dcache support for the USB
26442 EHCI driver. I chose this API because those cache handling functions are
26443 already present in the PPC architecture.
26444
26445 Signed-off-by: Stefan Roese <sr@denx.de>
26446 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26447
26448 commit de832a99414ff06a4b2cdc9f5280b387da039834
26449 Author: Stefan Roese <sr@denx.de>
26450 Date: Mon Jan 26 10:05:20 2009 +0100
26451
26452 nand_spl: Fix compile problem with board_nand_init() prototype
26453
26454 This patch removes the now obsolete and additionally wrongly defined
26455 board_nand_init() prototype from nand_spl/nand_boot.c.
26456
26457 Signed-off-by: Stefan Roese <sr@denx.de>
26458 Signed-off-by: Scott Wood <scottwood@freescale.com>
26459
26460 commit e8eac437189430d8e04a5d254ed92c58bc534a79
26461 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
26462 Date: Wed Jan 14 08:44:26 2009 -0500
26463
26464 CFI: Add geometry reversal for STMicro M29W320ET
26465
26466 Added flash_fixup_stm to fix geometry reversal on STMicro M29W320ET flash chip.
26467
26468 Modeled after flash_fixup_amd, this patch handles the geometry reversal
26469 or erase sectors that exist for ST Micro (now Numonyx) M29W320ET flash.
26470 Since I cannot test all STM's chips, the detection is implemented as
26471 narrow as possible for now.
26472
26473 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
26474 Signed-off-by: Stefan Roese <sr@denx.de>
26475
26476 commit 0f8e851e897b535959a0781171910cd97f33c30c
26477 Author: Jens Gehrlein <sew_s@tqs.de>
26478 Date: Tue Dec 16 17:25:55 2008 +0100
26479
26480 CFI: increase performance of function find_sector()
26481
26482 Tested on TQM5200S-BD with Samsung K8P2815UQB
26483
26484 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
26485 Signed-off-by: Stefan Roese <sr@denx.de>
26486
26487 commit a7292871a79cc48d98e3a708dd3c3b81580db6ef
26488 Author: Jens Gehrlein <sew_s@tqs.de>
26489 Date: Tue Dec 16 17:25:54 2008 +0100
26490
26491 CFI: avoid redundant function call in single word programming mode
26492
26493 The function find_sector() doesn't need to be called twice in
26494 the case of AMD command set.
26495 Tested on TQM5200S-BD with Samsung K8P2815UQB.
26496
26497 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
26498 Signed-off-by: Stefan Roese <sr@denx.de>
26499
26500 commit c8901f46a71ec16e084e604596a09e23bfb0f6ac
26501 Author: Stefan Roese <sr@denx.de>
26502 Date: Mon Jan 26 10:15:23 2009 +0100
26503
26504 ppc4xx: Remove compilation warning in gdppc440etc.c
26505
26506 Signed-off-by: Stefan Roese <sr@denx.de>
26507
26508 commit 91f33534728e6416d332ad2b53ad1d6fde57f7fc
26509 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26510 Date: Fri Jan 2 12:19:47 2009 +0100
26511
26512 ppc4xx: Remove CONFIG_SYS_IGNORE_405_UART_ERRATA_59 from config files
26513
26514 Lot's of 405 board config files use CONFIG_SYS_IGNORE_405_UART_ERRATA_59.
26515 Either they define or undef it. Because it's not used in any source
26516 files this patch removes any references to it.
26517
26518 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26519 Signed-off-by: Stefan Roese <sr@denx.de>
26520
26521 commit 89b8619aaeafc922ca0c3bb249872591050c8dcc
26522 Author: Dirk Eibach <eibach@gdsys.de>
26523 Date: Tue Dec 9 13:12:40 2008 +0100
26524
26525 ppc4xx: Add GDsys PowerPC 440 ETX board support.
26526
26527 Board support for the Guntermann & Drunck PowerPC 440 ETX module.
26528 Based on the AMCC Yosemite board support by Stefan Roese.
26529
26530 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
26531 Signed-off-by: Stefan Roese <sr@denx.de>
26532
26533 commit 3943d2ff6cc40dd601a9feeb39eb6d3d5090ea6d
26534 Author: Dirk Eibach <eibach@gdsys.de>
26535 Date: Tue Dec 9 11:00:07 2008 +0100
26536
26537 ppc4xx: Improve DDR autodetect
26538
26539 Added support for a second memory bank to DDR autodetection for 440
26540 platforms.
26541 Made hardcoded values configurable.
26542
26543 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
26544 Signed-off-by: Stefan Roese <sr@denx.de>
26545
26546 commit 71a040f4f556cca4d30f06805d82e717b3ef1020
26547 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26548 Date: Fri Nov 21 12:06:26 2008 +0900
26549
26550 sh: sh7763rdp: Update sh7763rdp config
26551
26552 Add CONFIG_NET_MULTI in config file, because sh_eth changed new newwork API.
26553
26554 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26555 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26556
26557 commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56
26558 Author: Gary Jennejohn <garyj@denx.de>
26559 Date: Thu Nov 20 12:28:38 2008 +0100
26560
26561 mgcoge make ether_scc.c work with CONFIG_NET_MULTI
26562
26563 This change is needed for mgcoge because it uses two ethernet drivers.
26564
26565 Add a check for the presence of the PIGGY board on mgcoge. Without this
26566 board networking cannot work and the initialization must be aborted.
26567
26568 Only allocate rtx once to prevent DPRAM exhaustion.
26569
26570 Initialize ether_scc.c and the keymile-specific HDLC driver (to be added
26571 soon) in eth.c.
26572
26573 Signed-off-by: Gary Jennejohn <garyj@denx.de>
26574 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26575
26576 commit bd3980cc095af1728b994cdd8bf1ac430b6289e6
26577 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26578 Date: Fri Nov 21 12:04:18 2008 +0900
26579
26580 sh: sh_eth: Change new network API
26581
26582 sh_eth used old network API. This patch changed new API.
26583
26584 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26585 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26586
26587 commit 890a02e8ee6b8c26a6e3e505e1a2d29cd73aa6f6
26588 Author: Stefan Roese <sr@denx.de>
26589 Date: Wed Nov 12 13:31:02 2008 +0100
26590
26591 net: smc911x: Make register read/write functions weak
26592
26593 This patch changes the reg_read/_write to smc911x_reg_read/_write
26594 and defines then as weak so that they can be overridden by board
26595 specific version.
26596
26597 This will be used by the upcoming VCTH board support.
26598
26599 Signed-off-by: Stefan Roese <sr@denx.de>
26600 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26601
26602 commit 8b69b563039989885969d24465c56f8ac4c07c4c
26603 Author: Heiko Schocher <hs@denx.de>
26604 Date: Thu Nov 20 09:57:14 2008 +0100
26605
26606 powerpc: net: support for the SMSC LAN8700 PHY
26607
26608 Signed-off-by: Heiko Schocher <hs@denx.de>
26609 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26610
26611 commit d5254f149da9e6cd649d887b042ce577ef3ba78d
26612 Author: Alessandro Rubini <rubini@unipv.it>
26613 Date: Sat Jan 24 18:10:37 2009 +0100
26614
26615 Initial support for Nomadik 8815 development board
26616
26617 The NMDK8815 board is distributed by ST Microelectornics.
26618 Other (proprietary) code must be run to unlock the CPU before
26619 U-Boot runs. doc/README.nmdk8815 outlines the boot sequence.
26620
26621 This is the initial port, with basic infrastructure and
26622 a working serial port.
26623
26624 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
26625 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
26626 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26627
26628 commit 7d264c1ef267cfc8d928bc8577a7cc907f2f5e47
26629 Author: Dirk Behme <dirk.behme@googlemail.com>
26630 Date: Sun Dec 14 09:47:18 2008 +0100
26631
26632 OMAP3: Add I2C support
26633
26634 Add I2C support.
26635
26636 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
26637
26638 commit b1c3bf99fb477675d464aeadb5dd69d2cbc9dc7b
26639 Author: Dirk Behme <dirk.behme@googlemail.com>
26640 Date: Sun Dec 14 09:47:17 2008 +0100
26641
26642 OMAP3: Add MMC support
26643
26644 Add MMC support.
26645
26646 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
26647
26648 commit 12201a13547ec22ddcdae278e74465e54a3be60c
26649 Author: Dirk Behme <dirk.behme@googlemail.com>
26650 Date: Sun Dec 14 09:47:16 2008 +0100
26651
26652 OMAP3: Add NAND support
26653
26654 Add NAND support.
26655
26656 Signed-off-by: Nishanth Menon <nm@ti.com>
26657 Signed-off-by: Syed Mohammed Khasim <khasim@ti.com>
26658 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
26659
26660 commit 91eee546737ae21d930af479530997174c342b13
26661 Author: Dirk Behme <dirk.behme@googlemail.com>
26662 Date: Sun Dec 14 09:47:15 2008 +0100
26663
26664 OMAP3: Add common board, interrupt and system info
26665
26666 Add common board, interrupt and system info code.
26667
26668 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
26669
26670 commit 5ed3e8659e5373f6a229877ac506c0b00a054fb8
26671 Author: Dirk Behme <dirk.behme@googlemail.com>
26672 Date: Sun Dec 14 09:47:14 2008 +0100
26673
26674 OMAP3: Add common clock, memory and low level code
26675
26676 Add common clock, memory and low level code
26677
26678 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
26679
26680 commit 0b02b184003e6a5023e05d5f31de54db279b1431
26681 Author: Dirk Behme <dirk.behme@googlemail.com>
26682 Date: Sun Dec 14 09:47:13 2008 +0100
26683
26684 OMAP3: Add common cpu and start code
26685
26686 Add common cpu and start code.
26687
26688 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
26689
26690 commit a8b6450546cd507d331b8fde384791d84bde5651
26691 Author: Dirk Behme <dirk.behme@googlemail.com>
26692 Date: Sun Dec 14 09:47:12 2008 +0100
26693
26694 OMAP3: Add OMAP3, memory and function prototype headers
26695
26696 Add OMAP3, memory and function prototype header files for OMAP3.
26697
26698 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
26699
26700 commit 2c803210a464abbac35752ca1c737514360b4c32
26701 Author: Dirk Behme <dirk.behme@googlemail.com>
26702 Date: Sun Dec 14 09:47:11 2008 +0100
26703
26704 OMAP3: Add pin mux, clock and cpu headers
26705
26706 Add pin mux, clock and cpu header files for OMAP3.
26707
26708 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
26709
26710 commit 685533646f4ff17a84ec9265cabb60af325b6e1f
26711 Author: Maxim Artamonov <scn1874@yandex.ru>
26712 Date: Wed Dec 3 05:38:17 2008 +0300
26713
26714 bugfix for i.mx31 CCM_UPCTL reg
26715
26716 Signed-off-by: Maxim Artamonov <scn1874 at yandex.ru>
26717
26718 commit 24113a44ed5cd3257a0237c3961e121812fca6db
26719 Author: Mike Frysinger <vapier@gentoo.org>
26720 Date: Tue Dec 30 03:15:38 2008 -0500
26721
26722 easylogo: add optional gzip support
26723
26724 Some images can be quite large, so add an option to compress the
26725 image data with gzip in the U-Boot image. Then at runtime, the
26726 board can decompress it with the normal zlib functions.
26727
26728 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26729
26730 commit 7e4b9b4f6f43838fad3ad72c029a3d7fc7c7d48c
26731 Author: Bryan Wu <bryan.wu@analog.com>
26732 Date: Fri Jan 2 20:47:45 2009 -0500
26733
26734 fat: fix unaligned errors
26735
26736 A couple of buffers in the fat code are declared as an array of bytes.
26737 But it is then cast up to a structure with 16bit and 32bit members.
26738 Since GCC assumes structure alignment here, we have to force the
26739 buffers to be aligned according to the structure usage.
26740
26741 Signed-off-by: Bryan Wu <bryan.wu@analog.com>
26742 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26743
26744 commit 68f8718df2ed4c2f43031407ccf6cfa81125dddc
26745 Author: Brad Bozarth <bflinux@yumbrad.com>
26746 Date: Thu Jan 1 22:45:47 2009 -0500
26747
26748 spi flash: fix crash due to spi flash miscommunication
26749
26750 Higher spi flash layers expect to be given back a pointer that was
26751 malloced so that it can free the result, but the lower layers return
26752 a pointer that is in the middle of the malloced memory. Reorder the
26753 members of the lower spi structures so that things work out.
26754
26755 Signed-off-by: Brad Bozarth <bflinux@yumbrad.com>
26756 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26757 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
26758
26759 commit ce82ff05388b5ddafdf6082ef0776cce72c40b1c
26760 Author: Yuri Tikhonov <yur@emcraft.com>
26761 Date: Sat Dec 20 14:54:21 2008 +0300
26762
26763 FPU POST: fix warnings when building with 2.18 binutils
26764
26765 When compile u-boot with the 2.18 binutils the following
26766 warning messages for each object file in post/lib_ppc/fpu/ is
26767 produced at the linking stage:
26768
26769 post/libpost.a(acc1.o) uses hard float, u-boot uses soft-float
26770 ...
26771
26772 This is because of the fact that, in general, the soft-float and
26773 hard-float ABIs are incompatible; the 2.18 binutils do checking
26774 of the Tag_GNU_Power_ABI_FP attribute of the files to be linked, and
26775 produce the worning like above if these are not compatible.
26776
26777 The incompatibility of ABIs is concerned only the float values:
26778 e.g. the soft-float ABI assumes the float argument passing in the
26779 pair of rX registers, and the hard-float ABI assumes passing of
26780 the float argument in the fX register. When we don't pass the float
26781 arguments between the functions compiled with different floatness,
26782 then such an application will work correctly.
26783 This is the case for the FPU POST: u-boot (compiled with soft-float)
26784 doesn't pass to (and doesn't get from) the FPU POST functions any
26785 floats; there are no functions exported from the post/lib_ppc/fpu/
26786 objects which would work with float parameters/returns too. So, we
26787 can reassure the linker not to worry about the difference in ABI
26788 attributes of linking files just by setting the 'soft-float'
26789 attribute for the objects in post/lib_ppc/fpu. And this patch does
26790 this.
26791
26792 Also, to avoid passing both soft- and hard-float options in CFLAGS
26793 when compiling the files from post/lib_ppc/fpu (which is OK, but
26794 looks rather dirty) this patch removes the soft-float string from
26795 CFLAGS in post/lib_ppc/fpu/Makefile.
26796
26797 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26798
26799 commit a7c9310457e85b4598abe5b304108edf11332e2f
26800 Author: Peter Tyser <ptyser@xes-inc.com>
26801 Date: Wed Dec 17 16:36:22 2008 -0600
26802
26803 Add support for Maxim's DS4510 I2C device
26804
26805 Initial support for the DS4510, a CPU supervisor with
26806 integrated EEPROM, SRAM, and 4 programmable non-volatile
26807 GPIO pins. The CONFIG_DS4510 define enables support
26808 for the device while the CONFIG_CMD_DS4510 define
26809 enables the ds4510 command. The additional
26810 CONFIG_DS4510_INFO, CONFIG_DS4510_MEM, and
26811 CONFIG_DS4510_RST defines add additional sub-commands
26812 to the ds4510 command when defined.
26813
26814 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
26815
26816 commit b6fc6fd49a84543e1324e1620b9f301ff7c1f27f
26817 Author: Dirk Eibach <eibach@gdsys.de>
26818 Date: Tue Dec 16 14:51:56 2008 +0100
26819
26820 common: Iteration limit for memory test.
26821
26822 The iteration limit is passed to mtest as a fourth parameter:
26823 [start [end [pattern [iterations]]]]
26824 If no fourth parameter is supplied, there is no iteration limit and the
26825 test will loop forever.
26826
26827 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
26828
26829 commit 97cae3a4c68d856374ccc70fd2c5f8714cc94f7d
26830 Author: Stefan Roese <sr@denx.de>
26831 Date: Mon Dec 15 15:40:12 2008 +0100
26832
26833 serial: Rename driver vcth to vct to support other board variants
26834
26835 Moved driver vcth.c to vct.c to better reflect the VCT board series.
26836 This driver is now used by the VCT platforms:
26837
26838 vct_premium
26839 vct_platinum
26840 vct_platinumsvc
26841
26842 Signed-off-by: Stefan Roese <sr@denx.de>
26843
26844 commit 36ede4d63e59c9277ec180b09c39b8bf46425ba2
26845 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26846 Date: Fri Dec 12 00:45:27 2008 +0900
26847
26848 nios: Move README.nios_CONFIG_SYS_NIOS_CPU to doc/ dir
26849
26850 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26851
26852 commit c3284b030b1cd492b4f46c576aea01bef258599d
26853 Author: Peter Korsgaard <jacmet@sunsite.dk>
26854 Date: Wed Dec 10 16:24:16 2008 +0100
26855
26856 common/main: support bootdelay=0 for CONFIG_AUTOBOOT_KEYED
26857
26858 Support bootdelay=0 in abortboot for the CONFIG_AUTOBOOT_KEYED case
26859 similar to the CONFIG_ZERO_BOOTDELAY_CHECK support for the
26860 !CONFIG_AUTOBOOT_KEYED case.
26861
26862 Do this by reversing the loop so we do at least one iteration before
26863 checking for timeout.
26864
26865 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
26866
26867 commit 94f9279f7bbdc01bbc7cf85aedf9b545943b94c3
26868 Author: Niklaus Giger <niklaus.giger@netstal.com>
26869 Date: Mon Dec 8 17:24:08 2008 +0100
26870
26871 Added legacy flash ST Micro M29W040B
26872
26873 commit 626d07348e5f9f302f4ea182161a89f7362a0488
26874 Author: Graeme Russ <graeme.russ@gmail.com>
26875 Date: Mon Dec 8 20:04:51 2008 +1100
26876
26877 Fixed off-by-one errors in lib_m68k/interrupts.c
26878
26879 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
26880
26881 commit a5989c42ae5e295f274a795c426c47819bbdbfda
26882 Author: Graeme Russ <graeme.russ@gmail.com>
26883 Date: Sun Dec 7 10:29:05 2008 +1100
26884
26885 Removed all references to CONFIG_SYS_RESET_GENERIC
26886
26887 Generic i386 reset - #define made redundant by weak function
26888
26889 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
26890
26891 commit 2b5360eb2bc0b741ae5cb3c84d35ccdd17667c8a
26892 Author: Graeme Russ <graeme.russ@gmail.com>
26893 Date: Sun Dec 7 10:29:04 2008 +1100
26894
26895 Remove #ifdef CONFIG_SC520 in source code
26896
26897 CONFIG_SC520 is now used for conditional compile
26898
26899 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
26900
26901 commit ead056bc206f6b7ee6dc98766678b64635ea20b8
26902 Author: Graeme Russ <graeme.russ@gmail.com>
26903 Date: Sun Dec 7 10:29:03 2008 +1100
26904
26905 Added MMCR reset functionality
26906
26907 Reset function specific to AMD SC520 microcontroller - Is more of a
26908 'hard reset' that the triple fault.
26909
26910 Requires CONFIG_SYS_RESET_SC520 to be defined in config
26911
26912 I would have liked to add this to a new file (cpu/i386/sc520/reset.c)
26913 but ld requires that a object file in a library arhive MUST contain
26914 at least one function which does not override a weak function (and is
26915 called from outside the object file) in order for that object file to
26916 be extracted from the archive. This would be the only function on the
26917 new file, and hence, will never get linked in.
26918
26919 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
26920
26921 commit 3f5f18d12d32ee0661bf51dfc55752c005230d6e
26922 Author: Graeme Russ <graeme.russ@gmail.com>
26923 Date: Sun Dec 7 10:29:02 2008 +1100
26924
26925 Moved generic (triple fault) reset code
26926
26927 Moved from interrupts.c to cpu.c and made into a weak function to
26928 allow vendor specific override
26929
26930 Vendor specific CPU reset (like the AMD SC520 MMCR reset) can now be
26931 added to the vendor specific code without the need to remember to
26932 #undef usage of the generic method and if you forget to include your
26933 custom reset method, you will always get the default.
26934
26935 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
26936
26937 commit 9933d609020c297788f53f334c8465fa7a99b10c
26938 Author: Graeme Russ <graeme.russ@gmail.com>
26939 Date: Sun Dec 7 10:29:01 2008 +1100
26940
26941 Moved definition of set_vector() to new header file
26942
26943 This allows for future tidy ups and functionality that will require
26944 set_vector ()
26945
26946 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
26947
26948 commit 407976185e0dda2c90e89027121a1071b9c77bfb
26949 Author: Graeme Russ <graeme.russ@gmail.com>
26950 Date: Sun Dec 7 10:29:00 2008 +1100
26951
26952 Moved sc520 specific code into new cpu/i386/sc520 folder
26953
26954 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
26955 Signed-off-by: Wolfgang Denk <wd@denx.de>
26956
26957 commit 85ffbbd51914925a542d8528be7f072e5ab02157
26958 Author: Graeme Russ <graeme.russ@gmail.com>
26959 Date: Sun Dec 7 10:28:58 2008 +1100
26960
26961 Renamed cpu/i386/reset.S to resetvec.S
26962
26963 Brings i386 in line with other CPUs with a reset vector and frees up reset.c
26964 for CPU reset functions
26965
26966 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
26967
26968 commit a3f4c123f569474e80ea012b8db0de46afdb6443
26969 Author: Wolfgang Denk <wd@denx.de>
26970 Date: Sat Jan 24 01:01:49 2009 +0100
26971
26972 Makefile: keep lists sorted.
26973
26974 Signed-off-by: Wolfgang Denk <wd@denx.de>
26975
26976 commit c620c01e96814558470698ed5cab1bf2f504d1b5
26977 Author: Graeme Russ <graeme.russ@gmail.com>
26978 Date: Sun Dec 7 10:28:57 2008 +1100
26979
26980 Added initial eNET board support
26981
26982 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
26983
26984 commit 0c0ccf401ee03a5008fc2c19b05a662bce1a1086
26985 Author: Gary Jennejohn <garyj@denx.de>
26986 Date: Thu Nov 20 11:37:26 2008 +0100
26987
26988 POWERPC 82xx: add the SCC as an HDLC controller
26989
26990 Right now this is only used by keymile.
26991
26992 Signed-off-by: Gary Jennejohn <garyj@denx.de>
26993
26994 commit 1e8f4e78ca393b3d8e86bd8055758dd465d9113f
26995 Author: Heiko Schocher <hs@denx.de>
26996 Date: Thu Nov 20 09:59:09 2008 +0100
26997
26998 powerpc, keymile boards: extract identical config options
26999
27000 This patch extracts the identical config options for the
27001 keymile boards mgcoge, mgsuvd and kmeter1 in a new
27002 common config file keymile-common.h.
27003
27004 Signed-off-by: Heiko Schocher <hs@denx.de>
27005
27006 commit 210c8c00aad3328145204adab434bb7d70b06b75
27007 Author: Heiko Schocher <hs@denx.de>
27008 Date: Fri Nov 21 08:29:40 2008 +0100
27009
27010 powerpc: keymile: Add a check for the PIGGY debug board
27011
27012 Check the presence of the PIGGY on the keymile boards mgcoge,
27013 mgsuvd and kmeter1. If the PIGGY is not present, dont register
27014 this Ethernet device.
27015
27016 Signed-off-by: Heiko Schocher <hs@denx.de>
27017 Acked-by: Ben Warren <biggerbadderben@gmail.com>
27018
27019 commit de0443614af4d16675ab436665aeb11ddc9f7214
27020 Author: Heiko Schocher <hs@denx.de>
27021 Date: Thu Nov 20 09:57:47 2008 +0100
27022
27023 powerpc: 83xx: add support for the kmeter1 board
27024
27025 This patch adds support for the kmeter1 board from Keymile,
27026 based on a Freescale MPC8360 CPU.
27027
27028 - serial console on UART 1
27029 - 256 MB DDR2 RAM
27030 - 64 MB NOR Flash
27031 - Ethernet RMII Mode over UCC4
27032 - PHY SMSC LAN8700
27033
27034 Signed-off-by: Heiko Schocher <hs@denx.de>
27035
27036 commit 3feb647f3fd0881382c7a29f4cf280b66473ae0a
27037 Author: Sergei Poselenov <sposelenov@emcraft.com>
27038 Date: Tue Nov 4 13:51:18 2008 +0100
27039
27040 Add a do_div() wrapper macro, lldiv().
27041
27042 Add a do_div() wrapper, lldiv(). The new inline function doesn't modify
27043 the dividend and returns the result of division, so it is useful
27044 in complex expressions, i.e. "return(a/b)" -> "return(lldiv(a,b))"
27045
27046 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
27047
27048 commit 18af1c5f0f7402dc0d6a71b012c68025dd97cf72
27049 Author: Kumar Gala <galak@kernel.crashing.org>
27050 Date: Fri Jan 23 14:22:14 2009 -0600
27051
27052 85xx: Add a 36-bit physical configuration for MPC8572DS
27053
27054 We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary
27055 to allow for larger memory sizes.
27056
27057 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27058
27059 commit c51fc5d53c4560abc4d0a6126c06fc68133d1528
27060 Author: Kumar Gala <galak@kernel.crashing.org>
27061 Date: Fri Jan 23 14:22:13 2009 -0600
27062
27063 85xx: Handle eLBC difference w/36-bit physical
27064
27065 The eLBC only handles 32-bit physical address in systems with 36-bit
27066 physical. The previos generation of LBC handled 34-bit physical
27067 address in 36-bit systems. Added a new CONFIG option to convey
27068 the difference between the LBC and eLBC.
27069
27070 Also added defines for XAM bits used in LBC for the extended 34-bit
27071 support.
27072
27073 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27074
27075 commit 72a9414a8e21e9536822c7353bc08d21ce5ad53d
27076 Author: Kumar Gala <galak@kernel.crashing.org>
27077 Date: Fri Jan 23 14:22:12 2009 -0600
27078
27079 85xx: Use BR_ADDR macro for NAND chipselects
27080
27081 Use the new BR_ADDR macro to properly setup the address field of the
27082 localbus chipselects used by NAND.
27083
27084 This allows us to deal with 36-bit phys on these boards in the future.
27085
27086 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27087
27088 commit 2fc7eb0cfc608c9369001d57a0411af5e6a58f7c
27089 Author: Haiying Wang <Haiying.Wang@freescale.com>
27090 Date: Thu Jan 15 11:58:35 2009 -0500
27091
27092 Add secondary CPUs processor frequency for e500 core
27093
27094 This patch updates e500 freqProcessor to array based on CONFIG_NUM_CPUS,
27095 and prints each CPU's frequency separately. It also fixes up each CPU's
27096 frequency in "clock-frequency" of fdt blob.
27097
27098 Signed-off-by: James Yang <James.Yang@freescale.com>
27099 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
27100
27101 commit bf5b1f0c0d28ce062e1d368680632dfb099de692
27102 Author: Dave Liu <daveliu@freescale.com>
27103 Date: Fri Nov 21 16:31:53 2008 +0800
27104
27105 85xx: enable the auto self refresh for wake up ARP
27106
27107 The wake up ARP feature need use the memory to process
27108 wake up packet, we enable auto self refresh to support it.
27109
27110 Signed-off-by: Dave Liu <daveliu@freescale.com>
27111 Acked-by: Andy Fleming <afleming@freescale.com>
27112
27113 commit b4983e16d150ab7d039704c310aacbd2f4dc1e0f
27114 Author: Dave Liu <daveliu@freescale.com>
27115 Date: Fri Nov 21 16:31:43 2008 +0800
27116
27117 fsl-ddr: use the 1T timing as default configuration
27118
27119 For light loaded system, we use the 1T timing to gain better
27120 memory performance, but for some heavily loaded system,
27121 you have to add the 2T timing options to board files.
27122
27123 Signed-off-by: Dave Liu <daveliu@freescale.com>
27124 Acked-by: Andy Fleming <afleming@freescale.com>
27125
27126 commit 22cca7e1cd54590e967c73558b07ffbdccd39504
27127 Author: Dave Liu <daveliu@freescale.com>
27128 Date: Fri Nov 21 16:31:35 2008 +0800
27129
27130 fsl-ddr: make the self refresh idle threshold configurable
27131
27132 Some 85xx processors have the advanced power management feature,
27133 such as wake up ARP, that needs enable the automatic self refresh.
27134
27135 If the DDR controller pass the SR_IT (self refresh idle threshold)
27136 idle cycles, it will automatically enter self refresh. However,
27137 anytime one transaction is issued to the DDR controller, it will
27138 reset the counter and exit self refresh state.
27139
27140 Signed-off-by: Dave Liu <daveliu@freescale.com>
27141 Acked-by: Andy Fleming <afleming@freescale.com>
27142
27143 commit 22ff3d01348e0a2dc369b7efcbac30e4ce86d178
27144 Author: Dave Liu <daveliu@freescale.com>
27145 Date: Fri Nov 21 16:31:29 2008 +0800
27146
27147 fsl-ddr: clean up the ddr code for DDR3 controller
27148
27149 - The DDR3 controller is expanding the bits for timing config
27150 - Add the DDR3 32-bit bus mode support
27151
27152 Signed-off-by: Dave Liu <daveliu@freescale.com>
27153 Acked-by: Andy Fleming <afleming@freescale.com>
27154
27155 commit 80ee3ce6d7fe9441b4352d7cfaf6afc2507b1106
27156 Author: Dave Liu <daveliu@freescale.com>
27157 Date: Fri Nov 21 16:31:22 2008 +0800
27158
27159 fsl-ddr: update the bit mask for DDR3 controller
27160
27161 According to the latest 8572 UM, the DDR3 controller
27162 is expanding the bit mask, and we use the extend ACTTOPRE
27163 mode when tRAS more than 19 MCLK.
27164
27165 Signed-off-by: Dave Liu <daveliu@freescale.com>
27166
27167 commit aca5f018a8386b85469482ed9867e3e29a2437d0
27168 Author: Kumar Gala <galak@kernel.crashing.org>
27169 Date: Tue Dec 2 16:08:40 2008 -0600
27170
27171 85xx: Introduce CONFIG_SYS_PCI*_IO_VIRT for FSL boards
27172
27173 Introduce a new define to seperate out the virtual address that PCI
27174 IO space is at from the physical address. In most situations these are
27175 mapped 1:1. However any code accessing the bus should use VIRT.
27176
27177 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27178 Acked-by: Andy Fleming <afleming@freescale.com>
27179
27180 commit 5af0fdd81c3370c3a51421208fda568bdcbbec23
27181 Author: Kumar Gala <galak@kernel.crashing.org>
27182 Date: Tue Dec 2 16:08:39 2008 -0600
27183
27184 85xx: Introduce CONFIG_SYS_PCI*_MEM_VIRT for FSL boards
27185
27186 Introduce a new define to seperate out the virtual address that PCI
27187 memory is at from the physical address. In most situations these are
27188 mapped 1:1. However any code accessing the bus should use VIRT.
27189
27190 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27191 Acked-by: Andy Fleming <afleming@freescale.com>
27192
27193 commit a6e04c344ad1eefd47a75484441b385da815b8df
27194 Author: Kumar Gala <galak@kernel.crashing.org>
27195 Date: Tue Dec 2 16:08:38 2008 -0600
27196
27197 85xx: Use CONFIG_SYS_{PCI*,RIO*}_MEM_PHYS for physical address on FSL boards
27198
27199 Use the _MEM_PHYS defines instead of _MEM_BUS for LAW and real address fields
27200 of TLBs. This is what we should have always been using from the start.
27201
27202 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27203 Acked-by: Andy Fleming <afleming@freescale.com>
27204
27205 commit 5f91ef6acdbadec33e0192049e2b24a1d9692f1d
27206 Author: Kumar Gala <galak@kernel.crashing.org>
27207 Date: Tue Dec 2 16:08:37 2008 -0600
27208
27209 85xx: Convert CONFIG_SYS_PCI*_IO_BASE to _IO_BUS for FSL boards
27210
27211 Use CONFIG_SYS_PCI*_IO_BUS for the bus relative address instead
27212 of _IO_BASE so we are more explicit.
27213
27214 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27215
27216 commit 10795f42cb94e71bcb262b615084f69dd886399a
27217 Author: Kumar Gala <galak@kernel.crashing.org>
27218 Date: Tue Dec 2 16:08:36 2008 -0600
27219
27220 85xx: Convert CONFIG_SYS_{PCI*,RIO*}_MEM_BASE to _MEM_BUS for FSL boards
27221
27222 Use CONFIG_SYS_{PCI,RIO}_MEM_BUS for the bus relative address instead
27223 of _MEM_BASE so we are more explicit.
27224
27225 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27226 Acked-by: Andy Fleming <afleming@freescale.com>
27227
27228 commit c953ddfd56b3ae3f28910fe3aed6de6968d1c9aa
27229 Author: Kumar Gala <galak@kernel.crashing.org>
27230 Date: Tue Dec 2 14:19:34 2008 -0600
27231
27232 85xx: separate FLASH BASE virtual from physical address
27233
27234 Added a CONFIG_SYS_FLASH_BASE_PHYS for use as the physical address and
27235 maintain CONFIG_SYS_FLASH_BASE as the virtual address of the flash.
27236
27237 This allows us to deal with 36-bit phys on these boards in the future.
27238
27239 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27240 Acked-by: Andy Fleming <afleming@freescale.com>
27241
27242 commit 52b565f5ad23b682489055b187767d8bf1c2e444
27243 Author: Kumar Gala <galak@kernel.crashing.org>
27244 Date: Tue Dec 2 14:19:33 2008 -0600
27245
27246 85xx: separate PIXIS virtual from physical address
27247
27248 Added a PIXIS_BASE_PHYS for use as the physical address and maintain
27249 PIXIS_BASE as the virtual address of the PIXIS fpga registers.
27250
27251 This allows us to deal with 36-bit phys on these boards in the future.
27252
27253 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27254 Acked-by: Andy Fleming <afleming@freescale.com>
27255
27256 commit 30837e5b21d5a742983581ab9ee3fac085311d19
27257 Author: Haiying Wang <Haiying.Wang@freescale.com>
27258 Date: Tue Nov 11 08:52:09 2008 -0500
27259
27260 Add README file for MPC8572DS board
27261
27262 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
27263 Acked-by: Andy Fleming <afleming@freescale.com>
27264
27265 commit 6dadc9195ad642cc662632f4d92f92d3d71e8bf2
27266 Author: Mike Frysinger <vapier@gentoo.org>
27267 Date: Mon Oct 20 16:15:04 2008 -0400
27268
27269 Blackfin: use common strmhz() in system output
27270
27271 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27272
27273 commit 5bb907a4925397789c90d074f4f7e92ce6b39402
27274 Author: Ron Madrid <ron_madrid@sbcglobal.net>
27275 Date: Thu Jan 22 15:05:24 2009 -0800
27276
27277 mpc83xx: New board support for SIMPC8313
27278
27279 This patch will create a new board, SIMPC8313, from Sheldon Instruments. This
27280 board boots from NAND devices and is configureable for either large or small
27281 page devices. The board supports non-soldered DDR2, one ethernet port, a
27282 Marvell 88E1118 PHY, and PCI host support. The board also has a FPGA connected
27283 to the eLBC providing glue logic to a TMS320C67xx DSP.
27284
27285 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
27286 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27287
27288 commit d4bade8d77aa20e2846fa4accff0e7fa7961a134
27289 Author: Mike Frysinger <vapier@gentoo.org>
27290 Date: Sun Jan 18 19:46:06 2009 -0500
27291
27292 nand: fixup printf modifiers to match types used
27293
27294 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27295 Signed-off-by: Scott Wood <scottwood@freescale.com>
27296
27297 commit 389e6620e2271096df3316917528003627db4021
27298 Author: Schlaegl Manfred jun <manfred.schlaegl@gmx.at>
27299 Date: Tue Jan 20 16:57:55 2009 +0100
27300
27301 nand read.jffs2 (nand_legacy) in common/cmd_nand.c
27302
27303 Error with CONFIG_NAND_LEGACY in common/cmd_nand.c:
27304 With current code "nand read.jffs2s" (read and skip bad blocks) is always interpreted as
27305 "nand read.jffs2" (read and fill bad blocks with 0xff). This is because ".jffs2" is
27306 tested before ".jffs2s" and only the first two characters are compared.
27307
27308 Correction:
27309 Test for ".jffs2s" first and compare the first 7 characters.
27310
27311 Signed-off-by: Scott Wood <scottwood@freescale.com>
27312
27313 commit 6c869637fef31e66380f0ea1d49690a2e26ec0d7
27314 Author: Wolfgang Grandegger <wg@grandegger.com>
27315 Date: Fri Jan 16 18:55:54 2009 +0100
27316
27317 NAND: rename NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS
27318
27319 This patch renames NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS and
27320 changes the default from 8 to 1 for the legacy and the new MTD
27321 NAND layer. This allows to remove all NAND_MAX_CHIPS definitions
27322 in the board config files because none of the boards use multi
27323 chip support (NAND_MAX_CHIPS > 1) so far. The bamboo and the DU440
27324 define
27325
27326 #define NAND_MAX_CHIPS CONFIG_SYS_MAX_NAND_DEVICE
27327
27328 but that's bogus and did not work anyhow.
27329
27330 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
27331 Signed-off-by: Scott Wood <scottwood@freescale.com>
27332
27333 commit c70564e6b1bd08f3230182392238907f3531a87e
27334 Author: Dave Liu <daveliu@freescale.com>
27335 Date: Tue Dec 2 11:48:51 2008 +0800
27336
27337 NAND: Fix cache and memory inconsistency issue
27338
27339 We load the secondary stage u-boot image from NAND to
27340 system memory by nand_load, but we did not flush d-cache
27341 to memory, nor invalidate i-cache before we jump to RAM.
27342 When the system has cache enabled and the TLB/page attribute
27343 of system memory is cacheable, it will cause issues.
27344
27345 - 83xx family is using the d-cache lock, so all of d-cache
27346 access is cache-inhibited. so you can't see the issue.
27347 - 85xx family is using d-cache, i-cache enable, partial
27348 cache lock. you will see the issue.
27349
27350 This patch fixes the cache issue.
27351
27352 Signed-off-by: Dave Liu <daveliu@freescale.com>
27353 Signed-off-by: Scott Wood <scottwood@freescale.com>
27354
27355 commit 50657c273278f74378e1ac39b41d612b92fdffa0
27356 Author: Nishanth Menon <menon.nishanth@gmail.com>
27357 Date: Sat Dec 13 09:43:06 2008 -0600
27358
27359 NAND: Enable nand lock, unlock feature
27360
27361 Enable nand lock, unlock and status of lock feature.
27362 Not every device and platform requires this, hence,
27363 it is under define for CONFIG_CMD_NAND_LOCK_UNLOCK
27364
27365 Nand unlock and status operate on block boundary instead
27366 of page boundary. Details in:
27367 http://www.micron.com/products/partdetail?part=MT29C2G24MAKLAJG-6%20IT
27368
27369 Intial solution provided by Vikram Pandita <vikram.pandita@ti.com>
27370 Includes preliminary suggestions from Scott Wood
27371
27372 Signed-off-by: Nishanth Menon <nm@ti.com>
27373 Signed-off-by: Scott Wood <scottwood@freescale.com>
27374
27375 commit 69fb8be4fc07162fdf6edf04bdc7233b0e9a920e
27376 Author: Mike Frysinger <vapier@gentoo.org>
27377 Date: Sat Dec 6 02:40:55 2008 -0500
27378
27379 NAND: move board_nand_init to nand.h
27380
27381 Rather than putting the function prototype for board_nand_init() in the one
27382 place where it gets called, put it into nand.h so that every place that also
27383 defines it gets the prototype. Otherwise, errors can go silently unnoticed
27384 such as using the wrong return value (void rather than int) when defining
27385 the function.
27386
27387 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27388 Signed-off-by: Scott Wood <scottwood@freescale.com>
27389
27390 commit 1ae39862044ebb1e682234b51f94421e3f871d6a
27391 Author: Stefan Roese <sr@denx.de>
27392 Date: Tue Dec 2 11:06:47 2008 +0100
27393
27394 OneNAND: Additional sync with 2.6.27
27395
27396 - Add subpage write support
27397 - Add onenand_oob_64/32 ecclayout
27398
27399 This has been missing and without it UBI has some incompatibilies issues
27400 with the current (>= 2.6.27) Linux kernel version. vid_hdr_offset is
27401 placed differently (2048 instead of 512) without this fix.
27402
27403 Signed-off-by: Stefan Roese <sr@denx.de>
27404 Signed-off-by: Scott Wood <scottwood@freescale.com>
27405
27406 commit 1714f51a2009baaecf3d4f6e3bd8c4e93a8d3f23
27407 Author: Kyungmin Park <kmpark@infradead.org>
27408 Date: Thu Nov 13 15:14:33 2008 +0900
27409
27410 Add markbad function
27411
27412 Add missing markbad function
27413 If not, it's hang when it entered the mtd->mark_bad().
27414
27415 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
27416
27417 commit c438ea175d8d002c1063b7a94b0c0e26668d1ac9
27418 Author: Stefan Roese <sr@denx.de>
27419 Date: Wed Nov 12 13:47:24 2008 +0100
27420
27421 OneNAND: Bad block aware read/write command support
27422
27423 Update OneNAND command to support bad block awareness.
27424 Also change the OneNAND command style to better match the
27425 NAND version.
27426
27427 Signed-off-by: Stefan Roese <sr@denx.de>
27428 Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
27429
27430 commit 8cf11f3aa78673730e9ecbbe4b75213b53f212c8
27431 Author: Stefan Roese <sr@denx.de>
27432 Date: Tue Nov 11 10:29:09 2008 +0100
27433
27434 OneNAND: Save version_id in onenand_chip struct
27435
27436 The version (ver_id) was not stored in the onenand_chip structure and
27437 because of this the continuous locking scheme could be enabled on some
27438 chips.
27439
27440 Signed-off-by: Stefan Roese <sr@denx.de>
27441
27442 commit 4fca3310d611cc0f51d7295ef3557afbdbd91dc3
27443 Author: Stefan Roese <sr@denx.de>
27444 Date: Tue Nov 11 10:28:53 2008 +0100
27445
27446 OneNAND: Fix compiler warnings
27447
27448 Signed-off-by: Stefan Roese <sr@denx.de>
27449
27450 commit 1ac5744e33ee0aa6d6ddab3b99f9e70953156e69
27451 Author: Dave Liu <daveliu@freescale.com>
27452 Date: Tue Nov 4 14:55:06 2008 +0800
27453
27454 mpc83xx: enable eLBC NAND support for MPC8315ERDB board
27455
27456 Signed-off-by: Dave Liu <daveliu@freescale.com>
27457
27458 commit ef0921d6b05aeb9034158f9bef5323d6da9c925e
27459 Author: Kyungmin Park <kmpark@infradead.org>
27460 Date: Tue Nov 4 09:24:07 2008 +0900
27461
27462 Sync with 2.6.27
27463
27464 Sync with OneNAND kernel codes
27465
27466 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
27467
27468 commit e7f325be9edeb84bb457301776bbac1f7257dafc
27469 Author: Michal Simek <monstr@monstr.eu>
27470 Date: Mon Jan 5 13:35:31 2009 +0100
27471
27472 microblaze: Use cache functions (especially cache status)
27473 in systems which are configured without flash
27474
27475 commit e9b737deb2c30125362d20e24170617476026e94
27476 Author: Michal Simek <monstr@monstr.eu>
27477 Date: Mon Jan 5 13:29:32 2009 +0100
27478
27479 microblaze: Add cache flush
27480
27481 commit b4f8dda35bfad447b4106828232705b2e878d168
27482 Author: Michal Simek <monstr@monstr.eu>
27483 Date: Mon Jan 5 13:28:40 2009 +0100
27484
27485 microblaze: Add bootup messages to board.c
27486
27487 commit 330e55459bc9983341da6c1d5c7fe00a664436fe
27488 Author: Michal Simek <monstr@monstr.eu>
27489 Date: Fri Dec 19 13:25:55 2008 +0100
27490
27491 microblaze: Change microblaze-generic config file
27492
27493 Signed-off-by: Michal Simek <monstr@monstr.eu>
27494
27495 commit 52a822ed9c37a2ea0ed112a26d8ff5a6cb1c6f10
27496 Author: Michal Simek <monstr@monstr.eu>
27497 Date: Fri Dec 19 13:14:05 2008 +0100
27498
27499 microblaze: Rename ml401 to microblaze-generic
27500
27501 Signed-off-by: Michal Simek <monstr@monstr.eu>
27502
27503 commit 6677876181cc8772bca8a372479a500d160f3993
27504 Author: Scott Wood <scottwood@freescale.com>
27505 Date: Tue Jan 20 11:56:11 2009 -0600
27506
27507 83xx: Use the proper sequence for updating IMMR.
27508
27509 This ensures that subsequent accesses properly hit the new window.
27510
27511 The dcbi during the NAND loop was accidentally working around this;
27512 it's no longer necessary, as the cache is not enabled.
27513
27514 Reported-by: Suchit Lepcha <Suchit.Lepcha@freescale.com>
27515 Signed-off-by: Scott Wood <scottwood@freescale.com>
27516 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27517
27518 commit 8b34557c546e5e9f34ebf83c93413dad973d93df
27519 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
27520 Date: Thu Jan 8 04:26:19 2009 +0300
27521
27522 mpc83xx: Add PCI-E support for MPC837XEMDS boards
27523
27524 MPC837XEMDS boards can support PCI-E via "PCI-E riser card". The card
27525 provides two PCI-E (x2) ports. Though, only one port can be used in x2
27526 mode. Two ports can function simultaneously in x1 mode.
27527
27528 PCI-E x1/x2 modes can be switched via "pex_x2" environment variable.
27529
27530 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
27531 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27532
27533 commit 8f11e34b31a7be124a3239653f33af9510502045
27534 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
27535 Date: Thu Jan 8 04:26:17 2009 +0300
27536
27537 mpc83xx: Add PCI-E support for MPC8315ERDB boards
27538
27539 MPC8315ERDB boards features PCI-E x1 and Mini PCI-E x1 ports. Let's
27540 support them.
27541
27542 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
27543 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27544
27545 commit fd6646c0b9ebe7e5afc4ae4c78097d9cd317a5e8
27546 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
27547 Date: Thu Jan 8 04:26:12 2009 +0300
27548
27549 mpc83xx: Add support for MPC83xx PCI-E controllers
27550
27551 This patch adds support for MPC83xx PCI-E controllers in Root Complex
27552 mode.
27553
27554 The patch is based on Tony Li and Dave Liu work[1].
27555
27556 Though unlike the original patch, by default we don't register PCI-E
27557 buses for use in U-Boot, we only configure the controllers for future
27558 use in other OSes (Linux). This is done because we don't have enough
27559 of spare BATs to map all the PCI-E regions.
27560
27561 To actually use PCI-E in U-Boot, users should explicitly define
27562 CONFIG_83XX_GENERIC_PCIE_REGISTER_HOSES symbol in the board file. And
27563 only then U-Boot will able to access PCI-E, but at the cost of disabled
27564 address translation.
27565
27566 [1] http://lists.denx.de/pipermail/u-boot/2008-January/027630.html
27567
27568 Signed-off-by: Tony Li <tony.li@freescale.com>
27569 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
27570 Acked-by: Dave Liu <daveliu@freescale.com>
27571 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27572
27573 commit 88ecf55cabd7aea28fe8093720e208f53ccfdcf5
27574 Author: Ira Snyder <iws@ovro.caltech.edu>
27575 Date: Mon Jan 12 13:33:17 2009 -0800
27576
27577 MPC8349EMDS: do not setup unused PCI clock outputs in PCI agent mode
27578
27579 When running in PCI agent mode, the PCI_CLK_OUT signals are not used, so do
27580 not enable them. See the MPC8349EA Reference Manual, Section 4.4.2
27581 "Clocking in PCI Agent Mode".
27582
27583 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
27584 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27585
27586 commit 75f35209f702bb26826855ed8c8e4d108ab5f412
27587 Author: Ira Snyder <iws@ovro.caltech.edu>
27588 Date: Mon Jan 12 13:32:26 2009 -0800
27589
27590 83xx: PCI agent mode fixes for multi-board systems
27591
27592 When running a system with 2 or more MPC8349EMDS boards in PCI agent mode,
27593 the boards will lock up the PCI bus by scanning against each other.
27594
27595 The boards lock against each other by trying to access the PCI bus before
27596 clearing their configuration lock bit. Both boards end up in a loop,
27597 sending and receiving "Target Not Ready" messages forever.
27598
27599 When running in PCI agent mode, the scanning now takes place after the
27600 boards have cleared their configuration lock bit.
27601
27602 Also, add a missing declaration to the mpc83xx.h header file, fixing a
27603 build warning.
27604
27605 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
27606 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27607
27608 commit 455a46915b82896cc2070eb326d075555c2bc580
27609 Author: Ron Madrid <ron_madrid@sbcglobal.net>
27610 Date: Fri Dec 12 13:12:45 2008 -0800
27611
27612 mpc83xx: Size optimization of start.S
27613
27614 Currently there are in excess of 100 bytes located at the beginning of the image
27615 built by start.S that are not being utilized. This patch moves a few functions
27616 into this part of the image. This will create a greater number of *available*
27617 bytes that can be used by board specific code in NAND builds and will decrease
27618 the size of the assembled code in other builds.
27619
27620 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
27621 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27622
27623 commit 72d15e705bc3983884105cb7755c7ba80e74a0a5
27624 Author: Wolfgang Denk <wd@denx.de>
27625 Date: Wed Jan 21 23:08:12 2009 +0100
27626
27627 Prepare v2009.01
27628
27629 Signed-off-by: Wolfgang Denk <wd@denx.de>
27630
27631 commit 635e5f8fc82365e6e9734b3132bc95135a6de679
27632 Author: Wolfgang Denk <wd@denx.de>
27633 Date: Sun Jan 18 21:37:48 2009 +0100
27634
27635 Prepare 2009.01-rc3
27636
27637 Update CHANGELOG
27638
27639 Signed-off-by: Wolfgang Denk <wd@denx.de>
27640
27641 commit 4cda437898f7873752f0201757cd33f12196ce87
27642 Author: Mike Frysinger <vapier@gentoo.org>
27643 Date: Sat Jan 17 13:32:42 2009 -0500
27644
27645 build system: treat all Darwin's alike
27646
27647 The x86 based version of Darwin behaves the same quirky way as the powerpc
27648 Darwin, so only check HOSTOS when setting up Darwin workarounds.
27649
27650 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27651
27652 commit c088a108c75db565e07292fd668dfa5491e85bc2
27653 Author: Peter Korsgaard <jacmet@sunsite.dk>
27654 Date: Wed Jan 14 13:52:24 2009 +0100
27655
27656 fdt_resize(): fix actualsize calculations with unaligned blobs
27657
27658 The code in fdt_resize() to extend the fdt size to end on a page boundary
27659 is wrong for fdt's not located at an address aligned on a page boundary.
27660 What's even worse, the code would make actualsize shrink rather than grow
27661 if (blob & 0xfff) was bigger than the amount of padding added by ALIGN(),
27662 causing fdt_add_mem_rsv to fail.
27663
27664 Fix it by aligning end address (blob + size) to a page boundary instead.
27665 For aligned fdt's this is equivalent to what we had before.
27666
27667 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
27668
27669 commit fadad1573fb16c90025f08a2861d6047d093cba7
27670 Author: Mike Frysinger <vapier@gentoo.org>
27671 Date: Fri Jan 9 04:38:17 2009 -0500
27672
27673 ncb: use socklen_t
27674
27675 The recvfrom() function takes a socklen_t, not an int.
27676
27677 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27678
27679 commit fc83c9273cec6e6e542f4a0ea3b653b7d0513ffa
27680 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27681 Date: Sun Jan 11 16:35:16 2009 +0100
27682
27683 sh: serial: use readx/writex accessors
27684
27685 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27686 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27687
27688 commit 9e1fa628bdb64745811cdd26c4f953846c076180
27689 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27690 Date: Sun Jan 11 16:35:15 2009 +0100
27691
27692 sh: serial: coding style cleanup
27693
27694 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27695 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27696
27697 commit c9935c992575922b7ef13eec0656ed8665d324e3
27698 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27699 Date: Sun Jan 11 17:48:56 2009 +0900
27700
27701 sh: Fix compile error on lowlevel_init file
27702
27703 lowlevel_init of SH was corrected to use the write/readXX macro.
27704 However, there was a problem that was not able to be compiled partially.
27705 This patch corrected this.
27706
27707 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27708
27709 commit a5b04d00bfeb940c62232972ce644d50b45797f9
27710 Author: Kieran Bingham <kieranbingham@gmail.com>
27711 Date: Tue Dec 30 01:16:03 2008 +0000
27712
27713 sh: Fix up rsk7203 target for out of tree build
27714
27715 Fix up rsk7203 target to build successfully using out-of-tree build.
27716
27717 Signed-off-by: Kieran Bingham <kbingham@mpc-data.co.uk>
27718 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27719
27720 commit f7e78f3b74aae9caca2997bad865a72338326c0a
27721 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27722 Date: Sat Dec 20 19:29:49 2008 +0100
27723
27724 sh: use write{8,16,32} in all lowlevel_init
27725
27726 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27727 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27728
27729 commit e4430779623af500de1cee7892c379f07ef59813
27730 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27731 Date: Sat Dec 20 19:29:48 2008 +0100
27732
27733 sh: lowlevel_init coding style cleanup
27734
27735 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27736 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27737
27738 commit 85cb052ee41675ca361e6a4c69455dc715c8f2d9
27739 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27740 Date: Sat Dec 20 15:27:45 2008 +0100
27741
27742 sh: update sh2/sh2a timer coding style
27743
27744 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27745 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27746
27747 commit 1e15ff999322e81af4c0c0c548908f38944ba39c
27748 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27749 Date: Sat Dec 20 15:25:22 2008 +0100
27750
27751 sh: update sh timer coding style
27752
27753 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27754 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27755
27756 commit 0e3ece33801e377be67ffa29f083421ad820f28b
27757 Author: Wolfgang Denk <wd@denx.de>
27758 Date: Wed Jan 14 23:26:05 2009 +0100
27759
27760 Prepare 2009.01-rc2
27761
27762 Update CHANGELOG.
27763
27764 Signed-off-by: Wolfgang Denk <wd@denx.de>
27765
27766 commit e92c9a860e44c14513c8909ce4299e253a775eeb
27767 Author: Wolfgang Denk <wd@denx.de>
27768 Date: Wed Jan 14 22:35:30 2009 +0100
27769
27770 cpu/mpc824x/Makefile: fix warning with parallel builds
27771
27772 Parallel builds would occasionally issue this build warning:
27773
27774 ln: creating symbolic link `cpu/mpc824x/bedbug_603e.c': File exists
27775
27776 Use "ln -sf" as quick work around for the issue.
27777
27778 Signed-off-by: Wolfgang Denk <wd@denx.de>
27779
27780 commit 3ba605d4beec649438539e7df97b5fedb26592fb
27781 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27782 Date: Fri Jan 2 12:18:49 2009 +0100
27783
27784 ppc4xx: Add loadpci command to esd's CPCI4052 and CPCI405AB boards
27785
27786 This patch adds esd's loadpci BSP command to CPCI4052 and
27787 CPCI405AB board. This requires CONFIG_CMD_BSP and CONFIG_PRAM.
27788
27789 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27790 Signed-off-by: Stefan Roese <sr@denx.de>
27791
27792 commit 600fe46fb3dab7f07604f9009904f31584415114
27793 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27794 Date: Fri Jan 2 12:18:12 2009 +0100
27795
27796 ppc4xx: Disable pci node in device tree on CPCI405 pci adapters
27797
27798 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27799 Signed-off-by: Stefan Roese <sr@denx.de>
27800
27801 commit f6a1f490d224c600a09137e58d1026d150b8e679
27802 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27803 Date: Fri Jan 2 12:17:36 2009 +0100
27804
27805 ppc4xx: Cleanup CPCI405 board code
27806
27807 This patch cleans up CPCI405 board support:
27808 - wrap long lines
27809 - unification of spaces in function calls
27810 - remove dead code
27811
27812 Use correct io accessors on peripherals.
27813
27814 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27815 Signed-off-by: Stefan Roese <sr@denx.de>
27816
27817 commit fceebb45a0b97e92f9889861f8c3b9cb885e706f
27818 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27819 Date: Fri Jan 2 12:16:35 2009 +0100
27820
27821 ppc4xx: Enable auto RS485 mode on PLU405 boards
27822
27823 This patch turns on the auto RS485 mode in the 2nd external
27824 uart on PLU405 boards. This is a special mode of the used
27825 Exar XR16C2850 uart. Because these boards only have a 485 physical
27826 layer connected it's a good idea to turn it on by default.
27827
27828 Signed-off-by: Matthias Fuchs <mf@esd.eu>
27829 Signed-off-by: Stefan Roese <sr@denx.de>
27830
27831 commit b5f65dfa9aa8e068e62aba4733dc4fd97b1d9bf6
27832 Author: Haiying Wang <Haiying.Wang@freescale.com>
27833 Date: Tue Jan 13 16:29:28 2009 -0500
27834
27835 Some changes of TLB entry setting for MPC8572DS
27836
27837 - Move the TLB entry of PIXIS_BASE from TLB0 to TLB1[8], because in CAMP mode,
27838 all the TLB0 entries will be invalidated after cpu1 brings up kernel, thus cpu0
27839 can not access PIXIS_BASE anymore (any access will cause DataTLBError exception)
27840
27841 - Set CONFIG_SYS_DDR_TLB_START to 9 for MPC8572DS board.
27842
27843 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
27844
27845 commit 950264317eb9594b2b5ee2fb65206200a1c6007a
27846 Author: Haiying Wang <Haiying.Wang@freescale.com>
27847 Date: Tue Jan 13 16:29:22 2009 -0500
27848
27849 Change DDR tlb start entry to CONFIG param for 85xx
27850
27851 So that we can locate the DDR tlb start entry to the value other than 8. By
27852 default, it is still 8.
27853
27854 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
27855
27856 commit 6d3a10f73ece7ffb736890c10e023222612a4aa0
27857 Author: Roy Zang <tie-fei.zang@freescale.com>
27858 Date: Fri Jan 9 16:02:35 2009 +0800
27859
27860 Change PCIE1&2 deciide logic on MPC8544DS board more readable
27861
27862 The IO port selection for MPC8544DS board:
27863 Port cfg_io_ports
27864 PCIE1 0x2, 0x3, 0x4, 0x5, 0x6, 0x7
27865 PCIE2 0x4, 0x5, 0x6, 0x7
27866 PCIE3 0x6, 0x7
27867 This patch changes the PCIE12 and PCIE2 logic more readable.
27868 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
27869
27870 commit 028e116811d28a031660f1ad9e20ac1293b3c5c7
27871 Author: Roy Zang <tie-fei.zang@freescale.com>
27872 Date: Fri Jan 9 16:01:52 2009 +0800
27873
27874 PCIE2 and PCIE3 are decided by corresponing bit in devdisr instead of PCIE1 bit
27875
27876 PCIE2 and PCIE3 should be decided by corresponing bit in devdisr instead of
27877 PCIE1 bit.
27878 On MPC8572DS board, PCIE refers to PCIE1.
27879 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
27880
27881 commit 9afc2ef0307aecf52482df67c31b75d5f9e66b47
27882 Author: Roy Zang <tie-fei.zang@freescale.com>
27883 Date: Fri Jan 9 16:00:55 2009 +0800
27884
27885 Fix IO port selection issue on MPC8544DS and MPC8572DS boards
27886
27887 The IO port selection is not correct on MPC8572DS and MPC8544DS board.
27888 This patch fixes this issue.
27889 For MPC8572
27890 Port cfg_io_ports
27891 PCIE1 0x2, 0x3, 0x7, 0xb, 0xc, 0xf
27892 PCIE2 0x3, 0x7
27893 PCIE3 0x7
27894
27895 For MPC8544
27896 Port cfg_io_ports
27897 PCIE1 0x2, 0x3, 0x4, 0x5, 0x6, 0x7
27898 PCIE2 0x4, 0x5, 0x6, 0x7
27899 PCIE3 0x6, 0x7
27900 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
27901
27902 commit 3e3fffe3baf3befde287fec1fcbfe55052fb8946
27903 Author: Becky Bruce <beckyb@kernel.crashing.org>
27904 Date: Wed Dec 3 22:36:44 2008 -0600
27905
27906 mpc8610hpcd: Fix PCI mapping concepts
27907
27908 Rename _BASE to _BUS, as it's actually a PCI bus address,
27909 separate virtual and physical addresses into _VIRT and _PHYS,
27910 and use each appopriately. This makes the code easier to read
27911 and understand, and facilitates mapping changes going forward.
27912
27913 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
27914
27915 commit 79e436cad3b4a7db88408c3f05175028f30d700d
27916 Author: Becky Bruce <beckyb@kernel.crashing.org>
27917 Date: Wed Dec 3 22:36:26 2008 -0600
27918
27919 sbc8641d: Fix PCI mapping concepts
27920
27921 Rename _BASE to _BUS, as it's actually a PCI bus address,
27922 separate virtual and physical addresses into _VIRT and _PHYS,
27923 and use each appopriately. This makes the code easier to read
27924 and understand, and facilitates mapping changes going forward.
27925
27926 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
27927
27928 commit a9f3acbcd07da72b5446ce557531a3ed8b8beff0
27929 Author: Wolfgang Denk <wd@denx.de>
27930 Date: Mon Jan 12 14:50:35 2009 +0100
27931
27932 MPC86xx: fix build warnings
27933
27934 Signed-off-by: Wolfgang Denk <wd@denx.de>
27935
27936 commit 032a1c934ef4dc003281f57302b6e693062c1868
27937 Author: Mike Frysinger <vapier@gentoo.org>
27938 Date: Mon Jan 5 16:09:44 2009 -0500
27939
27940 bf537-stamp/nand: fix board_nand_init prototype
27941
27942 The board_nand_init() function should return an int, not void.
27943
27944 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27945
27946 commit 687f952e4119594ab913be11c90f7f018c2a7a79
27947 Author: Mike Frysinger <vapier@gentoo.org>
27948 Date: Thu Dec 11 07:04:48 2008 -0500
27949
27950 Blackfin: drop CONFIG_SPI handling in board init
27951
27952 The eeprom SPI init functions are duplicated as the common code already
27953 executes these for us.
27954
27955 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27956
27957 commit e7e684b10d73a303902208594c7c3e7e0d753282
27958 Author: Mike Frysinger <vapier@gentoo.org>
27959 Date: Fri Oct 24 17:51:57 2008 -0400
27960
27961 Blackfin: fix out-of-tree building with ldscripts
27962
27963 Many of the Blackfin board linker scripts are preprocessed, so make sure we
27964 output the linker script into the build tree rather than the source tree.
27965
27966 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27967
27968 commit b9eecc342f767b50e1476fbc1aad7d88dd4ce5eb
27969 Author: Mike Frysinger <vapier@gentoo.org>
27970 Date: Fri Oct 24 17:48:54 2008 -0400
27971
27972 Blackfin: fix linker scripts to work with --gc-sections
27973
27974 Make sure all .text sections get pulled in and the entry point is properly
27975 referenced so they don't get discarded when linking with --gc-sections.
27976
27977 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27978
27979 commit 509fc553bc6087a6f705b3bf52f3950d7d1eaa58
27980 Author: Mike Frysinger <vapier@gentoo.org>
27981 Date: Sat Oct 11 20:45:44 2008 -0400
27982
27983 Blackfin: set proper LDRFLAGS for parallel booting LDRs
27984
27985 In order to boot an LDR out of parallel flash, the ldr utility needs a few
27986 flags to tell it to generate the right header.
27987
27988 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27989
27990 commit 3dd9395a0d7ce69a335d0e743c04b9caedd681d3
27991 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27992 Date: Tue Jan 6 21:41:59 2009 +0100
27993
27994 at91rm9200: move define from lowlevel_init to header
27995
27996 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27997
27998 commit 8a48686fac2030287765f1970ea046bd5734b733
27999 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28000 Date: Sat Jan 3 17:22:26 2009 +0100
28001
28002 m501sk: move to the common memory setup
28003
28004 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28005
28006 commit d481c80d78f954133c035dae6c7d22de3625795d
28007 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28008 Date: Sat Jan 3 17:22:25 2009 +0100
28009
28010 at91rm9200: rename lowlevel init value to CONFIG_SYS_
28011
28012 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28013
28014 commit 4e170b16625291aa10d0d9abc3f34e8a5945d157
28015 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
28016 Date: Tue Jan 6 21:13:14 2009 +0100
28017
28018 at91: add at91sam9xeek board support
28019
28020 At91sam9xe is basically an at91sam9260 with embedded flash. We can manage
28021 it as another entry for at91sam9260 in the Makefile.
28022
28023 Check documentation at :
28024 http://www.atmel.com/dyn/products/product_card.asp?part_id=4263
28025
28026 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
28027 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28028
28029 commit 9ffd53db870a7da134f9a1ae76894a6b31237be5
28030 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28031 Date: Tue Jan 6 21:15:57 2009 +0100
28032
28033 fix bmp_logo.h make dependencies to allow parallel build
28034
28035 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28036
28037 commit e12d9a8fb48d24176efffccc072b445e60a3afe4
28038 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28039 Date: Sat Jan 3 17:22:24 2009 +0100
28040
28041 at91: Fix Atmel's at91sam9 boards out of tree build
28042
28043 introduced in commit 89a7a87f084c
28044
28045 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28046
28047 commit 0668236bafaa1c11c521652a2facebc74beecbf0
28048 Author: Wolfgang Denk <wd@denx.de>
28049 Date: Tue Dec 30 22:56:11 2008 +0100
28050
28051 README: update mailing list name and hits to patch submission.
28052
28053 Signed-off-by: Wolfgang Denk <wd@denx.de>
28054
28055 commit d9011f9b75561a0bd9254934c2bb2bc799d4f645
28056 Author: Peter Tyser <ptyser@xes-inc.com>
28057 Date: Tue Dec 23 16:32:01 2008 -0600
28058
28059 85xx: Enable inbound PCI config cycles for X-ES boards cleanup
28060
28061 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28062
28063 commit 1f03cbfae221b24ba1341a0a3f62ff01c5c874df
28064 Author: Peter Tyser <ptyser@xes-inc.com>
28065 Date: Tue Dec 23 16:32:00 2008 -0600
28066
28067 XPedite5200 board support cleanup
28068
28069 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28070
28071 commit fea91edee8ae0295e3c30b1ff544df51f4d668e1
28072 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28073 Date: Tue Dec 2 21:58:04 2008 +0100
28074
28075 usb_kbd: fix usb_kbd_deregister when DEVICE_DEREGISTER not enable
28076
28077 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28078 Signed-off-by: Remy Böhmer <linux@bohmer.net>
28079
28080 commit ada591d2a0ecff5f9bc5ed1ebf310f439c3d0a28
28081 Author: Trent Piepho <tpiepho@freescale.com>
28082 Date: Wed Dec 3 15:16:37 2008 -0800
28083
28084 mpc8[56]xx: Put localbus clock in sysinfo and gd
28085
28086 Currently MPC85xx and MPC86xx boards just calculate the localbus frequency
28087 and print it out, but don't save it.
28088
28089 This changes where its calculated and stored to be more consistent with the
28090 CPU, CCB, TB, and DDR frequencies and the MPC83xx localbus clock.
28091
28092 The localbus frequency is added to sysinfo and calculated when sysinfo is
28093 set up, in cpu/mpc8[56]xx/speed.c, the same as the other frequencies are.
28094
28095 get_clocks() copies the frequency into the global data, as the other
28096 frequencies are, into a new field that is only enabled for MPC85xx and
28097 MPC86xx.
28098
28099 checkcpu() in cpu/mpc8[56]xx/cpu.c will print out the local bus frequency
28100 from sysinfo, like the other frequencies, instead of calculating it on the
28101 spot.
28102
28103 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
28104 Acked-by: Kumar Gala <galak@kernel.crashing.org>
28105 Acked-by: Jon Loeliger <jdl@freescale.com>
28106
28107 commit 9863d6aca11405e1e0d8aba2045d78aeec4d4ee7
28108 Author: Trent Piepho <tpiepho@freescale.com>
28109 Date: Wed Dec 3 15:16:36 2008 -0800
28110
28111 mpc86xx: Double local bus clock divider
28112
28113 The local bus clock divider should be doubled for both 8610 and 8641.
28114
28115 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
28116 Acked-by: Kumar Gala <galak@kernel.crashing.org>
28117 Acked-by: Jon Loeliger <jdl@freescale.com>
28118
28119 commit 446c381e3e16f19857b72ea0d06241267b8b9d58
28120 Author: Trent Piepho <tpiepho@freescale.com>
28121 Date: Wed Dec 3 15:16:35 2008 -0800
28122
28123 mpc8568: Double local bus clock divider
28124
28125 The clock divider for the MPC8568 local bus should be doubled, like the
28126 other newer MPC85xx chips.
28127
28128 Since there are now more chips with a 2x divider than a 1x, and any new
28129 85xx chips will probably be 2x, invert the sense of the #if so that it
28130 lists the 1x chips instead of the 2x ones.
28131
28132 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
28133 Acked-by: Kumar Gala <galak@kernel.crashing.org>
28134 Acked-by: Jon Loeliger <jdl@freescale.com>
28135
28136 commit f51f07eb58fad12de9294ba4ee6c09a0ddeaee03
28137 Author: Dave Liu <daveliu@freescale.com>
28138 Date: Tue Dec 16 12:09:27 2008 +0800
28139
28140 85xx: Fix the boot window issue
28141
28142 If one custom board is using the 8MB flash, it is set
28143 as FLASH_BASE = 0xef000000, TEXT_BASE = 0xef780000.
28144 The current start.S code will be broken at switch_as.
28145
28146 It is because the TLB1[15] is set as 16MB page size,
28147 EPN = TEXT_BASE & 0xff000000, RPN = 0xff000000.
28148
28149 For the 8MB flash case, the EPN = 0xefxxxxxx,
28150 RPN = 0xffxxxxxx. Assume the virt address of switch_as
28151 is 0xef7ff18c, the real address of the instruction at
28152 switch_as should be 0xff7ff18c. the 0xff7ff18c is out
28153 of the range of the default 8MB boot LAW window
28154 0xff800000 - 0xffffffff.
28155
28156 So when we switch to AS1 address space at switch_as,
28157 the core can't fetch the instruction at switch_as any
28158 more. It will cause broken issue.
28159
28160 Signed-off-by: Dave Liu <daveliu@freescale.com>
28161
28162 commit 58da8890d5fbd074746037722a423de9ac408616
28163 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
28164 Date: Thu Dec 11 15:47:50 2008 -0500
28165
28166 sbc8548: use proper PHY address
28167
28168 The values given for the PHY address were wrong, so the code
28169 read no valid PHY ID, and fell through to the generic PHY
28170 support, which would work on 1000M but would not auto negotiate
28171 down to 100M or 10M.
28172
28173 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
28174
28175 commit ad22f9273c6f24fbfa917e867680e9688e0c59c5
28176 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
28177 Date: Thu Dec 11 15:47:51 2008 -0500
28178
28179 sbc8548: enable command line editing by default.
28180
28181 Lets make things a bit more user friendly. It isn't 1985 anymore.
28182
28183 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
28184
28185 commit bd93105fa171184a71ca8b22be03dc2705cfbd3f
28186 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
28187 Date: Thu Dec 11 15:47:49 2008 -0500
28188
28189 sbc8548: don't enable the 3rd and 4th eTSEC
28190
28191 These interfaces don't have usable connectors on the board, so don't
28192 bother enumerating or configuring them.
28193
28194 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
28195
28196 commit 181a3650113883728927928b3ac81ad6dade4b2c
28197 Author: Haiying Wang <Haiying.Wang@freescale.com>
28198 Date: Wed Dec 3 10:08:19 2008 -0500
28199
28200 Set IVPR to kenrel entry point in second core boot page
28201
28202 Assuming the OSes exception vectors start from the base of kernel address, and
28203 the kernel physical starting address can be relocated to an non-zero address.
28204 This patch enables the second core to have a valid IVPR for debugger before
28205 kernel setting IVPR in CAMP mode. Otherwise, IVPR is 0x0 and it is not a valid
28206 value for second core which runs kernel at different physical address other
28207 than 0x0.
28208
28209 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
28210
28211 commit a5d212a263c58cc746481bf1fc878510533ce7d6
28212 Author: Trent Piepho <tpiepho@freescale.com>
28213 Date: Wed Dec 3 15:16:34 2008 -0800
28214
28215 mpc8xxx: LCRR[CLKDIV] is sometimes five bits
28216
28217 On newer CPUs, 8536, 8572, and 8610, the CLKDIV field of LCRR is five bits
28218 instead of four.
28219
28220 In order to avoid an ifdef, LCRR_CLKDIV is set to 0x1f on all systems. It
28221 should be safe as the fifth bit was defined as reserved and set to 0.
28222
28223 Code that was using a hard coded 0x0f is changed to use LCRR_CLKDIV.
28224
28225 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
28226 Acked-by: Kumar Gala <galak@kernel.crashing.org>
28227 Acked-by: Jon Loeliger <jdl@freescale.com>
28228
28229 commit 58ec4866ed916c7e422f5107bb27b0822084728e
28230 Author: Trent Piepho <tpiepho@freescale.com>
28231 Date: Wed Dec 3 15:16:38 2008 -0800
28232
28233 mpc8[56]xx: Put localbus clock in device tree
28234
28235 Export the localbus frequency in the device tree, the same way the CPU, TB,
28236 CCB, and various other frequencies are exported in their respective device
28237 tree nodes.
28238
28239 Some localbus devices need this information to be programed correctly, so
28240 it makes sense to export it along with the other frequencies.
28241
28242 Unfortunately, when someone wrote the localbus dts bindings, they didn't
28243 bother to define what the "compatible" property should be. So it seems no
28244 one was quite sure what to put in their dts files.
28245
28246 Based on current existing dts files in the kernel source, I've used
28247 "fsl,pq3-localbus" and "fsl,elbc" for MPC85xx, which are used by almost all
28248 of the 85xx devices, and are looked for by the Linux code. The eLBC is
28249 apparently not entirely backward compatible with the pq3 LBC and so eLBC
28250 equipped platforms like 8572 won't use pq3-localbus.
28251
28252 For MPC86xx, I've used "fsl,elbc" which is used by some of the 86xx systems
28253 and is also looked for by the Linux code. On MPC8641, I've also used
28254 "fsl,mpc8641-localbus" as it is also commonly used in dts files, some of
28255 which don't use "fsl,elbc" or any other acceptable name to match on.
28256
28257 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
28258 Acked-by: Kumar Gala <galak@kernel.crashing.org>
28259 Acked-by: Jon Loeliger <jdl@freescale.com>
28260
28261 commit 9d94aff699eed38b286814fcbb335f3eb8516a0e
28262 Author: Kumar Gala <galak@kernel.crashing.org>
28263 Date: Tue Dec 16 14:59:22 2008 -0600
28264
28265 NAND FSL elbc: Use virt_to_phys to determine which bank is in use
28266
28267 The current code that determines which bank/chipselect is used for a
28268 given NAND instance only worked for 32-bit addresses and assumed
28269 a 1:1 mapping. This breaks in 36-bit physical configs.
28270
28271 The proper way to handle this is to use the virt_to_phys() and
28272 BR_PHYS_ADDR() routinues to match the 34-bit lbc bus address
28273 with the the virtual address the NAND code uses.
28274
28275 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28276 Acked-by: Scott Wood <scottwood@freescale.com>
28277
28278 commit 77c8115b1f1871811633eae77a5a700fac1f0e50
28279 Author: Kumar Gala <galak@kernel.crashing.org>
28280 Date: Tue Dec 16 14:59:21 2008 -0600
28281
28282 ppc: Use addrmap in virt_to_phys and map_physmem.
28283
28284 If we have addr map support enabled use the mapping functions to
28285 implement virt_to_phys() and map_physmem().
28286
28287 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28288
28289 commit ecf5b98c7a6a2e2256dfddd48fab26678dcd6b90
28290 Author: Kumar Gala <galak@kernel.crashing.org>
28291 Date: Tue Dec 16 14:59:20 2008 -0600
28292
28293 85xx: Add support to populate addr map based on TLB settings
28294
28295 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28296
28297 commit 78bbc5ce151c5a484bb51bf1866b4a993ffc16ec
28298 Author: Peter Tyser <ptyser@xes-inc.com>
28299 Date: Mon Dec 1 13:47:13 2008 -0600
28300
28301 XPedite5200 board support
28302
28303 Initial support for Extreme Engineering Solutions XPedite5200 -
28304 a MPC8548-based PMC single board computer.
28305
28306 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28307
28308 commit 487dcb4fb89be0992bc06ec1341090017bd9cf2f
28309 Author: Peter Tyser <ptyser@xes-inc.com>
28310 Date: Wed Oct 29 12:39:27 2008 -0500
28311
28312 85xx: Enable inbound PCI config cycles for X-ES boards
28313
28314 Update X-ES Freescale boards to allow inbound PCI configuration
28315 cycles when configured as agent/endpoint.
28316
28317 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28318
28319 commit ccf0fdd02b97323f8caae18d06cc9daeac2f192f
28320 Author: Peter Tyser <ptyser@xes-inc.com>
28321 Date: Wed Dec 17 16:36:23 2008 -0600
28322
28323 XPedite5370 board support
28324
28325 Initial support for Extreme Engineering Solutions XPedite5370 -
28326 a MPC8572-based 3U VPX single board computer with a PMC/XMC
28327 site.
28328
28329 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28330
28331 commit e92739d34e2d6b6aca93b2598248210710897ce8
28332 Author: Peter Tyser <ptyser@xes-inc.com>
28333 Date: Wed Dec 17 16:36:21 2008 -0600
28334
28335 Add support for PCA953x I2C gpio devices
28336
28337 Initial support for NXP's 4 and 8 bit I2C gpio expanders
28338 (eg pca9537, pca9557, etc). The CONFIG_PCA953X define
28339 enables support for the devices while the CONFIG_CMD_PCA953X
28340 define enables the pca953x command. The CONFIG_CMD_PCA953X_INFO
28341 define enables an 'info' sub-command which provides summary
28342 information for the given pca953x device.
28343
28344 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28345
28346 commit 7a8979591171676417ab36852d8811a8c46accd8
28347 Author: Peter Tyser <ptyser@xes-inc.com>
28348 Date: Wed Oct 29 12:39:26 2008 -0500
28349
28350 pci/fsl_pci_init: Enable inbound PCI config cycles
28351
28352 Add fsl_pci_config_unlock() function to enable a
28353 PCI/PCIe interface configured in agent/endpoint mode to
28354 respond to inbound PCI configuration cycles.
28355
28356 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28357
28358 commit 92c78a3bbcb2ce508b4bf1c4a1e0940406a024bb
28359 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28360 Date: Wed Dec 17 16:43:18 2008 +0100
28361
28362 avr32: Remove second definition of virt_to_phys()
28363
28364 The second definition introduced by 65e43a1063 conflicts with the
28365 existing one.
28366
28367 Also, convert the existing definition to use phys_addr_t. The volatile
28368 qualifier is still needed due to brain damage elsewhere.
28369
28370 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28371
28372 commit b616f2b545f73757669b37386f0b37bb61fc6797
28373 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28374 Date: Mon Sep 8 22:27:18 2008 +0200
28375
28376 MIPS: qemu_mips: update doc to generate and to use qemu flash, ide file
28377
28378 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28379 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28380
28381 commit 16cdf816779f5b602a9b3b4d2ea4dea05095c35b
28382 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28383 Date: Tue Dec 16 22:10:31 2008 +0100
28384
28385 MIPS: qemu_mips: update doc to use all disk and boot linux kernel
28386
28387 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28388 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28389
28390 commit 13095b2f07dacb1f863772266c1789d47a523a8a
28391 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28392 Date: Tue Dec 16 22:10:30 2008 +0100
28393
28394 MIPS: qemu_mips: move env storage just after u-boot
28395
28396 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28397 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28398
28399 commit aced78d852d0b009e8aaa1445af8cb40861ee549
28400 Author: Wolfgang Denk <wd@denx.de>
28401 Date: Tue Dec 16 23:48:27 2008 +0100
28402
28403 Prepare 2009.01-rc1
28404
28405 Signed-off-by: Wolfgang Denk <wd@denx.de>
28406
28407 commit 9e2a79b4c585ad31138fb90b68fd0234d64a8da8
28408 Author: Wolfgang Denk <wd@denx.de>
28409 Date: Tue Dec 16 23:13:46 2008 +0100
28410
28411 include/configs/at91cap9adk.h: fix typo.
28412
28413 Signed-off-by: Wolfgang Denk <wd@denx.de>
28414
28415 commit 45ca04f2377361593151d2d4da51f8ba4832d233
28416 Author: Wolfgang Denk <wd@denx.de>
28417 Date: Tue Dec 16 22:32:25 2008 +0100
28418
28419 board/trab/memory.c: Fix compile problems.
28420
28421 Apply changes from commit 44b4dbed to board/trab/memory.c, too.
28422
28423 Actually we'd need a major cleanup here - as it turns out,
28424 board/trab/memory.c is more or less a verbatim copy of
28425 post/drivers/memory.c ... but then, trab is EOL anyway,r
28426 so this is not worth the effort.
28427
28428 Signed-off-by: Wolfgang Denk <wd@denx.de>
28429
28430 commit ff49ea8977b56916edd5b1766d9939010e30b181
28431 Author: Scott Wood <scottwood@freescale.com>
28432 Date: Tue Dec 16 14:24:16 2008 -0600
28433
28434 NAND: Mark the BBT as scanned prior to calling scan_bbt.
28435
28436 Otherwise, recursion can occur if scan_bbt does not find a bad block
28437 table, and tries to write one, and the attempt to erase the BBT area
28438 causes a bad block check.
28439
28440 Signed-off-by: Scott Wood <scottwood@freescale.com>
28441
28442 commit 584eedab66d0828f2d571a24b10526c4e65f547b
28443 Author: Ilya Yanok <yanok@emcraft.com>
28444 Date: Thu Dec 11 05:51:57 2008 +0300
28445
28446 jffs2: include <linux/mtd/compat.h> instead of defining own min_t
28447
28448 Include <linux/mtd/compat.h> header for min_t definition instead of
28449 providing our own one. Removes warnings in case of OneNAND support
28450 enabled.
28451
28452 Although I thinks it's a bit silly to include <linux/mtd/compat.h>
28453 just for min_t...
28454
28455 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
28456 Acked-by: Stefan Roese <sr@denx.de>
28457
28458 commit b1ffecec37b57a59c139042267faac458e5324e9
28459 Author: Becky Bruce <beckyb@kernel.crashing.org>
28460 Date: Wed Dec 3 23:04:37 2008 -0600
28461
28462 powerpc: fix io.h build warning with CONFIG_PHYS_64BIT
28463
28464 Casting a pointer to a phys_addr_t when it's an unsigned long long
28465 on a 32-bit system without first casting to a non-pointer type
28466 generates a compiler warning. Fix this.
28467
28468 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
28469
28470 commit 6cdadcb3f1b6eac4a1c4256acaa1438413f95351
28471 Author: Wolfgang Denk <wd@denx.de>
28472 Date: Tue Dec 16 16:22:50 2008 +0100
28473
28474 trab: make trab_fkt standalone code independent of libgcc
28475
28476 Use our own local functions in lib_arm/ instead.
28477
28478 Signed-off-by: Wolfgang Denk <wd@denx.de>
28479
28480 commit aa1bcca3d2e22af4dea9f02132f9b56a30378ded
28481 Author: Wolfgang Denk <wd@denx.de>
28482 Date: Tue Dec 16 14:44:06 2008 +0100
28483
28484 post/Makefile: fix dependency problem with parallel builds
28485
28486 Parallel builds (using "make -jN") would occasionally fail with error
28487 messages like
28488 ppc_4xxFP-objdump: string.o: File format not recognized
28489 or
28490 post/libpost.a(cpu.o): In function `cpu_post_test':
28491 /home/wd/git/u-boot/work/post/lib_ppc/cpu.c:130: undefined reference to `cpu_post_test_string'
28492 or similar. We now make sure to run the 'postdeps" step before
28493 attempting to build the specific POST libraries.
28494
28495 Signed-off-by: Wolfgang Denk <wd@denx.de>
28496
28497 commit 4a0f7538c5c0805fd9a791967bbabacc41deadd9
28498 Author: Wolfgang Denk <wd@denx.de>
28499 Date: Tue Dec 16 14:41:02 2008 +0100
28500
28501 Makefile: fix dependency problem with parallel builds
28502
28503 Parallel builds (using "make -jN") would occasionally fail with error
28504 messages like
28505 include/autoconf.mk:212: *** missing separator. Stop.
28506 Line numbers and affected boards were changing. Obviously some
28507 Makefiles included autoconf.mk while it was still being written to.
28508 As a fix, we now write to a temporary file first and then rename it,
28509 so that it is really ready to use as soon as it appears.
28510
28511 Signed-off-by: Wolfgang Denk <wd@denx.de>
28512
28513 commit 455ae7e87f67c44e6aea68865c83acadd3fcd36c
28514 Author: Wolfgang Denk <wd@denx.de>
28515 Date: Tue Dec 16 01:02:17 2008 +0100
28516
28517 Coding style cleanup, update CHANGELOG.
28518
28519 Signed-off-by: Wolfgang Denk <wd@denx.de>
28520
28521 commit 84bc72d90c505fec3ef4b693995407a0bd4064e5
28522 Author: Mike Frysinger <vapier@gentoo.org>
28523 Date: Thu Dec 11 18:39:08 2008 -0500
28524
28525 spi/stmicro: fix debug() display of cmd
28526
28527 The stmicro_wait_ready() func tries to show the actual opcode that was sent
28528 to the device, but instead it displays the array pointer. Fix it to pull
28529 out the opcode from the start of the array.
28530
28531 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28532
28533 commit 5b3375ac8c36c29c87abb132fede0509eb21e5c9
28534 Author: Mike Frysinger <vapier@gentoo.org>
28535 Date: Thu Dec 11 06:23:37 2008 -0500
28536
28537 env_sf: support embedded environments
28538
28539 If both CONFIG_ENV_SECT_SIZE and CONFIG_ENV_SIZE are defined, and the sect
28540 size is larger than the env size, then it means the env is embedded in a
28541 block. So we have to save/restore the part of the sector which is not the
28542 environment. Previously, saving the environment in SPI flash in this
28543 setup would probably brick the board as the rest of the sector tends to
28544 contain actual U-Boot data/code.
28545
28546 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28547 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28548
28549 commit ecf5f077c8e77454f532eaac3e3afb7cfc48c62d
28550 Author: Timur Tabi <timur@freescale.com>
28551 Date: Wed Dec 3 11:28:30 2008 -0600
28552
28553 i2c: merge all i2c_reg_read() and i2c_reg_write() into inline functions
28554
28555 All implementations of the functions i2c_reg_read() and
28556 i2c_reg_write() are identical. We can save space and simplify the
28557 code by converting these functions into inlines and putting them in
28558 i2c.h.
28559
28560 Signed-off-by: Timur Tabi <timur@freescale.com>
28561 Acked-By: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28562
28563 commit e39cd81c44740d7355d277ed3d38536cbe1e003d
28564 Author: Dave Liu <daveliu@freescale.com>
28565 Date: Fri Dec 5 15:36:14 2008 +0800
28566
28567 lib_ppc: rework the flush_cache
28568
28569 - It is possible to miss flush/invalidate the last
28570 cache line, we fix it at here.
28571 - add the volatile and memory clobber.
28572
28573 They are pointed by Scott Wood.
28574
28575 Signed-off-by: Dave Liu <daveliu@freescale.com>
28576
28577 commit 63240ba88cd6a220057a0f28e5bf97f5b17ac84b
28578 Author: Kumar Gala <galak@kernel.crashing.org>
28579 Date: Sat Dec 13 17:20:28 2008 -0600
28580
28581 Introduce addr_map library
28582
28583 Add a library that helps in translating between virtual and physical
28584 addresses. This library can be useful as a simple means to implement
28585 map_physmem() and virt_to_phys() for platforms that need functionality
28586 beyond the simple 1:1 mapping.
28587
28588 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28589
28590 commit 65e43a10631537dcb92c302d36301a12308216c3
28591 Author: Kumar Gala <galak@kernel.crashing.org>
28592 Date: Sat Dec 13 17:20:27 2008 -0600
28593
28594 Introduce virt_to_phys()
28595
28596 virt_to_phys() returns the physical address given a virtual. In most
28597 cases this will be just the input value as the vast majority of
28598 systems run in a 1:1 mode.
28599
28600 However in systems that are not running this way it should report the
28601 physical address or ~0 if no mapping exists for the given virtual
28602 address.
28603
28604 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28605
28606 commit 45845301af3de8675c1f7bbc815c6de35452605a
28607 Author: Yuri Tikhonov <yur@emcraft.com>
28608 Date: Sun Dec 7 22:12:50 2008 +0100
28609
28610 POST Make: fix the sub-dir dependencies missing.
28611
28612 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
28613
28614 commit 22525779cb51f1bbe4e96fea7b778de1935a5a69
28615 Author: Martin Michlmayr <tbm@cyrius.com>
28616 Date: Wed Aug 6 14:44:05 2008 +0300
28617
28618 Fix a typo in fw_env.config
28619
28620 Reported-by: Martin Michlmayr <tbm@cyrius.com>
28621 Signed-off-by: Wolfgang Denk <wd@denx.de>
28622
28623 commit ba490b7761c62b549c222a9723e532dc801a3899
28624 Author: Peter Tyser <ptyser@xes-inc.com>
28625 Date: Mon Dec 1 16:22:45 2008 -0600
28626
28627 Remove unused CONFIG_ADDR_STREAMING defines
28628
28629 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28630
28631 commit d16da93430520d3e46c1ab52eedacf36ab7a2311
28632 Author: Peter Tyser <ptyser@xes-inc.com>
28633 Date: Mon Nov 24 11:54:47 2008 -0600
28634
28635 cmd_mem: Remove unused variable
28636
28637 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28638
28639 commit 3aed3aa2c128ce9fb39ca3f4e9385a7499e93dbf
28640 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28641 Date: Sun Dec 14 10:29:39 2008 +0100
28642
28643 Fix new found CFG_
28644
28645 Also fix some minor typos.
28646
28647 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28648 Signed-off-by: Wolfgang Denk <wd@denx.de>
28649
28650 commit 0e0c862efe7279e9609db74d758cd1b84c6c7209
28651 Author: Sergei Poselenov <sposelenov@emcraft.com>
28652 Date: Fri Sep 19 12:07:34 2008 +0200
28653
28654 Remove compiler warning: target CPU does not support interworking
28655
28656 This warning is issued by modern ARM-EABI GCC on non-thumb targets.
28657
28658 Signed-off-by: Vladimir Panfilov <pvr@emcraft.com>
28659 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28660
28661 commit cd6734510a9ff0f41c4a73567d4080ea0033d2c1
28662 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28663 Date: Mon Nov 24 13:33:51 2008 +0100
28664
28665 Fix FIT and FDT support to have CONFIG_OF_LIBFDT and CONFIG_FIT independent
28666
28667 FDT support is used for both FIT style images and for architectures
28668 that can pass a fdt blob to an OS (ppc, m68k, sparc).
28669
28670 For other architectures and boards which do not pass a fdt blob to an
28671 OS but want to use the new uImage format, we just need FIT support.
28672
28673 Now we can have the 4 following configurations :
28674
28675 1) FIT only CONFIG_FIT
28676 2) fdt blob only CONFIG_OF_LIBFDT
28677 3) both CONFIG_OF_LIBFDT & CONFIG_FIT
28678 4) none none
28679
28680 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28681
28682 commit 19ef4f7a6ef3b725aa9fe4b4f5fb676a84160172
28683 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28684 Date: Wed Dec 10 15:13:32 2008 +0100
28685
28686 ppc4xx: Disable EEPROM write access on PMC440 boards
28687
28688 This patch disables EEPROM wrtie access by default on PMC440 board.
28689
28690 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28691
28692 commit 5b67a1439a73ba6c34007d9ff60a2c6aa90265df
28693 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28694 Date: Wed Dec 10 15:12:56 2008 +0100
28695
28696 ppc4xx: Fix Ethernet PHY LED configuration on PMC440 boards
28697
28698 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28699
28700 commit 71fa0714fe5134bc8718c38d5261d267e88582ba
28701 Author: Stefan Roese <sr@denx.de>
28702 Date: Tue Nov 18 16:36:12 2008 +0100
28703
28704 MIPS: Flush data cache upon relocation
28705
28706 This patch now adds a flush to the data cache upon relocation. The
28707 current implementation is missing this. Only a comment states that it
28708 should be done. So let's really do it now.
28709
28710 Signed-off-by: Stefan Roese <sr@denx.de>
28711 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28712
28713 commit 44174343688dba32571a34550dba08971c65fef1
28714 Author: Stefan Roese <sr@denx.de>
28715 Date: Tue Nov 18 16:36:22 2008 +0100
28716
28717 MIPS: Add CONFIG_SKIP_LOWLEVEL_INIT
28718
28719 This patch adds the CONFIG_SKIP_LOWLEVEL_INIT option to start.S. This
28720 enables support for boards where the lowlevel initialization is
28721 already done when U-Boot runs (e.g. via OnChip ROM).
28722
28723 This will be used in the upcoming VCTH board support.
28724
28725 Signed-off-by: Stefan Roese <sr@denx.de>
28726 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28727
28728 commit db08ecaa6eb8176904b3bae103a85ee8f735dc40
28729 Author: Stefan Roese <sr@denx.de>
28730 Date: Wed Nov 12 13:18:02 2008 +0100
28731
28732 MIPS: Add board_early_init_f() to init_sequence
28733
28734 This patch adds the board_early_init_f() call to the MIPS init
28735 sequence. A weak dummy implementation is also added which can be
28736 overridden by a board specific version.
28737
28738 This will be used by the upcoming VCTH board support.
28739
28740 Signed-off-by: Stefan Roese <sr@denx.de>
28741 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28742
28743 commit 9d23fc584c4b7b8bb9ecbee48920b1b04b08fa1b
28744 Author: Stefan Roese <sr@denx.de>
28745 Date: Wed Nov 12 13:18:19 2008 +0100
28746
28747 MIPS: Add onenand_init() to board.c and move nand_init()
28748
28749 This patch adds a call to onenand_init() for OneNAND support and moves
28750 the nand_init() call to an earlier place, so that the environment can
28751 be used from NAND and OneNAND.
28752
28753 Signed-off-by: Stefan Roese <sr@denx.de>
28754 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28755
28756 commit d8bbc51c7ba9b737a20984333d19fe28a3526431
28757 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28758 Date: Tue Dec 9 11:32:46 2008 +0900
28759
28760 sh: Update sh2/sh2a timer
28761
28762 Renesas SH2/SH2A timer broken.
28763 This patch fix timer function.
28764
28765 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28766 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28767
28768 commit a319f1496210117b73198e3d889ffffaf6825d00
28769 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28770 Date: Fri Dec 5 07:27:37 2008 +0100
28771
28772 sh: r2dplus fix register access
28773
28774 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28775 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28776
28777 commit 4d4a96055f6917335a89dbdf2e5556fa5ac329f6
28778 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28779 Date: Tue Dec 2 07:40:03 2008 +0100
28780
28781 sh: r2dplus/lowlevel_init: coding style fix
28782
28783 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28784 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28785
28786 commit c54b9a42d8f5ab5b2a039b3a2e6fde8b427745e5
28787 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28788 Date: Tue Nov 25 11:05:19 2008 +0900
28789
28790 sh: Changed value of CACHE_OC_NUM_ENTRIES and CACHE_OC_WAY_SHIFT
28791
28792 SH4 is different a value of CACHE_OC_NUM_ENTRIES and
28793 CACHE_OC_WAY_SHIFT every CPU.
28794 This patch corrects these values.
28795
28796 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28797 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28798
28799 commit e9d5f35497885b3c65d494d09a525d443dcccd3b
28800 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28801 Date: Thu Nov 20 16:44:42 2008 +0900
28802
28803 sh: Update sh timer function
28804
28805 Change to write/readX function and fix timer problem.
28806
28807 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28808 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28809
28810 commit b81786cff476c41e332eaeb679158f6527cd67d4
28811 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28812 Date: Tue Nov 4 11:58:58 2008 +0900
28813
28814 sh: Migo-R: Update BSC value
28815
28816 A value of BSC CS4 was wrong, Fixed it.
28817
28818 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28819 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28820
28821 commit 5783758fd260a02f44566ad8f29f899565cd0403
28822 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28823 Date: Mon Nov 17 16:52:09 2008 +0900
28824
28825 sh: Update ms7722se board config
28826
28827 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28828 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28829
28830 commit 15e2697c9f7fb2ba672a1a70f07cd6d9d4e92b51
28831 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28832 Date: Mon Nov 17 16:53:09 2008 +0900
28833
28834 sh: Update SuperH serial driver
28835
28836 The address of SCFSR register is wrong at SH7720/SH7721.
28837 This patch fix this.
28838
28839 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28840 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28841
28842 commit 9a1d3557dcd47365c12eeab584b822e57d994352
28843 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28844 Date: Tue Nov 11 22:20:15 2008 +0100
28845
28846 sh: fix rsk7203 and MigoR out of tree build
28847
28848 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28849 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28850
28851 commit 1951f847f0a851853871b613ad7cf21a5242226c
28852 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28853 Date: Wed Dec 10 14:41:25 2008 +0100
28854
28855 ppc4xx: Update TEXT_BASE for CPCI405 boards
28856
28857 This patch fixes building U-Boot for CPCI405 boards.
28858
28859 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28860 Signed-off-by: Stefan Roese <sr@denx.de>
28861
28862 commit 8c92af7b2fbd60ae87379477f93c7ec9441b7452
28863 Author: Stefan Roese <sr@denx.de>
28864 Date: Tue Dec 9 20:08:01 2008 +0100
28865
28866 ppc4xx: Remove some features from ALPR to fit into 256k again
28867
28868 Signed-off-by: Stefan Roese <sr@denx.de>
28869
28870 commit 3b089e4f889a2902449d55e081c886ae607cae89
28871 Author: Stefan Roese <sr@denx.de>
28872 Date: Wed Dec 10 10:32:59 2008 +0100
28873
28874 UBI: Set ubi_dev.type back to DEV_TYPE_NONE upon failing initialization
28875
28876 With this patch we set the type back to NONE upon failing UBI partition
28877 initialization. Otherwise further calls to the UBI subsystem would try
28878 to really access the non-existing UBI partition.
28879
28880 Thanks to Michael Lawnick for pointing this out.
28881
28882 Signed-off-by: Stefan Roese <sr@denx.de>
28883
28884 commit 817329351639a8895cd9b87b33aeff043f3d5a44
28885 Author: Stefan Roese <sr@denx.de>
28886 Date: Wed Dec 10 10:28:33 2008 +0100
28887
28888 UBI: Return -ENOMEM upon failing malloc
28889
28890 Return with correct error code (-ENOMEM) from ubi_attach_mtd_dev() upon
28891 failing malloc().
28892
28893 Signed-off-by: Stefan Roese <sr@denx.de>
28894
28895 commit 2145188bea2df8f2b47a87ec3071b55027e8d0ae
28896 Author: Ben Warren <biggerbadderben@gmail.com>
28897 Date: Tue Dec 9 23:34:15 2008 -0800
28898
28899 Fix compile error in building MBX860T.
28900
28901 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28902
28903 commit 8fab49ea911fe925392fa5afcc9bc7373a3d0cee
28904 Author: Michal Simek <monstr@monstr.eu>
28905 Date: Tue Nov 25 11:42:20 2008 +0100
28906
28907 microblaze: Remove XUPV2P board
28908
28909 ---
28910
28911 Microblaze platforms use generic settings and to have
28912 many platforms is confusing that's why I decided to remove this
28913 platform from U-BOOT. ml401 tree is sufficient for covering
28914 all Microblaze platforms.
28915
28916 This change will go through microblaze custodian tree.
28917
28918 commit 99ba6f353582720defff6e6e6761dc455a207d31
28919 Author: Michal Simek <monstr@monstr.eu>
28920 Date: Mon Nov 24 18:25:41 2008 +0100
28921
28922 microblaze: Remove CONFIG_LIBFDT due to error in common files
28923
28924 commit e7d591e823a991513833af7030468409e25a3b13
28925 Author: Michal Simek <monstr@monstr.eu>
28926 Date: Mon Nov 24 11:43:00 2008 +0100
28927
28928 microblaze: Fix ml401 uart16550 setting
28929
28930 Signed-off-by: Michal Simek <monstr@monstr.eu>
28931
28932 commit c85ff0553a8cfbcca51c15b947e1ed55d3810a39
28933 Author: Michal Simek <monstr@monstr.eu>
28934 Date: Mon Nov 24 11:38:22 2008 +0100
28935
28936 microblaze: Set up relocation is done
28937
28938 commit bcb6dd9187d4b23c748704767bd12d20c829e996
28939 Author: Mike Frysinger <vapier@gentoo.org>
28940 Date: Tue Dec 9 23:20:31 2008 -0500
28941
28942 tools/netconsole: new script for working with netconsole over UDP
28943
28944 While the doc/README.NetConsole does have a snippet for people to
28945 create their own netcat script, it's a lot easier to make a simple
28946 dedicated script and tell people to use it.
28947
28948 Also spruce it up a bit to make it user friendly.
28949
28950 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28951
28952 commit 8c5170a7d088601d5f30d85093388dab1f1e8ec0
28953 Author: Sonic Zhang <Sonic.Zhang@analog.com>
28954 Date: Tue Dec 9 23:20:18 2008 -0500
28955
28956 fs/fat: handle FAT on SATA
28957
28958 The FAT file system driver should also handle FAT on SATA devices.
28959
28960 Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
28961 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28962
28963 commit 4cd8ed40615a7d741ef2f09ee53779ec6907b8a6
28964 Author: Ben Warren <biggerbadderben@gmail.com>
28965 Date: Tue Dec 9 23:26:31 2008 -0800
28966
28967 Fix compile error in building MBX860T.
28968 Bug was introduced in 9eb79bd8856bcab896ed5e1f1bca159807a124dd
28969
28970 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28971
28972 commit 97a24a78ee6f34b89b821cb70eda1cf34aa11d97
28973 Author: Jerry Van Baren <gvb.uboot@gmail.com>
28974 Date: Mon Nov 24 08:15:02 2008 -0500
28975
28976 libfdt: Fix redefined uintptr_t warning for USE_HOSTCC
28977
28978 Compiling U-Boot in an old OS environment (RedHat-7.3 :-) gives the
28979 following warnings from FDT:
28980
28981 include/libfdt_env.h:50: warning: redefinition of 'uintptr_t'
28982 /usr/include/stdint.h:129: warning: 'uintptr_t' previously declared here
28983
28984 Fix: Protect the definition of uintptr_t when compiling on the host
28985 system.
28986
28987 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
28988
28989 commit 1fc2b165c51d6f40c8d505f1b3eaefdb6599b17b
28990 Author: Graeme Russ <graeme.russ@gmail.com>
28991 Date: Sat Nov 22 08:43:29 2008 +1100
28992
28993 Moved sc520 PCI definitions to stand-alone file
28994
28995 Signed Off By: Graeme Russ <graeme.russ@gmail.com>
28996
28997 commit 1f5070c0c18fa5684bfce09c8abdf10c04ed48fa
28998 Author: Graeme Russ <graeme.russ@gmail.com>
28999 Date: Sat Nov 22 08:43:21 2008 +1100
29000
29001 Fixed path to sc520 SSI include file
29002
29003 Signed Off By: Graeme Russ <graeme.russ@gmail.com>
29004
29005 commit d4f70da544c33db3e4fce6473dea4ecca4322545
29006 Author: Graeme Russ <graeme.russ@gmail.com>
29007 Date: Fri Nov 21 06:28:05 2008 +1100
29008
29009 Fixed build error due to #define of _LINUX_STRING_H_ in 82559_eeprom.c
29010
29011 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
29012
29013 commit c034075a713b60e654c64e88e87da29440f31bb4
29014 Author: Stefan Roese <sr@denx.de>
29015 Date: Wed Nov 12 13:30:10 2008 +0100
29016
29017 serial: Add vcth UART driver
29018
29019 This patch adds the UART driver for the upcoming VCTH board support.
29020
29021 Signed-off-by: Stefan Roese <sr@denx.de>
29022
29023 commit 142a80ffc3b537a9c45acd2444a42a77f147c602
29024 Author: Ilya Yanok <yanok@emcraft.com>
29025 Date: Thu Nov 13 19:49:36 2008 +0300
29026
29027 jffs2: cache data_crc results
29028
29029 As we moved data_crc() invocation from jffs2_1pass_build_lists() to
29030 jffs2_1pass_read_inode() data_crc is going to be calculated on each
29031 inode access. This patch adds caching of data_crc() results. There
29032 is no significant improvement in speed (because of flash access
29033 caching added in previous patch I think, crc in RAM is really fast)
29034 but this patch impacts memory usage -- every b_node structure uses
29035 12 bytes instead of 8.
29036
29037 Signed-off-by: Alexey Neyman <avn@emcraft.com>
29038 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29039
29040 commit 9b7076229ec6a958bd835ab70745f7676297ce82
29041 Author: Ilya Yanok <yanok@emcraft.com>
29042 Date: Thu Nov 13 19:49:35 2008 +0300
29043
29044 jffs2: summary support
29045
29046 This patch adds support for reading fs information from summary
29047 node instead of scanning full eraseblock.
29048
29049 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29050
29051 commit 70741004dc28946cd82c7af6789c4ddb3fc94526
29052 Author: Ilya Yanok <yanok@emcraft.com>
29053 Date: Thu Nov 13 19:49:34 2008 +0300
29054
29055 jffs2: add buffer to cache flash accesses
29056
29057 With this patch JFFS2 code allocates memory buffer of max_totlen size
29058 (size of the largest node, calculated during scan time) and uses it to
29059 store entire node. Speeds up loading. If malloc fails we use old ways
29060 to do things.
29061
29062 Signed-off-by: Alexey Neyman <avn@emcraft.com>
29063 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29064
29065 commit 8a36d31f72411144ac0412ee7e1880e801acd754
29066 Author: Ilya Yanok <yanok@emcraft.com>
29067 Date: Thu Nov 13 19:49:33 2008 +0300
29068
29069 jffs2: rewrite jffs2 scanning code based on Linux one
29070
29071 Rewrites jffs2_1pass_build_lists() function in style of Linux's
29072 jffs2_scan_medium() and jffs2_scan_eraseblock().
29073 This includes:
29074 - Caching flash acceses
29075 - Smart dealing with free space
29076
29077 Signed-off-by: Alexey Neyman <avn@emcraft.com>
29078 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29079
29080 commit e0b5532579eda8b4629f1b4f6e49c3cc60f52237
29081 Author: Ilya Yanok <yanok@emcraft.com>
29082 Date: Thu Nov 13 19:49:32 2008 +0300
29083
29084 jffs2: add sector_size field to part_info structure
29085
29086 This patch adds sector_size field to part_info structure (used
29087 by new JFFS2 code).
29088
29089 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29090
29091 commit f73846956778a7dfee83403ef9747aff77198848
29092 Author: Ilya Yanok <yanok@emcraft.com>
29093 Date: Thu Nov 13 19:49:31 2008 +0300
29094
29095 jffs2: fix searching for latest version in jffs2_1pass_list_inodes()
29096
29097 We need to update i_version inside cycle to find really latest version
29098 inside jffs2_1pass_list_inodes(). With that fixed we can use isize inside
29099 dump_inode() instead of calling expensive jffs2_1pass_read_inode().
29100
29101 Signed-off-by: Alexey Neyman <avn@emcraft.com>
29102 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29103
29104 commit 1113cb764b3da256ef8a1f9539f4efbe221ff3c4
29105 Author: Wolfgang Denk <wd@denx.de>
29106 Date: Tue Dec 9 23:13:51 2008 +0100
29107
29108 evb64260: fix "cast to pointer from integer of different size" warnings
29109
29110 Signed-off-by: Wolfgang Denk <wd@denx.de>
29111
29112 commit d2776827315c3d469b8cb4cec14d58877798daa2
29113 Author: Stefan Althoefer <stefan.althoefer@web.de>
29114 Date: Sun Dec 7 19:39:11 2008 +0100
29115
29116 USB: descriptor handling
29117
29118 Hi,
29119
29120 I found a bug when working with the u-boot USB subsystem on IXP425 processor
29121 (big endian Xscale aka ARMv5).
29122 I recognized that the second usb_endpoint_descriptor of the attached memory
29123 stick was corrupted.
29124
29125 The reason for this are the packed structures below (either u-boot and
29126 u-boot-usb):
29127
29128 --------------
29129 /* Endpoint descriptor */
29130 struct usb_endpoint_descriptor {
29131 unsigned char bLength;
29132 unsigned char bDescriptorType;
29133 unsigned char bEndpointAddress;
29134 unsigned char bmAttributes;
29135 unsigned short wMaxPacketSize;
29136 unsigned char bInterval;
29137 unsigned char bRefresh;
29138 unsigned char bSynchAddress;
29139
29140 } __attribute__ ((packed));
29141 /* Interface descriptor */
29142 struct usb_interface_descriptor {
29143 unsigned char bLength;
29144 unsigned char bDescriptorType;
29145 unsigned char bInterfaceNumber;
29146 unsigned char bAlternateSetting;
29147 unsigned char bNumEndpoints;
29148 unsigned char bInterfaceClass;
29149 unsigned char bInterfaceSubClass;
29150 unsigned char bInterfaceProtocol;
29151 unsigned char iInterface;
29152
29153 unsigned char no_of_ep;
29154 unsigned char num_altsetting;
29155 unsigned char act_altsetting;
29156 struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
29157 } __attribute__ ((packed));
29158 ------------
29159
29160 As usb_endpoint_descriptor is only 7byte in length, the start of all
29161 odd ep_desc[] structures is not word aligned. This makes wMaxPacketSize
29162 of these structures also not word aligned.
29163
29164 ARMv5 Architecture however does not support non-aligned multibyte
29165 data type (see A2.8 of ARM Architecture Reference Manual).
29166
29167 Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
29168 Signed-off-by: Remy Böhmer <linux@bohmer.net>
29169
29170 commit 4c253fdb2a175ea3472c38a1455a16faa58e81f0
29171 Author: Kumar Gala <galak@kernel.crashing.org>
29172 Date: Tue Dec 9 10:27:33 2008 -0600
29173
29174 drivers/fsl_pci_init: Fix compile warning
29175
29176 fsl_pci_init.c: In function 'fsl_pci_setup_inbound_windows':
29177 fsl_pci_init.c:122: warning: comparison is always true due to limited range of data type
29178
29179 The check only makes sense if we are CONFIG_PHYS_64BIT
29180
29181 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29182
29183 commit dedacc18a8c2b3951581eb721fa055a4e0ac4845
29184 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29185 Date: Sun Dec 7 09:45:35 2008 +0100
29186
29187 usbtty/omap: update to current API
29188
29189 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29190 Signed-off-by: Remy Böhmer <linux@bohmer.net>
29191
29192 commit ee2e9ba917a62cc2e3a484bb79c8da0e01cb93ed
29193 Author: Anatolij Gustschin <agust@denx.de>
29194 Date: Tue Dec 9 17:52:05 2008 +0100
29195
29196 video: fix FADS823 and RRvision compiling issues
29197
29198 Since commit 561858ee building for FADS823 and RRvision
29199 doesn't work. Let's include version.h and timestamp.h
29200 unconditionally to fix the problem.
29201
29202 Signed-off-by: Anatolij Gustschin <agust@denx.de>
29203
29204 commit 2d2e05727fe4013f807ffa814dff0e75259a1db4
29205 Author: Stefan Roese <sr@denx.de>
29206 Date: Tue Dec 2 10:53:47 2008 +0100
29207
29208 UBI: Fix size parsing in "ubi create"
29209
29210 Signed-off-by: Stefan Roese <sr@denx.de>
29211
29212 commit 2ee951ba2ac9874d2a93d52e7a187d3184be937e
29213 Author: Stefan Roese <sr@denx.de>
29214 Date: Thu Nov 27 14:07:09 2008 +0100
29215
29216 UBI: Enable re-initializing of the "ubi part" command
29217
29218 With this patch now, the user can call "ubi part" multiple times to
29219 re-connect the UBI device to another MTD partition.
29220
29221 Signed-off-by: Stefan Roese <sr@denx.de>
29222
29223 commit 9def12cae33d2d3ea2dd56b197fd3dfb3ad60bf4
29224 Author: Stefan Roese <sr@denx.de>
29225 Date: Thu Nov 27 14:05:15 2008 +0100
29226
29227 MTD: Fix problem based on non-working relocation (list head mtd_partitions)
29228
29229 Don't use LIST_HEAD() but initialize the struct via INIT_LIST_HEAD() upon
29230 first call of add_mtd_partitions(). Otherwise this won't work on platforms
29231 where the relocation is broken (like MIPS or PPC).
29232
29233 Signed-off-by: Stefan Roese <sr@denx.de>
29234
29235 commit 5e3ab68e9acf9edf304b8aa32ad7e005483a2c47
29236 Author: Trent Piepho <tpiepho@freescale.com>
29237 Date: Wed Nov 12 17:29:48 2008 -0800
29238
29239 Section name should be ".data", not "data"
29240
29241 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
29242 Signed-off-by: Wolfgang Denk <wd@denx.de>
29243
29244 commit 7fa6a2f3b66579dea8bc1a9177646e1141731b15
29245 Author: Wolfgang Denk <wd@denx.de>
29246 Date: Tue Dec 9 00:39:08 2008 +0100
29247
29248 MAKEALL: Automatically use parallel builds
29249
29250 Add logic to the MAKEALL script to determine the number of CPU cores
29251 on the system, and run a parallel build if there is more than one.
29252 Usually this significantrly accelerates builds.
29253
29254 Allow to manually adjust the number of parallel make jobs by using
29255 the "BUILD_NCPUS" environment variable.
29256
29257 Signed-off-by: Wolfgang Denk <wd@denx.de>
29258
29259 commit 268405fa7c44156c5192a70779920c70906af8d6
29260 Author: Wolfgang Denk <wd@denx.de>
29261 Date: Tue Dec 9 00:24:30 2008 +0100
29262
29263 vxworks.h: Fix build problem introduced by commits 29a4c24d/e9084b23
29264
29265 Signed-off-by: Wolfgang Denk <wd@denx.de>
29266
29267 commit 153176a9414120ca1736f3cc4951623d6e14e6af
29268 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29269 Date: Tue Nov 11 06:08:59 2008 +0100
29270
29271 avr32/bootm: remove unused variable 'ret'
29272
29273 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29274 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29275
29276 commit 434c51a5e62f608a2a78ed5398ac43a1c77cc183
29277 Author: Peter Tyser <ptyser@xes-inc.com>
29278 Date: Wed Nov 12 13:06:48 2008 -0600
29279
29280 Remove unneeded CONFIG_SHELL references
29281
29282 Make should be using the bash shell by default which makes
29283 CONFIG_SHELL unnecessary
29284
29285 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29286
29287 commit cf7a7b99794bac936899819b95539be1dbd71708
29288 Author: Peter Tyser <ptyser@xes-inc.com>
29289 Date: Wed Nov 12 12:33:20 2008 -0600
29290
29291 Use bash for default GNU Make shell application
29292
29293 Some Make script commands rely on bash-specific features like brace
29294 expansion, so default to bash for the SHELL variable with a fallback
29295 to the standard sh shell
29296
29297 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29298
29299 commit 4b530018764934ad5689196e9aa5714a6f4d1a6c
29300 Author: Heiko Schocher <hs@denx.de>
29301 Date: Wed Nov 12 09:50:45 2008 +0100
29302
29303 jffs2: rename devices_init () in common/jffs2.c
29304
29305 rename devices_init () in common/jffs2.c to
29306 jffs2_devices_init (), because there is also a
29307 devices_init () in common/devices.c.
29308
29309 Signed-off-by: Heiko Schocher <hs@denx.de>
29310
29311 commit af5eb847a10f1037590001355d88bab3fe7be48b
29312 Author: Daniel Hellstrom <daniel@gaisler.com>
29313 Date: Mon Nov 10 12:46:20 2008 +0000
29314
29315 SPARC: Fixed compiler error introduced by commit c160a9544743
29316
29317 This patch fixes a build error for the SPARC platform. It was
29318 introduced by commit c160a9544743e80e8889edb2275538e7764ce334.
29319
29320 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
29321
29322 commit 4c60259899aa00f59db0d936b8807f9a26411c0f
29323 Author: Gary Jennejohn <garyj@denx.de>
29324 Date: Sun Nov 9 12:50:59 2008 +0100
29325
29326 mgsuvd add the board-specific part of the HDLC driver
29327
29328 Signed-off-by: Gary Jennejohn <garyj@denx.de>
29329
29330 commit 534a4359666af48bd69a3743d8a8c2bdb1d3ec70
29331 Author: Gary Jennejohn <garyj@denx.de>
29332 Date: Sun Nov 9 12:45:03 2008 +0100
29333
29334 mgcoge add the board-specific part of the HDLC driver
29335
29336 Signed-off-by: Gary Jennejohn <garyj@denx.de>
29337
29338 commit 135f5534538bb8ea4f38a7030da12187d22ef7e0
29339 Author: Gary Jennejohn <garyj@denx.de>
29340 Date: Sun Nov 9 12:36:15 2008 +0100
29341
29342 keymile add the common parts of the HDLC driver
29343
29344 This implements the ICN protocol used across the backplane and is
29345 needed by all the keymile boards.
29346
29347 Signed-off-by: Gary Jennejohn <garyj@denx.de>
29348
29349 commit 1cb82a9207a550557399eabc7fe47f21bbd9ddf8
29350 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29351 Date: Fri Nov 7 22:46:22 2008 +0100
29352
29353 drivers/bios_emulator: Move conditional compilation to Makefile
29354
29355 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29356
29357 commit bcdf1d2cf6b24fb905fd7da80da4b3c65a7995b5
29358 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
29359 Date: Thu Nov 6 14:01:51 2008 -0500
29360
29361 common/cmd_ide.c: Corrected endian order printing for compact flash serial number.
29362
29363 Corrected endian order printing for compact flash serial number.
29364
29365 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
29366
29367 commit 16a28ef219c27423a1ef502f19070c4d375079b8
29368 Author: Gary Jennejohn <garyj@denx.de>
29369 Date: Thu Nov 6 15:04:23 2008 +0100
29370
29371 IOMUX: Add console multiplexing support.
29372
29373 Modifications to support console multiplexing. This is controlled using
29374 CONFIG_SYS_CONSOLE_MUX in the board configuration file.
29375
29376 This allows a user to specify multiple console devices in the environment
29377 with a command like this: setenv stdin serial,nc. As a result, the user can
29378 enter text on both the serial and netconsole interfaces.
29379
29380 All devices - stdin, stdout and stderr - can be set in this manner.
29381
29382 1) common/iomux.c and include/iomux.h contain the environment setting
29383 implementation.
29384 2) doc/README.iomux contains a somewhat more detailed description.
29385 3) The implementation in (1) is called from common/cmd_nvedit.c to
29386 handle setenv and from common/console.c to handle initialization of
29387 input/output devices at boot time.
29388 4) common/console.c also contains the code needed to poll multiple console
29389 devices for input and send output to all devices registered for output.
29390 5) include/common.h includes iomux.h and common/Makefile generates iomux.o
29391 when CONFIG_SYS_CONSOLE_MUX is set.
29392
29393 Signed-off-by: Gary Jennejohn <garyj@denx.de>
29394
29395 commit 774ce72026f74ac9641bcbbc588b20f2e13f7ab8
29396 Author: Mike Frysinger <vapier@gentoo.org>
29397 Date: Tue Nov 4 16:03:46 2008 -0500
29398
29399 strings: use puts() rather than printf()
29400
29401 When running `strings` on really long strings, the stack tends to get
29402 smashed due to printf(). Switch to puts() instead since we're only passing
29403 the data through.
29404
29405 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29406
29407 commit b03150b52e3c491a86a3cc0945274f0e8f9872e7
29408 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
29409 Date: Mon Nov 3 22:16:18 2008 +0100
29410
29411 Use new CONFIG_SYS_VXWORKS parameters for Netstal boards
29412
29413 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
29414
29415 commit 29a4c24de99d8cb4ac32991c04cab87ed94ca1f9
29416 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
29417 Date: Mon Nov 3 22:15:34 2008 +0100
29418
29419 cmd_elf.c: Cleanup bootvx and handle new CONFIG_SYS_VXWORKS parameters
29420
29421 - fix size too small by one in sprintf
29422 - changed old (pre 2004) device name ibmEmac to emac
29423 - boot device may be overriden in board config
29424 - servername may be defined in board config
29425 - additional parameters may be defined in board config
29426 - fixed some line wrappings
29427 - replaced redundant MAX define by max
29428
29429 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
29430
29431 commit e9084b23d16102f44ace24379a1c0c352497ef80
29432 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
29433 Date: Mon Nov 3 22:14:36 2008 +0100
29434
29435 Add vxworks.h to handle CONFIG_SYS_VXWORKS parameters
29436
29437 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
29438
29439 commit 0b2f4ecad473d785959c7976f20d2a00bd0ee01f
29440 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
29441 Date: Mon Nov 3 22:13:47 2008 +0100
29442
29443 README: Document CONFIG_SYS parameters for vxworks
29444
29445 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
29446
29447 commit ace514837cac656e29c37a19569cb8ea83071126
29448 Author: Peter Tyser <ptyser@xes-inc.com>
29449 Date: Fri Oct 31 11:12:38 2008 -0500
29450
29451 lcd: Let the board code show board-specific info cleanup
29452
29453 remove unneeded version.h from lcd.c
29454
29455 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29456 Signed-off-by: Wolfgang Denk <wd@denx.de>
29457
29458 commit 561858ee7d0274c3e89dc98d4d0698cb6fcf6fd9
29459 Author: Peter Tyser <ptyser@xes-inc.com>
29460 Date: Mon Nov 3 09:30:59 2008 -0600
29461
29462 Update U-Boot's build timestamp on every compile
29463
29464 Use the GNU 'date' command to auto-generate a new U-Boot
29465 timestamp on every compile.
29466
29467 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29468
29469 commit 83ad179e2f0f625b88adb8ef5696709e46fb9077
29470 Author: Remy Bohmer <linux@bohmer.net>
29471 Date: Thu Dec 4 22:25:57 2008 +0100
29472
29473 Remove redundant armv4 flag from arm926ejs compile flags
29474
29475 Currently the arm926ejs tree has the armv4 option set during compilation.
29476 This flag does not belong here because a arm926 CPU is always a armv5 CPU.
29477
29478 Signed-off-by: Remy Bohmer <linux@bohmer.net>
29479
29480 commit 89a7a87f084c657f8e32b513a77b50eca07e17ec
29481 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
29482 Date: Sat Dec 6 13:11:14 2008 +0100
29483
29484 at91: Choose environment variables location within make config target
29485
29486 This patch adds the possiblity to choose the media where the environment will
29487 be located. This allow to choose this fundamental configuration without editing
29488 config files.
29489
29490 Documentation file added.
29491
29492 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
29493 Acked-by: Stelian Pop <stelian@popies.net>
29494 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29495
29496 commit 1450c4a6682378567030414a9f1198c39b7730c7
29497 Author: Anatolij Gustschin <agust@denx.de>
29498 Date: Mon Nov 3 15:30:34 2008 +0100
29499
29500 lwmon, tqm8xx: Fix build errors
29501
29502 Commit 6b59e03e0237a40a2305ea385defdfd92000978b
29503 lcd: Let the board code show board-specific info
29504
29505 introduced some bugs which prevent U-Boot building
29506 for lwmon board if CONFIG_LCD_INFO_BELOW_LOGO will
29507 be defined in the board configuration.
29508
29509 Also "LCD enabled" building for TQM823L doesn't work
29510 since this commit.
29511
29512 This patch fixes above-mentioned issues.
29513
29514 Signed-off-by: Anatolij Gustschin <agust@denx.de>
29515
29516 commit bfa0af6b22ff25b0719a8910f9b6d1f975aa6fb0
29517 Author: Mike Frysinger <vapier@gentoo.org>
29518 Date: Sun Nov 2 01:18:18 2008 -0400
29519
29520 ignore .gdb_history files
29521
29522 When using gdb, history files will often get generated. So ignore them.
29523
29524 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29525
29526 commit c8aa7dfc18f7cc90d0aea6c7becbb67dfc5bba4b
29527 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29528 Date: Fri Oct 31 12:26:55 2008 +0100
29529
29530 FPGA: move fpga drivers to drivers/fpga
29531
29532 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29533
29534 commit 6a86bb6c25376f0358478219fa28d7c84dd01ed0
29535 Author: Peter Tyser <ptyser@xes-inc.com>
29536 Date: Mon Dec 1 16:29:38 2008 -0600
29537
29538 net: Fix TftpStart() ip:filename bug
29539
29540 The TftpStart() function modifies the 'BootFile'
29541 string when 'BootFile' contains both an IP address
29542 and filename (eg 1.2.3.4:/path/file). This causes
29543 subsequent calls to TftpStart to incorrectly parse
29544 the TFTP filename and server IP address to use.
29545 For example:
29546
29547 => tftp 0x100000 10.52.0.62:/home/ptyser/non_existant
29548 Speed: 100, half duplex
29549 Using eTSEC1 device
29550 TFTP from server 10.52.0.62; our IP address is 10.52.253.79
29551 ^^^^^^^^^^ CORRECT
29552 Filename '/home/ptyser/non_existant'.
29553 ^^^^^^^^^^^^^^^^^^^^^^^^^ CORRECT
29554 Load address: 0x100000
29555 Loading: *
29556 TFTP error: 'File not found' (1)
29557 Starting again
29558
29559 eTSEC2: No link.
29560 Speed: 100, half duplex
29561 Using eTSEC1 device
29562 TFTP from server 10.52.0.33; our IP address is 10.52.253.79
29563 ^^^^^^^^^^ WRONG
29564 Filename '10.52.0.62'.
29565 ^^^^^^^^^^ WRONG
29566 Load address: 0x100000
29567 Loading: *
29568 TFTP error: 'File not found' (1)
29569 Starting again
29570
29571 TftpStart() was modified to not modify the 'BootFile' string.
29572
29573 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29574 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29575
29576 commit d32c5be50bf0600bfdc54223ef341ee9c63db445
29577 Author: Peter Tyser <ptyser@xes-inc.com>
29578 Date: Mon Dec 1 16:26:21 2008 -0600
29579
29580 net: Add additional IP fragmentation check
29581
29582 Ignore IP packets which have the "more fragments" flag bit
29583 set. This flag indicates the IP packet is fragmented and
29584 must be ignored by U-Boot.
29585
29586 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29587 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29588
29589 commit e0c07b868cab405ab4b5335a0247899bfc5ea0b6
29590 Author: Peter Tyser <ptyser@xes-inc.com>
29591 Date: Mon Dec 1 16:26:20 2008 -0600
29592
29593 net: Define IP flag field values
29594
29595 These defines were pulled from the "Add simple
29596 IP/UDP fragmentation support" patch from Frank
29597 Haverkamp <haver@vnet.ibm.com>.
29598
29599 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29600 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29601
29602 commit 23afaba65ec5206757e589ef334a8b38168c045f
29603 Author: Anatolij Gustschin <agust@denx.de>
29604 Date: Tue Dec 2 10:31:04 2008 +0100
29605
29606 net: tsec: Fix Marvell 88E1121R phy init
29607
29608 This patch tries to ensure that phy interrupt pin
29609 won't be asserted after booting. We experienced
29610 following issues with current 88E1121R phy init:
29611
29612 Marvell 88E1121R phy can be hardware-configured
29613 to share MDC/MDIO and interrupt pins for both ports
29614 P0 and P1 (e.g. as configured on socrates board).
29615 Port 0 interrupt pin will be shared by both ports
29616 in such configuration. After booting Linux and
29617 configuring eth0 interface, port 0 phy interrupts
29618 are enabled. After rebooting without proper eth0
29619 interface shutdown port 0 phy interrupts remain
29620 enabled so any change on port 0 (link status, etc.)
29621 cause assertion of the interrupt. Now booting Linux
29622 and configuring eth1 interface will cause permanent
29623 phy interrupt storm as the registered phy 1 interrupt
29624 handler doesn't acknowledge phy 0 interrupts. This
29625 of course should be fixed in Linux driver too.
29626
29627 Signed-off-by: Anatolij Gustschin <agust@denx.de>
29628 Acked-by: Andy Fleming <afleming@freescale.com>
29629 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29630
29631 commit 2e4970d8109d690adcf615d9e3cac7b5b2e8eaed
29632 Author: Peter Tyser <ptyser@xes-inc.com>
29633 Date: Tue Dec 2 12:59:51 2008 -0600
29634
29635 net: Fix download command parsing
29636
29637 When CONFIG_SYS_HUSH_PARSER is defined network download
29638 commands with 1 argument in the format 'tftp "/path/file"'
29639 do not work as expected. The hush command parser strips
29640 the quotes from "/path/file" which causes the network
29641 commands to interpret "/path/file" as an address
29642 instead of the intended filename.
29643
29644 The previous check for a leading quote in netboot_common()
29645 was replaced with a check which ensures only valid
29646 numbers are treated as addresses.
29647
29648 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29649 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29650
29651 commit 3c2c2f427905040c1513d0c51d637689cba48346
29652 Author: Remy Bohmer <linux@bohmer.net>
29653 Date: Thu Nov 27 22:30:27 2008 +0100
29654
29655 Remove non-ascii characters from fat code
29656
29657 This code contains some non-ascii characters in comment lines and code.
29658 Most editors do not display those characters properly and editing those
29659 files results always in diffs at these places which are usually not required
29660 to be changed at all. This is error prone.
29661
29662 So, remove those weird characters and replace them by normal C-style
29663 equivalents for which the proper defines were already in the header.
29664
29665 Signed-off-by: Remy Bohmer <linux@bohmer.net>
29666
29667 commit dc889e865356497d3e495570118c2245ebce2631
29668 Author: Dave Liu <daveliu@freescale.com>
29669 Date: Fri Nov 28 20:16:58 2008 +0800
29670
29671 85xx: fix the wrong DDR settings for MPC8572DS
29672
29673 The default DDR freq is 400MHz or 800M data rate,
29674 the old settings is pure wrong for the default case.
29675
29676 Signed-off-by: Dave Liu <daveliu@freescale.com>
29677 Acked-by: Andy Fleming <afleming@freescale.com>
29678
29679 commit 9df59533f77de2829b4b66e5b7620e04edaa391c
29680 Author: Kumar Gala <galak@kernel.crashing.org>
29681 Date: Mon Nov 24 10:29:26 2008 -0600
29682
29683 85xx: init gd as early as possible
29684
29685 Moved up the initialization of GD so C code like set_tlb() can use
29686 gd->flags to determine if we've relocated or not in the future.
29687
29688 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29689 Acked-by: Andy Fleming <afleming@freescale.com>
29690
29691 commit aed461af81012a398a205e9be67ab37667491838
29692 Author: Kumar Gala <galak@kernel.crashing.org>
29693 Date: Mon Nov 24 10:29:25 2008 -0600
29694
29695 85xx: Fix relocation of CCSRBAR
29696
29697 If the virtual address for CCSRBAR is the same after relocation but
29698 the physical address is changing we'd end up having two TLB entries with
29699 the same VA. Instead we new us the new CCSRBAR virt address + 4k as a
29700 temp virt address to access the old CCSRBAR to relocate it.
29701
29702 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29703 Acked-by: Andy Fleming <afleming@freescale.com>
29704
29705 commit ea154a1781135d822eedee7567cc156089eae93c
29706 Author: Kumar Gala <galak@kernel.crashing.org>
29707 Date: Mon Nov 24 10:25:14 2008 -0600
29708
29709 FSL: Moved BR_PHYS_ADDR for localbus to common header
29710
29711 The BR_PHYS_ADDR macro is useful on all machines that have local bus
29712 which is pretty much all 83xx/85xx/86xx chips.
29713
29714 Additionally most 85xx & 86xx will need it if they want to support
29715 36-bit physical addresses.
29716
29717 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29718 Acked-by: Andy Fleming <afleming@freescale.com>
29719
29720 commit 9427ccde0355a2ebf47454e8e1be59f5b9864e08
29721 Author: Peter Tyser <ptyser@xes-inc.com>
29722 Date: Mon Dec 1 13:47:12 2008 -0600
29723
29724 85xx: Add PORDEVSR_PCI1 define
29725
29726 Add define used to determine if PCI1 interface is in PCI or PCIX mode.
29727
29728 Convert users of the old PORDEVSR_PCI constant to use MPC85xx_PORDEVSR_PCI1
29729
29730 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29731 Signed-off-by: Andy Fleming <afleming@freescale.com>
29732
29733 commit 35db1c6d34b57ae15e99cf03c8e8f8a6148d74f3
29734 Author: Becky Bruce <becky.bruce@freescale.com>
29735 Date: Fri Nov 21 19:24:22 2008 -0600
29736
29737 drivers/fsl_pci_init: Fix inbound window mapping bug
29738
29739 The current code will cause the creation of a 4GB window
29740 starting at 0 if we have more than 4GB of RAM installed,
29741 which overlaps with PCI_MEM space and causes pci_bus_to_phys()
29742 to return erroneous information. Limit the size to 4GB - 1;
29743 which causes the code to create one 2GB and one 1GB window
29744 instead.
29745
29746 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
29747 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29748 Acked-by: Andy Fleming <afleming@freescale.com>
29749
29750 commit 5a105a333dab6a23e92d763ce76d6f31d57f45df
29751 Author: Jon Loeliger <jdl@freescale.com>
29752 Date: Thu Nov 20 15:36:48 2008 -0600
29753
29754 Removed unused CONFIG_L1_INIT_RAM symbol.
29755
29756 Prevent further viral propogation of the unused
29757 symbol CONFIG_L1_INIT_RAM by just removing it.
29758
29759 Signed-off-by: Jon Loeliger <jdl@freescale.com>
29760 Acked-by: Andy Fleming <afleming@freescale.com>
29761
29762 commit 7008d26a40a76f90cae5824c812cfed449fb97b8
29763 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
29764 Date: Wed Oct 29 09:21:44 2008 -0500
29765
29766 fsl ddr skip interleaving if not supported.
29767
29768 Removed while(1) hang if memctl_intlv_ctl is set wrong.
29769 Remove embedded tabs from strings.
29770
29771 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
29772 Acked-by: Kumar Gala <galak@kernel.crashing.org>
29773 Acked-by: Andy Fleming <afleming@freescale.com>
29774
29775 commit dd332e18d082de75eca3fc2c7c778f5d4571a096
29776 Author: Anatolij Gustschin <agust@denx.de>
29777 Date: Thu Nov 13 18:08:57 2008 +0100
29778
29779 85xx: socrates: fix DDR SDRAM tlb entry configuration
29780
29781 since commit be0bd8234b9777ecd63c4c686f72af070d886517
29782 tlb entry for socrates DDR SDRAM will be reconfigured
29783 by setup_ddr_tlbs() from initdram() causing an
29784 inconsistency with previously configured DDR SDRAM tlb
29785 entry from tlb_table:
29786
29787 socrates>l2cam 7 9
29788 IDX PID EPN SIZE V TS RPN U0-U3 WIMGE UUUSSS
29789 7 : 00 00000000 256MB V 0 -> 0_00000000 0000 -I-G- ---RWX
29790 8 : 00 00000000 256MB V 0 -> 0_00000000 0000 ----- ---RWX
29791 9 : 00 10000000 256MB V 0 -> 0_10000000 0000 ----- ---RWX
29792
29793 This patch makes the presence of the DDR SDRAM tlb entry in
29794 the tlb_table dependent on CONFIG_SPD_EEPROM to avoid this
29795 inconsistency.
29796
29797 Signed-off-by: Anatolij Gustschin <agust@denx.de>
29798 Acked-by: Andy Fleming <afleming@freescale.com>
29799
29800 commit a2cd50ed6ef0ac6b127b3d6db756979a8336718d
29801 Author: Peter Tyser <ptyser@xes-inc.com>
29802 Date: Tue Nov 11 10:17:10 2008 -0600
29803
29804 85xx: Add CPU 2 errata workaround to all 8548 boards
29805
29806 All mpc8548-based boards should implement the suggested workaround
29807 to CPU 2 errata. Without the workaround, its possible for the
29808 8548's core to hang while executing a msync or mbar 0 instruction
29809 and a snoopable transaction from an I/O master tagged to make
29810 quick forward progress is present.
29811
29812 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29813 Acked-by: Andy Fleming <afleming@freescale.com>
29814
29815 commit e57f0fa1333cdf3ca36110aac2900712a5f82976
29816 Author: Dave Liu <daveliu@freescale.com>
29817 Date: Tue Oct 28 17:53:45 2008 +0800
29818
29819 85xx: the DDR tlb is missed for the !CONFIG_SPD_EEPROM case
29820
29821 we need TLB entry for DDR at !SPD case.
29822
29823 Signed-off-by: Dave Liu <daveliu@freescale.com>
29824 Acked-by: Andy Fleming <afleming@freescale.com>
29825
29826 commit 9b0ad1b1c7a15ff674978705c7c52264978dc5d8
29827 Author: Dave Liu <daveliu@freescale.com>
29828 Date: Tue Oct 28 17:53:38 2008 +0800
29829
29830 85xx: remove the unused ddr_enable_ecc in the board file
29831
29832 The DDR controller of 8548/8544/8568/8572/8536 processors
29833 have the ECC data init feature, and the new DDR code is
29834 using the feature, and we don't need the way with DMA to
29835 init memory any more.
29836
29837 Signed-off-by: Dave Liu <daveliu@freescale.com>
29838 Acked-by: Andy Fleming <afleming@freescale.com>
29839
29840 commit 4a129a57d923f7c15aa1f567028a80a32d66a100
29841 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29842 Date: Sun Nov 30 19:36:53 2008 +0100
29843
29844 at91rm9200dk: Fix typo
29845
29846 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29847
29848 commit ed3b18e05c9a8ffa5fb643da9bcec7452e5d5e01
29849 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29850 Date: Sun Nov 30 19:36:50 2008 +0100
29851
29852 AT91: remove non supported board AT91RM9200DF macro
29853
29854 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29855
29856 commit bd876772ee04095e5dd943d97515a1f14bad4b1c
29857 Author: Ilko Iliev <iliev@ronetix.at>
29858 Date: Tue Dec 2 17:27:54 2008 +0100
29859
29860 mtd/dataflash.c: fix a problem with the last partition
29861
29862 This patch fix the problem that only the [NB_DATAFLASH_AREA - 1] dataflash
29863 partition can be defined to use the area to the end of dataflash size.
29864 Now it is possible to have only one dataflash partition from 0 to the end
29865 of of dataflash size.
29866
29867 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
29868
29869 commit 03f797793b124dccaae145b977d15d6cb9e74504
29870 Author: Ilko Iliev <iliev@ronetix.at>
29871 Date: Tue Dec 2 17:20:17 2008 +0100
29872
29873 fix some coding style violations.
29874
29875 This patch fix some coding style violations.
29876
29877 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
29878
29879 commit 5e46b1e54112f4b7fd5185665e571510132c12a7
29880 Author: Stefan Roese <sr@denx.de>
29881 Date: Thu Nov 27 14:11:37 2008 +0100
29882
29883 OneNAND: Add missing mtd info struct before calling onenand_erase()
29884
29885 Without this patch "saveenv" crashes when MTD partitions are enabled (e.g.
29886 for use in UBI) via CONFIG_MTD_PARTITIONS.
29887
29888 Signed-off-by: Stefan Roese <sr@denx.de>
29889 Signed-off-by: Scott Wood <scottwood@freescale.com>
29890
29891 commit 29382d4064fbaff5daacff4c3209370fa5713966
29892 Author: Becky Bruce <becky.bruce@freescale.com>
29893 Date: Thu Nov 20 16:43:52 2008 -0600
29894
29895 mpc8641: Fix error in README
29896
29897 I made some updates to the code that didn't make it into the
29898 README - fix this
29899
29900 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
29901
29902 commit 801a194616d95e6fc426a176d9615ccbf9876c7f
29903 Author: Jon Loeliger <jdl@freescale.com>
29904 Date: Thu Nov 20 12:01:02 2008 -0600
29905
29906 Removed unused CONFIG_L1_INIT_RAM symbol.
29907
29908 Prevent further viral propogation of the unused
29909 symbol CONFIG_L1_INIT_RAM by just removing it.
29910
29911 Signed-off-by: Jon Loeliger <jdl@freescale.com>
29912
29913 commit f698738e46cb461e28c2d58228bb34a2fcf5a475
29914 Author: Jon Loeliger <jdl@freescale.com>
29915 Date: Thu Nov 20 14:02:56 2008 -0600
29916
29917 86xx: Fix non-64-bit compilation problems.
29918
29919 Introducing 64-bit (36-bit) support for the MPC8641HPCN
29920 failed to accomodate the other two 86xx boards.
29921 Introduce definitions for CONFIG_SYS_CCSRBAR_PHYS_{LOW,HIGH}
29922 CONFIG_SYS_CCSR_DEFAULT_DBAT{U,L} and CONFIG_SYS_CCSR_DEFAULT_IBAT{U,L}
29923 with nominal 32-bit values.
29924
29925 Signed-off-by: Jon Loeliger <jdl@freescale.com>
29926 Acked-by: Becky Bruce <becky.bruce@freescale.com>
29927
29928 commit bebfc6ef3ec994c8e18783269b1d8d41f8e38afd
29929 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
29930 Date: Wed Nov 26 17:40:37 2008 +0100
29931
29932 Remove obsolete command (apply afte USB style patch, 80 chars strict)
29933
29934 Remove USB obsolete commmand
29935
29936 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
29937 Signed-off-by: Remy Böhmer <linux@bohmer.net>
29938
29939 commit de39f8c19d7c12017248c49d432dcb81db68f724
29940 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
29941 Date: Wed Nov 26 17:41:34 2008 +0100
29942
29943 USB style patch, 80 chars strict
29944
29945 USB Code style patch
29946
29947 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
29948 Signed-off-by: Remy Böhmer <linux@bohmer.net>
29949
29950 commit d10c5a87cb8affbb4d35a311370316d4383d598e
29951 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29952 Date: Fri Nov 7 22:46:21 2008 +0100
29953
29954 drivers/usb: Move conditional compilation to Makefile
29955
29956 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29957 Signed-off-by: Remy Böhmer <linux@bohmer.net>
29958
29959 commit 2077e348c2a84901022ad95311b47b70361e6daa
29960 Author: Scott Wood <scottwood@freescale.com>
29961 Date: Tue Nov 25 10:47:02 2008 -0600
29962
29963 NAND: Fix misplaced return statement in nand_{read,write}_skip_bad().
29964
29965 This caused the operation to be needlessly repeated if there were
29966 no bad blocks and no errors.
29967
29968 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
29969 Signed-off-by: Scott Wood <scottwood@freescale.com>
29970
29971 commit 89295028e7d8f7a524f485328279d72fdb102385
29972 Author: Michal Simek <monstr@monstr.eu>
29973 Date: Mon Nov 24 12:09:50 2008 +0100
29974
29975 ppc4xx: ml300 remove Xilinx BSP from ml300 folder
29976
29977 This BSP should be outside u-boot source tree.
29978 The second reason is that xilinx ppc405 was moved to generic platform.
29979
29980 Signed-off-by: Michal Simek <monstr@monstr.eu>
29981 Signed-off-by: Stefan Roese <sr@denx.de>
29982
29983 commit 24eea623d4974a169026a975ba12fb23d48154b1
29984 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29985 Date: Mon Nov 24 15:11:10 2008 +0100
29986
29987 ppc4xx: Remove unused features
29988
29989 This patch disables some unused features from the PCI405 configuration
29990 to keep U-Boot image size below 192k.
29991
29992 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29993 Signed-off-by: Stefan Roese <sr@denx.de>
29994
29995 commit 0c2385c3bb51f5d3911fce1ec4720db86b534c2b
29996 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29997 Date: Mon Nov 24 15:11:09 2008 +0100
29998
29999 ppc4xx: Use correct io accessors for PCI405
30000
30001 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30002 Signed-off-by: Stefan Roese <sr@denx.de>
30003
30004 commit 348c849d86a6f0785752b9bc497a34658713d1d1
30005 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30006 Date: Mon Nov 24 15:11:08 2008 +0100
30007
30008 ppc4xx: Remove unused code from PCI405 code
30009
30010 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30011 Signed-off-by: Stefan Roese <sr@denx.de>
30012
30013 commit 633639587e3596f0dbf5e6247dd3faf80b1d9063
30014 Author: Heiko Schocher <hs@denx.de>
30015 Date: Thu Nov 20 09:59:09 2008 +0100
30016
30017 powerpc, keymile boards: extract identical config options
30018
30019 This patch extracts the identical config options for the
30020 keymile boards mgcoge, mgsuvd and kmeter1 in a new
30021 common config file keymile-common.h.
30022
30023 Signed-off-by: Heiko Schocher <hs@denx.de>
30024 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30025
30026 commit 9482a8e3d6ac766d90e5059dce777b1e4c868a30
30027 Author: Heiko Schocher <hs@denx.de>
30028 Date: Fri Nov 21 08:29:40 2008 +0100
30029
30030 powerpc: keymile: Add a check for the PIGGY debug board
30031
30032 Check the presence of the PIGGY on the keymile boards mgcoge,
30033 mgsuvd and kmeter1. If the PIGGY is not present, dont register
30034 this Ethernet device.
30035
30036 Signed-off-by: Heiko Schocher <hs@denx.de>
30037 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30038
30039 commit 58c696eed839af894e0265064669c402dc28b371
30040 Author: Wolfgang Denk <wd@xpert.denx.de>
30041 Date: Mon Nov 24 21:50:59 2008 +0100
30042
30043 AT91RM9200DK: fix broken boot from NOR flash
30044
30045 Signed-off-by: Wolfgang Denk <wd@denx.de>
30046
30047 commit 8052352f20b33bef8f9872fc983eac73d4693c38
30048 Author: Jens Scharsig <esw@bus-elektronik.de>
30049 Date: Tue Nov 18 10:48:46 2008 +0100
30050
30051 at91rm9200: fix broken boot from nor flash
30052
30053 This patch fix the broken boot from NOR Flash on AT91RM9200 boards, if
30054 CONFIG_AT91RM9200 is defined and nor preloader is used.
30055
30056 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
30057
30058 commit 25ea652e907516a283b38237e83712a918f125d7
30059 Author: Piotr Ziecik <kosmo@semihalf.com>
30060 Date: Mon Nov 17 15:58:00 2008 +0100
30061
30062 UBI: Add proof-of-concept CFI flash support
30063
30064 With this patch UBI can be used on CFI flash chips.
30065
30066 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
30067 Signed-off-by: Stefan Roese <sr@denx.de>
30068
30069 commit e6a7edbc1778d27431ac663b40a71dafa5d20578
30070 Author: Piotr Ziecik <kosmo@semihalf.com>
30071 Date: Mon Nov 17 15:57:59 2008 +0100
30072
30073 mtd: Remove a printf() from add_mtd_device().
30074
30075 Remove a printf() from add_mtd_device(), which produces spurious output.
30076
30077 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
30078 Signed-off-by: Stefan Roese <sr@denx.de>
30079
30080 commit 91809ed51d8327a8dbbf29aa98a091154c282171
30081 Author: Piotr Ziecik <kosmo@semihalf.com>
30082 Date: Mon Nov 17 15:57:58 2008 +0100
30083
30084 cfi-mtd: Add cfi-mtd driver.
30085
30086 Add cfi-mtd driver, which exports CFI flash to MTD layer.
30087 This allows CFI flash devices to be used from MTD layer.
30088
30089 Building of the new driver is controlled by CONFIG_FLASH_CFI_MTD
30090 option. Initialization is done by calling cfi_mtd_init() from
30091 flash_init().
30092
30093 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
30094 Signed-off-by: Stefan Roese <sr@denx.de>
30095
30096 commit 6ea808efdf9aa5d9067fbfac32acde8539129ed2
30097 Author: Piotr Ziecik <kosmo@semihalf.com>
30098 Date: Mon Nov 17 15:49:32 2008 +0100
30099
30100 cfi_flash: Add interface for flash verbosity control
30101
30102 Add interface for flash verbosity control. It allows
30103 to disable output from low-level flash API. It is useful
30104 when calling these low-level functions from context other
30105 than flash commands (for example the MTD/CFI interface
30106 implmentation).
30107
30108 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
30109 Signed-off-by: Stefan Roese <sr@denx.de>
30110
30111 commit ebc9784ce6528385bb8d2558e783622d4bbf20f8
30112 Author: Piotr Ziecik <kosmo@semihalf.com>
30113 Date: Thu Nov 20 15:17:38 2008 +0100
30114
30115 cfi_flash: Export flash_sector_size() function.
30116
30117 Export flash_sector_size() function from drivers/mtd/cfi_flash.c,
30118 so that it can be used in the upcoming cfi-mtd driver.
30119
30120 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
30121 Signed-off-by: Stefan Roese <sr@denx.de>
30122
30123 commit 45aa5a7f4d5bcb79927ddfc896c1d7c4326e235d
30124 Author: Stefan Roese <sr@denx.de>
30125 Date: Mon Nov 17 14:45:22 2008 +0100
30126
30127 cfi_flash: Make all flash access functions weak
30128
30129 This patch defines all flash access functions as weak so that
30130 they can be overridden by board specific versions.
30131
30132 This will be used by the upcoming VCTH board support where the NOR
30133 FLASH unfortunately can't be accessed memory-mapped. Special
30134 accessor functions are needed here.
30135
30136 To enable this weak functions you need to define
30137 CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS in your board config header.
30138 Otherwise the "old" default functions will be used resulting
30139 in smaller code.
30140
30141 Signed-off-by: Stefan Roese <sr@denx.de>
30142 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
30143
30144 commit a5c4067017631d903e1afa6ad615f0ce19fea517
30145 Author: Stefan Roese <sr@denx.de>
30146 Date: Mon Nov 24 08:31:16 2008 +0100
30147
30148 UBI: Change parsing of size in commands to default to hex
30149
30150 Currently the size parameters of the UBI commands (e.g. "ubi write") are
30151 decoded as decimal instead of hex as default. This patch now interprets
30152 all these values consistantly as hex, as all other standard U-Boot commands
30153 do.
30154
30155 Signed-off-by: Stefan Roese <sr@denx.de>
30156
30157 commit de01c76c3ccc4e6c5989228eed58e955a3a1a968
30158 Author: Stefan Roese <sr@denx.de>
30159 Date: Fri Nov 21 13:06:06 2008 +0100
30160
30161 ppc4xx: ML2 shouldn't include the 4xx EMAC driver
30162
30163 Signed-off-by: Stefan Roese <sr@denx.de>
30164
30165 commit 1a6a00dcc5bdfc6e9b4b00f39c1f583a7f96fc7f
30166 Author: Yuri Tikhonov <yur@emcraft.com>
30167 Date: Fri Nov 14 16:19:19 2008 +0300
30168
30169 ppc4xx: katmai: Change default config
30170
30171 This patch enables support for EXT2, and increases the
30172 CONFIG_SYS_BOOTMAPSZ size for the default configuration
30173 of the katmai boards to use them as the RAID-reference
30174 AMCC setups.
30175
30176 EXT2 enabling allows one to boot kernels from the EXT2
30177 formatted Compact Flash cards.
30178
30179 CONFIG_SYS_BOOTMAPSZ increasing allows one to boot the
30180 Linux kernels, which use PAGE_SIZE of 256KB. Otherwise,
30181 the memory area with DTB file (which is placed at the
30182 end of the bootmap area) will turn out to be overlapped
30183 with the BSS segment of the 256KB kernel, and zeroed
30184 in early_init() of Linux.
30185
30186 Actually, increasing of the bootmap size could be done
30187 via setting of the bootm_size U-Boot variable, but it looks
30188 like the current U-Boot implementation have some bootm_size-
30189 related functionality lost. In many places through the U-Boot
30190 code the CONFIG_SYS_BOOTMAPSZ definition is used directly
30191 (instead of trying to read the corresponding value from the
30192 environment). The same is truth for the boot_jump_linux()
30193 function in lib_ppc/bootm.c, where U-Boot transfers control
30194 to Linux passing the CONFIG_SYS_BOOTMAPSZ (not bootm_size)
30195 value to the booting kernel.
30196
30197 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
30198 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
30199 Signed-off-by: Stefan Roese <sr@denx.de>
30200
30201 commit ddf45cc758d394591fb9bcdcbe96530f733f2bce
30202 Author: Dave Mitchell <dmitch71@gmail.com>
30203 Date: Thu Nov 20 14:09:50 2008 -0600
30204
30205 ppc4xx: Changed 460EX/GT OCM TLB and internal SRAM initialization
30206
30207 Expanded OCM TLB to allow access to 64K OCM as well as 256K of
30208 internal SRAM.
30209
30210 Adjusted internal SRAM initialization to match updated user
30211 manual recommendation.
30212
30213 OCM & ISRAM are now mapped as follows:
30214 physical virtual size
30215 ISRAM 0x4_0000_0000 0xE300_0000 256k
30216 OCM 0x4_0004_0000 0xE304_0000 64k
30217
30218 A single TLB was used for this mapping.
30219
30220 Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
30221 Signed-off-by: Stefan Roese <sr@denx.de>
30222
30223 commit b14ca4b61a681f75f3125676e09d7ce6af66e927
30224 Author: Dave Mitchell <dmitch71@gmail.com>
30225 Date: Thu Nov 20 14:00:49 2008 -0600
30226
30227 ppc4xx: Added ppc4xx-isram.h for internal SRAM and L2 cache DCRs
30228
30229 Added include/asm-ppc/ppc4xx-isram.h and moved internal SRAM and
30230 L2 cache DCRs from ppc440.h to this new header.
30231
30232 Also converted these DCR defines from lowercase to uppercase and
30233 modified referencing modules to use them.
30234
30235 Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
30236 Signed-off-by: Stefan Roese <sr@denx.de>
30237
30238 commit 711e2b2af820d21d9931d4cf8057d3894600fd54
30239 Author: Steven A. Falco <sfalco@harris.com>
30240 Date: Thu Nov 20 14:37:57 2008 -0500
30241
30242 ppc4xx: Delete unused definitions for SDR0_DDRCFG from ppc4xx.h
30243
30244 The definitions of bits in SDR_CFG are incorrect, and not used within
30245 U-Boot. Therefore, they can be removed.
30246
30247 The naming of the sdr_ddrdl/sdr_cfg registers do not follow conventions,
30248 and are unused, so they can be removed too.
30249
30250 A definition for SDR0_DDRCFG is added.
30251
30252 Signed-off-by: Steven A. Falco <sfalco@harris.com>
30253 Signed-off-by: Stefan Roese <sr@denx.de>
30254
30255 commit e23c7c95a96eb0f068efe5c532215a10a1512a95
30256 Author: Dirk Behme <dirk.behme@gmail.com>
30257 Date: Mon Nov 10 20:15:25 2008 +0100
30258
30259 ARM: OMAP: Convert IO macros
30260
30261 Convert IO macros to readx/writex.
30262
30263 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
30264
30265 commit 263b749e2e25473a48776d317bd2a7e2ddcdd212
30266 Author: Ilko Iliev <iliev@ronetix.at>
30267 Date: Sun Nov 9 15:53:14 2008 +0100
30268
30269 lib_arm: do_bootm_linux() - correct a small mistake
30270
30271 This patch corrects a small bug in the "if" condition:
30272 the parameter "flag" is 0 and the "if" condition is always true.
30273 The result is - the boom command doesn't start the kernel.
30274 Affected targets: all arm based.
30275
30276 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
30277
30278 commit 3e0cda071a67cb5709e3fa4faf6b31a731859acc
30279 Author: Stelian Pop <stelian@popies.net>
30280 Date: Sun Nov 9 00:14:46 2008 +0100
30281
30282 AT91: Enable PLLB for USB
30283
30284 At least some (old ?) versions of the AT91Bootstrap do not set up the
30285 PLLB correctly to 48 MHz in order to make USB host function correctly.
30286
30287 This patch sets up the PLLB to the same values Linux uses, and makes USB
30288 work ok on the following CPUs:
30289 - AT91CAP9
30290 - AT91SAM9260
30291 - AT91SAM9263
30292
30293 This patch also defines CONFIG_USB_STORAGE and CONFIG_CMD_FAT for all
30294 the relevant AT91CAP9/AT91SAM9 atmel boards.
30295
30296 Signed-off-by: Stelian Pop <stelian@popies.net>
30297 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30298
30299 commit ad229a44e162af0f65e57e4e3dc133d5f0364ecb
30300 Author: Stelian Pop <stelian@popies.net>
30301 Date: Fri Nov 7 13:55:14 2008 +0100
30302
30303 AT91: Use AT91_CPU_CLOCK in displays
30304
30305 Introduce AT91_CPU_CLOCK and use it for displaying the CPU
30306 speed in the LCD driver.
30307
30308 Also make AT91_MAIN_CLOCK and AT91_MASTER_CLOCK reflect the
30309 corresponding board clocks.
30310
30311 Signed-off-by: Stelian Pop <stelian@popies.net>
30312
30313 commit fed36ac5ae613773b6cd90e61e292c45440e10c8
30314 Author: Heiko Schocher <hs@denx.de>
30315 Date: Thu Nov 20 09:57:47 2008 +0100
30316
30317 powerpc: 83xx: add support for the kmeter1 board
30318
30319 This patch adds support for the kmeter1 board from Keymile,
30320 based on a Freescale MPC8360 CPU.
30321
30322 - serial console on UART 1
30323 - 256 MB DDR2 RAM
30324 - 64 MB NOR Flash
30325 - Ethernet RMII Mode over UCC4
30326 - PHY SMSC LAN8700
30327
30328 Signed-off-by: Heiko Schocher <hs@denx.de>
30329 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30330
30331 commit 25fb4eaaeab3f8866020818f4729d990dcc91cf0
30332 Author: Stefan Roese <sr@denx.de>
30333 Date: Thu Nov 20 11:46:20 2008 +0100
30334
30335 ppc4xx: Clear all potentially pending exceptions in MCSR
30336
30337 This is needed on Canyonlands which still has an exception pending
30338 while running relocate_code(). This leads to a failure after trap_init()
30339 is moved to the top of board_init_r().
30340
30341 Signed-off-by: Stefan Roese <sr@denx.de>
30342
30343 commit facdad5f2602e899a01746916beddbf9e856b5ee
30344 Author: Heiko Schocher <hs@denx.de>
30345 Date: Wed Nov 19 10:10:30 2008 +0100
30346
30347 powerpc: 83xx: add missing TIMING_CFG1_CASLAT_* defines
30348
30349 Signed-off-by: Heiko Schocher <hs@denx.de>
30350 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30351
30352 commit 2f2a5c3714d17f4ead18b713128b7226e0e822f4
30353 Author: Howard Gregory <Greg.Howard@freescale.com>
30354 Date: Tue Nov 4 14:55:33 2008 +0800
30355
30356 mpc83xx: Improve the performance of DDR memory
30357
30358 modify the CAS timings. my understanding is that these
30359 settings decrease various wait times in the DDR interface.
30360 Because these wait times are in clock cycles, and the DDR
30361 clock on the 8315 RDB runs slower than on some other 83xx
30362 platforms, we can dial down these values without a problem,
30363 thereby decreasing the latency of memory a little.
30364
30365 Signed-off-by: Howard Gregory <Greg.Howard@freescale.com>
30366 Signed-off-by: Dave Liu <daveliu@freescale.com>
30367 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30368
30369 commit 8000b086b33a5a81f3f390f37e178db7956dc08b
30370 Author: Kyungmin Park <kyungmin.park@samsung.com>
30371 Date: Fri Oct 24 14:55:33 2008 +0200
30372
30373 ARM: Add Apollon UBI support
30374
30375 To enable UBI on Apollon you need to uncomment the CONFIG_SYS_USE_UBI
30376 macro.
30377
30378 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30379 Signed-off-by: Stefan Roese <sr@denx.de>
30380
30381 commit 694a0b3f1c0accd0de94b89555155d69f8022824
30382 Author: Kyungmin Park <kyungmin.park@samsung.com>
30383 Date: Wed Nov 19 11:47:05 2008 +0100
30384
30385 UBI: Add UBI command support
30386
30387 This patch adds these UBI commands:
30388
30389 ubi part [nand|onenand] [part] - Show or set current partition
30390 ubi info [l[ayout]] -Display volume and UBI layout information
30391 ubi create[vol] volume [size] [type] - Create volume name with size
30392 ubi write[vol] address volume size - Write volume from address with size
30393 ubi read[vol] address volume [size] - Read volume to address with size
30394 ubi remove[vol] volume - Remove volume
30395
30396 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30397 Signed-off-by: Stefan Roese <sr@denx.de>
30398
30399 commit 58be3a1056d88c6d05f3e914389282807e69923a
30400 Author: Kyungmin Park <kyungmin.park@samsung.com>
30401 Date: Wed Nov 19 16:38:24 2008 +0100
30402
30403 UBI: Add basic UBI support to U-Boot (Part 8/8)
30404
30405 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
30406 It's based on the Linux UBI version and basically has a "OS"
30407 translation wrapper that defines most Linux specific calls
30408 (spin_lock() etc.) into no-ops. Some source code parts have been
30409 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
30410 this version with the Linux version and simplifies future UBI
30411 ports/bug-fixes from the Linux version.
30412
30413 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30414 Signed-off-by: Stefan Roese <sr@denx.de>
30415
30416 commit 47ae6693f54f80455ae32c2e0d995e0e4bdc15b9
30417 Author: Kyungmin Park <kyungmin.park@samsung.com>
30418 Date: Wed Nov 19 16:36:36 2008 +0100
30419
30420 UBI: Add basic UBI support to U-Boot (Part 7/8)
30421
30422 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
30423 It's based on the Linux UBI version and basically has a "OS"
30424 translation wrapper that defines most Linux specific calls
30425 (spin_lock() etc.) into no-ops. Some source code parts have been
30426 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
30427 this version with the Linux version and simplifies future UBI
30428 ports/bug-fixes from the Linux version.
30429
30430 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30431 Signed-off-by: Stefan Roese <sr@denx.de>
30432
30433 commit 7e6ee7ad27de5216db1baef76f38c3429c8f4a2a
30434 Author: Kyungmin Park <kyungmin.park@samsung.com>
30435 Date: Wed Nov 19 16:32:36 2008 +0100
30436
30437 UBI: Add basic UBI support to U-Boot (Part 6/8)
30438
30439 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
30440 It's based on the Linux UBI version and basically has a "OS"
30441 translation wrapper that defines most Linux specific calls
30442 (spin_lock() etc.) into no-ops. Some source code parts have been
30443 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
30444 this version with the Linux version and simplifies future UBI
30445 ports/bug-fixes from the Linux version.
30446
30447 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30448 Signed-off-by: Stefan Roese <sr@denx.de>
30449
30450 commit c91a719daa331b5856109313371e4ece5ec06d96
30451 Author: Kyungmin Park <kyungmin.park@samsung.com>
30452 Date: Wed Nov 19 16:28:06 2008 +0100
30453
30454 UBI: Add basic UBI support to U-Boot (Part 5/8)
30455
30456 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
30457 It's based on the Linux UBI version and basically has a "OS"
30458 translation wrapper that defines most Linux specific calls
30459 (spin_lock() etc.) into no-ops. Some source code parts have been
30460 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
30461 this version with the Linux version and simplifies future UBI
30462 ports/bug-fixes from the Linux version.
30463
30464 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30465 Signed-off-by: Stefan Roese <sr@denx.de>
30466
30467 commit f412fefa079c6aa9a9763f6869bf787ea6bf6e1b
30468 Author: Kyungmin Park <kyungmin.park@samsung.com>
30469 Date: Wed Nov 19 16:27:23 2008 +0100
30470
30471 UBI: Add basic UBI support to U-Boot (Part 4/8)
30472
30473 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
30474 It's based on the Linux UBI version and basically has a "OS"
30475 translation wrapper that defines most Linux specific calls
30476 (spin_lock() etc.) into no-ops. Some source code parts have been
30477 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
30478 this version with the Linux version and simplifies future UBI
30479 ports/bug-fixes from the Linux version.
30480
30481 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30482 Signed-off-by: Stefan Roese <sr@denx.de>
30483
30484 commit 2d262c4853cb5b6ddce1a28a9641f2de3688d7ea
30485 Author: Kyungmin Park <kyungmin.park@samsung.com>
30486 Date: Wed Nov 19 16:26:54 2008 +0100
30487
30488 UBI: Add basic UBI support to U-Boot (Part 3/8)
30489
30490 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
30491 It's based on the Linux UBI version and basically has a "OS"
30492 translation wrapper that defines most Linux specific calls
30493 (spin_lock() etc.) into no-ops. Some source code parts have been
30494 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
30495 this version with the Linux version and simplifies future UBI
30496 ports/bug-fixes from the Linux version.
30497
30498 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30499 Signed-off-by: Stefan Roese <sr@denx.de>
30500
30501 commit 961df83361aff9a14f226214224eb8a06e05ba24
30502 Author: Kyungmin Park <kyungmin.park@samsung.com>
30503 Date: Wed Nov 19 16:25:44 2008 +0100
30504
30505 UBI: Add basic UBI support to U-Boot (Part 2/8)
30506
30507 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
30508 It's based on the Linux UBI version and basically has a "OS"
30509 translation wrapper that defines most Linux specific calls
30510 (spin_lock() etc.) into no-ops. Some source code parts have been
30511 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
30512 this version with the Linux version and simplifies future UBI
30513 ports/bug-fixes from the Linux version.
30514
30515 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30516 Signed-off-by: Stefan Roese <sr@denx.de>
30517
30518 commit f399d4a281713d5ef2d764f05d545fe61e3bd569
30519 Author: Kyungmin Park <kyungmin.park@samsung.com>
30520 Date: Wed Nov 19 16:23:06 2008 +0100
30521
30522 UBI: Add basic UBI support to U-Boot (Part 1/8)
30523
30524 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
30525 It's based on the Linux UBI version and basically has a "OS"
30526 translation wrapper that defines most Linux specific calls
30527 (spin_lock() etc.) into no-ops. Some source code parts have been
30528 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
30529 this version with the Linux version and simplifies future UBI
30530 ports/bug-fixes from the Linux version.
30531
30532 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30533 Signed-off-by: Stefan Roese <sr@denx.de>
30534
30535 commit e29c22f5abe6e0f4baa6251efed6074cdfc3db79
30536 Author: Kyungmin Park <kyungmin.park@samsung.com>
30537 Date: Wed Nov 19 16:20:36 2008 +0100
30538
30539 MTD: Add MTD paritioning infrastructure
30540
30541 This MTD part infrastructure will be used by the upcoming
30542 UBI support.
30543
30544 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30545 Signed-off-by: Stefan Roese <sr@denx.de>
30546
30547 commit 9b827cf1720acda2473afa516956eab6f7cca9a1
30548 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
30549 Date: Thu Oct 16 22:54:03 2008 +0530
30550
30551 Align end of bss by 4 bytes
30552
30553 Most of the bss initialization loop increments 4 bytes
30554 at a time. And the loop end is checked for an 'equal'
30555 condition. Make the bss end address aligned by 4, so
30556 that the loop will end as expected.
30557
30558 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
30559 Signed-off-by: Wolfgang Denk <wd@denx.de>
30560
30561 commit 3f510db522d160179dff3ddcce9b18f6241c2c24
30562 Author: Becky Bruce <becky.bruce@freescale.com>
30563 Date: Mon Nov 10 19:45:35 2008 -0600
30564
30565 mpc8641: fix address-cells default in old .dts detection
30566
30567 address-cells defaults to 2, not 1; so in the unlikely
30568 event that it isn't specified, this patch is required
30569 for correct operation.
30570
30571 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30572
30573 commit d025aa4b20a0618a2bada0132a9a0a4afb717f1a
30574 Author: Becky Bruce <becky.bruce@freescale.com>
30575 Date: Fri Oct 31 17:14:39 2008 -0500
30576
30577 lib_ppc: Move trap_init to occur earlier
30578
30579 Doing trap_init immediately once we're running from RAM
30580 means we're no longer dependent on the physical location of
30581 the flash on non-BookE platforms. Before trap_init, those
30582 platforms switch to real mode and go to 0xfff00100 on exception.
30583 After the switch, they go to 0x00000100 This makes it easier to
30584 move the flash location.
30585
30586 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30587
30588 commit d52082b12c6e545705a19433a2f4142526536189
30589 Author: Becky Bruce <becky.bruce@freescale.com>
30590 Date: Fri Nov 7 13:46:19 2008 -0600
30591
30592 mpc8641: Try to detect old .dts files
30593
30594 Since we've changed the memory map of the board, be nice and
30595 add some checking to try to catch out-of-date .dts files. We do
30596 this by checking the CCSRBAR location in the .dts and comparing
30597 it to the CCSRBAR location in u-boot. If they don't match, a
30598 warning msg is printed. This isn't foolproof, but it's simple and
30599 will catch most of the cases where an out-of-date .dts is present,
30600 including all of the cases where a new u-boot is used with an old
30601 standard MPC8641 .dts file as supplied with Linux.
30602
30603 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30604
30605 commit 8db0400a27839f91c047dcb83f4a0f09e054a180
30606 Author: Becky Bruce <becky.bruce@freescale.com>
30607 Date: Thu Nov 6 13:04:09 2008 -0600
30608
30609 toplevel Makefile: Add MPC8641HPCN_36BIT target
30610
30611 This will enable CONFIG_PHYS_36BIT for MPC8641HPCN.
30612
30613 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30614
30615 commit 3111d32c494e8251b90917447796a7206b757e1e
30616 Author: Becky Bruce <becky.bruce@freescale.com>
30617 Date: Thu Nov 6 17:37:35 2008 -0600
30618
30619 mpc8641: Support 36-bit physical addressing
30620
30621 This patch creates a memory map with all the devices
30622 in 36-bit physical space, in addition to the 32-bit map.
30623 The CCSR relocation is moved (again, sorry) to
30624 allow for the physical address to be 36 bits - this
30625 requires translation to be enabled. With 36-bit physical
30626 addressing enabled, we are no longer running with VA=PA
30627 translations. This means we have to distinguish between
30628 the two in the config file. The existing region name is
30629 used to indicate the virtual address, and a _PHYS variety
30630 is created to represent the physical address.
30631
30632 Large physical addressing is not enabled by default.
30633 Set CONFIG_PHYS_64BIT in the config file to turn this on.
30634
30635 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30636
30637 commit c759a01a0022de9378a3a761f49786f87684c916
30638 Author: Becky Bruce <becky.bruce@freescale.com>
30639 Date: Thu Nov 6 17:36:04 2008 -0600
30640
30641 mpc8641: Change 32-bit memory map
30642
30643 The memory map on the 8641hpcn is modified to look more like
30644 the 85xx boards; this is a step towards a more standardized
30645 layout going forward. As part of this change, we now relocate
30646 the flash.
30647
30648 The regions for some of the mappings were far larger than they
30649 needed to be. I have reduced the mappings to match the
30650 actual sizes supported by the hardware.
30651
30652 In addition I have removed the comments at the head
30653 of the BAT blocks in the config file, rather than updating
30654 them. These get horribly out of date, and it's a simple
30655 matter to look at the defines to see what they are set to
30656 since everything is right here in the same file.
30657
30658 Documentation has been changed to reflect the new map, as this
30659 change is user visible, and affects the OS which runs post-uboot.
30660
30661 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30662
30663 commit bf9a8c34309ed9276258295db9e9212aabb2531a
30664 Author: Becky Bruce <becky.bruce@freescale.com>
30665 Date: Wed Nov 5 14:55:35 2008 -0600
30666
30667 mpc86xx: Change early FLASH mapping to 1M at CONFIG_MONITOR_BASE_EARLY
30668
30669 We define CONFIG_MONITOR_BASE_EARLY to define the initial location
30670 of the bootpage in flash. Use this to create an early mapping
30671 definition for the FLASH, and change the early_bats code to use this.
30672
30673 This change facilitates the relocation of the flash since the early
30674 mappings are no longer tied to the final location of the flash.
30675
30676 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30677
30678 commit c1e1cf69547b138173f87a7f81c42a5d8dbfde3d
30679 Author: Becky Bruce <becky.bruce@freescale.com>
30680 Date: Wed Nov 5 14:55:34 2008 -0600
30681
30682 mpc86xx: Use SRR0/1/rfi to enable address translation, not blr
30683
30684 Using a mtmsr/blr means that you have to be executing at the
30685 same virtual address once you enable translation. This is
30686 unnecessarily restrictive, and is not really how this is
30687 usually done. Change it to use the more common mtspr SRR0/SRR1
30688 and rfi method.
30689
30690 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30691
30692 commit 6bf98b1362f0cb237620355ed3e6762fff82388d
30693 Author: Becky Bruce <becky.bruce@freescale.com>
30694 Date: Wed Nov 5 14:55:33 2008 -0600
30695
30696 mpc8641: make DIAG_ADDR == FLASH_BASE
30697
30698 Currently, that's what it is, but it's hardcoded.
30699
30700 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30701
30702 commit 170deacb1ddc39164bdb68f3963e0c0456a5369b
30703 Author: Becky Bruce <becky.bruce@freescale.com>
30704 Date: Wed Nov 5 14:55:32 2008 -0600
30705
30706 mpc8641: Drop imaginary second flash bank, map 8MB
30707
30708 There's a lot of setup and foo for the second flash
30709 bank. The problem is, this board doesn't actually have one.
30710 Clean this up. Also, the flash is 8M in size. Get rid
30711 of the confusing aliased overmapping, and just map 8M.
30712
30713 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30714
30715 commit 0f2d66027bfc60dc7eea2f096af8891988c5abe4
30716 Author: Becky Bruce <becky.bruce@freescale.com>
30717 Date: Wed Nov 5 14:55:31 2008 -0600
30718
30719 mpc8641: only define CONFIG_ENV_SIZE once
30720
30721 It's currently defined twice inside in an if/else block, but
30722 both halves set the same value. Move the define outside
30723 the if.
30724
30725 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30726
30727 commit 24bfb48c35fed6ad1f047e3e4a27df302482cd93
30728 Author: Becky Bruce <becky.bruce@freescale.com>
30729 Date: Wed Nov 5 14:55:30 2008 -0600
30730
30731 mpc86xx: Move setup_bats into cpu_init_f
30732
30733 In order to later allow for a physical relocation of the
30734 flash, setup_bats, which sets up the final BAT mapping
30735 for the board, needs to happen *after* init_laws().
30736 Otherwise, there will be no window programmed for the flash
30737 at the new physical location at the point when we change
30738 the mmu translation.
30739
30740 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30741
30742 commit 05df3e5a638be8c5b0899eae1766bbe8e4b92c17
30743 Author: Becky Bruce <becky.bruce@freescale.com>
30744 Date: Wed Nov 5 14:55:29 2008 -0600
30745
30746 mpc8641: Remove extra "0" from BR2 define
30747
30748 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30749
30750 commit edf3fe7d39a1ee07353128af5221422ce9ccfad6
30751 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30752 Date: Thu Oct 23 09:08:18 2008 -0400
30753
30754 drivers/qe/uec_phy.c: Added PHY-less (fixed PHY) driver.
30755
30756 Copied over the fixed PHY driver as used in pp4xx/4xx_enet.c.
30757 This adds support for PHY-less MAC connections to the UEC.
30758
30759 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30760 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30761
30762 commit 54bdcc9fb6670afde9c26dcf364f582879bf21d6
30763 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30764 Date: Thu Oct 23 16:27:24 2008 +0000
30765
30766 ColdFire: Add mii driver in drivers/net
30767
30768 All CF platforms' mii.c are consolidated into one
30769
30770 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30771 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30772
30773 commit 25a859066b3af1070eb69f12022113c0a91bd813
30774 Author: Ben Warren <biggerbadderben@gmail.com>
30775 Date: Mon Oct 27 23:53:17 2008 -0700
30776
30777 Moved initialization of PPC4xx EMAC to cpu_eth_init()
30778
30779 Removed initialization of the driver from net/eth.c
30780
30781 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30782 Acked-by: Stefan Roese <sr@denx.de>
30783
30784 commit 4d03a4e20e58552cb96d61a0e8b56cdb6cc60126
30785 Author: Ben Warren <biggerbadderben@gmail.com>
30786 Date: Sun Nov 9 21:29:23 2008 -0800
30787
30788 Moved PPC4xx EMAC driver to drivers/net
30789
30790 Also changed path in all linker scripts that reference this driver
30791
30792 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30793 Acked-by: Stefan Roese <sr@denx.de>
30794
30795 commit 96e21f86e8266ed40759e5495ee461265d7f6d28
30796 Author: Ben Warren <biggerbadderben@gmail.com>
30797 Date: Mon Oct 27 23:50:15 2008 -0700
30798
30799 Changed PPC4xx EMAC driver to require CONFIG_PPC4xx_EMAC
30800
30801 All in-tree IBM/AMCC PPC4xx boards using the EMAC get this new CONFIG
30802
30803 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30804 Acked-by: Stefan Roese <sr@denx.de>
30805
30806 commit 9eb79bd8856bcab896ed5e1f1bca159807a124dd
30807 Author: Ben Warren <biggerbadderben@gmail.com>
30808 Date: Thu Oct 23 22:02:49 2008 -0700
30809
30810 Moved initialization of MPC8XX SCC to cpu_eth_init()
30811
30812 Removed initialization of the driver from net/eth.c
30813
30814 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30815
30816 commit a9bec96d6359ac9f90a852962bf3040cad9e0256
30817 Author: Ben Warren <biggerbadderben@gmail.com>
30818 Date: Wed Oct 22 23:47:51 2008 -0700
30819
30820 Moved initialization of MPC8220 FEC to cpu_eth_init()
30821
30822 Removed initialization of the driver from net/eth.c
30823
30824 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30825
30826 commit 0e8454e990385a58f708c2fc26d31ac041c7a6c5
30827 Author: Ben Warren <biggerbadderben@gmail.com>
30828 Date: Wed Oct 22 23:32:48 2008 -0700
30829
30830 Moved initialization of QE Ethernet controller to cpu_eth_init()
30831
30832 Removed initialization of the driver from net/eth.c
30833
30834 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30835
30836 commit 3456a148276d5494b53ee40242efb6462d163504
30837 Author: Ben Warren <biggerbadderben@gmail.com>
30838 Date: Wed Oct 22 23:20:29 2008 -0700
30839
30840 Moved initialization of FCC Ethernet controller to cpu_eth_init
30841
30842 Affected boards:
30843 Several MPC8xx boards
30844 Several MPC8260/MPC8272 boards
30845 Several MPC85xx boards
30846
30847 Removed initialization of the driver from net/eth.c
30848
30849 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30850
30851 commit 62e15b497f5c6334c059512678c8db7940ae4c61
30852 Author: Ben Warren <biggerbadderben@gmail.com>
30853 Date: Thu Oct 30 22:15:35 2008 -0700
30854
30855 Fix typo in cpu/mpc85xx/cpu.c
30856
30857 CONFIG_MPC85xx_FEC -> CONFIG_MPC85XX_FEC
30858
30859 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30860
30861 commit 5dfb3ee3f54e2382a08d72906f0e79ecf944f6e3
30862 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30863 Date: Sun Oct 19 12:08:50 2008 +0900
30864
30865 net: Move initialization of Au1x00 SoC ethernet MAC to cpu_eth_init
30866
30867 This patch will move au1x00_eth_initialize from net/eth.c to cpu_eth_init
30868 as a part of ongoing eth_initialize cleanup work. The function ret value
30869 is also fixed as it should be negative on fail.
30870
30871 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30872 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30873
30874 commit cc94074ecac1885d18ddb683eb934b3c0268aa5b
30875 Author: Ben Warren <biggerbadderben@gmail.com>
30876 Date: Fri Sep 5 01:55:22 2008 -0400
30877
30878 Moved initialization of IXP4XX_NPE Ethernet controller to cpu_eth_init()
30879
30880 Also, removed the driver initialization from net/eth.c
30881
30882 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30883
30884 commit f2a7806fc23e82d30c8548911369e0c530607354
30885 Author: Clive Stubbings <uboot@xentech.co.uk>
30886 Date: Mon Oct 27 15:05:00 2008 +0000
30887
30888 xilinx_emaclite buffer overrun
30889
30890 Patch to fix buffer allocation size and alignment. Buffer needs to be u32 aligned and
30891 PKTSIZE_ALIGN bytes long.
30892
30893 Acked-by: Michal Simek <monstr@monstr.eu>
30894
30895 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30896
30897 commit 0115b1953718a2969f6469d3d5da51ba11e12d42
30898 Author: richardretanubun <richardretanubun@ruggedcom.com>
30899 Date: Fri Sep 26 08:59:12 2008 -0400
30900
30901 NET: QE: UEC: Make uec_miiphy_read() and uec_miiphy_write() use the devname arg.
30902
30903 The current uec_miiphy_read and uec_miiphy_write hardcode access devlist[0]
30904 This patch makes these function use the devname argument that is passed in to
30905 allow access to the phy registers of other devices in devlist[].
30906
30907 Signed-of-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
30908
30909 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30910
30911 commit 44dcb7332033db8de2810f2fffcae3084f15c8d4
30912 Author: richardretanubun <richardretanubun@ruggedcom.com>
30913 Date: Mon Oct 6 15:31:43 2008 -0400
30914
30915 Adds two more ethernet interface to 83xx
30916
30917 Fixed compiler warning "declared but unused" eth5_uec_info and eth6_uec_info.
30918 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
30919 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30920
30921 commit d8003fa03733901b73d6c4667b4d80fc8eb1ddd3
30922 Author: Stelian Pop <stelian@popies.net>
30923 Date: Fri Nov 7 13:54:31 2008 +0100
30924
30925 AT91: Replace AT91_BASE_EMAC by the board specific values.
30926
30927 AT91_BASE_EMAC is never used outside the board specific files,
30928 so replace its usage by the board specific AT91xxx_BASE_EMAC.
30929
30930 Signed-off-by: Stelian Pop <stelian@popies.net>
30931 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30932
30933 commit c91e17affa175ce06afa89b04752301eb4a61666
30934 Author: Stelian Pop <stelian@popies.net>
30935 Date: Fri Nov 7 12:09:21 2008 +0100
30936
30937 AT91: Replace (undefined) AT91_ID_US* by the board specific values.
30938
30939 AT91_ID_US0 / AT91_ID_US1 / AT91_ID_US2 were used but never defined.
30940 Since they are never used outside the board specific files, they can
30941 be replaced by the board specific AT91xxx_ID_US0 / AT91xxx_ID_US1 /
30942 AT91xxx_ID_US2.
30943
30944 Bug spotted by Jesus Alvarez <jalvarez@micromint.com>.
30945
30946 Signed-off-by: Stelian Pop <stelian@popies.net>
30947 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30948
30949 commit 28962f5a2de81bc0eed1c0b08c6bfaa1cc134ea2
30950 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30951 Date: Sat Nov 1 10:47:59 2008 +0100
30952
30953 Makefile/at91sam9: move some at91sam9 to the correct subsection for arm926ejs
30954
30955 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30956
30957 commit 1079432e04ccf71aa3684181186182cd63512f19
30958 Author: Sergey Lapin <slapin@ossfans.org>
30959 Date: Fri Oct 31 12:28:43 2008 +0100
30960
30961 Custom AFEB9260 board support
30962
30963 This patch provides support for AFEB9260 board, a product of
30964 OpenSource hardware and software. Some commertial projects
30965 are made with this design. A board is basically AT91SAM9260-EK
30966 with some modifications and different peripherals and different
30967 parts used. Main purpose of this project is to gain experience in
30968 hardware design.
30969 More info: http://groups.google.com/group/arm9fpga-evolution-board
30970 (In Russian only, sorry).
30971 Subversion repository: svn://194.85.238.22/home/users/george/svn/arm9eb
30972
30973 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
30974
30975 commit 26eecd24f97130e56e9c2c2af0e714e05bce6e00
30976 Author: Tomohiro Masubuchi <tomohiro_masubuchiattripeaks.co.jp>
30977 Date: Tue Oct 21 13:17:16 2008 +0900
30978
30979 Change to use "do_div" macro
30980
30981 Signed-off-by: Tomohiro Masubuchi <tomohiro_masubuchi@tripeaks.co.jp>
30982
30983 commit e352495318d8056a00faa21b633b3e4374bfbf52
30984 Author: Roman Mashak <romez777@gmail.com>
30985 Date: Wed Oct 22 16:00:26 2008 -0400
30986
30987 ARM926EJ-S: relocate OMAP specific 'cpuinfo.c' into OMAP directory
30988
30989 OMAP identification is implemented in 'cpuinfo.c' and located in ARM926EJ-S directory.
30990 It makes sense to place this file in OMAP specific subdirectory, i.e. cpu/arm926ejs/omap
30991
30992 Signed-off-by: Roman Mashak <romez777@gmail.com>
30993
30994 commit 248b2c367210c06dbd5fbdecf27e97fbe9d05fdb
30995 Author: Roman Mashak <romez777@gmail.com>
30996 Date: Tue Oct 21 03:01:41 2008 -0700
30997
30998 ARM/Versatile port: Removed unused functions
30999
31000 Removal of never used functions.
31001
31002 Signed-off-by: Roman Mashak <romez777@gmail.com>
31003
31004 commit 1266df887781c779deaf6d05eea2ef90a470cb34
31005 Author: Becky Bruce <becky.bruce@freescale.com>
31006 Date: Mon Nov 3 15:44:01 2008 -0600
31007
31008 powerpc: change 86xx SMP boot method
31009
31010 We put the bootpg for the secondary cpus into memory and use
31011 BPTR to get to it. This is a step towards converting to the
31012 ePAPR boot methodology. Also, the code is written to
31013 deal properly with more than 4GB of RAM.
31014
31015 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
31016
31017 commit b5431560682d8f318fbc49db87cfe13ab41d2ee4
31018 Author: Becky Bruce <becky.bruce@freescale.com>
31019 Date: Fri Oct 31 17:13:49 2008 -0500
31020
31021 8641HPCN: Config file cleanup
31022
31023 There are several items in the config file that were hardcoded
31024 but that should really be based on other config options, since
31025 the regions are contiguous and depend on being so. This cleans
31026 that up a bit. Also, add BR_PHYS_ADDR() macro to convert
31027 addresses into the proper format for BR registers.
31028
31029 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
31030
31031 commit 4c77de3f144ca088c3867bd6240718c10f5a9d69
31032 Author: Becky Bruce <becky.bruce@freescale.com>
31033 Date: Fri Oct 31 17:13:32 2008 -0500
31034
31035 86xx: Make dram_size a phys_size_t
31036
31037 It's currently a long and should be phys_size_t.
31038
31039 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
31040
31041 commit 104992fc541302a6bac74448e01e7fdad20abca0
31042 Author: Becky Bruce <becky.bruce@freescale.com>
31043 Date: Sun Nov 2 18:19:32 2008 -0600
31044
31045 powerpc 86xx: Handle CCSR relocation earlier
31046
31047 Currently, the CCSR gets relocated while translation is
31048 enabled, meaning we need 2 BAT translations to get to both the
31049 old location and the new location. Also, the DEFAULT
31050 CCSR location has a dependency on the BAT that maps the
31051 FLASH region. Moving the relocation removes this unnecessary
31052 dependency. This makes it easier and more intutive to
31053 modify the board's memory map.
31054
31055 Swap BATs 3 and 4 on 8610 so that all 86xx boards use the same
31056 BAT for CCSR space.
31057
31058 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
31059
31060 commit af5d100e8d5cd49d69d52d20f1181eb06ddb4ddf
31061 Author: Becky Bruce <becky.bruce@freescale.com>
31062 Date: Fri Oct 31 17:14:14 2008 -0500
31063
31064 mpc8641: Make PCI and RIO mutually exclusive, fix non-PCI build
31065
31066 You can't actually have both, and with some coming changes to
31067 change the memory map for the board and support 36-bit physical,
31068 we need the extra BAT that is being consumed by having both.
31069
31070 I also make non-PCI configs build cleanly, for the sake of sanity.
31071
31072 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
31073
31074 commit 98693b85d42ff438375dc6d6dcadc70eb7b050bb
31075 Author: Becky Bruce <becky.bruce@freescale.com>
31076 Date: Fri Oct 31 17:14:00 2008 -0500
31077
31078 mpc8641: Stop supporting non-PCI_PNP configs
31079
31080 We don't actually ever do this, remove the code so we
31081 can stop maintaining it.
31082
31083 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
31084
31085 commit e4f69d1bd21a12049744989d2dd6b5199c9b8f23
31086 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31087 Date: Fri Oct 24 12:59:12 2008 +0000
31088
31089 ColdFire: Fix M5329EVB and M5373EVB nand issue
31090
31091 Fix compilation issue caused by a few mismatches.
31092 Provide proper nand chip select enable/disable in
31093 nand_hwcontrol() rather than in board_nand_init()
31094 just enable once. Remove redundant local nand driver
31095 functions - nand_read_byte(), nand_write_byte() and
31096 nand_dev_ready() to use common nand driver.
31097
31098 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31099
31100 commit 1b2708442224a551a0b865b52710306333888932
31101 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31102 Date: Wed Oct 22 11:55:30 2008 +0000
31103
31104 ColdFire: Fix compilation error
31105
31106 The error was caused by the change for strmhz() in cpu.c.
31107 A few of them were one extra close parenthesis.
31108
31109 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31110
31111 commit 536e7dac16769954915a484e682a2efb28699133
31112 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31113 Date: Wed Oct 22 11:38:21 2008 +0000
31114
31115 ColdFire: Add MCF5301x CPU and M53017EVB support
31116
31117 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31118
31119 commit a21d0c2cc9add8894d971ab791f4032f077db817
31120 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31121 Date: Tue Oct 21 15:37:02 2008 +0000
31122
31123 ColdFire: Add SBF support for M52277EVB
31124
31125 Add serial boot support
31126
31127 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31128
31129 commit b202816c61042c183fe67d097a5893b0f2dafba0
31130 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31131 Date: Tue Oct 21 14:19:26 2008 +0000
31132
31133 ColdFire: Use CFI driver for M5272C3
31134
31135 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31136
31137 commit f3962d3f574e5a1cffacd4e9bc48713060a2a314
31138 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31139 Date: Tue Oct 21 13:47:54 2008 +0000
31140
31141 ColdFire: Relocate FEC's GPIO and mii functions protocols
31142
31143 Place FEC pin assignments in cpu_init.c from platform's
31144 mii.c
31145
31146 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31147
31148 commit 6e80f5aa09f8d41bac50b38dc7488ecd22107802
31149 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31150 Date: Tue Oct 21 12:15:44 2008 +0000
31151
31152 ColdFire: Remove platforms mii.c file
31153
31154 Will use mcfmii.c driver in drivers/net rather than
31155 keep creating new mii.c for each future platform.
31156 Remove EB+MCF-EV123, cobra5272, idmr, M5235EVB,
31157 M5271EVB, M5272C3, M5275EVB, M5282EVB, M5329EVB,
31158 M5373EVB, M54451EVB, M54455EVB, M547xEVB, and M548xEVB's
31159 mii.c
31160
31161 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31162
31163 commit 012522fef3b382469125beb46a315ab4dee02fb0
31164 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31165 Date: Tue Oct 21 10:03:07 2008 +0000
31166
31167 ColdFire: Modules header files cleanup
31168
31169 Consolidate ATA, ePORT, QSPI, FlexCan, PWM, RNG,
31170 MDHA, SKHA, INTC, and FlexBus structures and
31171 definitions in immap_5xxx.h to more unify modules
31172 header files. Append DSPI support for m547x_8x.
31173 SSI cleanup. Remove USB Host structure from immap_539.h.
31174 Apply changes to use FlexBus structures in mcf52x2's
31175 cpu_init.c and platform configuration files.
31176
31177 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31178
31179 commit ac2331aee99ad36be0fcfed8c49922e3c61b576d
31180 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31181 Date: Tue Oct 21 08:52:36 2008 +0000
31182
31183 ColdFire: Remove linker file
31184
31185 Each different build for M54455EVB and M5235EVB will
31186 create a u-boot.lds linker file. It is redundant to
31187 keep the u-boot.lds
31188
31189 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31190
31191 commit 0829323073c505556ed5f5073f91adb504584d45
31192 Author: Peter Tyser <ptyser@xes-inc.com>
31193 Date: Fri Oct 31 11:26:44 2008 -0500
31194
31195 ppc: Fix compile warnings when !CONFIG_OF_LIBFDT
31196
31197 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
31198
31199 commit a80b21d5127583171d6e9bc7f722947641898012
31200 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31201 Date: Fri Oct 31 12:12:12 2008 +0100
31202
31203 common/Makefile: create others group for non core, environment and command files
31204
31205 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31206
31207 commit 60c68d9c1c6d18ce02c862a05718fd94f97c13d0
31208 Author: Wolfgang Denk <wd@denx.de>
31209 Date: Fri Oct 31 01:13:37 2008 +0100
31210
31211 TQM8260: use CFI flash driver instead of custom driver.
31212
31213 Signed-off-by: Wolfgang Denk <wd@denx.de>
31214
31215 commit 20d04774f4ef3f6e38974636e0e36ae0f0b5501f
31216 Author: Andy Fleming <afleming@freescale.com>
31217 Date: Thu Oct 30 17:35:30 2008 -0500
31218
31219 Consolidate MAX/MIN definitions
31220
31221 There were several, now there is one (two if you count the lower-case
31222 versions).
31223
31224 Signed-off-by: Andy Fleming <afleming@freescale.com>
31225
31226 commit 298e476c66fd88d0bc4f0371118652d2b5de4e8a
31227 Author: Heiko Schocher <hs@denx.de>
31228 Date: Thu Oct 30 09:23:09 2008 +0100
31229
31230 mgsuvd: remove unused defines in config file.
31231
31232 Signed-off-by: Heiko Schocher <hs@denx.de>
31233
31234 commit 3cbd823116ea8b7c654e275a8c2fca87cd1f5dc5
31235 Author: Wolfgang Denk <wd@denx.de>
31236 Date: Sun Nov 2 16:14:22 2008 +0100
31237
31238 Coding Style cleanup, update CHANGELOG
31239
31240 Signed-off-by: Wolfgang Denk <wd@denx.de>
31241
31242 commit a47f957ab523019992fdef857af01bd71c58a4da
31243 Author: Alessandro Rubini <rubini-list@gnudd.com>
31244 Date: Fri Oct 31 22:33:21 2008 +0100
31245
31246 NAND: Allow NAND and OneNAND to coexist
31247
31248 This removes in nand.h code that is verbatim duplicated from bbm.h,
31249 including directly bbm.h in nand.h. The previous state of affairs
31250 prevented compiling code for a board hosting both NAND and OneNAND chips.
31251
31252 Reported-by: Scott Wood <scottwood@freescale.com>
31253 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
31254 Signed-off-by: Scott Wood <scottwood@freescale.com>
31255
31256 commit 2f77c7f45b9a37ef265a8dbe3c18efa706fed214
31257 Author: Scott Wood <scottwood@freescale.com>
31258 Date: Fri Oct 31 13:51:12 2008 -0500
31259
31260 JFFS2: Eliminate compiler error when both NAND and OneNAND are enabled.
31261
31262 Reported-by: Alessandro Rubini <rubini-list@gnudd.com>
31263 Signed-off-by: Scott Wood <scottwood@freescale.com>
31264
31265 commit c57fc28947e248fb03c49a28b467686299895055
31266 Author: Jason Jin <Jason.Jin@freescale.com>
31267 Date: Fri Oct 31 05:07:04 2008 -0500
31268
31269 NAND: Add NAND support for MPC8536DS board
31270
31271 This patch defines 1M TLB&LAW size for NAND on MPC8536DS, assigns 0xffa00000
31272 for CONFIG_SYS_NAND_BASE and adds other NAND supports in config file.
31273 It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image.
31274
31275 Singed-off-by: Jason Jin <Jason.Jin@freescale.com>
31276 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
31277 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31278
31279 commit 6fc110bd8a8d642b8f7b0653bd9a08a0b7c3d50b
31280 Author: Haiying Wang <Haiying.Wang@freescale.com>
31281 Date: Fri Oct 31 05:06:14 2008 -0500
31282
31283 NAND: Fix CONFIG_ENV_ADDR for MPC8572DS
31284
31285 CONFIG_ENV_ADDR should be (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE).
31286
31287 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
31288 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31289
31290 commit 51b572a801be57790fe26adaa530210e7fba59cc
31291 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31292 Date: Fri Oct 24 10:49:48 2008 +0900
31293
31294 sh: rsk7203: Moved rsk7203 board to board/renesas
31295
31296 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31297
31298 commit 58453b00b3ebb26aaa901210023f99504a90bb00
31299 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31300 Date: Fri Oct 24 10:48:31 2008 +0900
31301
31302 sh: MigoR: Moved MigoR board to board/renesas
31303
31304 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31305
31306 commit c1da2a22817ba85b437afa2f4e715e658b219fd1
31307 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31308 Date: Fri Oct 24 10:39:44 2008 +0900
31309
31310 sh: r2dplus: Moved r2dplus board to board/renesas
31311
31312 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31313
31314 commit 78385bf2359d828184d0b3649f7ae6b933420000
31315 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31316 Date: Fri Oct 24 10:36:13 2008 +0900
31317
31318 sh: sh7763rdp: Moved sh7763rdp board to board/renesas
31319
31320 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31321
31322 commit c6525d459c350bfc246ea7826456af77e1e314eb
31323 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31324 Date: Fri Oct 24 10:35:19 2008 +0900
31325
31326 sh: sh7785lcr: Moved sh7785lcr board to board/renesas
31327
31328 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31329
31330 commit acd3e30d09a73f876222f0d496c4f52ee9d0771d
31331 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31332 Date: Fri Oct 24 10:34:21 2008 +0900
31333
31334 sh: r7780mp: Moved r7780mp board to board/renesas
31335
31336 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31337
31338 commit f84e6ea275353b8fea772ec7553ff7e4b1f642e0
31339 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31340 Date: Fri Oct 24 10:32:14 2008 +0900
31341
31342 sh: ap325rxa: Moved ap325rxa board to board/renesas
31343
31344 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31345
31346 commit 9abda6ba735efb059f63dcb25d78b174bfcad1ad
31347 Author: Wolfgang Denk <wd@xpert.denx.de>
31348 Date: Fri Oct 31 01:12:28 2008 +0100
31349
31350 CFI Driver: Fix "flash not ready" problem
31351
31352 This patch fixes a problem on systems where the NOR flash is attached
31353 to a 64 bit bus. The toggle bit detection in flash_toggle() is based
31354 on the assumption that the same flash address is read twice without
31355 any other interjacent flash accesses. However, on 32 bit systems the
31356 function flash_read64() [as currently implemented] does not perform
31357 an atomic 64 bit read - instead, this is broken down into two 32 bit
31358 read accesses on addresses "addr" and "addr + 4". So instead of
31359 reading a 64 bit value twice from "addr", we see a sequence of 4 32
31360 bit reads from "addr", "addr + 4", "addr", and "addr + 4". The
31361 consequence is that flash_toggle() fails to work.
31362
31363 This patch implements a simple, but somewhat ugly solution, as it
31364 avoids the use of flash_read64() in this critical place (by breaking
31365 it down manually into 32 bit read operations) instead of rewriting
31366 flash_read64() such to perform atomic 64 bit reads as one could
31367 expect. However, such a rewrite would require the use of floating
31368 point load operations, which becomes pretty complex:
31369
31370 save MSR;
31371 set Floating Point Enable bit in MSR;
31372 use "lfd" instruction to perform atomic 64 bit read;
31373 use "stfd" to store value to temporary variable on stack;
31374 load u64 value from temporary variable;
31375 restore saved MSR;
31376 return u64 value;
31377
31378 The benefit-cost ratio of such an implementation was considered too
31379 bad to actually attempt this, especially as we can expect that such
31380 an implementation would not only have a bigger memory footprint but
31381 also cause a performance degradation.
31382
31383 Signed-off-by: Wolfgang Denk <wd@denx.de>
31384 Signed-off-by: Stefan Roese <sr@denx.de>
31385
31386 commit cdd4fe63b094d4b767f12ff241d72566b461ee61
31387 Author: Stefan Roese <sr@denx.de>
31388 Date: Fri Oct 31 10:48:08 2008 +0100
31389
31390 ppc4xx: Fix spelling error in MAINTAINERS file
31391
31392 Signed-off-by: Stefan Roese <sr@denx.de>
31393
31394 commit be270798900b75ad9c47c7b79c72f70441196c56
31395 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31396 Date: Tue Oct 28 13:37:00 2008 +0100
31397
31398 ppc4xx: Update PMC440 board support
31399
31400 This patch brings PMC440 board support up to date:
31401
31402 - fix GPIO configuration
31403 - add misc_init_f()
31404 - use better values for usbact variable
31405 - fix USB 2.0 phy reset sequence
31406 - shrink BAR2 to save PCI address space
31407 - add FDT support
31408
31409 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31410 Signed-off-by: Stefan Roese <sr@denx.de>
31411
31412 commit 75183b1a7fc04206d9779d13f16e03853d7e965d
31413 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31414 Date: Tue Oct 28 13:36:59 2008 +0100
31415
31416 ppc4xx: Fix PMC440 BSP commands
31417
31418 This patch fixes the PMC440 BSP commands painit and selfreset
31419
31420 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31421 Signed-off-by: Stefan Roese <sr@denx.de>
31422
31423 commit 76b565b69f886d5ae748db65e44f464b0e70d41a
31424 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31425 Date: Tue Oct 28 13:36:58 2008 +0100
31426
31427 ppc4xx: Update PMC440 board configuration
31428
31429 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31430 Signed-off-by: Stefan Roese <sr@denx.de>
31431
31432 commit ca0c2d42b93116a8e1b8ef8ad4493c7dc9b5f2e4
31433 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31434 Date: Tue Oct 28 13:36:57 2008 +0100
31435
31436 ppc4xx: Fix esd loadpci command
31437
31438 This patch fixes esd's loadpci command when not all
31439 memory on adapter boards is accessable via PCI.
31440
31441 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31442 Signed-off-by: Stefan Roese <sr@denx.de>
31443
31444 commit 492aa9ea13791ca4591b5bde895a425e27ae2d10
31445 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31446 Date: Tue Oct 28 13:36:56 2008 +0100
31447
31448 ppc4xx: Clean up PMC440 header
31449
31450 -Codingstyle cleanup
31451 -Remove unused GPIO define
31452
31453 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31454 Signed-off-by: Stefan Roese <sr@denx.de>
31455
31456 commit 295133258a44f97a57fb2ec339aecfda11f4db95
31457 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31458 Date: Tue Oct 28 13:36:55 2008 +0100
31459
31460 ppc4xx: Handle other board variant in PMC440 FPGA code
31461
31462 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31463 Signed-off-by: Stefan Roese <sr@denx.de>
31464
31465 commit cc2dc9b08cf7c09f9f237f8cb9303f11603d4fb0
31466 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31467 Date: Mon Oct 27 12:35:59 2008 +0100
31468
31469 ppc4xx: Merge xilinx-ppc440 and xilinx-ppc405 cfg
31470
31471 Xilinx ppc440 and ppc405 have many similarities. This patch merge the
31472 config files of both infrastuctures
31473
31474 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31475 Signed-off-by: Stefan Roese <sr@denx.de>
31476
31477 commit 3befd85633d33c4dcca1f359c3f4848c5ab8e4d2
31478 Author: Stefan Roese <sr@denx.de>
31479 Date: Sat Oct 25 06:45:31 2008 +0200
31480
31481 ppc4xx: Correctly configure the GPIO pin muxing on Arches
31482
31483 Arches doesn't use PerCS3 but GPIO43, so let's configure the GPIO
31484 pin multiplexing correctly
31485
31486 Signed-off-by: Stefan Roese <sr@denx.de>
31487
31488 commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c
31489 Author: Bartlomiej Sieka <tur@semihalf.com>
31490 Date: Thu Oct 30 23:22:04 2008 +0100
31491
31492 Fix to the auto-update feature documentation (CONFIG_UPDATE_TFTP_MSEC_MAX)
31493
31494 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
31495
31496 commit 4bc7deee9095f21e243b724ca3d634251c1d5432
31497 Author: David Gibson <david@gibson.dropbear.id.au>
31498 Date: Wed Oct 29 23:27:45 2008 -0500
31499
31500 libfdt: Fix bug in fdt_subnode_offset_namelen()
31501
31502 There's currently an off-by-one bug in fdt_subnode_offset_namelen()
31503 which causes it to keep searching after it's finished the subnodes of
31504 the given parent, and into the subnodes of siblings of the original
31505 node which come after it in the tree.
31506
31507 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
31508 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31509
31510 commit f242a08871839eac081ba5b599af979f3a148a0d
31511 Author: Peter Korsgaard <jacmet@sunsite.dk>
31512 Date: Tue Oct 28 08:26:52 2008 +0100
31513
31514 fdt_resize(): ensure minimum padding
31515
31516 fdt_add_mem_rsv() requires space for a struct fdt_reserve_entry
31517 (16 bytes), so make sure that fdt_resize at least adds that much
31518 padding, no matter what the location or size of the fdt is.
31519
31520 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
31521 Acked-by: Andy Fleming <afleming@freescale.com>
31522
31523 commit d685b74c64a38849f1a129b3ab846fbf67dd937e
31524 Author: Dave Liu <daveliu@freescale.com>
31525 Date: Thu Oct 23 21:59:35 2008 +0800
31526
31527 74xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
31528
31529 The patch is following the commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
31530
31531 mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
31532
31533 This is needed in unlock_ram_in_cache() because it is called from C and
31534 will corrupt the small data area anchor that is kept in R2.
31535
31536 lock_ram_in_cache() is modified similarly as good coding practice, but
31537 is not called from C.
31538
31539 Signed-off-by: Nick Spence <nick.spence@freescale.com>
31540
31541 also, the r2 is used as global data pointer.
31542
31543 Signed-off-by: Dave Liu <daveliu@freescale.com>
31544
31545 commit e053ab1903ccae6048ef759025b9f675bba91450
31546 Author: Scott Wood <scottwood@freescale.com>
31547 Date: Tue Oct 28 11:45:04 2008 -0500
31548
31549 mpc83xx pci: Round up memory size in inbound window.
31550
31551 The current calculation will fail to cover all memory if
31552 its size is not a power of two.
31553
31554 Signed-off-by: Scott Wood <scottwood@freescale.com>
31555 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31556
31557 commit 1c671977dc81359628be27ac99c174e76e8069ba
31558 Author: Dave Liu <daveliu@freescale.com>
31559 Date: Thu Oct 23 21:19:13 2008 +0800
31560
31561 86xx: remove the unused definition
31562
31563 Signed-off-by: Dave Liu <daveliu@freescale.com>
31564
31565 commit eaa44c5dc83756c3067b9e6c9db626facd0b0660
31566 Author: Dave Liu <daveliu@freescale.com>
31567 Date: Tue Oct 28 17:47:49 2008 +0800
31568
31569 86xx: remove the redundant r2 global data pointer save
31570
31571 The commit 67256678f00c09b0a7f19e862e5c1847553d31bc add
31572 the another global data pointer save, but in fact the
31573 global data pointer will be initialized in the board_init_r,
31574 so remove it such as the 85xx/83xx family.
31575
31576 Signed-off-by: Dave Liu <daveliu@freescale.com>
31577 Acked-by: Kumar Gala <kumar.gala@freescale.com>
31578
31579 commit bd888e9544419665334a6f47f81f34011cea38f3
31580 Author: Dave Liu <daveliu@freescale.com>
31581 Date: Tue Oct 28 17:47:41 2008 +0800
31582
31583 86xx: remove the unused code for 86xx family
31584
31585 I believe these code was copied from 74xx family, but for
31586 86xx, it is unused.
31587
31588 Signed-off-by: Dave Liu <daveliu@freescale.com>
31589 Acked-by: Kumar Gala <kumar.gala@freescale.com>
31590
31591 commit 5ba1ef507402bc5e344dc374203792a40f222e8a
31592 Author: Dave Liu <daveliu@freescale.com>
31593 Date: Tue Oct 28 17:46:35 2008 +0800
31594
31595 86xx: remove the second DDR LAW setting for mpc8641hpcn
31596
31597 The DDR1 LAW will precedence the DDR2 LAW, so remove
31598 the second DDR LAW.
31599
31600 Signed-off-by: Dave Liu <daveliu@freescale.com>
31601 Acked-by: Becky Bruce <becky.bruce@freescale.com>
31602
31603 commit 137a2dfd11ac51ae3154f13f323609b33a4a072e
31604 Author: Dave Liu <daveliu@freescale.com>
31605 Date: Tue Oct 28 17:46:23 2008 +0800
31606
31607 86xx: remove the unused ddr_enable_ecc in the board file
31608
31609 The DDR controller of 86xx processors have the ECC data init
31610 feature, and the new DDR code is using the feature, we don't
31611 need the way with DMA to init memory again.
31612
31613 Signed-off-by: Dave Liu <daveliu@freescale.com>
31614 Acked-by: Kumar Gala <kumar.gala@freescale.com>
31615
31616 commit dc2adad85bf580d65916c940683f6e9671e8a5dd
31617 Author: Dave Liu <daveliu@freescale.com>
31618 Date: Tue Oct 28 17:46:12 2008 +0800
31619
31620 86xx: Move the clear_tlbs before MMU turn on
31621
31622 We must invalidate TLBs before MMU turn on, but
31623 currently the code is not, if there are some stale
31624 TLB entry valid in the TLBs, it will cause strange
31625 issue.
31626
31627 Signed-off-by: Dave Liu <daveliu@freescale.com>
31628 Acked-by: Becky Bruce <becky.bruce@freescale.com>
31629
31630 commit 5cdade07b118d07154cb882650f9778cecc8a87c
31631 Author: Scott Wood <scottwood@freescale.com>
31632 Date: Mon Oct 27 15:57:08 2008 -0500
31633
31634 mpc8313erdb: Document NAND boot.
31635
31636 Previously, the documentation claimed that NAND boot is not supported.
31637 This is no longer true.
31638
31639 Signed-off-by: Scott Wood <scottwood@freescale.com>
31640
31641 commit bd78bc6b2aebf5566aac464f936b88dfd97ab0bd
31642 Author: Scott Wood <scottwood@freescale.com>
31643 Date: Wed Oct 29 14:20:26 2008 -0500
31644
31645 NAND: Properly create JFFS2 cleanmarkers.
31646
31647 As reported by Ilko Iliev <iliev@ronetix.at>, the "nand erase clean"
31648 command is currently broken, and among other things causes all blocks
31649 to be marked bad.
31650
31651 This implements it properly using MTD_OOB_AUTO, along with some
31652 indentation fixes.
31653
31654 Signed-off-by: Scott Wood <scottwood@freescale.com>
31655
31656 commit f7fe57c09866b44692d18c8cf22828bd137ec58d
31657 Author: Scott Wood <scottwood@freescale.com>
31658 Date: Wed Oct 29 13:42:41 2008 -0500
31659
31660 NAND fsl elbc: Set FMR[ECCM] based on page size.
31661
31662 Hardware expects ECCM 0 for small page and ECCM 1 for large page
31663 when booting from NAND, so use those defaults.
31664
31665 Signed-off-by: Scott Wood <scottwood@freescale.com>
31666
31667 commit c013b74975dab0805ef6d369b013230c4e8a660d
31668 Author: Haiying Wang <Haiying.Wang@freescale.com>
31669 Date: Wed Oct 29 13:32:59 2008 -0400
31670
31671 NAND: Add support for MPC8572DS board
31672
31673 This patch defines 1M TLB&LAW size for NAND on MPC8572DS, assigns
31674 0xffa00000 for CONFIG_SYS_NAND_BASE and adds other NAND supports in
31675 config file.
31676
31677 It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image, to
31678 make room for the increased code size with NAND enabled.
31679
31680 Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
31681 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
31682 Signed-off-by: Scott Wood <scottwood@freescale.com>
31683
31684 commit 4e190b03aaf2309bd2e025d1187a2ca880fedc95
31685 Author: Haiying Wang <Haiying.Wang@freescale.com>
31686 Date: Wed Oct 29 11:05:55 2008 -0400
31687
31688 Make Freescale local bus registers available for both 83xx and 85xx.
31689
31690 - Rename lbus83xx_t to fsl_lbus_t and move it to asm/fsl_lbc.h so that it
31691 can be shared by both 83xx and 85xx
31692 - Remove lbus83xx_t and replace it with fsl_lbus_t in all 83xx boards
31693 files which use lbus83xx_t.
31694 - Move FMR, FIR, FCR, FPAR, LTESR from mpc83xx.h to asm/fsl_lbc.h so that
31695 85xx can share them.
31696
31697 Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
31698 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
31699 Signed-off-by: Scott Wood <scottwood@freescale.com>
31700
31701 commit 695c130e4bf75b444720ddfd83aca88f41c046cf
31702 Author: Scott Wood <scottwood@freescale.com>
31703 Date: Mon Oct 27 15:38:30 2008 -0500
31704
31705 NAND: Align right column of the shorthelp with other commands.
31706
31707 I accidentally broke this in when making consistent the partial
31708 alignment of the longhelp.
31709
31710 Signed-off-by: Scott Wood <scottwood@freescale.com>
31711
31712 commit 33efde5ecac91ab118ff00b95a181fd6d75f8645
31713 Author: Karl Beldan <karl.beldan@gmail.com>
31714 Date: Mon Sep 15 16:08:03 2008 +0200
31715
31716 NAND: Reset chip on power-up
31717
31718 Some chips require a RESET after power-up (e.g. Micron MT29FxGxxxxx).
31719 The first command sent is NAND_CMD_READID.
31720 Issue a NAND_CMD_RESET in nand_scan_ident before reading the device id.
31721 Tested with an MT29F4G08AAC.
31722
31723 Signed-off-by: Karl Beldan <karl.beldan@gmail.com>
31724 Signed-off-by: Scott Wood <scottwood@freescale.com>
31725
31726 commit c45912d8abc52de796b9059a58faf7c4166eab58
31727 Author: Scott Wood <scottwood@freescale.com>
31728 Date: Fri Oct 24 16:20:43 2008 -0500
31729
31730 NAND: sync with 2.6.27
31731
31732 This brings the core NAND code up to date with the Linux kernel.
31733
31734 Since there were several drivers in Linux as of the last update that are
31735 not in u-boot, I'm not bringing over new drivers that have been added
31736 since in the absence of an interested party.
31737
31738 I did not update OneNAND since it was recently synced by Kyungmin Park,
31739 and I'm not sure exactly what the common ancestor is.
31740
31741 Signed-off-by: Scott Wood <scottwood@freescale.com>
31742
31743 commit b1d0db1805c3395149777e507b6da53410abac4e
31744 Author: Kumar Gala <galak@kernel.crashing.org>
31745 Date: Tue Oct 21 17:25:47 2008 -0500
31746
31747 bootm: Added CONFIG_BOOTM_{LINUX, NETBSD, RTEMS}
31748
31749 Added the ability to config out bootm support for Linux, NetBSD, RTEMS
31750
31751 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31752
31753 commit 5a98127d81a6eefc5a78a704df619bfe362eeb87
31754 Author: Kumar Gala <galak@kernel.crashing.org>
31755 Date: Tue Oct 21 17:25:46 2008 -0500
31756
31757 bootm: support subcommands in linux ppc bootm
31758
31759 Add support for 'bdt', 'cmdline', 'prep' to the linux PPC bootm.
31760
31761 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31762
31763 commit 49c3a861d11735838f1f1b11999ce433006dc919
31764 Author: Kumar Gala <galak@kernel.crashing.org>
31765 Date: Tue Oct 21 17:25:45 2008 -0500
31766
31767 bootm: Add subcommands
31768
31769 Add the ability to break the steps of the bootm command into several
31770 subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
31771
31772 This allows us to do things like manipulate device trees before
31773 they are passed to a booting kernel or setup memory for a secondary
31774 core in multicore situations.
31775
31776 Not all OS types support all subcommands (currently only start, loados,
31777 ramdisk, fdt, and go are supported).
31778
31779 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31780
31781 commit be08315933537f061bc1ce61f33a29c56458bbad
31782 Author: Kumar Gala <galak@kernel.crashing.org>
31783 Date: Tue Oct 21 17:25:44 2008 -0500
31784
31785 bootm: Move to using a function pointer table for the boot os function
31786
31787 This removes a bit of code and makes it easier for the upcoming sub bootm
31788 command support to call into the proper OS specific handler.
31789
31790 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31791 Signed-off-by: Wolfgang Denk <wd@denx.de>
31792
31793 commit a369f4a492fa2805d87775d27380f0eeaca35aa6
31794 Author: Graeme Russ <graeme.russ@gmail.com>
31795 Date: Mon Sep 29 23:03:14 2008 +1000
31796
31797 i386: Renamed show_boot_progress in assembler code
31798
31799 Renamed show_boot_progress in assembler init phase to
31800 show_boot_progress_asm to avoid link conflicts with C version
31801
31802 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
31803
31804 commit 4442f45b0e1cbad35aa22d4cad22b90a57e3f32d
31805 Author: Peter Tyser <ptyser@xes-inc.com>
31806 Date: Mon Oct 27 16:42:00 2008 -0500
31807
31808 85xx: Update MPC85xx_PORDEVSR_IO_SEL mask
31809
31810 The MPC8572 has a 4-bit wide PORDEVSR IO_SEL field. Other MPC85xx
31811 processors have a 3-bit wide IO_SEL field but have the most
31812 significant bit is wired to 0 so this change should not affect
31813 them.
31814
31815 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
31816
31817 commit cd4251624205cb97104f6e32679dc7754934f711
31818 Author: Becky Bruce <becky.bruce@freescale.com>
31819 Date: Mon Oct 27 16:09:42 2008 -0500
31820
31821 powerpc: fix pci window initialization to work with > 4GB DRAM
31822
31823 The existing code has a few errors that need to be fixed in
31824 order to support large RAM sizes. Fix those, and add a
31825 comment to make it clearer.
31826
31827 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
31828 Acked-by: Kumar Gala <galak@kernel.crashing.org>
31829
31830 commit 219542a1a66ca017b12860920714a9859b18a5d7
31831 Author: Kumar Gala <galak@kernel.crashing.org>
31832 Date: Mon Oct 27 13:16:20 2008 -0500
31833
31834 pci/fsl_pci_init: Removed a bunch pointless trailing backslashes.
31835
31836 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31837
31838 commit 6b59e03e0237a40a2305ea385defdfd92000978b
31839 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31840 Date: Mon Sep 1 16:21:22 2008 +0200
31841
31842 lcd: Let the board code show board-specific info
31843
31844 The information displayed when CONFIG_LCD_INFO is set is inherently
31845 board-specific, so it should be done by the board code. The current code
31846 dealing with this only handles two cases, and is already a horrible mess
31847 of #ifdeffery.
31848
31849 Yes, this duplicates some code, but it also allows boards to print more
31850 board-specific information; this used to be very difficult.
31851
31852 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31853 Signed-off-by: Anatolij Gustschin <agust@denx.de>
31854
31855 commit 6f93d2b8fca504200a5758f7c6dd2d6852900765
31856 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31857 Date: Mon Sep 1 16:21:21 2008 +0200
31858
31859 lcd: Set lcd_is_enabled before clearing the screen
31860
31861 This allows the logo/info rendering routines to use the regular
31862 lcd_putc/lcd_puts/lcd_printf calls.
31863
31864 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31865 Signed-off-by: Anatolij Gustschin <agust@denx.de>
31866
31867 commit 15b17ab52b7c15d46d9fc631cc06092e1e764de2
31868 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31869 Date: Mon Sep 1 16:21:20 2008 +0200
31870
31871 lcd: Implement lcd_printf()
31872
31873 lcd_printf() has a prototype in include/lcd.h but no implementation. Fix
31874 this by borrowing the lcd_printf() implementation from the cogent board
31875 code (which appears to use its own LCD framework.)
31876
31877 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31878 Signed-off-by: Anatolij Gustschin <agust@denx.de>
31879
31880 commit 70dbc54c0a5c798bcf82ae2a1e227404f412e892
31881 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31882 Date: Mon Sep 1 16:21:19 2008 +0200
31883
31884 atmel_lcdfb: Straighten out funky vl_sync logic
31885
31886 If the board _didn't_ request INVLINE_INVERTED, we set INVLINE_INVERTED,
31887 otherwise we don't. WTF?
31888
31889 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31890 Signed-off-by: Anatolij Gustschin <agust@denx.de>
31891
31892 commit 23bb28f0f76b46c4b573374b0bb3b3f23d85ef55
31893 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31894 Date: Mon Sep 1 16:21:18 2008 +0200
31895
31896 atmel_lcdfb: Eliminate unneeded #include <asm/arch/hardware.h>
31897
31898 atmel_lcdfb doesn't actually need anything from asm/arch/hardware.h. It
31899 includes a file that does, asm/arch/gpio.h, but this file doesn't
31900 include <asm/arch/hardware.h> like it's supposed to.
31901
31902 Add the missing include to asm/arch/gpio.h and remove the workaround
31903 from the atmel_lcdfb driver. This makes the driver compile on avr32.
31904
31905 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31906 Signed-off-by: Anatolij Gustschin <agust@denx.de>
31907
31908 commit c2083e0e11a03ef8be2e9f0ed8720fdc20832f3e
31909 Author: Kumar Gala <galak@kernel.crashing.org>
31910 Date: Wed Oct 22 14:38:55 2008 -0500
31911
31912 86xx: Convert all fsl_pci_init users to new APIs
31913
31914 Converted MPC8610HCPD, MPC8641HPCN, and SBC8641D to use
31915 fsl_pci_setup_inbound_windows() and ft_fsl_pci_setup().
31916
31917 With these changes the board code is a bit smaller and we get dma-ranges
31918 set in the device tree for these boards.
31919
31920 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31921 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
31922 Acked-by: Jon Loeliger <jdl@freescale.com>
31923
31924 commit 2dba0dea98c0dee1799ffd6fd6eb541645dbbd98
31925 Author: Kumar Gala <galak@kernel.crashing.org>
31926 Date: Tue Oct 21 08:28:33 2008 -0500
31927
31928 85xx: Convert all fsl_pci_init users to new APIs
31929
31930 Converted ATUM8548, MPC8536DS, MPC8544DS, MPC8548CDS, MPC8568MDS,
31931 MPC8572DS, TQM85xx, and SBC8548 to use fsl_pci_setup_inbound_windows()
31932 and ft_fsl_pci_setup().
31933
31934 With these changes the board code is a bit smaller and we get dma-ranges
31935 set in the device tree for these boards.
31936
31937 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31938 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
31939
31940 commit a2aab460727e5f674353a83a81000ef794bffcae
31941 Author: Kumar Gala <galak@kernel.crashing.org>
31942 Date: Thu Oct 23 00:01:06 2008 -0500
31943
31944 pci/fsl_pci_init: Added fdt helper for setting up bus-ranges & dma-ranges
31945
31946 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31947 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
31948
31949 commit b9a1fa9787a3a79573f5f932a4f8aa216bcb1785
31950 Author: Kumar Gala <galak@kernel.crashing.org>
31951 Date: Wed Oct 22 14:06:24 2008 -0500
31952
31953 pci/fsl_pci_init: Add a common PCI inbound setup function
31954
31955 Add a common setup function that determines the pci_region(s) based
31956 on how much memory we have in the system.
31957
31958 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31959 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
31960
31961 commit 612ea01018a459234d54ed57ec6a5a244ce75678
31962 Author: Kumar Gala <galak@kernel.crashing.org>
31963 Date: Tue Oct 21 10:13:14 2008 -0500
31964
31965 pci/fsl_pci_init: Enable larger address and setting inbound windows properly
31966
31967 * PCI Inbound window was setup incorrectly. The PCI address and system
31968 address were swapped. The PCI address should be setting piwar/piwbear
31969 and the system address should be setting pitar.
31970
31971 * Removed masking of addresses to allow for system address to support
31972 system address & PCI address >32-bits
31973
31974 * Set PIWBEAR & POTEAR to allow for full 64-bit PCI addresses
31975
31976 * Respect the PCI_REGION_PREFETCH for inbound windows
31977
31978 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31979 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
31980
31981 commit 8ab451c46b846f2bbd7122b29ffdd9a4a04da228
31982 Author: Kumar Gala <galak@kernel.crashing.org>
31983 Date: Wed Oct 22 23:33:56 2008 -0500
31984
31985 fdt: Added helper to set PCI dma-ranges property
31986
31987 Added fdt_pci_dma_ranges() that parses the pci_region info from the
31988 struct pci_controller and populates the dma-ranges based on it.
31989
31990 The max # of windws/dma-ranges we support is 3 since on embedded
31991 PowerPC based systems this is the max number of windows.
31992
31993 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31994 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
31995
31996 commit 3bed2aaf2d50fd13273c14d17d4fd40ef42e0d0f
31997 Author: Kumar Gala <galak@kernel.crashing.org>
31998 Date: Thu Oct 23 00:05:47 2008 -0500
31999
32000 fdt: Add fdt_getprop_u32_default helpers
32001
32002 Add helper functions to return find a node and return it's property
32003 or a default value.
32004
32005 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32006 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
32007 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
32008
32009 commit 8ba93f68a1bae89e033527ce67b41b4a87aa5b7f
32010 Author: Kumar Gala <galak@kernel.crashing.org>
32011 Date: Tue Oct 21 18:06:15 2008 -0500
32012
32013 86xx: Enable 64-bit PCI resources on all Freescale boards
32014
32015 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32016 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
32017
32018 commit 0151cbaccf4504821ecfde0217299bd740086bb6
32019 Author: Kumar Gala <galak@kernel.crashing.org>
32020 Date: Tue Oct 21 11:33:58 2008 -0500
32021
32022 85xx: Enable 64-bit PCI resources on all Freescale boards
32023
32024 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32025 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
32026
32027 commit 30e76d5e3bc4c5208ee63585fe12b409d9308cd8
32028 Author: Kumar Gala <galak@kernel.crashing.org>
32029 Date: Tue Oct 21 08:36:08 2008 -0500
32030
32031 pci: Allow for PCI addresses to be 64-bit
32032
32033 PCI bus is inherently 64-bit. While not all system require access to
32034 the full 64-bit PCI address range some do. This allows those systems
32035 to enable the full PCI address width via CONFIG_SYS_PCI_64BIT.
32036
32037 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32038 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
32039 Acked-by: Wolfgang Denk <wd@denx.de>
32040
32041 commit ae5f943ba8ede448a4b1a145fd8911856701ecc5
32042 Author: Dave Liu <daveliu@freescale.com>
32043 Date: Thu Oct 23 21:18:53 2008 +0800
32044
32045 85xx: Fix the incorrect register used for DDR erratum1
32046
32047 The 8572 DDR erratum1:
32048 DDR controller may enter an illegal state when operating
32049 in 32-bit bus mode with 4-beat bursts.
32050
32051 Description:
32052 When operating with a 32-bit bus, it is recommended that
32053 DDR_SDRAM_CFG[8_BE] is cleared when DDR2 memories are used.
32054 This forces the DDR controller to use 4-beat bursts when
32055 communicating to the DRAMs. However, an issue exists that
32056 could lead to data corruption when the DDR controller is
32057 in 32-bit bus mode while using 4-beat bursts.
32058
32059 Projected Impact:
32060 If the DDR controller is operating in 32-bit bus mode with
32061 4-beat bursts, then the controller may enter into a bad state.
32062 All subsequent reads from memory is corrupted.
32063 Four-beat bursts with a 32-bit bus only is used with DDR2 memories.
32064 Therefore, this erratum does not affect DDR3 mode.
32065
32066 Work Arounds:
32067 To work around this issue, software must set DEBUG_1[31] in
32068 DDR memory mapped space (CCSRBAR offset + 0x2f00 for DDR_1
32069 and CCSRBAR offset + 0x6f00 for DDR_2).
32070
32071 Currenlty, the code is using incorrect register DDR_SDRAM_CFG_2
32072 as condition, but it should be DDR_SDRAM_CFG register.
32073
32074 Signed-off-by: Dave Liu <daveliu@freescale.com>
32075
32076 commit d5b693090ed08d24c18491df9d8fc7387b2906f3
32077 Author: Dave Liu <daveliu@freescale.com>
32078 Date: Thu Oct 23 21:17:19 2008 +0800
32079
32080 85xx: remove unused config definition
32081
32082 Signed-off-by: Dave Liu <daveliu@freescale.com>
32083
32084 commit 0f060c3bf82832331a509f2e5d2442539e7aad09
32085 Author: Kumar Gala <galak@kernel.crashing.org>
32086 Date: Thu Oct 23 01:47:38 2008 -0500
32087
32088 85xx: Add basic e500mc core support
32089
32090 Introduce CONFIG_E500MC to deal with the minor differences between
32091 e500v2 and e500mc.
32092
32093 * Certain fields of HID0/1 don't exist anymore on e500mc
32094 * Cache line size is 64-bytes on e500mc
32095 * reset value of PIR is different
32096
32097 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32098
32099 commit a38a5b6edd30f29fd5fdb1d7f674521906c0e677
32100 Author: Kumar Gala <galak@kernel.crashing.org>
32101 Date: Thu Oct 23 01:47:37 2008 -0500
32102
32103 85xx: Use CONFIG_SYS_CACHELINE_SIZE instead of magic number
32104
32105 Using CONFIG_SYS_CACHELINE_SIZE instead of 31 means we can handle
32106 e500mc's 64-byte cacheline properly when it gets added.
32107
32108 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32109
32110 commit 5deb8022c3749faac30e9ad9694691e2442b5c93
32111 Author: Georg Schardt <schardt@team-ctech.de>
32112 Date: Fri Oct 24 13:51:52 2008 +0200
32113
32114 ppc4xx: New board avnet fx12 minimodul
32115
32116 This patch adds support for the avnet fx12 minimodul.
32117 It needs the "ppc4xx: Generic architecture for xilinx ppc405"
32118 patch from Ricardo.
32119
32120 Signed-off-by: Georg Schardt <schardt@team-ctech.de>
32121 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
32122 Signed-off-by: Stefan Roese <sr@denx.de>
32123
32124 commit 1f4d53260ec6f8f122aed75cce7c757d97a551e0
32125 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
32126 Date: Tue Oct 21 18:29:46 2008 +0200
32127
32128 ppc4xx: Generic architecture for xilinx ppc405(v3)
32129
32130 As "ppc44x: Unification of virtex5 pp440 boards" did for the xilinx
32131 ppc440 boards, this patch presents a common architecture for all the
32132 xilinx ppc405 boards.
32133
32134 Any custom xilinx ppc405 board can be added very easily with no code
32135 duplicity.
32136
32137 This patch also adds a simple generic board, that can be used on almost
32138 any design with xilinx ppc405 replacing the file ppc405-generic/xparameters.h
32139
32140 This patch is prepared to work with the latest version of EDK (10.1)
32141
32142 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
32143 Signed-off-by: Stefan Roese <sr@denx.de>
32144
32145 commit 485c00a57fab86f72a3769480c66bf1ca22e1459
32146 Author: Stefan Roese <sr@denx.de>
32147 Date: Fri Oct 24 08:56:09 2008 +0200
32148
32149 ppc4xx: Disable DDR2 autocalibration on Kilauea for now
32150
32151 Since the new autocalibration still has some problems on some Kilauea
32152 boards with 200MHz DDR2 frequency we disable the autocalibration and
32153 use the hardcoded values as done before. This seems to work reliably
32154 on all known DDR2 frequencies.
32155
32156 After the autocalibration issue is fixed we will enable it again.
32157
32158 Signed-off-by: Stefan Roese <sr@denx.de>
32159
32160 commit f177f4250c729727b1629fa8d8d6556c999e9b8c
32161 Author: Mike Frysinger <vapier@gentoo.org>
32162 Date: Wed Apr 9 02:02:07 2008 -0400
32163
32164 Blackfin: fix up UART status bit handling
32165
32166 Some Blackfin UARTs are read-to-clear while others are write-to-clear.
32167 This can cause problems when we poll the LSR and then later try and handle
32168 any errors detected.
32169
32170 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32171
32172 commit ae0910298f31f5bb3d33a64b8467c60ea3c5d6d0
32173 Author: Mike Frysinger <vapier@gentoo.org>
32174 Date: Sat Oct 11 20:42:17 2008 -0400
32175
32176 Blackfin: bf561-ezkit: drop redundant code
32177
32178 Common Blackfin code already announces CPU information.
32179
32180 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32181
32182 commit e2eea98bff1369f77a9f59a5fd0bd4928bc3332e
32183 Author: Mike Frysinger <vapier@gentoo.org>
32184 Date: Sat Oct 11 20:43:10 2008 -0400
32185
32186 Blackfin: bf561-ezkit: drop pointless USB code
32187
32188 The USB/LAN register settings are not actually used/needed in order to
32189 drive things from U-Boot, so drop the code.
32190
32191 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32192
32193 commit c23bff63fb03cb9dbcd26522841e53f9b34fa1ab
32194 Author: Mike Frysinger <vapier@gentoo.org>
32195 Date: Sat Oct 11 20:47:58 2008 -0400
32196
32197 Blackfin: linker scripts: force start.o and set initcode boundaries
32198
32199 Make sure that the start.o object is always the first object in our linker
32200 script regardless of configuration settings, and add some linker symbols
32201 so the ldr utility can properly locate the initcode when generating a LDR.
32202
32203 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32204
32205 commit bd33e5c613cf70e3cb51a73fdd653fe83b942bb0
32206 Author: Mike Frysinger <vapier@gentoo.org>
32207 Date: Sat Oct 11 21:19:39 2008 -0400
32208
32209 Blackfin: small cpu init optimization while setting interrupt mask
32210
32211 Use the sti instruction to set the initial interrupt mask rather than
32212 banging on the core IMASK MMR to save both space and time.
32213
32214 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32215
32216 commit 960922291c9594acb575cec7e47d7bed9b58182c
32217 Author: Mike Frysinger <vapier@gentoo.org>
32218 Date: Sat Oct 11 21:18:10 2008 -0400
32219
32220 Blackfin: set initial stack correctly according to Blackfin ABI
32221
32222 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32223
32224 commit 25cd33d82ea521b7bd90ca858f8919fae1e9732b
32225 Author: Mike Frysinger <vapier@gentoo.org>
32226 Date: Sun Apr 20 03:11:53 2008 -0400
32227
32228 Blackfin: make baud calculation more accurate
32229
32230 We should use the algorithm in the Linux kernel so that the UART divisor
32231 calculation is more accurate. It also fixes problems on some picky UARTs
32232 that have sampling anomalies.
32233
32234 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32235
32236 commit 0ba1da116e5edcb0c5ae4a7585d73f6548400a06
32237 Author: Mike Frysinger <vapier@gentoo.org>
32238 Date: Mon Oct 6 04:21:41 2008 -0400
32239
32240 Blackfin: decode hwerrcause/excause when crashing
32241
32242 Having to decode hwerrcause/excause values is a pain, so automate it.
32243
32244 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32245
32246 commit 2de95bb20c488f20298df6881b700a5a757ee780
32247 Author: Mike Frysinger <vapier@gentoo.org>
32248 Date: Mon Oct 6 04:20:54 2008 -0400
32249
32250 Blackfin: fix register dump messages
32251
32252 Make sure we report RETI/IPEND correctly.
32253
32254 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32255
32256 commit 7133999e6f62a9a01f6a8ffe234b8532b3ad1e4b
32257 Author: Mike Frysinger <vapier@gentoo.org>
32258 Date: Mon Oct 6 04:19:34 2008 -0400
32259
32260 Blackfin: don't bother displaying reboot msg when crashing
32261
32262 The hang function already tells you to reboot, so no point in showing it
32263 twice.
32264
32265 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32266
32267 commit 70c4c032ea112cc42aa1ce959c33fc4825eaef95
32268 Author: Mike Frysinger <vapier@gentoo.org>
32269 Date: Sun Jun 1 01:23:48 2008 -0400
32270
32271 Blackfin: enable support for nested interrupts
32272
32273 During cpu init, make sure we initialize the CEC properly so that
32274 interrupts can fire and be handled while U-Boot is running.
32275
32276 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32277
32278 commit 39782727e185860faa4884c2b04e84cb33d1c6cf
32279 Author: Mike Frysinger <vapier@gentoo.org>
32280 Date: Mon Oct 6 03:55:25 2008 -0400
32281
32282 Blackfin: init NAND before relocating env
32283
32284 If booting out of NAND, we need to make sure we initialize it properly
32285 before attempting to relocate the environment.
32286
32287 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32288
32289 commit 0f9a8819416ba40a53de50af148847a0e508f84d
32290 Author: Mike Frysinger <vapier@gentoo.org>
32291 Date: Thu Aug 7 18:40:13 2008 -0400
32292
32293 Blackfin: check cache bits, not cplb bits
32294
32295 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32296
32297 commit 2c1ea9e370cb72dd6a5aa32338e87a8a1f77bd76
32298 Author: Mike Frysinger <vapier@gentoo.org>
32299 Date: Thu Aug 7 17:52:59 2008 -0400
32300
32301 Blackfin: drop unused cache flush code
32302
32303 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32304
32305 commit 50f0d211912a648e31aa9123b4665a0444bb8ca9
32306 Author: Mike Frysinger <vapier@gentoo.org>
32307 Date: Thu Aug 7 15:21:47 2008 -0400
32308
32309 Blackfin: unify cache handling code
32310
32311 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32312
32313 commit 3c8798983403cb68a827d7a0d09b1134524a1b7d
32314 Author: Mike Frysinger <vapier@gentoo.org>
32315 Date: Mon Oct 6 03:39:07 2008 -0400
32316
32317 Blackfin: only initialize the RTC when actually used
32318
32319 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32320
32321 commit 621e579b812dd1a2e6777f7cbf6e55e736505823
32322 Author: Mike Frysinger <vapier@gentoo.org>
32323 Date: Mon Oct 6 03:44:33 2008 -0400
32324
32325 Blackfin: fix SWRST register definition
32326
32327 The SWRST register is a 16bit, not 32bit, register.
32328
32329 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32330
32331 commit 06121c4e2d183887dcd7a4ca2dcd395b213ea15b
32332 Author: Mike Frysinger <vapier@gentoo.org>
32333 Date: Thu Aug 7 18:54:57 2008 -0400
32334
32335 Blackfin: build with -fomit-frame-pointer
32336
32337 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32338
32339 commit adbfeeb7b32f737a9738daa583350d2bb9ed017a
32340 Author: Mike Frysinger <vapier@gentoo.org>
32341 Date: Thu Aug 7 17:50:26 2008 -0400
32342
32343 Blackfin: document some of the blackfin directories
32344
32345 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32346
32347 commit e4337968e43698a68ba608369f46d4a4114111ca
32348 Author: Mike Frysinger <vapier@gentoo.org>
32349 Date: Thu Aug 7 15:16:56 2008 -0400
32350
32351 Blackfin: only enable hardware error irq by default
32352
32353 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32354
32355 commit 2b66f08f257ef6a06785f27b3c6dc2a4cfc9cac4
32356 Author: Mike Frysinger <vapier@gentoo.org>
32357 Date: Thu Aug 7 13:36:43 2008 -0400
32358
32359 Blackfin: punt old unused mem_init.h header
32360
32361 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32362
32363 commit bcc121a01608042066a19ab5bff5bcfb805bf406
32364 Author: Mike Frysinger <vapier@gentoo.org>
32365 Date: Thu Aug 7 13:18:55 2008 -0400
32366
32367 Blackfin: delete unused page_descriptor_table_size define
32368
32369 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32370
32371 commit 30fb9d24ae16e5b0ed39e5b7cc85981165ca98bc
32372 Author: Mike Frysinger <vapier@gentoo.org>
32373 Date: Thu Aug 7 13:17:03 2008 -0400
32374
32375 Blackfin: fix typo in boot mode comment and add NAND define
32376
32377 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32378
32379 commit 2e5cbe5461c5c4c6665e318cfe950a5a150d999c
32380 Author: Ben Maan <moo@cow>
32381 Date: Thu Aug 7 13:14:21 2008 -0400
32382
32383 Blackfin: fix port mux defines for BF54x
32384
32385 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32386
32387 commit 0656ef2ba274910d31364fe022f6c7db0051660d
32388 Author: Mike Frysinger <vapier@gentoo.org>
32389 Date: Thu Aug 7 13:09:50 2008 -0400
32390
32391 Blackfin: update anomaly lists
32392
32393 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32394
32395 commit 50ca95402876cf7bac4e2d4f7855f616a038763f
32396 Author: Mike Frysinger <vapier@gentoo.org>
32397 Date: Thu Aug 7 13:08:54 2008 -0400
32398
32399 Blackfin: unify DSPID/DBGSTAT MMR definitions
32400
32401 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32402
32403 commit d9d8c7c696dec370ca714c03beb6e79d4c90bd5e
32404 Author: Wolfgang Denk <wd@denx.de>
32405 Date: Tue Oct 21 15:53:51 2008 +0200
32406
32407 Fix strmhz(): avoid printing negative fractions
32408
32409 Signed-off-by: Wolfgang Denk <wd@denx.de>
32410
32411 commit 4a7f6b750d8de543fdf8e58acd86745010054571
32412 Author: Richard Retanubun <RichardRetanubun@ruggedcom.com>
32413 Date: Fri Oct 17 08:55:51 2008 -0400
32414
32415 mpc83xx: Removed #ifdef CONFIG_MPC834X dependency on upmconfig function
32416
32417 This is done to allow other 83XX based platforms which also have UPM
32418 (e.g. 8360) to configure and use their UPM in u-boot.
32419
32420 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
32421 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32422
32423 commit 3bf1be3c0cfb1129b68cc1474119e5f323536488
32424 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32425 Date: Tue Oct 14 22:58:53 2008 +0400
32426
32427 mpc83xx: add support for switching between USB Host/Function for MPC837XEMDS
32428
32429 With this patch u-boot can fixup the dr_mode and phy_type properties
32430 for the Dual-Role USB controller.
32431
32432 While at it, also remove #ifdefs around includes, they are not needed.
32433
32434 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32435 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32436
32437 commit b3379f3fd13969934c00097c05754e7a8990fd39
32438 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32439 Date: Wed Oct 8 20:52:54 2008 +0400
32440
32441 mpc83xx: add ELBC NAND support for the MPC837XEMDS boards
32442
32443 Though NAND chip is replaceable on the MPC837XE-MDS boards, the
32444 current settings don't work with the default chip on the board.
32445 Nevertheless Freescale's U-Boot sets the option register correctly,
32446 so I just dumped the register from the working u-boot. My guess is
32447 that the old settings were applicable for some pilot boards, not
32448 found in the production.
32449
32450 This patch also enables FSL ELBC driver so that we could access
32451 the NAND storage in the u-boot.
32452
32453 The NAND support costs about 45KB, so the u-boot no longer fits
32454 into two 128KB NOR flash sectors, thus we also have to adjust
32455 environment location: add another 128KB to the monitor length.
32456
32457 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32458
32459 It is due to hardware design and logic defect, that is the
32460 I/O[0:7] of NAND chip is connected to LAD[7:0], so when
32461 the NAND chip connected to nLCS3, you have to set up the
32462 OR3[BCTLD] = '1' for normal operation, otherwise it will have
32463 bus contention due to the pin 48/25 of U60 is enabled.
32464
32465 Setup the OR3[BCTLD] = '1' , that meaning the LBCTL is not
32466 asserted upon access to the NAND chip, keep the default state.
32467
32468 Acked-by: Dave Liu <daveliu@freescale.com>
32469 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32470
32471 commit 00f7bbae92e3b13f2b37aeb1def9bb12445521b7
32472 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32473 Date: Thu Oct 2 19:17:33 2008 +0400
32474
32475 mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards
32476
32477 The MPC837xE-MDS board's CPLD can auto-detect if the board is on the PIB,
32478 standalone or acting as a PCI agent. User's Guide says:
32479
32480 - When the CPLD recognizes its location on the PIB it automatically
32481 configures RCW to the PCI Host.
32482 - If the CPLD fails to recognize its location then it is automatically
32483 configured as an Agent and the PCI is configured to an external arbiter.
32484
32485 This sounds good. Though in the standalone setup the CPLD sets PCI_HOST
32486 flag (it's ok, we can't act as PCI agents since we receive CLKIN, not
32487 PCICLK), but the CPLD doesn't set the ARBITER_ENABLE flag, and without
32488 any arbiter bad things will happen (here the board hangs during any config
32489 space reads).
32490
32491 In this situation we must disable the PCI. And in case of anybody really
32492 want to use an external arbiter, we provide "pci_external_aribter"
32493 environment variable.
32494
32495 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32496 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32497
32498 commit 1da83a63d8e1b4bddeb82581b1745a09aac3e2d3
32499 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32500 Date: Thu Oct 2 18:32:25 2008 +0400
32501
32502 mpc83xx: add SGMII riser module support for the MPC8378E-MDS boards
32503
32504 This involves configuring the SerDes and fixing up the flags and
32505 PHY addresses for the TSECs.
32506
32507 For Linux we also fix up the device tree.
32508
32509 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32510 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32511
32512 commit e6d9c8916de9c24f2c52d0b01cf00d2e74a04cd8
32513 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32514 Date: Thu Oct 2 18:31:59 2008 +0400
32515
32516 mpc83xx: add TSECs' HRCWH masks for MPC837x processors
32517
32518 We'll use these masks to parse TSEC modes out of HRCWH.
32519
32520 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32521 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32522
32523 commit 6f9cc6608b4e1cefde56c0fb99ae1c95c42575ff
32524 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32525 Date: Thu Oct 2 18:31:56 2008 +0400
32526
32527 mpc83xx: serdes: add forgotten shifts for rfcks
32528
32529 The rfcks should be shifted by 28 bits left. We didn't notice the bug
32530 because we were using only 100MHz clocks (for which rfcks == 0).
32531
32532 Though, for SGMII we'll need 125MHz clocks.
32533
32534 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32535 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32536
32537 commit 55c531984dcf933e4cd13a187a7e08e873b7ced1
32538 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32539 Date: Thu Oct 2 18:31:53 2008 +0400
32540
32541 mpc83xx: fix serdes setup for the MPC8378E boards
32542
32543 MPC837xE specs says that SerDes1 has:
32544
32545 — Two lanes running x1 SGMII at 1.25 Gbps;
32546 — Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
32547
32548 And for SerDes2:
32549
32550 — Two lanes running x1 PCI Express at 2.5 Gbps;
32551 — One lane running x2 PCI Express at 2.5 Gbps;
32552 — Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
32553
32554 The spec also explicitly states that PEX options are not valid for
32555 the SD1.
32556
32557 Nevertheless MPC8378 RDB and MDS boards configure the SD1 for PEX,
32558 which is wrong to do.
32559
32560 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32561 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32562
32563 commit 5c2ff323a94e27e481f70c44838d43fcd844dd46
32564 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32565 Date: Wed Sep 10 18:12:37 2008 +0400
32566
32567 mpc83xx: mpc8360emds: rework LBC SDRAM setup
32568
32569 Currently 64M of LBC SDRAM are mapped at 0xF0000000 which makes
32570 it difficult to use (b/c then the memory is discontinuous and
32571 there is quite big memory hole between the DDR/SDRAM regions).
32572
32573 This patch reworks LBC SDRAM setup so that now we dynamically
32574 place the LBC SDRAM near the DDR (or at 0x0 if there isn't any
32575 DDR memory).
32576
32577 With this patch we're able to:
32578
32579 - Boot without external DDR memory;
32580 - Use most "DDR + SDRAM" setups without need to support for
32581 sparse/discontinuous memory model in the software.
32582
32583 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32584 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32585
32586 commit def0819e920b05b34b56d8b42e1e43d9b89a52d6
32587 Author: Wolfgang Denk <wd@xpert.denx.de>
32588 Date: Tue Oct 21 11:23:56 2008 +0200
32589
32590 FDT: don't use private kernel header files
32591
32592 On some systems (for example Fedora Core 4) U-Boot builds with the
32593 following wanrings only:
32594
32595 ...
32596 In file included from /home/wd/git/u-boot/include/libfdt_env.h:33,
32597 from fdt.c:51:
32598 /usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header; include <endian.h> instead!
32599
32600 This patch fixes this problem.
32601
32602 Signed-off-by: Wolfgang Denk <wd@denx.de>
32603
32604 commit f4d14c55504ce40287321bd63ee269e3233ee4ae
32605 Author: Stefan Roese <sr@denx.de>
32606 Date: Mon Oct 13 15:15:31 2008 +0200
32607
32608 ppc4xx: Add 1.0 & 1.066 GHz to canyonlands bootstrap command for PLL setup
32609
32610 Signed-off-by: Stefan Roese <sr@denx.de>
32611
32612 commit 43cbce69d48d052574d71f50724be546d90a46a4
32613 Author: Stefan Roese <sr@denx.de>
32614 Date: Mon Oct 13 10:45:14 2008 +0200
32615
32616 ppc4xx: Correctly setup ranges property in ebc node
32617
32618 Previously only the NOR flash mapping was written into the ranges
32619 property of the ebc node. This patch now writes all enabled chip
32620 select areas into the ranges property.
32621
32622 Signed-off-by: Stefan Roese <sr@denx.de>
32623
32624 commit d7b26d58328f137471ea97de382bfa63f7239931
32625 Author: Dirk Eibach <eibach@gdsys.de>
32626 Date: Wed Oct 8 15:37:50 2008 +0200
32627
32628 ppc4xx: Add GDSys neo 405EP board support
32629
32630 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
32631 Signed-off-by: Stefan Roese <sr@denx.de>
32632
32633 commit c11da194545d2f4bbb54be1bb5e504e20ce8c16c
32634 Author: Niklaus Giger <niklaus.giger@netstal.com>
32635 Date: Wed Oct 1 14:46:13 2008 +0200
32636
32637 ppc4xx: Update configs for Netstal boards
32638
32639 I reorganized my config files, putting the common stuff into netstal-common.h
32640 (got the idea by looking a amcc-common.h from Stefan).
32641
32642 Added stuff to boot the new powerpc linux via NFS (only tested with HCU4).
32643
32644 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
32645 Signed-off-by: Stefan Roese <sr@denx.de>
32646
32647 commit c9c11d751e4242cf29c3c3c290d971f6d0cb1d15
32648 Author: Adam Graham <agraham@amcc.com>
32649 Date: Wed Oct 8 10:13:19 2008 -0700
32650
32651 ppc4xx: Add routine to retrieve CPU number
32652
32653 Provide a weak defined routine to retrieve the CPU number for
32654 reference boards that have multiple CPU's. Default behavior
32655 is the existing single CPU print output. Reference boards with
32656 multiple CPU's need to provide a board specific routine.
32657 See board/amcc/arches/arches.c for an example.
32658
32659 Signed-off-by: Adam Graham <agraham@amcc.com>
32660 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
32661 Signed-off-by: Stefan Roese <sr@denx.de>
32662
32663 commit 59217bae40e90982ab5400d849c08af683ace036
32664 Author: Adam Graham <agraham@amcc.com>
32665 Date: Wed Oct 8 10:13:14 2008 -0700
32666
32667 ppc4xx: Add static support for 44x IBM SDRAM Controller
32668
32669 This patch add the capability to configure a PPC440 based IBM SDRAM
32670 Controller with static, compiled-in, values. PPC440 memory subsystem
32671 includes a Memory Queue core.
32672
32673 Signed-off-by: Adam Graham <agraham@amcc.com>
32674 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
32675 Signed-off-by: Stefan Roese <sr@denx.de>
32676
32677 commit f09f09d3899017aaaa2b031bba63c271e9c48e4d
32678 Author: Adam Graham <agraham@amcc.com>
32679 Date: Wed Oct 8 10:12:53 2008 -0700
32680
32681 ppc4xx: Add AMCC Arches board support (dual 460GT)
32682
32683 The Arches Evaluation board is based on the AMCC 460GT SoC chip.
32684 This board is a dual processor board with each processor providing
32685 independent resources for Rapid IO, Gigabit Ethernet, and serial
32686 communications. Each 460GT has it's own 512MB DDR2 memory, 32MB NOR
32687 FLASH, UART, EEPROM and temperature sensor, along with a shared debug
32688 port. The two 460GT's will communicate with each other via shared
32689 memory, Gigabit Ethernet and x1 PCI-Express.
32690
32691 Signed-off-by: Adam Graham <agraham@amcc.com>
32692 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
32693 Signed-off-by: Stefan Roese <sr@denx.de>
32694
32695 commit 055b12f2ffd7c34eea7e983a0588b24f2e69e0e3
32696 Author: Wolfgang Denk <wd@xpert.denx.de>
32697 Date: Sun Oct 19 21:54:30 2008 +0200
32698
32699 TQM8260: environment in flash instead EEPROM, baudrate 115k
32700
32701 Several customers have reported problems with the environment in
32702 EEPROM, including corrupted content after board reset. Probably the
32703 code to prevent I2C Enge Conditions is not working sufficiently.
32704
32705 We move the environment to flash now, which allows to have a backup
32706 copy plus gives much faster boot times.
32707
32708 Also, change the default console initialization to 115200 bps as used
32709 on most other boards.
32710
32711 Signed-off-by: Wolfgang Denk <wd@denx.de>
32712
32713 commit 1836881190b3d8a6918b0d64b39fe32bbbdf85d8
32714 Author: Kumar Gala <galak@kernel.crashing.org>
32715 Date: Sun Oct 19 12:49:19 2008 -0500
32716
32717 85xx: Fix compile warning in mpc8536ds.c
32718
32719 mpc8536ds.c: In function 'is_sata_supported':
32720 mpc8536ds.c:615: warning: unused variable 'devdisr'
32721
32722 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32723
32724 commit 8ed44d91c8122d00368523b0b746691c895d3b3c
32725 Author: Wolfgang Denk <wd@denx.de>
32726 Date: Sun Oct 19 02:35:50 2008 +0200
32727
32728 Cleanup: fix "MHz" spelling
32729
32730 Signed-off-by: Wolfgang Denk <wd@denx.de>
32731
32732 commit 08ef89ecd174969b3544f3f0c7cd1de3c57f737b
32733 Author: Wolfgang Denk <wd@denx.de>
32734 Date: Sun Oct 19 02:35:49 2008 +0200
32735
32736 Use strmhz() to format clock frequencies
32737
32738 Signed-off-by: Wolfgang Denk <wd@denx.de>
32739
32740 commit d50c7d4be150b2252c0d2e16cfcf69643bdd6dc9
32741 Author: Wolfgang Denk <wd@denx.de>
32742 Date: Sun Oct 19 02:35:48 2008 +0200
32743
32744 strmhz(): Round numbers when printing clock frequencies
32745
32746 Round clock frequencies for printing.
32747
32748 Many boards printed off clock frequencies like 399 MHz instead of the
32749 exact 400 MHz because numberes were not rounded. This is fixed now.
32750
32751 Signed-off-by: Wolfgang Denk <wd@denx.de>
32752
32753 commit 681c02d05b29c6d46093525052c74b9c4ddc8b08
32754 Author: Timur Tabi <timur@freescale.com>
32755 Date: Mon Oct 20 15:16:47 2008 -0500
32756
32757 85xx: properly document MPC85xx_PORDEVSR2_SEC_CFG
32758
32759 Commit f7d190b1 corrected the value of MPC85xx_PORDEVSR2_SEC_CFG, but forgot
32760 to add a comment that the correct value disagrees with the 8544 reference
32761 manual. The changelog for that commit is also wrong, as it says "bit 28"
32762 when it should be "bit 24".
32763
32764 Signed-off-by: Timur Tabi <timur@freescale.com>
32765
32766 commit 360fe71e82b83e264c964c9447c537e9a1f643c8
32767 Author: Heiko Schocher <hs@denx.de>
32768 Date: Fri Oct 17 18:24:06 2008 +0200
32769
32770 mgcoge: add redundant environment sector
32771
32772 Signed-off-by: Heiko Schocher <hs@denx.de>
32773
32774 commit 53ebf0c470c87d5f9fa76462e5f4064d26a9b16a
32775 Author: Heiko Schocher <hs@denx.de>
32776 Date: Fri Oct 17 18:23:27 2008 +0200
32777
32778 mgsuvd: update size of environment
32779
32780 Signed-off-by: Heiko Schocher <hs@denx.de>
32781
32782 commit 2e26d837f11460c0e6dede7d65424a31e0183d09
32783 Author: Jason Jin <Jason.jin@freescale.com>
32784 Date: Fri Oct 10 11:41:00 2008 +0800
32785
32786 Enabled the Freescale SGMII riser card on 8536DS
32787
32788 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
32789
32790 commit 7e183cad0c5ab6415dca95d6ac290ea918b28c55
32791 Author: Liu Yu <yu.liu@freescale.com>
32792 Date: Fri Oct 10 11:40:59 2008 +0800
32793
32794 Enabled the Freescale SGMII riser card on 8572DS
32795
32796 This patch based on Andy's work.
32797 Including command 'pixis_set_sgmii' support.
32798
32799 Signed-off-by: Liu Yu <yu.liu@freescale.com>
32800
32801 commit bff188baf9427c35745356439435acf3864d4c65
32802 Author: Liu Yu <yu.liu@freescale.com>
32803 Date: Fri Oct 10 11:40:58 2008 +0800
32804
32805 Make pixis_set_sgmii more general to support MPC85xx boards.
32806
32807 The pixis sgmii command depend on the FPGA support on the board, some 85xx
32808 boards support SGMII riser card but did not support this command, define
32809 CONFIG_PIXIS_SGMII_CMD for those boards which support the sgmii command.
32810
32811 Not like 8544, 8572 has 4 eTsec so that the other two's pixis bits
32812 are not supported by 8544. Therefor, define PIXIS_VSPEED2_MASK and
32813 PIXIS_VCFGEN1_MASK in header file for both boards.
32814
32815 Signed-off-by: Liu Yu <yu.liu@freescale.com>
32816
32817 commit 5e981d683d2363204c76773941c2e9c2044c808f
32818 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32819 Date: Wed Oct 8 23:38:02 2008 -0500
32820
32821 Add cpu/8xxx to TAGS_SUBDIRS
32822
32823 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32824
32825 commit e1f7d22b8b52fc08c4d17a6a7db1e664281aed63
32826 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32827 Date: Thu Oct 9 01:25:55 2008 -0500
32828
32829 fsl_law clear enable before changing.
32830
32831 Debug sessions may have left enabled laws.
32832 Changing lawbar with an unkown enabled tgtid could cause problems.
32833
32834 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32835
32836 commit 86be510f7b5443e7e937f696bfbe037fdc740b15
32837 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32838 Date: Thu Oct 9 00:29:27 2008 -0500
32839
32840 mpc8572 additional end-point mode
32841
32842 mpc8572 supports all pcie controllers as end-points with cfg_host_agent=0.
32843 Include host_agent == 0 decode for end-point determination.
32844
32845 This is not needed for the ds reference board since pcie3 will be a host
32846 in order to connect to the uli chip. Include it here as a reference for
32847 other mpc8572 boards.
32848
32849 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32850
32851 commit 6856b3d0221a838580e6bb06f61425fd7529ba93
32852 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32853 Date: Wed Oct 8 23:37:59 2008 -0500
32854
32855 85xx if NUM_CPUS>1, print cpu number
32856
32857 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32858
32859 commit f7fecc3e25050a036c9f50f0d2b85bc3199a96e0
32860 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32861 Date: Wed Oct 8 23:38:01 2008 -0500
32862
32863 pixis do not print long help if not configured
32864
32865 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32866
32867 commit 0e17f02a8a78d85225a4d805f6a1ea95a0a460b5
32868 Author: Andy Fleming <afleming@freescale.com>
32869 Date: Tue Oct 7 08:09:50 2008 -0500
32870
32871 Have u-boot pass stashing parameters into device tree
32872
32873 Some cores don't support ethernet stashing at all, and some
32874 instances have errata. Adds 3 properties to gianfar nodes
32875 which support stashing. For now, just add this support to
32876 85xx SoCs.
32877
32878 Signed-off-by: Andy Fleming <afleming@freescale.com>
32879
32880 commit c21617fd265b7c126c6e2f2d8a23cdb00d4fade7
32881 Author: Haiying Wang <Haiying.Wang@freescale.com>
32882 Date: Fri Oct 3 12:37:57 2008 -0400
32883
32884 Add DDR options setting on MPC8641HPCN board
32885
32886 * Add board specific parameter table to choose correct cpo, clk_adjust,
32887 write_data_delay based on board ddr frequency and n_ranks.
32888
32889 * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
32890
32891 Signed-off-by: James Yang <James.Yang@freescale.com>
32892 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
32893
32894 commit 4ca06607d60d0a6378812ef58fd1eab2a7f77111
32895 Author: Haiying Wang <Haiying.Wang@freescale.com>
32896 Date: Fri Oct 3 12:37:41 2008 -0400
32897
32898 Add ddr interleaving suppport for MPC8572DS board
32899
32900 * Add board specific parameter table to choose correct cpo, clk_adjust,
32901 write_data_delay, 2T based on board ddr frequency and n_ranks.
32902
32903 * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
32904
32905 * Set memory controller interleaving mode to bank interleaving, and disable
32906 bank(chip select) interleaving mode by default, because the default on-board
32907 DDR DIMMs are 2x512MB single-rank.
32908
32909 * Change CONFIG_ICS307_REFCLK_HZ from 33333333 to 33333000.
32910
32911 Signed-off-by: James Yang <James.Yang@freescale.com>
32912 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
32913
32914 commit 1f293b417ac6ab8e317ca2b770377ca93edf2370
32915 Author: Haiying Wang <Haiying.Wang@freescale.com>
32916 Date: Fri Oct 3 12:37:26 2008 -0400
32917
32918 Add debug information for DDR controller registers
32919
32920 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
32921
32922 commit c9ffd839b1ada502c86f88edaf1534426b6688ce
32923 Author: Haiying Wang <Haiying.Wang@freescale.com>
32924 Date: Fri Oct 3 12:37:10 2008 -0400
32925
32926 Check DDR interleaving mode
32927
32928 * Check DDR interleaving mode from environment by reading memctl_intlv_ctl and
32929 ba_intlv_ctl.
32930 * Print DDR interleaving mode information
32931 * Add doc/README.fsl-ddr to describe the interleaving setting
32932
32933 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
32934
32935 commit dfb49108e4f86c2224e1f30124328b0de66ef72e
32936 Author: Haiying Wang <Haiying.Wang@freescale.com>
32937 Date: Fri Oct 3 12:36:55 2008 -0400
32938
32939 Pass dimm parameters to populate populate controller options
32940
32941 Because some dimm parameters like n_ranks needs to be used with the board
32942 frequency to choose the board parameters like clk_adjust etc. in the
32943 board_specific_paramesters table of the board ddr file, we need to pass
32944 the dimm parameters to the board file.
32945
32946 * move ddr dimm parameters header file from /cpu to /include directory.
32947 * add ddr dimm parameters to populate board specific options.
32948 * Fix fsl_ddr_board_options() for all the 8xxx boards which call this function.
32949
32950 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
32951
32952 commit dbbbb3abeff325855cae76e33d69d5665631443f
32953 Author: Haiying Wang <Haiying.Wang@freescale.com>
32954 Date: Fri Oct 3 12:36:39 2008 -0400
32955
32956 Make DDR interleaving mode work correctly
32957
32958 Fix some bugs:
32959 1. Correctly set intlv_ctl in cs_config.
32960 2. Correctly set sa, ea in cs_bnds when bank interleaving mode is enabled.
32961 3. Set base_address and total memory for each ddr controller in memory
32962 controller interleaving mode.
32963
32964 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
32965
32966 commit 1c9aa76bf9013069e24258f46f4687c9f98a02d6
32967 Author: Kumar Gala <galak@kernel.crashing.org>
32968 Date: Mon Sep 22 23:40:42 2008 -0500
32969
32970 85xx: Enable interrupt and setexpr commands on Freescale 85xx boards
32971
32972 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32973
32974 commit 7c0d4a7508d252d2d7c137eeb376814132dda30f
32975 Author: Kumar Gala <galak@kernel.crashing.org>
32976 Date: Mon Sep 22 14:11:11 2008 -0500
32977
32978 85xx: Improve flash remapping on MPC8572DS & MPC8536DS
32979
32980 Changing the flash from cacheable to cache-inhibited was taking a significant
32981 amount of time due to the fact that we were iterating over the full 256M of
32982 flash. Instead we can just flush the L1 d-cache and invalidate the i-cache.
32983
32984 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32985
32986 commit 54e091d3b603a3332c619199ca83a07e95960da4
32987 Author: Kumar Gala <galak@kernel.crashing.org>
32988 Date: Mon Sep 22 14:11:10 2008 -0500
32989
32990 85xx: Export invalidate_{i,d}cache and add flush_dcache
32991
32992 Added the ability for C code to invalidate the i/d-cache's and
32993 to flush the d-cache. This allows us to more efficient change mappings
32994 from cache-able to cache-inhibited.
32995
32996 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32997
32998 commit 6250f0f6297c5ba9aecdea6290799a95c5d4b1da
32999 Author: Heiko Schocher <hs@denx.de>
33000 Date: Fri Oct 17 16:11:52 2008 +0200
33001
33002 mgcoge, mgsuvd: extract more common code
33003
33004 in ft_blob_update () for both boards was an unneccessary
33005 repetition of code, which this patch moves in a common
33006 function for this boards.
33007
33008 Signed-off-by: Heiko Schocher <hs@denx.de>
33009
33010 commit 9e299192ca9850cf725456388042a5aa5a6f3ec7
33011 Author: Heiko Schocher <hs@denx.de>
33012 Date: Fri Oct 17 12:15:55 2008 +0200
33013
33014 mgcoge, mgsuvd: use in_*/out_* accesors
33015
33016 Signed-off-by: Heiko Schocher <hs@denx.de>
33017
33018 commit a21ca95f8b9dca22714952b348e4905ac157b5cd
33019 Author: Heiko Schocher <hs@denx.de>
33020 Date: Fri Oct 17 13:52:51 2008 +0200
33021
33022 mgsuvd: fix compiler warning when using soft_i2c driver
33023
33024 Signed-off-by: Heiko Schocher <hs@denx.de>
33025
33026 commit cac9cf7875c2a01d63422820ed4732a9bdf5ab7b
33027 Author: Heiko Schocher <hs@denx.de>
33028 Date: Fri Oct 17 12:15:05 2008 +0200
33029
33030 mgsuvd: fix coding style
33031
33032 Signed-off-by: Heiko Schocher <hs@denx.de>
33033
33034 commit 5f4c3137f4f051787707c548133823f1656eb508
33035 Author: Heiko Schocher <hs@denx.de>
33036 Date: Fri Oct 17 12:13:30 2008 +0200
33037
33038 mgcoge: Second Flash on CS5 not on CS1
33039
33040 Signed-off-by: Heiko Schocher <hs@denx.de>
33041
33042 commit 76da19df5b8e186d269f29190696bd31fb6c836b
33043 Author: Kumar Gala <galak@kernel.crashing.org>
33044 Date: Thu Oct 16 21:52:08 2008 -0500
33045
33046 Added arch_lmb_reserve to allow arch specific memory regions protection
33047
33048 Each architecture has different ways of determine what regions of memory
33049 might not be valid to get overwritten when we boot. This provides a
33050 hook to allow them to reserve any regions they care about. Currently
33051 only ppc, m68k and sparc need/use this.
33052
33053 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33054
33055 commit e02d4a9904c8f36395994c0c81469d552b82f5ea
33056 Author: Heiko Schocher <hs@denx.de>
33057 Date: Thu Oct 16 16:32:35 2008 +0200
33058
33059 mgcoge: added CONFIG_FIT to support the new u-boot image format
33060
33061 Signed-off-by: Heiko Schocher <hs@denx.de>
33062
33063 commit 6d0f6bcf337c5261c08fabe12982178c2c489d76
33064 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33065 Date: Thu Oct 16 15:01:15 2008 +0200
33066
33067 rename CFG_ macros to CONFIG_SYS
33068
33069 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33070
33071 commit 71edc271816ec82cf0550dd6980be2da3cc2ad9e
33072 Author: Kumar Gala <galak@kernel.crashing.org>
33073 Date: Mon Oct 13 14:12:55 2008 -0500
33074
33075 74xx/7xx/86xx: Rename flush_data_cache to flush_dcache to match 85xx version
33076
33077 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33078
33079 commit b799cb4c0eebb0762e91e9653d8b9cc9a98440e3
33080 Author: Kumar Gala <galak@kernel.crashing.org>
33081 Date: Tue Sep 23 10:05:02 2008 -0500
33082
33083 Expose command table search for sub-commands
33084
33085 Sub-command can benefit from using the same table and search functions
33086 that top level commands have. Expose this functionality by refactoring
33087 find_cmd() and introducing find_cmd_tbl() that sub-command processing
33088 can call.
33089
33090 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33091
33092 commit f7e51b27508446f8cae3927975817137979ad5e8
33093 Author: Heiko Schocher <hs@denx.de>
33094 Date: Wed Oct 15 09:41:33 2008 +0200
33095
33096 mgsuvd, mgcoge: added BOOTCOUNT feature.
33097
33098 Signed-off-by: Heiko Schocher <hs@denx.de>
33099
33100 commit 8f64da7f83b553889bc08400c97047998382e9d2
33101 Author: Heiko Schocher <hs@denx.de>
33102 Date: Wed Oct 15 09:41:00 2008 +0200
33103
33104 mgcoge, mgsuvd: added support for the IVM EEprom.
33105
33106 The EEprom contains some Manufacturerinformation,
33107 which are read from u-boot at boot time, and saved
33108 in same hush shell variables.
33109
33110 Signed-off-by: Heiko Schocher <hs@denx.de>
33111
33112 commit 81473f67810c4c9b7efaed8dee258ed6bc4c7983
33113 Author: Heiko Schocher <hs@denx.de>
33114 Date: Wed Oct 15 09:40:28 2008 +0200
33115
33116 hush: add showvar command for hush shell.
33117
33118 This new command shows the local variables defined in
33119 the hush shell:
33120
33121 => help showvar
33122 showvar
33123 - print values of all hushshell variables
33124 showvar name ...
33125 - print value of hushshell variable 'name'
33126
33127 Also make the set_local_var() and unset_local_var ()
33128 no longer static, so it is possible to define local
33129 hush shell variables at boot time. If CONFIG_HUSH_INIT_VAR
33130 is defined, u-boot calls hush_init_var (), where
33131 boardspecific code can define local hush shell
33132 variables at boottime.
33133
33134 Signed-off-by: Heiko Schocher <hs@denx.de>
33135
33136 commit 67b23a322848d828a5e45c0567b72762bfde7abf
33137 Author: Heiko Schocher <hs@denx.de>
33138 Date: Wed Oct 15 09:39:47 2008 +0200
33139
33140 I2C: adding new "i2c bus" Command to the I2C Subsystem.
33141
33142 With this Command it is possible to add new I2C Busses,
33143 which are behind 1 .. n I2C Muxes. Details see README.
33144
33145 Signed-off-by: Heiko Schocher <hs@denx.de>
33146
33147 commit c24853644ddd2dd2e4246b5854a93e6254a14092
33148 Author: Heiko Schocher <hs@denx.de>
33149 Date: Wed Oct 15 09:39:08 2008 +0200
33150
33151 mgcoge, mgsuvd: add board specific I2C deblocking mechanism.
33152
33153 As documented in doc/I2C_Edge_Conditions, adding a
33154 board specific deblocking mechanism via CFG_I2C_INIT_BOARD
33155 for the mgcoge and mgsuvd board.
33156
33157 This code was originally written by Keymile in association
33158 with Anatech and Atmel in 1998. The Code toggels the SCL
33159 until the SCA line goes to HIGH (max. 16 times).
33160 And after this, a start condition is sent.
33161
33162 This is another approach to deblock the I2C Bus. The
33163 soft I2C driver actually sends 9 clocks with SDA High,
33164 and then a stop at the end, to deblock the I2C Bus.
33165
33166 Maybe we should use the approach from Keymile as
33167 the new standard?
33168
33169 Signed-off-by: Heiko Schocher <hs@denx.de>
33170
33171 commit 4ca107effebfbabac1057c39632105dacef95957
33172 Author: Heiko Schocher <hs@denx.de>
33173 Date: Wed Oct 15 09:38:38 2008 +0200
33174
33175 soft_i2c: Add CFG_I2C_INIT_BOARD option
33176
33177 This patch adds the option for a boardspecific
33178 I2C deblocking mechanism for the soft i2c driver.
33179
33180 Signed-off-by: Heiko Schocher <hs@denx.de>
33181
33182 commit e5e4edd9f1f76210a09c34ee835f6cff60fdbbd1
33183 Author: Heiko Schocher <hs@denx.de>
33184 Date: Wed Oct 15 09:38:07 2008 +0200
33185
33186 mgcoge, mgsuvd: add DTT (LM75) support.
33187
33188 Signed-off-by: Heiko Schocher <hs@denx.de>
33189
33190 commit 8e442df438ab677057571e3ac01846bff7719bce
33191 Author: Heiko Schocher <hs@denx.de>
33192 Date: Wed Oct 15 09:37:34 2008 +0200
33193
33194 lm75: Make the LM75 MULTI_BUS compatible.
33195
33196 Signed-off-by: Heiko Schocher <hs@denx.de>
33197
33198 commit 12f1678127c1df2b2878ba93c88948bedc060775
33199 Author: Heiko Schocher <hs@denx.de>
33200 Date: Wed Oct 15 09:37:04 2008 +0200
33201
33202 lm75: fix Codingstyle issues.
33203
33204 Signed-off-by: Heiko Schocher <hs@denx.de>
33205
33206 commit f2202450c75ba6934b356024101500ddcde6e2a6
33207 Author: Heiko Schocher <hs@denx.de>
33208 Date: Wed Oct 15 09:36:33 2008 +0200
33209
33210 mgcoge, mgsuvd: added EEprom support.
33211
33212 Signed-off-by: Heiko Schocher <hs@denx.de>
33213
33214 commit 9661bf9d120f760238b2a073b84f2baf05010057
33215 Author: Heiko Schocher <hs@denx.de>
33216 Date: Wed Oct 15 09:36:03 2008 +0200
33217
33218 mgcoge, mgsuvd: add I2C support.
33219
33220 Signed-off-by: Heiko Schocher <hs@denx.de>
33221
33222 commit 98aed379586a155292efbf3209356836584b601c
33223 Author: Heiko Schocher <hs@denx.de>
33224 Date: Wed Oct 15 09:35:26 2008 +0200
33225
33226 soft_i2c: prevent compiler warnings if driver does not use CPU Pins.
33227
33228 This patch fixes the following warnings, when using
33229 the soft_i2c driver using no CPU pins on MPC82xx or MPC8xx
33230 systems:
33231
33232 soft_i2c.c: In function 'send_reset':
33233 soft_i2c.c:93: warning: unused variable 'immr'
33234 soft_i2c.c: In function 'send_start':
33235 soft_i2c.c:124: warning: unused variable 'immr'
33236 soft_i2c.c: In function 'send_stop':
33237 soft_i2c.c:146: warning: unused variable 'immr'
33238 soft_i2c.c: In function 'send_ack':
33239 soft_i2c.c:171: warning: unused variable 'immr'
33240 soft_i2c.c: In function 'write_byte':
33241 soft_i2c.c:196: warning: unused variable 'immr'
33242 soft_i2c.c: In function 'read_byte':
33243 soft_i2c.c:244: warning: unused variable 'immr'
33244
33245 Signed-off-by: Heiko Schocher <hs@denx.de>
33246
33247 commit 799b784aa00cb03a352847ab9f9acdde79b72d21
33248 Author: Heiko Schocher <hs@denx.de>
33249 Date: Wed Oct 15 09:34:45 2008 +0200
33250
33251 i2c: add CONFIG_I2C_MULTI_BUS for soft_i2c and mpc8260 i2c driver.
33252
33253 Signed-off-by: Heiko Schocher <hs@denx.de>
33254
33255 commit 0809ea2f4340ab2047400c7d3d3047f97987d0fd
33256 Author: Heiko Schocher <hs@denx.de>
33257 Date: Wed Oct 15 09:34:05 2008 +0200
33258
33259 mgcoge: fix Coding Style issues.
33260
33261 Signed-off-by: Heiko Schocher <hs@denx.de>
33262
33263 commit e43a27c49712203fe8848a17714330623edfb2eb
33264 Author: Heiko Schocher <hs@denx.de>
33265 Date: Wed Oct 15 09:33:30 2008 +0200
33266
33267 I2C: add new command i2c reset.
33268
33269 If I2C Bus is blocked (see doc/I2C_Edge_Conditions),
33270 it is not possible to get out of this, until the
33271 complete Hardware gets a reset. This new commando
33272 calls again i2c_init (and that calls i2c_init_board
33273 if defined), which will deblock the I2C Bus.
33274
33275 Signed-off-by: Heiko Schocher <hs@denx.de>
33276 Signed-off-by: Wolfgang Denk <wd@denx.de>
33277
33278 commit 86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686
33279 Author: Heiko Schocher <hs@denx.de>
33280 Date: Wed Oct 15 09:32:25 2008 +0200
33281
33282 mgsuvd, mgcoge: move this 2 boards in one dir.
33283
33284 There are some more extensions, which are for both boards
33285 and some more boards from this manufacturer will follow soon.
33286
33287 Signed-off-by: Heiko Schocher <hs@denx.de>
33288 Signed-off-by: Wolfgang Denk <wd@denx.de>
33289
33290 commit 1c6fe6eac75d695fde677af8330c0dbe75fb6a2b
33291 Author: Dirk Eibach <eibach@gdsys.de>
33292 Date: Wed Oct 8 13:44:27 2008 +0200
33293
33294 hwmon: Add LM63 support
33295
33296 This patch adds support for the National LM63 temperature
33297 sensor with integrated fan control. It's used on the GDSys
33298 Neo board (405EP) which will be submitted later.
33299
33300 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
33301 Acked-by: Stefan Roese <sr@denx.de>
33302
33303 commit 7ba890bf2f2b92831420243c058951aa831119fd
33304 Author: Kyungmin Park <kmpark@infradead.org>
33305 Date: Wed Oct 8 11:01:17 2008 +0900
33306
33307 Add Red Black Tree support
33308
33309 Now it's used at UBI module. Of course other modules can use it.
33310 If you want to use it, please define CONFIG_RBTREE
33311
33312 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
33313
33314 commit fbd85ad65dd9c98f36ed3fb12fe41f381b7d4794
33315 Author: richardretanubun <richardretanubun@ruggedcom.com>
33316 Date: Mon Oct 6 16:10:53 2008 -0400
33317
33318 CONFIG_EFI_PARTITION: Added support for EFI partition in cmd_ext2fs.c
33319
33320 Added support for CONFIG_EFI_PARTITION to ext2 commands.
33321 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
33322
33323 commit 07f3d789b9beb7ce3278c974f4d5c8f51b6ab567
33324 Author: richardretanubun <richardretanubun@ruggedcom.com>
33325 Date: Fri Sep 26 11:13:22 2008 -0400
33326
33327 Add support for CONFIG_EFI_PARTITION (GUID Partition Table)
33328
33329 The GUID (Globally Unique Identifier) Partition Table (GPT) is a part
33330 of EFI. See http://en.wikipedia.org/wiki/GUID_Partition_Table
33331
33332 Based on linux/fs/partitions/efi.[ch]
33333
33334 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
33335
33336 commit fbc87dc0546dff709b38f358e2c5d5e39c4ca374
33337 Author: Bartlomiej Sieka <tur@semihalf.com>
33338 Date: Wed Oct 1 15:26:32 2008 +0200
33339
33340 FIT: output image load address for type 'firmware', fix message while there
33341
33342 Now that the auto-update feature uses the 'firmware' type for updates, it is
33343 useful to inspect the load address of such images.
33344
33345 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
33346
33347 commit 4bae90904b69ce3deb9f7c334ef12ed74e18a275
33348 Author: Bartlomiej Sieka <tur@semihalf.com>
33349 Date: Wed Oct 1 15:26:31 2008 +0200
33350
33351 Automatic software update from TFTP server
33352
33353 The auto-update feature allows to automatically download software updates
33354 from a TFTP server and store them in Flash memory during boot. Updates are
33355 contained in a FIT file and protected with SHA-1 checksum.
33356
33357 More detailed description can be found in doc/README.update.
33358
33359 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
33360 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
33361
33362 commit 3f0cf51dabacc2724731c5079a60ea989103bb8f
33363 Author: Bartlomiej Sieka <tur@semihalf.com>
33364 Date: Wed Oct 1 15:26:27 2008 +0200
33365
33366 flash: factor out adjusting of Flash address to the end of sector
33367
33368 The upcoming automatic update feature needs the ability to adjust an
33369 address within Flash to the end of its respective sector. Factor out
33370 this functionality to a new function flash_sect_roundb().
33371
33372 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
33373 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
33374 Signed-off-by: Stefan Roese <sr@denx.de>
33375
33376 commit e83cc06375ac2bea0830c6ed0f9d8fdc3c1b27d5
33377 Author: Bartlomiej Sieka <tur@semihalf.com>
33378 Date: Wed Oct 1 15:26:29 2008 +0200
33379
33380 net: Make TFTP server timeout configurable
33381
33382 There are two aspects of a TFTP transfer involving timeouts:
33383 1. timeout waiting for initial server reply after sending RRQ
33384 2. timeouts while transferring actual data from the server
33385
33386 Since the upcoming auto-update feature attempts a TFTP download during each
33387 boot, it is undesirable to have a long delay when the TFTP server is not
33388 available. Thus, this commit makes the server timeout (1.) configurable by two
33389 global variables:
33390
33391 TftpRRQTimeoutMSecs
33392 TftpRRQTimeoutCountMax
33393
33394 TftpRRQTimeoutMSecs overrides default timeout when trying to connect to a TFTP
33395 server, TftpRRQTimeoutCountMax overrides default number of connection retries.
33396 The total delay when trying to download a file from a non-existing TFTP server
33397 is TftpRRQTimeoutMSecs x TftpRRQTimeoutCountMax milliseconds.
33398
33399 Timeouts during file transfers (2.) are unaffected.
33400
33401 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
33402 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
33403 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33404
33405 commit 49f3bdbba8071f56d950a9498b6cdb998b35340a
33406 Author: Bartlomiej Sieka <tur@semihalf.com>
33407 Date: Wed Oct 1 15:26:28 2008 +0200
33408
33409 net: express the first argument to NetSetTimeout() in milliseconds
33410
33411 Enforce millisecond semantics of the first argument to NetSetTimeout() --
33412 the change is transparent for well-behaving boards (CFG_HZ == 1000 and
33413 get_timer() countiing in milliseconds).
33414
33415 Rationale for this patch is to enable millisecond granularity for
33416 network-related timeouts, which is needed for the upcoming automatic
33417 software update feature.
33418
33419 Summary of changes:
33420 - do not scale the first argument to NetSetTimeout() by CFG_HZ
33421 - change timeout values used in the networking code to milliseconds
33422
33423 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
33424 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
33425 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33426
33427 commit c68a05feeb88de9fcf158e67ff6423c4cc988f88
33428 Author: richardretanubun <richardretanubun@ruggedcom.com>
33429 Date: Mon Sep 29 18:28:23 2008 -0400
33430
33431 Adds two more ethernet interface to 83xx
33432
33433 Added as a convenience for other platforms that uses MPC8360 (has 8 UCC).
33434 Six eth interface is chosen because the platform I am using combines
33435 UCC1&2 and UCC3&4 as 1000 Eth and the other four UCCs as 10/100 Eth.
33436
33437 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
33438 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33439
33440 commit 41410eee472b0f42e03a77f961bbc55ef58f3c01
33441 Author: Haiying Wang <Haiying.Wang@freescale.com>
33442 Date: Wed Sep 24 11:42:12 2008 -0500
33443
33444 Change UEC PHY interface to RGMII on MPC8568MDS
33445
33446 Change UEC phy interface from GMII to RGMII on MPC8568MDS board
33447
33448 Because on MPC8568MDS, GMII interface is only recommended for 1000Mbps speed,
33449 but RGMII interface can work at 10/100/1000Mbps, and RGMII interface works more stable.
33450
33451 Now both UEC1 and UEC2 can work properly under u-boot.
33452
33453 It is also in consistent with the kernel setting for 8568 UEC phy interface.
33454
33455 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
33456 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33457
33458 commit b59b16ca24bc7e77ec113021a6d77b9b32fcf192
33459 Author: Wolfgang Denk <wd@denx.de>
33460 Date: Sat Oct 18 21:30:31 2008 +0200
33461
33462 Prepare v2008.10 release: update CHANGELOG & Makefile
33463
33464 Signed-off-by: Wolfgang Denk <wd@denx.de>
33465
33466 commit f7a35a60cf45491871a5c28e9ad24db005487857
33467 Author: Heiko Schocher <hs@denx.de>
33468 Date: Fri Oct 17 18:24:06 2008 +0200
33469
33470 mgcoge: add redundant environment sector
33471
33472 Signed-off-by: Heiko Schocher <hs@denx.de>
33473 Signed-off-by: Wolfgang Denk <wd@denx.de>
33474
33475 commit c2537ee85954af9d036b18b644f3e18d837bf4a5
33476 Author: Heiko Schocher <hs@denx.de>
33477 Date: Fri Oct 17 18:23:27 2008 +0200
33478
33479 mgsuvd: update size of environment
33480
33481 Signed-off-by: Heiko Schocher <hs@denx.de>
33482
33483 commit fa7b1c07e9371aea8f87ee6d3c2ea5564bd8cc8d
33484 Author: Lepcha Suchit <Suchit.Lepcha@freescale.com>
33485 Date: Thu Oct 16 13:38:00 2008 -0500
33486
33487 83xx NAND boot: wait for LTESR[CC]
33488
33489 At least some revisions of the 8313, and possibly other chips, do not
33490 wait for all pages of the initial 4K NAND region to be loaded before
33491 beginning execution; thus, we wait for it before branching out of the
33492 first NAND page.
33493
33494 This fixes warm reset problems when booting from NAND on 8313erdb.
33495
33496 Signed-off-by: Scott Wood <scottwood@freescale.com>
33497 Acked-by: Kim Phillips <kim.phillips@freescale.com>
33498
33499 commit bf29e0ea0af03d593c64614136acc723a7a022a2
33500 Author: Yuri Tikhonov <yur@emcraft.com>
33501 Date: Fri Oct 17 12:54:18 2008 +0200
33502
33503 ppc4xx: PPC44x MQ initialization
33504
33505 Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
33506 values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
33507 dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
33508
33509 Previously the appropriate initialization had been made in Linux, by the
33510 ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
33511 registers after normal operation has begun is not supported and could
33512 have unpredictable results.
33513
33514 Comment from Stefan: This patch doesn't change the resulting value of the
33515 MQ registers. It explicitly sets/clears all bits to the desired state which
33516 better documents the resulting register value instead of relying on pre-set
33517 default values.
33518
33519 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
33520 Signed-off-by: Stefan Roese <sr@denx.de>
33521
33522 commit ec081c2c190148b374e86a795fb6b1c49caeb549
33523 Author: Stefan Roese <sr@denx.de>
33524 Date: Fri Oct 17 12:51:46 2008 +0200
33525
33526 ppc4xx: PPC44x MQ initialization
33527
33528 Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
33529 values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
33530 dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
33531
33532 Previously the appropriate initialization had been made in Linux, by the
33533 ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
33534 registers after normal operation has begun is not supported and could
33535 have unpredictable results.
33536
33537 Comment from Stefan: This patch doesn't change the resulting value of the
33538 MQ registers. It explicitly sets/clears all bits to the desired state which
33539 better documents the resulting register value instead of relying on pre-set
33540 default values.
33541
33542 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
33543 Signed-off-by: Stefan Roese <sr@denx.de>
33544
33545 commit f7d190b1c0b3ab7fc53074ad2862f7de99de37ff
33546 Author: Kumar Gala <galak@kernel.crashing.org>
33547 Date: Thu Oct 16 21:58:50 2008 -0500
33548
33549 85xx: Using proper I2C source clock divider for MPC8544
33550
33551 The MPC8544 RM incorrect shows the SEC_CFG bit in PORDEVSR2 as being
33552 bit 26, instead it should be bit 28. This caused in incorrect
33553 interpretation of the i2c_clk which is the same as the SEC clk on
33554 MPC8544. The SEC clk is controlled by cfg_sec_freq that is reported
33555 in PORDEVSR2.
33556
33557 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33558
33559 commit 42653b826adb319a1df06e24ef26096b2a5d9d2a
33560 Author: Kumar Gala <galak@kernel.crashing.org>
33561 Date: Thu Oct 16 21:58:49 2008 -0500
33562
33563 Revert "85xx: Using proper I2C source clock divider for MPC8544"
33564
33565 This reverts commit dffd2446fb041f38ef034b0fcf41e51e5e489159.
33566
33567 The fix introduced by this patch is not correct. The problem is
33568 that the documentation is not correct for the MPC8544 with regards
33569 to which bit in PORDEVSR2 is for the SEC_CFG.
33570
33571 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33572
33573 commit 2179c4766bffeece98e5e92040629a96c97e230c
33574 Author: Kumar Gala <galak@kernel.crashing.org>
33575 Date: Wed Oct 15 10:19:41 2008 -0500
33576
33577 85xx: Fix compile warning
33578
33579 mpc8536ds.c: In function 'is_sata_supported':
33580 mpc8536ds.c:614: warning: unused variable 'devdisr'
33581
33582 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33583
33584 commit 9029b68f3f81b3013044f167ea025e836e6c8c0e
33585 Author: Jason Jin <Jason.jin@freescale.com>
33586 Date: Wed Oct 15 10:40:24 2008 +0800
33587
33588 Fix the function conflict in x86emu when DEBUG is on
33589
33590 The function parse_line() in common/main.c was exposed globally by commit
33591 6636b62a6efc7f14e6e788788631ae7a7fca4537, Result in conflict with the same
33592 name funciton in drivers/bios_emulator/x86emu/debug.c when define the DEBUG.
33593 This patch fix this by renaming the function in the debug.c file.
33594
33595 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33596
33597 commit b4dbacf69a669a17487054552fc2761149dd6767
33598 Author: Wolfgang Denk <wd@denx.de>
33599 Date: Wed Oct 15 15:50:45 2008 +0200
33600
33601 Coding Style cleanup, update CHANGELOG, prepare 2008.10-rc3
33602
33603 Signed-off-by: Wolfgang Denk <wd@denx.de>
33604
33605 commit 374b9038293d01d8744a46af9b7854a6fd99b228
33606 Author: Heiko Schocher <hs@denx.de>
33607 Date: Wed Oct 15 09:51:19 2008 +0200
33608
33609 Fix compiler warning in lib_ppc/board.c
33610
33611 Fix compiler warning introduced by commit 0f8cbc18
33612
33613 Signed-off-by: Heiko Schocher <hs@denx.de>
33614 Signed-off-by: Wolfgang Denk <wd@denx.de>
33615
33616 commit 9724555755a6f1066636481b41f7094e0ce93a69
33617 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
33618 Date: Thu Oct 9 10:29:14 2008 +0530
33619
33620 mpc83xx: wait till UPM completes the write to array
33621
33622 Reference manual states that MxMR[MAD] increment is the indication
33623 of write to UPM array is complete. Honour that. Also, make the dummy
33624 write explicit.
33625
33626 also fix the comment.
33627
33628 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
33629 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33630
33631 commit 03e2dbb18e858e2f7a6aaa437f290f3690d02d51
33632 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
33633 Date: Wed Oct 8 18:12:20 2008 -0500
33634
33635 Remove unwanted ';' at end of define.
33636
33637 Currently this is not creating any problem. But it will result
33638 in compilation error when used as below.
33639
33640 printf("CFG_SDRAM_CFG2 - %08x\n", CFG_SDRAM_CFG2);
33641
33642 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
33643
33644 continuation of the theme based on git grep "^#define CFG_.*;$" include/
33645
33646 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33647
33648 commit b2934a56650e9a6c54432f9ce6dc36757967385e
33649 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33650 Date: Mon Oct 6 10:53:59 2008 -0400
33651
33652 ARM DaVinci: Add maintainer information for SFFSDR board.
33653
33654 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33655
33656 commit 12c6670f873ed632c264a6f3e8bf1297d5c3ddbc
33657 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33658 Date: Sat Oct 4 19:26:16 2008 +0200
33659
33660 api: fix type mismatch
33661
33662 This patch fixes a type mismatch and thus removes a compiler
33663 warning when compiling with CONFIG_API on powerpc.
33664
33665 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33666
33667 commit 9bc2e4eee3bcb8e63847d7a733e0c607807d6141
33668 Author: Peter Tyser <ptyser@xes-inc.com>
33669 Date: Wed Oct 1 12:25:04 2008 -0500
33670
33671 cmd_i2c: Fix help for CONFIG_I2C_CMD_TREE && !CONFIG_I2C_MULTI_BUS
33672
33673 Original code displayed:
33674 => help i2c
33675 i2c i2c speed [speed] - show or set I2C bus speed
33676 i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device
33677 ...
33678
33679 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
33680
33681 commit a0b1b610e980e253d4c2519ee15bd0937c3f8be1
33682 Author: Wolfgang Denk <wd@denx.de>
33683 Date: Tue Oct 14 22:13:41 2008 +0200
33684
33685 Update CHANGELOG
33686
33687 Signed-off-by: Wolfgang Denk <wd@denx.de>
33688
33689 commit 0f8cbc1829d9c7d9616fd29b366a99d037facdcd
33690 Author: Jason Jin <Jason.jin@freescale.com>
33691 Date: Fri Oct 10 11:41:01 2008 +0800
33692
33693 Do not init SATA when disabled on 8536DS.
33694
33695 SGMII and SATA share the serdes on MPC8536 CPU, When SATA disabled and the
33696 driver still try to access the SATA registers, the cpu will hangup.
33697 This patch try to fix this by reading the serdes status before the SATA
33698 initialize.
33699
33700 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33701 Acked-by: Andy Fleming <afleming@freescale.com>
33702
33703 commit 9dbc366744960013965fce8851035b6141f3b3ae
33704 Author: Remy Bohmer <linux@bohmer.net>
33705 Date: Fri Oct 10 10:23:22 2008 +0200
33706
33707 The PIPE_INTERRUPT flag is used wrong
33708
33709 At a lot of places in the code the PIPE_INTERRUPT flags and friends
33710 are used wrong. The wrong bits are compared to this flag resulting
33711 in wrong conditions. Also there are macros that should be used for
33712 PIPE_* flags.
33713 This patch tries to fix them all, however, I was not able to test the
33714 changes, because I do not have any of these boards.
33715
33716 Review required!
33717
33718 Signed-off-by: Remy Bohmer <linux@bohmer.net>
33719 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
33720
33721 commit 48867208444cb2a82e2af9c3249e90b7ed4a1751
33722 Author: Remy Bohmer <linux@bohmer.net>
33723 Date: Fri Oct 10 10:23:21 2008 +0200
33724
33725 fix USB initialisation procedure
33726
33727 The max packet size is encoded as 0,1,2,3 for 8,16,32,64 bytes.
33728 At some places directly 8,16,32,64 was used instead of the encoded
33729 value. Made a enum for the options to make this more clear and to help
33730 preventing similar errors in the future.
33731
33732 After fixing this bug it became clear that another bug existed where
33733 the 'pipe' is and-ed with PIPE_* flags, where it should have been
33734 'usb_pipetype(pipe)', or even better usb_pipeint(pipe).
33735
33736 Also removed the triple 'get_device_descriptor' sequence, it has no use,
33737 and Windows nor Linux behaves that way.
33738 There is also a poll going on with a timeout when usb_control_msg() fails.
33739 However, the poll is useless, because the flag will never be set on a error,
33740 because there is no code that runs in a parallel that can set this flag.
33741 Changed this to something more logical.
33742
33743 Tested on AT91SAM9261ek and compared the flow on the USB bus to what
33744 Linux is doing. There is no difference anymore in the early initialisation
33745 sequence.
33746
33747 Signed-off-by: Remy Bohmer <linux@bohmer.net>
33748 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
33749
33750 commit ec4d8c1c1d94a790c1473ae8aace282b817c3123
33751 Author: Nikita V. Youshchenko <yoush@cs.msu.su>
33752 Date: Fri Oct 3 00:03:55 2008 +0400
33753
33754 fsl_diu: fix alignment error that caused malloc corruption
33755
33756 When aligning malloc()ed screen_base, invalid offset was added.
33757 This not only caused misaligned result (which did not cause hardware
33758 misbehaviour), but - worse - caused screen_base + smem_len to
33759 be out of malloc()ed space, which in turn caused breakage of
33760 futher malloc()/free() operation.
33761
33762 This patch fixes screen_base alignment.
33763
33764 Also this patch makes memset() that cleans framebuffer to be executed
33765 on first initialization of diu, not only on re-initialization. It looks
33766 correct to clean the framebuffer instead of displaying random garbage;
33767 I believe that was disabled only because that memset caused breakage
33768 of malloc/free described above - which no longer happens with the fix
33769 described above.
33770
33771 Signed-off-by: Nikita V. Youshchenko <yoush@debian.org>
33772
33773 commit 3d0ea3110f3431b6c2aee882784f39f97b20bce9
33774 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33775 Date: Wed Sep 24 10:29:37 2008 +0200
33776
33777 api: Fix building with CONFIG_API
33778
33779 This patch fixes building with CONFIG_API and CONFIG_USB_STORAGE.
33780
33781 USB_MAX_STOR_DEV is defined in include/usb.h, but
33782 needed in api/api_storage.c.
33783
33784 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33785
33786 commit abbb90666d5ef2f500ebbedbb80ff60adc56b043
33787 Author: Peter Tyser <ptyser@xes-inc.com>
33788 Date: Tue Sep 23 12:39:40 2008 -0500
33789
33790 Remove unused CFG_EEPROM_PAGE_WRITE_ENABLE references
33791
33792 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
33793
33794 commit 81e612014c40c922ec35488d17c504d4e9286f06
33795 Author: Peter Tyser <ptyser@xes-inc.com>
33796 Date: Tue Sep 23 12:38:42 2008 -0500
33797
33798 Remove CFG_EEPROM_PAGE* dependencies for temperature sensors
33799
33800 The checks for CFG_EEPROM_PAGE_WRITE_ENABLE and
33801 CFG_EEPROM_PAGE_WRITE_BITS in various temperature
33802 sensor drivers are not necessary
33803
33804 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
33805
33806 commit c46980f6d2135ade345dadc1fb1f1f4c8bbf255a
33807 Author: Mike Frysinger <vapier@gentoo.org>
33808 Date: Tue Oct 14 07:04:38 2008 -0400
33809
33810 cmd_spi: remove broken signed casting for display
33811
33812 Since we're working with unsigned data, you can't apply a signed pointer
33813 cast and then attempt to print the result. Otherwise you get wrong output
33814 when the sign bit is set like "0xFF" incorrectly extended to "0xFFFFFFFF".
33815
33816 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33817
33818 commit d5fd0b49210c941de8a1fce3947ace92243ab5ca
33819 Author: Mike Frysinger <vapier@gentoo.org>
33820 Date: Tue Oct 14 07:05:24 2008 -0400
33821
33822 strings cmd: drop old CONFIG_CFG_STRINGS define
33823
33824 We don't need CONFIG_CFG_STRINGS anymore now that we have the define
33825 CONFIG_CMD_STRINGS and Makefile control.
33826
33827 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33828
33829 commit fecb5ade3b37f62981f2b05b621005850173aaa9
33830 Author: Jason Jin <Jason.jin@freescale.com>
33831 Date: Fri Sep 19 17:32:49 2008 +0800
33832
33833 Fix the NAND size overflow issue.
33834
33835 When the total size of all NAND devices exceeds 4 GiB, the size will
33836 overflow. This patch tries to fix this.
33837
33838 Note that we still have a problem when a single NAND device is bigger
33839 than 4 GiB: then the overflow would actually happen earlier, i. e.
33840 when storing the size in nand_info[].size, as nand_info[].size is an
33841 "u_int32_t".
33842
33843 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33844 Signed-off-by: Wolfgang Denk <wd@denx.de>
33845
33846 commit 30f574717277238b9014b8136c90eea77196490f
33847 Author: Louis Su <louis@asix.com.tw>
33848 Date: Wed Jul 9 11:01:37 2008 +0800
33849
33850 AX88180: new gigabit network driver
33851
33852 Signed-off-by: Louis Su <louis@asix.com.tw>
33853 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33854
33855 commit c9d6b6925344740ca1db2f8a6bab7921ff820de3
33856 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
33857 Date: Tue Aug 19 16:07:03 2008 +0200
33858
33859 enable 10/100M at VSC8601 at tsec driver
33860
33861 Currently VSC8601 doesn't link with 10/100M partners if the
33862 EEPROM/Strapping is not set up.
33863 Setting the auto-neg register fixes this.
33864
33865 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
33866 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33867
33868 commit 702c85b0e876d587c11acdbb55738ee52acd54f4
33869 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33870 Date: Tue Sep 30 15:02:53 2008 +0900
33871
33872 net: ne2000: Divided a function of NE2000 driver
33873
33874 get_prom function was used __attriute__ , but it is not enable.
33875 ax88796.o does not do link besides ne2000.o. When ld is carried
33876 out, get_prom function of ax88796.c is ignored.
33877 This problem is a thing by specifications of ld.
33878 I checked and test this patch on SuperH and MIPS.
33879
33880 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33881 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33882
33883 commit 05c7e9070fe4d751e029fd9524bfbbc93cbb1393
33884 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33885 Date: Tue Oct 14 11:10:59 2008 +0900
33886
33887 sh: rsk7203: Add smc911x driver support to board config file
33888
33889 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33890 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33891
33892 commit cae6f909baf86357b3c0bd01acfc414348c4d175
33893 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33894 Date: Thu Oct 9 13:54:33 2008 +0900
33895
33896 sh: Fix cannot execute a stand-alone application
33897
33898 Address calculated in EXPORT_FUNC in SuperH was wrong, I revised it.
33899
33900 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
33901 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33902
33903 commit 6df0efd5c86ca1689deeb2738b46b7d83ce228ef
33904 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
33905 Date: Wed Oct 8 23:38:00 2008 -0500
33906
33907 fsl_pci_init do not scan bus when configured as an end-point
33908
33909 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
33910 Acked-by: Andy Fleming <afleming@freescale.com>
33911
33912 commit 6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5
33913 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33914 Date: Tue Sep 16 17:07:53 2008 -0400
33915
33916 ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board.
33917
33918 This is no longer necessary now that the GD_FLG_RELOC flag is set for
33919 all ARM boards.
33920
33921 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33922
33923 commit d977a57356657ba241256231efca32828a5822f9
33924 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
33925 Date: Sat Sep 13 10:04:32 2008 +0200
33926
33927 Fix lzma uncompress call (image_start wrongly used instead image_len)
33928
33929 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
33930
33931 commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
33932 Author: Nick Spence <nick.spence@freescale.com>
33933 Date: Thu Aug 28 14:09:15 2008 -0700
33934
33935 mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
33936
33937 This is needed in unlock_ram_in_cache() because it is called from C and
33938 will corrupt the small data area anchor that is kept in R2.
33939
33940 lock_ram_in_cache() is modified similarly as good coding practice, but
33941 is not called from C.
33942
33943 Signed-off-by: Nick Spence <nick.spence@freescale.com>
33944
33945 commit 5c7cbcd34d0ee566875a4fd0f2a3e5a62bba921c
33946 Author: Kumar Gala <galak@kernel.crashing.org>
33947 Date: Tue Aug 19 15:05:34 2008 -0500
33948
33949 86xx: remove redudant code with lib_ppc/interrupts.c
33950
33951 For some reason we duplicated the majority of code in lib_ppc/interrupts.c
33952 Not know how that happened, but there is no good reason for it.
33953
33954 Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
33955 they exist.
33956
33957 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33958
33959 commit 0d01f66d235118515b5086b88f82498bc0695d6a
33960 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
33961 Date: Thu Oct 9 01:26:36 2008 -0500
33962
33963 CFI: cfi_flash write fix for AMD legacy
33964
33965 The flash_unlock_seq requires a sector for AMD_LEGACY.
33966 Fix a retcode check typeo.
33967
33968 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
33969 Signed-off-by: Stefan Roese <sr@denx.de>
33970
33971 commit 542b385a620a1783454a00424930e51895f45073
33972 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33973 Date: Tue Oct 7 13:13:10 2008 +0200
33974
33975 ppc4xx: Fix USB 2.0 phy reset sequence
33976
33977 This patch fixes USB 2.0 communication issues on some DU440 boards.
33978
33979 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33980 Signed-off-by: Stefan Roese <sr@denx.de>
33981
33982 commit df8c1ce11114c2260dedb5547281945f7db8fa5c
33983 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33984 Date: Tue Oct 7 13:13:09 2008 +0200
33985
33986 ppc4xx: Add strapping mode for 667MHz CPU frequency on DU440 board
33987
33988 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33989 Signed-off-by: Stefan Roese <sr@denx.de>
33990
33991 commit 6a133d6a00b1fc7b9257cd5925d8cb67f75ecda2
33992 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33993 Date: Tue Oct 7 13:13:08 2008 +0200
33994
33995 ppc4xx: Fix DU440 GPIO configuration
33996
33997 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33998 Signed-off-by: Stefan Roese <sr@denx.de>
33999
34000 commit 35dd025c70fcc4389317db2f2a9d14795172137d
34001 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34002 Date: Tue Oct 7 13:13:07 2008 +0200
34003
34004 ppc4xx: Update DU440 config
34005
34006 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34007 Signed-off-by: Stefan Roese <sr@denx.de>
34008
34009 commit f3bf9273939ffe1a60a32a2eef909097f15df56b
34010 Author: Kumar Gala <galak@kernel.crashing.org>
34011 Date: Wed Oct 8 15:36:39 2008 -0500
34012
34013 MPC8572DS: Fix compile warnings
34014
34015 Commit 445a7b38308eb05b41de74165b20855db58c7ee5 introduced the following
34016 compile warnings:
34017
34018 cmd_i2c.c:112: warning: missing braces around initializer
34019 cmd_i2c.c:112: warning: (near initialization for 'i2c_no_probes[0]')
34020
34021 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34022
34023 commit dffd2446fb041f38ef034b0fcf41e51e5e489159
34024 Author: Wolfgang Grandegger <wg@grandegger.com>
34025 Date: Tue Sep 30 10:55:57 2008 +0200
34026
34027 85xx: Using proper I2C source clock divider for MPC8544
34028
34029 Measurements with our MPC8544 board showed that the I2C bus frequency
34030 is wrong by a factor of 1.5. Obviously, the interpretation of the
34031 MPC85xx_PORDEVSR2_SEC_CFG bit of the cfg_sec_freq register is not
34032 correct. There seems to be an error in the 8544 RM.
34033
34034 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34035
34036 commit e46c7bfb8bc3c304cedd20f7a365d6e78d7eaf17
34037 Author: Rafal Czubak <rcz@semihalf.com>
34038 Date: Wed Oct 8 13:41:30 2008 +0200
34039
34040 FSL: Fix get_cpu_board_revision() return value.
34041
34042 get_cpu_board_revision() returned board revision based on information stored
34043 in global static struct eeprom. It should instead use one from local struct
34044 board_eeprom, to which the data is actually read from EEPROM. The bug led to
34045 system hang after printing L1 cache information on U-Boot startup. The problem
34046 was observed on MPC8555CDS system and possibly affects other Freescale MPC85xx
34047 boards using CFG_I2C_EEPROM_CCID.
34048
34049 The change has been successfully tested on MPC8555CDS system.
34050
34051 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
34052
34053 commit 747f316cca484ed627a97dd3391febabce384186
34054 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34055 Date: Tue Sep 30 20:08:49 2008 +0200
34056
34057 update uImage FIT multi documentation
34058
34059 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34060
34061 commit 77a0355f60b801f232ce0a5bfbe95331fa3b6bc0
34062 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34063 Date: Tue Sep 30 20:08:36 2008 +0200
34064
34065 move README.imx31 to doc/ and merge with README.mx31
34066
34067 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34068
34069 commit 1ed7a7f0f571b13d46530f8f8b9aff3957f15a96
34070 Author: Guennadi Liakhovetski <lg@denx.de>
34071 Date: Thu Sep 25 20:54:37 2008 +0200
34072
34073 i.MX31: switch to CFG_HZ=1000
34074
34075 Switch to the standard CFG_HZ=1000 value, while at it, minor white-space
34076 cleanup, remove CFG_CLKS_IN_HZ from config-headers. Tested on mx31ads,
34077 provides 2% or 0.4% precision depending on the
34078 CONFIG_MX31_TIMER_HIGH_PRECISION flag. Measured with stop-watch on 100s
34079 boot-delay.
34080
34081 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
34082
34083 commit f41b144c11341b571eab7dcef6c4b8e03c92d2b2
34084 Author: gnusercn <gnusercn@gmail.com>
34085 Date: Wed Oct 8 18:58:58 2008 +0200
34086
34087 Fix bug: in arch-arm, env_get_char dose not work fine
34088
34089 due to the arm implementation which supposed that U-Boot is in RAM
34090 when we jump to start_armboot
34091
34092 Signed-off-by: gnusercn <gnusercn@gmail.com>
34093 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34094
34095 commit f8a00dea841d5d75de1f8e8107e90ee1beeddf5f
34096 Author: Adam Graham <agraham@amcc.com>
34097 Date: Mon Oct 6 10:16:13 2008 -0700
34098
34099 ppc4xx: Reset and relock memory DLL after SDRAM_CLKTR change
34100
34101 After changing SDRAM_CLKTR phase value rerun the memory preload
34102 initialization sequence (INITPLR) to reset and relock the memory
34103 DLL. Changing the SDRAM_CLKTR memory clock phase coarse timing
34104 adjustment effects the phase relationship of the internal, to the
34105 PPC chip, and external, to the PPC chip, versions of MEMCLK_OUT.
34106
34107 Signed-off-by: Adam Graham <agraham@amcc.com>
34108 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
34109 Signed-off-by: Stefan Roese <sr@denx.de>
34110
34111 commit 5297246bbaa9943c0da1ec2e717b72e4ab6b830e
34112 Author: Haiying Wang <Haiying.Wang@freescale.com>
34113 Date: Fri Oct 3 11:48:03 2008 -0400
34114
34115 Remove redundant #define for MPC8536DS
34116
34117 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
34118
34119 commit 445a7b38308eb05b41de74165b20855db58c7ee5
34120 Author: Haiying Wang <Haiying.Wang@freescale.com>
34121 Date: Fri Oct 3 11:47:30 2008 -0400
34122
34123 Add ID EEPROM support for MPC8572DS
34124
34125 The ID EEPROM on MPC8572DS board locates on I2C bus 1. Its the storage for
34126 system information like mac addresses etc. This patch enables it.
34127
34128 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
34129
34130 commit 1f3ba317a5c5f3a7aabf580fddc211f4bb5a4540
34131 Author: Haiying Wang <Haiying.Wang@freescale.com>
34132 Date: Fri Oct 3 11:46:59 2008 -0400
34133
34134 Minor fixes for I2C address on MPC8572DS
34135
34136 MPC8572DS has two i2c buses. This patch moves the DDR SPD_EEPROM to i2c bus 1
34137 according to the board spec, and adds the 2nd i2c bus offset.
34138
34139 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
34140
34141 commit c0391111c33c22fabeddf8f4ca801ec7645b4f5c
34142 Author: Jason Jin <Jason.jin@freescale.com>
34143 Date: Sat Sep 27 14:40:57 2008 +0800
34144
34145 Fix the incorrect DDR clk freq reporting on 8536DS
34146
34147 On 8536DS board, When the DDR clk is set async mode(SW3[6:8] != 111),
34148 The display is still sync mode DDR freq. This patch try to fix
34149 this. The display DDR freq is now the actual freq in both
34150 sync and async mode.
34151
34152 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
34153
34154 commit bac6a1d1fa1cd80aa57881fa9c2152b853cd0ed4
34155 Author: Kumar Gala <galak@kernel.crashing.org>
34156 Date: Tue Oct 7 10:28:46 2008 -0500
34157
34158 85xx: Remove setting of *cache-line-size in device trees
34159
34160 ePAPR says if the *cache-block-size is the same as *cache-line-size
34161 than we don't need the *cache-line-size property.
34162
34163 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34164
34165 commit a69a42338dd25408f9fd5390a83bc501749c7e1b
34166 Author: Mark Jackson <mpfj@mimc.co.uk>
34167 Date: Fri Oct 3 11:48:57 2008 +0100
34168
34169 MIMC200 board now uses CONFIG_DISABLE_CONSOLE
34170
34171 Changed MIMC200 board setup and config to use CONFIG_DISABLE_CONSOLE.
34172 Also fixed default uImage location.
34173
34174 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
34175 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34176
34177 commit cd3cb0d9269d155276b00207e3816a9347fd1c92
34178 Author: Gerald Van Baren <vanbaren@cideas.com>
34179 Date: Sat Oct 4 07:56:06 2008 -0400
34180
34181 libfdt: Fix error in documentation for fdt_get_alias_namelen()
34182
34183 Oops, screwed up the function name in the documenting comment for this
34184 function. Trivial correction in this patch.
34185
34186 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
34187 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
34188
34189 commit 9a6cf73a88ddab2e1ac39088f2806177982cc62c
34190 Author: David Gibson <david@gibson.dropbear.id.au>
34191 Date: Wed Aug 20 16:55:14 2008 +1000
34192
34193 libfdt: Add function to explicitly expand aliases
34194
34195 Kumar has already added alias expansion to fdt_path_offset().
34196 However, in some circumstances it may be convenient for the user of
34197 libfdt to explicitly get the string expansion of an alias. This patch
34198 adds a function to do this, fdt_get_alias(), and uses it to implement
34199 fdt_path_offset().
34200
34201 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
34202
34203 commit 2215987e100d2a841ae6d48a7cc9bb83fcf22737
34204 Author: Mike Frysinger <vapier@gentoo.org>
34205 Date: Thu Oct 2 01:55:38 2008 -0400
34206
34207 cfi_flash: do not reset flash when probe fails
34208
34209 The CFI flash driver starts at flash_init() which calls down into
34210 flash_get_size(). This starts by calling flash_detect_cfi(). If said
34211 function fails, flash_get_size() finishes by attempting to reset the
34212 flash. Unfortunately, it does this with an info->portwidth set to 0x10
34213 which filters down into flash_make_cmd() and that happily smashes the
34214 stack by sticking info->portwidth bytes into a cfiword_t variable that
34215 lives on the stack. On a 64bit system you probably won't notice, but
34216 killing the last 8 bytes on a 32bit system usually leads to a corrupt
34217 return address. Which is what happens on a Blackfin system.
34218
34219 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34220 Signed-off-by: Stefan Roese <sr@denx.de>
34221
34222 commit 3e38577208e4256956bc33bb8bcd0a6b6fab55c3
34223 Author: Stefan Roese <sr@denx.de>
34224 Date: Fri Sep 26 17:03:26 2008 +0200
34225
34226 fdt: Overwrite /chosen node in bootm if it already exists in the dtb
34227
34228 Set force parameter in fdt_chosen() call in do_bootm_linux() call.
34229 Without this, the chosen node is not overwritten if it already
34230 exists.
34231
34232 Signed-off-by: Stefan Roese <sr@denx.de>
34233
34234 commit 741a6d010d09b5bafca8e4cdfb6b2f8a2c07994d
34235 Author: Jon Loeliger <jdl@freescale.com>
34236 Date: Thu Sep 25 11:02:17 2008 -0500
34237
34238 Fix an overflow case in fdt_offset_ptr() detected by GCC 4.3.
34239
34240 Using Gcc 4.3 detected this problem:
34241
34242 ../dtc/libfdt/fdt.c: In function 'fdt_next_tag':
34243 ../dtc/libfdt/fdt.c:82: error: assuming signed overflow does not
34244 occur when assuming that (X + c) < X is always false
34245
34246 To fix the problem, treat the offset as an unsigned int.
34247
34248 The problem report and proposed fix were provided
34249 by Steve Papacharalambous <stevep@freescale.com>.
34250
34251 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34252
34253 commit bbdbc7cb3abefda5bd998edbcf0508fe6256327d
34254 Author: David Gibson <david@gibson.dropbear.id.au>
34255 Date: Fri Aug 29 14:19:13 2008 +1000
34256
34257 libfdt: Fix bugs in fdt_get_path()
34258
34259 The current implementation of fdt_get_path() has a couple of bugs,
34260 fixed by this patch.
34261
34262 First, contrary to its documentation, on success it returns the length
34263 of the node's path, rather than 0. The testcase is correspondingly
34264 wrong, and the patch fixes this as well.
34265
34266 Second, in some circumstances, it will return -FDT_ERR_BADOFFSET
34267 instead of -FDT_ERR_NOSPACE when given insufficient buffer space.
34268 Specifically this happens when there is insufficient space even to
34269 hold the path's second last component. This behaviour is corrected,
34270 and the testcase updated to check it.
34271
34272 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
34273
34274 commit 33af3e6656e84660d397b5dd95abab2dccc36f83
34275 Author: Wolfgang Denk <wd@denx.de>
34276 Date: Wed Oct 1 12:34:58 2008 +0200
34277
34278 TQM5200: enable support for ATAPI devices
34279
34280 Signed-off-by: Wolfgang Denk <wd@denx.de>
34281
34282 commit d13ff2358ff8c384f52eaf46f5d60258acf96ea6
34283 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34284 Date: Mon Sep 15 05:48:25 2008 +0200
34285
34286 Revert "ARM: set GD_FLG_RELOC for boards skipping relocation to RAM"
34287
34288 we need this due to the arm implementation which supposed that U-Boot
34289 is in RAM when we jump to start_armboot
34290
34291 This reverts commit f96b44cef897bd372beb86dde1b33637c119d84d.
34292 in order to do it for all arm board
34293
34294 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34295
34296 commit 7fd0bea2e4a78eab7e6693140940f9f9a0009bc2
34297 Author: Kim Phillips <kim.phillips@freescale.com>
34298 Date: Wed Sep 24 08:46:25 2008 -0500
34299
34300 mpc83xx: don't disable autoboot
34301
34302 bootdelay set to -1 'permanently' disables autobooting, even if
34303 bootcmd is specified. Change to a positive value to allow
34304 autobooting when a bootcmd is set.
34305
34306 Reported-by: Coray Tate <Coray.Tate@freescale.com>
34307 Cc: Scott Wood <scottwood@freescale.com>
34308 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34309
34310 commit 2fb29c520c42b7bfef33ea3fd1527eba64099164
34311 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34312 Date: Wed Sep 24 10:42:15 2008 +0900
34313
34314 mpc83xx: Fix typo in include/mpc83xx.h
34315
34316 Fixed typo from CONIFG_MPC837X to CONFIG_MPC837X
34317
34318 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34319 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34320
34321 commit 162c41c03179727a1d14262f703c9a8bc40231fa
34322 Author: Kim Phillips <kim.phillips@freescale.com>
34323 Date: Tue Sep 23 09:38:49 2008 -0500
34324
34325 mpc83xx: add h/w flash protection to board configs
34326
34327 the operating system may leave flash in a h/w locked state after writing.
34328 This allows u-boot to continue to write flash by enabling h/w unlocking
34329 by default.
34330
34331 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34332
34333 commit d26154c9a692586b66eb6d1f8e1b67c75e40ea70
34334 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34335 Date: Thu Sep 11 21:35:36 2008 +0400
34336
34337 mpc83xx: spd_sdram: fix ddr sdram base address assignment bug
34338
34339 The spd_dram code shifts the base address, then masks 20 bits, but
34340 forgets to shift the base address back. Fix this by just masking the
34341 base address correctly.
34342
34343 Found this bug while trying to relocate a DDR memory at the base != 0.
34344
34345 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34346 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34347
34348 commit 8fd4166c467a46773f80208bda1ec3b4757747bc
34349 Author: Stefan Roese <sr@denx.de>
34350 Date: Mon Sep 22 16:10:43 2008 +0200
34351
34352 ppc4xx: Canyonlands: Remove unnecessary FDT warning upon DTB fixup
34353
34354 Depending on the configuration jumper "SATA SELECT", U-Boot disabled
34355 either one PCIe node or the SATA node in the device tree blob. This
34356 patch removes the unnecessary and even confusing warning, when the node
34357 is not found at all.
34358
34359 Signed-off-by: Stefan Roese <sr@denx.de>
34360
34361 commit 6e24a1eb1490aa043770bcf0061ac1fad0864fd9
34362 Author: Remy Bohmer <linux@bohmer.net>
34363 Date: Fri Sep 19 13:30:06 2008 +0200
34364
34365 Add missing device types to dev_print() in part.c
34366
34367 Signed-off-by: Remy Bohmer <linux@bohmer.net>
34368
34369 commit 5fdc215f0b351b0c36cc3f8a0fa5850f24454bed
34370 Author: Wolfgang Denk <wd@denx.de>
34371 Date: Mon Sep 22 22:23:06 2008 +0200
34372
34373 Fix DPRAM memory leak when CFG_ALLOC_DPRAM is defined, which
34374 eventually leads to a machine check. This change assures that DPRAM
34375 is allocated only once in that case.
34376
34377 Signed-off-by: Gary Jennejohn <garyj@denx.de>
34378 Signed-off-by: Wolfgang Denk <wd@denx.de>
34379
34380 commit a07faf7b9ad5a86763a577c79922c4ff9a70ef23
34381 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
34382 Date: Wed Sep 17 17:57:34 2008 +0200
34383
34384 Fix Spartan-3 definitions.
34385
34386 A few Spartan-3 definitions erroneously use Spartan-3E size
34387 constants. This patch fixes them.
34388
34389 Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
34390
34391 commit 28113e1f0da4146b823ffce37680d31d5685a60b
34392 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
34393 Date: Wed Sep 17 17:41:58 2008 +0200
34394
34395 Remove duplicate Spartan-3E definition.
34396
34397 Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
34398 Signed-off-by: Wolfgang Denk <wd@denx.de>
34399
34400 commit 5c65ecf7cd94df250b295621f3b24135cbcfe579
34401 Author: Anatolij Gustschin <agust@denx.de>
34402 Date: Wed Sep 17 13:46:17 2008 +0200
34403
34404 socrates: change default mtest address range
34405
34406 Running mtest command on socrates without specifying
34407 an address range crashes the board. This patch changes
34408 default mtest address range to prevent this behavior.
34409
34410 Signed-off-by: Anatolij Gustschin <agust@denx.de>
34411
34412 commit d666b2d59674b5e002c0821b7ab83ec3ff90d670
34413 Author: Anatolij Gustschin <agust@denx.de>
34414 Date: Wed Sep 17 12:34:45 2008 +0200
34415
34416 socrates: fix crash after relocation
34417
34418 Currently U-Boot crashes after relocation to RAM.
34419 Changing the CPO value of the DDR SDRAM TIMING_CFG_2
34420 register to READ_LAT + 1 (to the value it was before
34421 conversion of socrates to new DDR code) fixes the
34422 problem.
34423
34424 Signed-off-by: Anatolij Gustschin <agust@denx.de>
34425
34426 commit 562788b0a303f3528b920d81f547f5ca77ba528e
34427 Author: Anatolij Gustschin <agust@denx.de>
34428 Date: Wed Sep 17 11:45:51 2008 +0200
34429
34430 socrates: fix SPD EEPROM address
34431
34432 Commit be0bd8234b9777ecd63c4c686f72af070d886517
34433 changed SPD EEPROM address to 0x51 and DDR SDRAM
34434 detection stopped working. Change this address
34435 back to 0x50.
34436
34437 Signed-off-by: Anatolij Gustschin <agust@denx.de>
34438
34439 commit 023824549a370bd185d7129d9a6c86f9be7b86a8
34440 Author: Stefan Roese <sr@denx.de>
34441 Date: Mon Sep 22 11:06:50 2008 +0200
34442
34443 Revert "ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)"
34444
34445 This reverts commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8.
34446
34447 Signed-off-by: Stefan Roese <sr@denx.de>
34448
34449 commit e58c41e26cf3c8accd60311be579f452e368e97e
34450 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34451 Date: Thu Sep 18 20:13:08 2008 +0900
34452
34453 usb: Fix compile warning of r8a66597-hcd
34454
34455 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34456 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
34457
34458 commit b5d10a13525c07ec6374adf840d7c87553b5f189
34459 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34460 Date: Thu Sep 18 19:34:36 2008 +0900
34461
34462 sh: Fix compile warning
34463
34464 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34465
34466 commit 4a065abf926f128beb36d93449defa0d690e7fef
34467 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34468 Date: Thu Sep 18 19:04:26 2008 +0900
34469
34470 sh: Add support watchdog for SH4A core
34471
34472 Add support watchdog for SH4A core (SH7763, SH7780 and SH7785).
34473 And fix some compile warning.
34474
34475 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34476
34477 commit a03c09c5fdb8430fe2ae6a03f88a0cf7bcc0aa57
34478 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34479 Date: Wed Sep 17 11:45:26 2008 +0900
34480
34481 sh: Fix typo in SH serial driver
34482
34483 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34484 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34485
34486 commit 6b44a439215ba7c63f666f8099213ea4f05f2b07
34487 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34488 Date: Wed Sep 17 11:08:36 2008 +0900
34489
34490 sh: Add support any page size and empty_zero_page to SH Linux uImage
34491
34492 Old U-Boot supported 4KB page size only. If this version, Linux
34493 kernel can not get command line from U-Boot.
34494 SH Linux kernel can change page size and empty_zero_page.
34495 This patch support this function and fix promlem.
34496
34497 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34498 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34499
34500 commit ce9f99ddb59628f41dc534e892368a7d66dfc774
34501 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34502 Date: Thu Aug 28 13:40:52 2008 +0900
34503
34504 sh: rsk7203: Add support pkt_data_pull and pkt_data_push function
34505
34506 Add function of smc911x, pkt_data_pull and pkt_data_push.
34507
34508 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34509 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34510
34511 commit dd820b03a2f45e86e7960e26729a3b58e3dda44a
34512 Author: Wolfgang Denk <wd@denx.de>
34513 Date: Thu Sep 18 13:57:32 2008 +0200
34514
34515 ADS5121: fix typo in "rootpath" default setting
34516
34517 Signed-off-by: Wolfgang Denk <wd@denx.de>
34518
34519 commit c9e8436b10cca53fca4904ecbadcd6231ad72c38
34520 Author: Remy Bohmer <linux@bohmer.net>
34521 Date: Tue Sep 16 14:55:44 2008 +0200
34522
34523 USB layer of U-Boot causes USB protocol errors while using USB memory sticks
34524
34525 There are several differences between Linux, Windows and U-boot for initialising the
34526 USB devices. While analysing the behaviour of U-boot it turned out that U-boot does
34527 things really different, and some are wrong (compared to the USB standard).
34528
34529 This patch fixes some errors:
34530 * The NEW_init procedure that was already in the code is good, while the old procedure
34531 is wrong. See code comments for more info.
34532 * On a Control request the data returned by the device can be more than 8 bytes, while
34533 the host limits it to 8 bytes. This caused the host to generate a DataOverrun error.
34534 This results in a lot of USB sticks not being recognised, and the transmission ended
34535 frequently with a CTL:TIMEOUT Error.
34536 * Added a flag CONFIG_LEGACY_USB_INIT_SEQ to allow users to use the old init procedure.
34537
34538 Signed-off-by: Remy Bohmer <linux@bohmer.net>
34539 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
34540
34541 commit 6f5794a6f78b313231256958fd73673c6aacc116
34542 Author: Remy Bohmer <linux@bohmer.net>
34543 Date: Tue Sep 16 14:55:43 2008 +0200
34544
34545 Refactoring parts of the common USB OHCI code
34546
34547 This patch refactors some large routines of the USB OHCI code by
34548 making some routines smaller and more readable which helps
34549 debugging and understanding the code. (Makes the code looks
34550 somewhat more like the Linux implementation.)
34551
34552 Also made entire file compliant to Linux Coding Rules (checkpatch.pl compliant)
34553
34554 Signed-off-by: Remy Bohmer <linux@bohmer.net>
34555 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
34556
34557 commit be19d324edc1a1d7f393d24e10d164cd94c91a00
34558 Author: Remy Bohmer <linux@bohmer.net>
34559 Date: Tue Sep 16 14:55:42 2008 +0200
34560
34561 Fix for USB sticks not working on ARM while using GCC 4.x compilers
34562
34563 The GCC-compiler makes an optimisation error while optimising the routine
34564 usb_set_maxpacket(). This should be fixed in the compiler in the first place,
34565 but there lots of compilers out there that makes this error, that it is
34566 probably wiser to workaround it in U-boot itself.
34567
34568 What happens is that the register r3 is used as loop-counter 'i', but gets
34569 overwritten later on. From there it starts using register r3 for several other
34570 things and the assembler code is becoming a big mess. This is clearly a compiler bug.
34571
34572 This error occurs on at least several versions of Code Sourcery Lite compilers
34573 for ARM. Like the Edition 2008q1, and 2008q3, It has also been seen on other
34574 compilers, while compiling for armv4t, or armv5te with Os, O1 and O2.
34575
34576 We work around it by splitting up this routine in 2 parts, and making sure that
34577 the split out part is NOT inlined any longer. This will make GCC spit out assembler
34578 that do not show this problem. Another possibility is to adapt the Makefile to stop
34579 optimisation for the complete file. I think this solution is nicer.
34580
34581 Signed-off-by: Remy Bohmer <linux@bohmer.net>
34582 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
34583
34584 commit 87b4ef560cf2da4ccc9e59711ad1ff7fafe96670
34585 Author: Wolfgang Denk <wd@denx.de>
34586 Date: Wed Sep 17 10:17:55 2008 +0200
34587
34588 Coding style cleanup; update CHANEGLOG
34589
34590 Signed-off-by: Wolfgang Denk <wd@denx.de>
34591
34592 commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8
34593 Author: Victor Gallardo <vgallardo@amcc.com>
34594 Date: Tue Sep 16 06:59:13 2008 -0700
34595
34596 ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)
34597
34598 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
34599 Signed-off-by: Adam Graham <agraham@amcc.com>
34600 Signed-off-by: Stefan Roese <sr@denx.de>
34601
34602 commit ce47eb402c5e29a025399dc282246414fc492940
34603 Author: Peter Tyser <ptyser@xes-inc.com>
34604 Date: Tue Sep 16 10:04:47 2008 -0500
34605
34606 Support for multiple SGMII/TBI interfaces for TSEC ethernet
34607
34608 Fix TBI PHY accesses to use the proper offset in CPU register space. The
34609 previous code would incorrectly access the TBI PHY by reading/writing to CPU
34610 register space at the same location as would be used to access external PHYs.
34611
34612 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34613 Acked-by: Andy Fleming <afleming@freescale.com>
34614
34615 commit 7c803be2eb3cae245dedda438776e08fb122250f
34616 Author: Wolfgang Denk <wd@denx.de>
34617 Date: Tue Sep 16 18:02:19 2008 +0200
34618
34619 TQM8xx: Fix CFI flash driver support for all TQM8xx based boards
34620
34621 After switching to using the CFI flash driver, the correct remapping
34622 of the flash banks was forgotten.
34623
34624 Also, some boards were not adapted, and the old legacy flash driver
34625 was not removed yet.
34626
34627 Signed-off-by: Wolfgang Denk <wd@denx.de>
34628
34629 commit c0d2f87d6c450128b88e73eea715fa3654f65b6c
34630 Author: Wolfgang Denk <wd@denx.de>
34631 Date: Sun Sep 14 00:59:35 2008 +0200
34632
34633 Prepare v2008.10-rc2
34634
34635 Signed-off-by: Wolfgang Denk <wd@denx.de>
34636
34637 commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7
34638 Author: Wolfgang Denk <wd@denx.de>
34639 Date: Sat Sep 13 02:23:05 2008 +0200
34640
34641 Coding style cleanup, update CHANGELOG
34642
34643 Signed-off-by: Wolfgang Denk <wd@denx.de>
34644
34645 commit 0c32565f536609d78feef35c88bbc39d3ac53a73
34646 Author: Peter Tyser <ptyser@xes-inc.com>
34647 Date: Wed Sep 10 09:18:34 2008 -0500
34648
34649 Update mailing list email and archive addresses
34650
34651 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34652
34653 commit fb661ea444ae61de60520f66ae84cdb5dd5a3246
34654 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
34655 Date: Thu Sep 11 15:40:01 2008 +0200
34656
34657 85xx: socrates: autoprobe Lime chip
34658
34659 This patch is an attempt to implement autoprobing for the Lime
34660 presence on the bus.
34661 Configure GPCM for Lime CS2 and try to access chip ID registers.
34662 Second read atempt delivers register values if the chip is present.
34663
34664 Signed-off-by: Anatolij Gustschin <agust@denx.de>
34665
34666 commit e99b607a5ec56ce66e0bcccb78480d5e16fb7bc5
34667 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
34668 Date: Thu Sep 11 15:40:01 2008 +0200
34669
34670 85xx: socrates: Add support for new image format.
34671
34672 Signed-off-by: Detlev Zundel <dzu@denx.de>
34673
34674 commit 3c094b652d4107b34641f300a8e9fe16ca15e3d8
34675 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34676 Date: Thu Sep 11 17:28:18 2008 +0900
34677
34678 sh: Fix compile error for r2dplus
34679
34680 netdev.h was not include by r2dplus.
34681
34682 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34683
34684 commit 56844a22b76c719e600047e23b80465a44d76abd
34685 Author: Heiko Schocher <hs@denx.de>
34686 Date: Thu Sep 11 08:11:23 2008 +0200
34687
34688 powerpc: Fix bootm to boot up again with a Ramdisk
34689
34690 Commit 2a1a2cb6 didnt remove the dummy mem reservation in fdt_chosen,
34691 and this stopped Linux from booting with a Ramdisk. This patch fixes
34692 this, by deleting the useless dummy mem reservation.
34693
34694 When booting with a Ramdisk, a fix offset FDT_RAMDISK_OVERHEAD is now
34695 added to of_size, so we dont need anymore a dummy mem reservation.
34696
34697 I measured the value of FDT_RAMDISK_OVERHEAD on a MPC8270 based
34698 system (=0x44 bytes) and rounded it up to 0x80).
34699
34700 Signed-off-by: Heiko Schocher <hs@denx.de>
34701 Acked-by: Kumar Gala <galak@kernel.crashing.org>
34702
34703 commit fc9c1727b5b3483ce49c3cb668e8332fb001b8a7
34704 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
34705 Date: Mon Sep 8 02:46:13 2008 +0200
34706
34707 Add support for LZMA uncompression algorithm.
34708
34709 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
34710 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34711
34712 commit 0008b6d968160abe2bfd936493f3a516a7c8da20
34713 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34714 Date: Fri Jun 27 23:04:20 2008 +0400
34715
34716 fsl_elbc_nand: ecclayout cleanups
34717
34718 This patch deletes oobavail assignments, they're calculated by the nand
34719 core code in nand_scan_tail, plus current oobavail values are wrong for
34720 the LP NANDs.
34721
34722 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34723 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
34724 Signed-off-by: Scott Wood <scottwood@freescale.com>
34725
34726 commit 8f42bf1c393d53a70c2545e9f329d11c46d74794
34727 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34728 Date: Fri Jun 27 23:04:13 2008 +0400
34729
34730 fsl_elbc_nand: implement support for flash-based BBT
34731
34732 This patch implements support for flash-based BBT for chips working
34733 through ELBC NAND controller, so that NAND core will not have to re-scan
34734 for bad blocks on every boot.
34735
34736 Because ELBC controller may provide HW-generated ECCs we should adjust
34737 bbt pattern and bbt version positions in the OOB free area.
34738
34739 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34740 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
34741 Signed-off-by: Scott Wood <scottwood@freescale.com>
34742
34743 commit 97ae023648e764f794ffb9c52da109d6caf09c47
34744 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34745 Date: Fri Jun 27 23:04:04 2008 +0400
34746
34747 fsl_elbc_nand: fix OOB workability for large page NAND chips
34748
34749 For large page chips, nand_bbt is looking into OOB area, and checking
34750 for "0xff 0xff" pattern at OOB offset 0. That is, two bytes should be
34751 reserved for bbt means.
34752
34753 But ELBC driver is specifying ecclayout so that oobfree area starts at
34754 offset 1, so only one byte left for the bbt purposes.
34755
34756 This causes problems with any OOB users, namely JFFS2: after first mount
34757 JFFS2 will fill all OOBs with "erased marker", so OOBs will contain:
34758
34759 OOB Data: ff 19 85 20 03 00 ff ff ff 00 00 08 ff ff ff ff
34760 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
34761 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
34762 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
34763
34764 And on the next boot, NAND core will rescan for bad blocks, then will
34765 see "0xff 0x19" pattern, and will mark all blocks as bad ones.
34766
34767 To fix the issue we should implement our own bad block pattern: just one
34768 byte at OOB start. Though, this will work only for x8 chips. For x16
34769 chips two bytes must be checked. Since ELBC driver does not support x16
34770 NANDs (yet), we're safe for now.
34771
34772 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34773 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
34774 Signed-off-by: Scott Wood <scottwood@freescale.com>
34775
34776 commit 7238ada313057a85409485b8ee21515dc10c07a5
34777 Author: Wolfgang Denk <wd@denx.de>
34778 Date: Fri Sep 12 13:52:21 2008 +0200
34779
34780 MPC512x: reduce timeout waiting for Ethernet autonegotiation to 2.5s
34781
34782 Signed-off-by: Wolfgang Denk <wd@denx.de>
34783
34784 commit b18410e508a12ba0a177dfc2a386857c806fa96d
34785 Author: Stefan Roese <sr@denx.de>
34786 Date: Thu Sep 11 13:05:56 2008 +0200
34787
34788 ppc4xx: Enable device tree (FDT) support in zeus board port
34789
34790 Signed-off-by: Stefan Roese <sr@denx.de>
34791
34792 commit 7bf5ecfa50722a9feb45ea8f04da75f5d406f20b
34793 Author: Stefan Roese <sr@denx.de>
34794 Date: Wed Sep 10 16:53:47 2008 +0200
34795
34796 ppc4xx: Fix SDRAM inititialization of multiple 405 based board ports
34797
34798 This patch fixes a problem introdiced with patch
34799 bbeff30c [ppc4xx: Remove superfluous dram_init() call or replace it by
34800 initdram()].
34801
34802 The boards affected are:
34803 - PCI405
34804 - PPChameleonEVB
34805 - quad100hd
34806 - taihu
34807 - zeus
34808
34809 Signed-off-by: Stefan Roese <sr@denx.de>
34810
34811 commit 61737c59a3285f6fadf96a5836879898c04ec28d
34812 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
34813 Date: Thu Sep 11 19:41:26 2008 -0400
34814
34815 ppc4xx: Add .gitignore file to xilinx-ppc440 boards
34816
34817 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
34818 Signed-off-by: Stefan Roese <sr@denx.de>
34819
34820 commit 2bec498ed1164a58cd8437b561bdc4551d69f9bf
34821 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
34822 Date: Thu Sep 11 19:41:25 2008 -0400
34823
34824 ppc4xx: Fix compilation of v5fx30teval_flash
34825
34826 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
34827 Signed-off-by: Stefan Roese <sr@denx.de>
34828
34829 commit 4bed9deebbd7ee6f0ba746b44d47a922156f7404
34830 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
34831 Date: Wed Sep 10 17:44:30 2008 -0400
34832
34833 ppc4xx: Fix in-tree build for ppc440-generic boards
34834
34835 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
34836 Signed-off-by: Stefan Roese <sr@denx.de>
34837
34838 commit 06c4ab50f5ccfb55ea2dd324aa28b2b06102e416
34839 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34840 Date: Fri Sep 12 02:20:47 2008 +0200
34841
34842 ARM: synchronize mach-types.h with linux 2.6.27-rc6
34843
34844 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34845
34846 commit 3ee9f03f588ad605e3fd10530237f9e3e2e7ab4c
34847 Author: Jens Scharsig <esw@bus-elektronik.de>
34848 Date: Fri Sep 12 02:20:47 2008 +0200
34849
34850 at91rm9200: fix errors with CONFIG_CMD_I2C_TREE
34851
34852 This patch prevents linker error on AT91RM9200 boards, if
34853 CONFIG_CMD_I2_TREE is set.
34854 It implements i2c_set_bus_speed and i2c_get_bus_speed as a dummy function.
34855
34856 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
34857
34858 commit b5b0344957d32e3d07a8dd72fce64fb48e680ba4
34859 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
34860 Date: Fri Sep 12 02:20:47 2008 +0200
34861
34862 ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
34863
34864 ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
34865
34866 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
34867
34868 commit 03db53335c8eba656a7c44d1555b1a4514383e33
34869 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34870 Date: Fri Sep 12 02:20:46 2008 +0200
34871
34872 make: Remove redundant __ARM__ addition when cross-compiling on *BSD
34873
34874 __ARM__ is given by arm_config.mk automatically.
34875
34876 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
34877
34878 commit 8cc62a7d9c77f8ef5166fb57322c4a6ddac320b4
34879 Author: Claudio Scordino <claudio@evidence.eu.com>
34880 Date: Fri Sep 12 02:20:46 2008 +0200
34881
34882 Fix MACH_TYPE for the AT91RM9200DK board.
34883
34884 Signed-off-by: Claudio Scordino <claudio@evidence.eu.com>
34885
34886 commit 274737e5eb25b2bcd3af3a96da923effd543284f
34887 Author: Andrew Dyer <adyer@righthandtech.com>
34888 Date: Fri Sep 12 02:20:46 2008 +0200
34889
34890 i.mx change get_timer(base) to return time since base
34891
34892 This patch changes get_timer() for i.MX to return the time since
34893 'base' instead of the time since the counter was at zero.
34894
34895 Symptom seen is flash timeout errors when erasing or programming a
34896 sector using the common cfi flash code.
34897
34898 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
34899
34900 commit 48fed40575b3e8eae960eb0141509ddd9a73012a
34901 Author: Andrew Dyer <adyer@righthandtech.com>
34902 Date: Fri Sep 12 02:20:46 2008 +0200
34903
34904 i.MX use u-boot baud rate and don't assume UART master clock
34905
34906 1) Change the i.MX serial driver to use the baud rate set in the
34907 u-boot environment
34908
34909 2) don't assume a 16MHz value for PERCLK1 in baud rate calculations
34910
34911 3) don't write a 1 to the RDR bit in the USR2 reg. (bit is not "write
34912 one to clear" like other status bits in the reg.)
34913
34914 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
34915
34916 commit 6e1551a870d360805b9d172dc56d935064abe71d
34917 Author: Andrew Dyer <adyer@righthandtech.com>
34918 Date: Fri Sep 12 02:20:46 2008 +0200
34919
34920 arm920t fix constant error in start.S
34921
34922 Code in cpu/arm920t/start.S will die with a compilation error if
34923 CONFIG_STACKSIZE + CFG_MALLOC_LEN works out to an invalid constant for
34924 the ARM sub instruction. Change the code so that each is subtracted
34925 independently to avoid the error.
34926
34927 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
34928
34929 commit b23253835f871cd9bd8e955b9a971d18a7d4ff56
34930 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
34931 Date: Fri Sep 12 02:20:40 2008 +0200
34932
34933 ARM OMAP : Correct Invalid Timer Register Field Declaration in omap1510.h & omap730.h
34934
34935 - Correct Invalid #define of MPUTIM_PTV_MASK for
34936 omap1510 & omap730 register definition
34937
34938 MPUTIM_PTV_MASK is defined as
34939 #define MPUTIM_PTV_MASK (0x7<<PTV_BIT)
34940
34941 while it should have been
34942 #define MPUTIM_PTV_MASK (0x7<<MPUTIM_PTV_BIT)
34943
34944 - Below Patch corrects the same
34945
34946 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
34947
34948 commit c455d07396dddc9864fd8dbb965ee10fe95ce8cf
34949 Author: Adrian Filipi <adrian.filipi@eurotech.com>
34950 Date: Fri Jul 18 11:52:02 2008 -0400
34951
34952 Set up SD/MMC OCR as comment describes. i.e. 3.2-3.4v.
34953
34954 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
34955
34956 commit eb16135df20535b0d19969f50fb5bd17f95e9c25
34957 Author: Guennadi Liakhovetski <lg@denx.de>
34958 Date: Thu Aug 28 12:25:11 2008 +0200
34959
34960 i.MX31: document timer precision option
34961
34962 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
34963
34964 commit 1a6337b01351b82a45b0defa76f08744511c580b
34965 Author: Magnus Lilja <lilja.magnus@gmail.com>
34966 Date: Fri Aug 29 10:36:18 2008 +0200
34967
34968 i.MX31: Make the SPI bus and chip select configurable for MC13783
34969
34970 The i.MX31 has three SPI buses and each bus has several chip selects
34971 and the MC13783 chip can be connected to any of these. The current
34972 RTC driver for MC13783 is hardcoded for CSPI2/SS2.
34973
34974 This patch makes make MC13783 SPI bus and chip select configurable
34975 via CONFIG_MC13783_SPI_BUS and CONFIG_MC13783_SPI_CS.
34976
34977 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
34978
34979 commit 8c4ebec25b21e355b8488698ec1594da9701fff4
34980 Author: Magnus Lilja <lilja.magnus@gmail.com>
34981 Date: Fri Aug 29 10:36:17 2008 +0200
34982
34983 i.MX31: Add reset_timer() and modify get_timer_masked().
34984
34985 This patch adds the reset_timer() function (needed by nand_base.c) and
34986 modifies the get_timer_masked() to work in the same way as the omap24xx
34987 function.
34988
34989 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
34990
34991 commit deeec4991a55de243787002ede24d2331d234fc8
34992 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34993 Date: Wed Sep 10 22:48:09 2008 +0200
34994
34995 ap325rxa: remove duplicate CONFIG_FLASH_CFI_DRIVER
34996
34997 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34998
34999 commit a3a08c0cedd329edf5256e1d6b2bad0fca002725
35000 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35001 Date: Wed Sep 10 22:48:09 2008 +0200
35002
35003 bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label
35004
35005 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35006
35007 commit 0e8d158664a913392cb01fb11a948d83f72e105e
35008 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35009 Date: Wed Sep 10 22:48:06 2008 +0200
35010
35011 rename CFG_ENV macros to CONFIG_ENV
35012
35013 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35014
35015 commit 1ede78710c3bf9ad6f4a53aaddc3bcc86fedd9df
35016 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35017 Date: Wed Sep 10 22:48:05 2008 +0200
35018
35019 nvedit: rename error comment to CONFIG_ENV_IS_IN_
35020
35021 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35022
35023 commit b64b775e7546ed138df360ceb3a71ee358cb9a01
35024 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35025 Date: Wed Sep 10 22:48:05 2008 +0200
35026
35027 cmd_mem: Move conditional compilation to Makefile
35028
35029 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35030
35031 commit 8a40fb148efa442d6526eac46a2001e4c64d28ff
35032 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35033 Date: Wed Sep 10 22:48:05 2008 +0200
35034
35035 move cmd_get_data_size to command.c
35036
35037 add CMD_DATA_SIZE macro to enable it
35038
35039 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35040
35041 commit 507641d2491980531932b9f25dab37fe5e6c3a1a
35042 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35043 Date: Wed Sep 10 22:48:04 2008 +0200
35044
35045 env_flash: Move conditional compilation to Makefile
35046
35047 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35048
35049 commit 5a1aceb0689e2f731491838970884a673ef7e7d3
35050 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35051 Date: Wed Sep 10 22:48:04 2008 +0200
35052
35053 rename CFG_ENV_IS_IN_FLASH in CONFIG_ENV_IS_IN_FLASH
35054
35055 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35056
35057 commit 7d9b5bae5ba558c7464d89d033aca04acaf01172
35058 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35059 Date: Wed Sep 10 22:48:03 2008 +0200
35060
35061 cleanup use of CFG_ENV_IS_IN_FLASH
35062
35063 - #if CFG_ENV_IS_IN_FLASH
35064 - #if (CFG_ENV_IS_IN_FLASH == 1)
35065 - #define CFG_ENV_IS_IN_FLASH 0
35066
35067 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35068
35069 commit 0cf4fd3cf8d0e00605bec5fc56f89c6415015a46
35070 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35071 Date: Wed Sep 10 22:48:01 2008 +0200
35072
35073 rename environment.c in env_embedded.c to reflect is functionality
35074
35075 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35076
35077 commit c0878af6e32f0fd8e13a6ca315b9add64441115a
35078 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35079 Date: Wed Sep 10 22:48:01 2008 +0200
35080
35081 env_nowhere: Move conditional compilation to Makefile
35082
35083 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35084
35085 commit 93f6d72544da4510a146bc4c93d609b0116cde37
35086 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35087 Date: Wed Sep 10 22:48:00 2008 +0200
35088
35089 rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE
35090
35091 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35092
35093 commit 2556ef78113b5f089dfcac5da90bf31dd568397b
35094 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35095 Date: Wed Sep 10 22:48:00 2008 +0200
35096
35097 env_sf: Move conditional compilation to Makefile
35098
35099 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35100
35101 commit 0b5099a8419bf9c828df5e3e2c6878dc300d98e3
35102 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35103 Date: Wed Sep 10 22:48:00 2008 +0200
35104
35105 rename CFG_ENV_IS_IN_SPI_FLASH in CONFIG_ENV_IS_IN_SPI_FLASH
35106
35107 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35108
35109 commit 55c5f49910ec8225347aa1d211352a84de6649b4
35110 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35111 Date: Wed Sep 10 22:48:00 2008 +0200
35112
35113 env_onenand: Move conditional compilation to Makefile
35114
35115 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35116
35117 commit 9656138ff1a34d4c4768db6b490deffc40ee674b
35118 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35119 Date: Wed Sep 10 22:47:59 2008 +0200
35120
35121 rename CFG_ENV_IS_IN_ONENAND in CONFIG_ENV_IS_IN_ONENAND
35122
35123 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35124
35125 commit 957a0e69575683efd70ace147746bbb3d8e7c501
35126 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35127 Date: Wed Sep 10 22:47:59 2008 +0200
35128
35129 env_nvram: Move conditional compilation to Makefile
35130
35131 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35132
35133 commit 9314cee6917444ab88bd4e758da7a30975120187
35134 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35135 Date: Wed Sep 10 22:47:59 2008 +0200
35136
35137 rename CFG_ENV_IS_IN_NVRAM in CONFIG_ENV_IS_IN_NVRAM
35138
35139 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35140
35141 commit 06f61354397911a4c121dfa51b6ccbf7e300d48b
35142 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35143 Date: Wed Sep 10 22:47:59 2008 +0200
35144
35145 env_nand: Move conditional compilation to Makefile
35146
35147 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35148
35149 commit 51bfee192099206a4397f15f3b93516e01f58ab0
35150 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35151 Date: Wed Sep 10 22:47:58 2008 +0200
35152
35153 rename CFG_ENV_IS_IN_NAND in CONFIG_ENV_IS_IN_NAND
35154
35155 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35156
35157 commit d8cc04d0ac9c7c0d12454708aaf5489f8532bbf9
35158 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35159 Date: Wed Sep 10 22:47:58 2008 +0200
35160
35161 env_dataflash: Move conditional compilation to Makefile
35162
35163 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35164
35165 commit 057c849c45b9ee19df8ff3acdeee66be52819962
35166 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35167 Date: Wed Sep 10 22:47:58 2008 +0200
35168
35169 rename CFG_ENV_IS_IN_DATAFLASH in CONFIG_ENV_IS_IN_DATAFLASH
35170
35171 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35172
35173 commit d1034bc8db60fa6bd419328baf6a75cb0645cee8
35174 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35175 Date: Wed Sep 10 22:47:52 2008 +0200
35176
35177 cmd_eeprom: Move conditional compilation to Makefile
35178
35179 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35180
35181 commit bf5a7710ec70e90e98f451b4ba0eb65f9ffc34eb
35182 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35183 Date: Fri Sep 5 09:19:54 2008 +0200
35184
35185 env_eeprom: Move conditional compilation to Makefile
35186
35187 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35188
35189 commit bb1f8b4f8bb0bfce52e0faa4637b975b745824b3
35190 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35191 Date: Fri Sep 5 09:19:30 2008 +0200
35192
35193 rename CFG_ENV_IS_IN_EEPROM in CONFIG_ENV_IS_IN_EEPROM
35194
35195 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35196
35197 commit 32628c5008105a732212003d83b75f05e5243bb2
35198 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35199 Date: Sat Aug 30 23:54:58 2008 +0200
35200
35201 cmd_mac: Move conditional compilation to Makefile
35202
35203 finish remaning CFG_ID_EEPROM in CONFIG_ID_EEPROM
35204 start in commit ad8f8687b78c3e917b173f038926695383c55555
35205
35206 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35207
35208 commit e5648acab153f0f429bfc714902c5aaa7879f71b
35209 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35210 Date: Sat Aug 30 23:47:41 2008 +0200
35211
35212 cmd_fdc: Move conditional compilation to Makefile
35213
35214 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35215
35216 commit 2d02d91d530e831f2dab228085963fc1d5b71cb0
35217 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35218 Date: Sat Aug 30 23:47:38 2008 +0200
35219
35220 common/Makefile: add core command section
35221
35222 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35223
35224 commit 0d92d4a699fb1a39381d98571dc51fb97e5bcf9e
35225 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35226 Date: Sat Aug 30 23:29:57 2008 +0200
35227
35228 cmd_vfd: Move conditional compilation to Makefile
35229
35230 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35231
35232 commit 6644641d072aee3087da129d8443187196a4d8a9
35233 Author: Scott Wood <scottwood@freescale.com>
35234 Date: Wed Sep 10 11:48:49 2008 -0500
35235
35236 delta, zylonite: Update nand_oobinfo to nand_ecclayout.
35237
35238 This is part of the switch to newer upstream MTD code.
35239
35240 Signed-off-by: Scott Wood <scottwood@freescale.com>
35241
35242 commit 9b05aa788bfdd3264ff1bc9418cb19550a7234e4
35243 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
35244 Date: Sat Aug 30 17:06:55 2008 -0400
35245
35246 ARM DaVinci: Fix broken HW ECC for large page NAND.
35247
35248 Based on original patch by Bernard Blackham <bernard@largestprime.net>
35249
35250 U-boot's HW ECC support for large page NAND on Davinci is completely
35251 broken. Some kernels, such as the 2.6.10 one supported by
35252 MontaVista for DaVinci, rely upon this broken behaviour as they
35253 share the same code for ECCs. In the existing scheme, error
35254 detection *might* work on large page, but error correction
35255 definitely does not. Small page ECC correction works, but the
35256 format is not compatible with the mainline git kernel.
35257
35258 This patch adds ECC code that matches what is currently in the
35259 Davinci git repository (since NAND support was added in 2.6.24).
35260 This makes the ECC and OOB layout written by u-boot compatible with
35261 Linux for both small page and large page devices and fixes ECC
35262 correction for large page devices.
35263
35264 The old behaviour can be restored by defining the macro
35265 CFG_DAVINCI_BROKEN_ECC, which is undefined by default.
35266
35267 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
35268 Acked-by: Sergey Kubushyn <ksi@koi8.net>
35269 Signed-off-by: Scott Wood <scottwood@freescale.com>
35270
35271 commit 0b7c5639891f4103a0e31ec7ae0beb3e97ed3836
35272 Author: Heiko Schocher <hs@denx.de>
35273 Date: Wed Sep 10 11:15:28 2008 +0200
35274
35275 muas3001: update BR4 settings
35276
35277 Also set up the port pins for using I2C.
35278
35279 Signed-off-by: Heiko Schocher <hs@denx.de>
35280
35281 commit 3591293509e0c0bcf244b0f974775bff2e25697e
35282 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
35283 Date: Wed Sep 10 09:43:49 2008 +0300
35284
35285 autoscr: Fix one-character lines and non-newline terminated scripts
35286
35287 When not using hush, the autoscr command now executes lines that are
35288 only one character long. It also runs the last line of scripts even if
35289 it does not end in a newline.
35290
35291 Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
35292
35293 commit 9ebbb54f7a25055010fa6668eba40c72a4c4f985
35294 Author: Victor Gallardo <vgallardo@amcc.com>
35295 Date: Tue Sep 9 15:13:29 2008 -0700
35296
35297 ppc4xx: Allow DTT_I2C_DEV_CODE configured by CFG_I2C_DTT_ADDR
35298
35299 On AMCC Arches board DTT_I2C_DEV_CODE is different then canyonlands
35300 and glacier.
35301
35302 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
35303
35304 commit 245f6ef3e11828cb46188e396fb1e67f7b07cd03
35305 Author: Heiko Schocher <hs@denx.de>
35306 Date: Mon Sep 8 10:21:11 2008 +0200
35307
35308 muas3001: added support for the LM75 sensor.
35309
35310 Signed-off-by: Heiko Schocher <hs@denx.de>
35311
35312 commit 4a02a2dca82aeab8f839db9dd35fda9d5412dacb
35313 Author: Heiko Schocher <hs@denx.de>
35314 Date: Mon Sep 8 10:20:19 2008 +0200
35315
35316 muas3001: activate WDT for the muas3001 board.
35317
35318 Signed-off-by: Heiko Schocher <hs@denx.de>
35319
35320 commit a55d074dac24dc941f1afb5b4e94b1509bfdda4e
35321 Author: Heiko Schocher <hs@denx.de>
35322 Date: Mon Sep 8 10:19:36 2008 +0200
35323
35324 muas3001: added 64MB SDRAM autodetection.
35325
35326 Signed-off-by: Heiko Schocher <hs@denx.de>
35327
35328 commit 5251469943895de4bb9a04d5053352cc22acb7d5
35329 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
35330 Date: Thu Aug 21 07:12:26 2008 -0700
35331
35332 Fix printf errors under -DDEBUG
35333
35334 Fix printf format-string/arg mismatches under -DDEBUG.
35335
35336 These warnings occur with DEBUG defined for a platform using
35337 cpu/mpc85xx. Users of other architectures can unearth similar
35338 problems by adding the line "CFLAGS += -DDEBUG=1" in config.mk right
35339 after "CFLAGS += $(call cc-option,-fno-stack-protector)".
35340
35341 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
35342 Signed-off-by: Andy Fleming <afleming@freescale.com>
35343
35344 commit 8b9e4787641719d709bfa2ebeb72e8bd4952bee7
35345 Author: Wolfgang Denk <wd@denx.de>
35346 Date: Tue Sep 9 23:55:18 2008 +0200
35347
35348 Update CHANGELOG, prepare 2008-10-rc1 release
35349
35350 Signed-off-by: Wolfgang Denk <wd@denx.de>
35351
35352 commit e0ff3d350d6b7960deb5a881dfc5acf3a63ef676
35353 Author: Kumar Gala <galak@kernel.crashing.org>
35354 Date: Mon Sep 8 08:51:29 2008 -0500
35355
35356 85xx: Ensure timebase is zero on secondary cores
35357
35358 The e500um says the timebase is volatile out of reset. To ensure
35359 TB sync works we need to make sure its zero.
35360
35361 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35362
35363 commit 54b4ab3c961a2012a1c2a09c259a6343323ec551
35364 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35365 Date: Tue Sep 9 22:18:24 2008 +0200
35366
35367 bootm_load_os: fix load_end debug message
35368
35369 print load_end value not pointer
35370
35371 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35372
35373 commit 1d9af0be764960e6cc1c093e97176c3542796820
35374 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35375 Date: Tue Sep 9 22:18:23 2008 +0200
35376
35377 bootm: enable fdt support only on ppc, m68k and sparc
35378
35379 ...as done in image.c
35380
35381 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35382
35383 commit 748b5274e76f81df85cfcffaffedc323678d0623
35384 Author: Markus Heidelberg <markus.heidelberg@web.de>
35385 Date: Tue Sep 9 18:51:05 2008 +0200
35386
35387 common/cmd_mem.c: remove nested #if defined(CONFIG_CMD_MEMORY)
35388
35389 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
35390
35391 commit 650632fe4ca09cfd0e5e6a593f2efc02ef87a58c
35392 Author: Markus Heidelberg <markus.heidelberg@web.de>
35393 Date: Tue Sep 9 17:31:46 2008 +0200
35394
35395 gitignore: add tags files and Vim swap file
35396
35397 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
35398
35399 commit 1d9b67b23fca6a25154333733204339802510720
35400 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
35401 Date: Tue Sep 9 17:52:47 2008 +0900
35402
35403 add board_eth_init() for sh7785lcr board
35404
35405 Fix the problem that cannot work RTL8169 on sh7785lcr board.
35406
35407 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
35408
35409 commit 7b7a869a8ba3bd6d9bffb748c91232141330f514
35410 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
35411 Date: Wed Aug 6 16:08:41 2008 -0500
35412
35413 mtd: SPI Flash: Support the STMicro Flash
35414
35415 Add MTD SPI Flash support for M25P16, M25P20, M25P32,
35416 M25P40, M25P64, M25P80, M25P128.
35417
35418 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
35419 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
35420
35421 commit 4bc07c368076560ed7fa4c9f987c71a8521488a9
35422 Author: Wolfgang Denk <wd@denx.de>
35423 Date: Tue Sep 9 17:55:31 2008 +0200
35424
35425 trab: fix build problem after change to use do_div()
35426
35427 We must link with libgeneric now.
35428
35429 Signed-off-by: Wolfgang Denk <wd@denx.de>
35430
35431 commit 3b20fd83c73c22acfcb0c6663be747bd5c8b7011
35432 Author: Ryan CHEN <ryan.chen@st.com>
35433 Date: Wed Aug 20 13:00:17 2008 -0400
35434
35435 Correct drv_usb_kbd_init function
35436
35437 The patch is that check if usb_get_dev_index() function return valid
35438 pointer. If valid, continue. Otherwise return -1.
35439
35440 Signed-off-by: Ryan Chen <ryan.chen@st.com>
35441 Acked-by: Markus Klotzbuecher <mk@denx.de>
35442
35443 commit eba1f2fc75f128a9a6c1328d786996a93fd7a707
35444 Author: Remy Bohmer <linux@bohmer.net>
35445 Date: Wed Aug 20 11:22:02 2008 +0200
35446
35447 Make usb-stop() safe to call multiple times in a row.
35448
35449 A recent commit (936897d4d1365452bbbdf8430db5e7769ef08d38)
35450 enabled the usb_stop() command in common/cmd_bootm.c which was
35451 not enabled for some time, because no board did actually set the
35452 CFG_CMD_USB flag. So, now the usb_stop() is executed before
35453 loading the linux kernel.
35454
35455 However, the usb_ohci driver hangs up (at least on AT91SAM) if the
35456 driver is stopped twice (e.g. the peripheral clock is stopped on AT91).
35457 If some other piece of code calls usb_stop() before the bootm command,
35458 this command will hangup the system during boot.
35459 (usb start and stop is typically used while booting from usb memory stick)
35460
35461 But, stopping the usb stack twice is useless anyway, and a flag already
35462 existed that kept track on the usb_init()/usb_stop() calls.
35463 So, we now check if the usb stack is really started before we stop it.
35464
35465 This problem is now fixed in both the upper as low-level layer.
35466
35467 Signed-off-by: Remy Bohmer <linux@bohmer.net>
35468 Acked-by: Markus Klotzbuecher <mk@denx.de>
35469
35470 commit 2c8ccf2728f5e67d991cecf76c4057db75a87b67
35471 Author: Wolfgang Denk <wd@denx.de>
35472 Date: Tue Sep 9 16:55:47 2008 +0200
35473
35474 Makefile: fix bug introduced by commit 47ffd6c2
35475
35476 commit 880f6a5d7596f42db5ff8803b797b78ec5b146e0
35477 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
35478 Date: Tue Sep 9 10:00:33 2008 -0400
35479
35480 ppc4xx: ppc440-generic-ALL: Fix out of tree build v2
35481
35482 This patch solves the problems compiling ml507, v5fx30teval and
35483 ppc440-generic out of tree.
35484
35485 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
35486
35487 commit 47bebe34ca4e33bab0e822e4ceebbec2590ccbcb
35488 Author: Nícolas Carneiro Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
35489 Date: Thu Sep 4 15:35:46 2008 -0300
35490
35491 Fix dev_print when called from usb_stor_info (usb storage command)
35492
35493 Fix output of the usb storage command. It was printing "Device 0: not
35494 available" because IF_TYPE_USB was not included into the switch
35495 statement.
35496
35497 Signed-off-by: Nicolas Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
35498
35499 commit a4f243452cc8ce0c2c9b51a2520db4bde5f472de
35500 Author: Bartlomiej Sieka <tur@semihalf.com>
35501 Date: Tue Sep 9 12:58:16 2008 +0200
35502
35503 FIT: make iminfo check hashes of all images in FIT, return 1 on failed check
35504
35505 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35506
35507 commit 919f550dc11a13abf01c6bc713c968de790b8d7c
35508 Author: Bartlomiej Sieka <tur@semihalf.com>
35509 Date: Tue Sep 9 12:58:15 2008 +0200
35510
35511 FIT: add ability to check hashes of all images in FIT, improve output
35512
35513 - add function fit_all_image_check_hashes() that verifies if all
35514 hashes of all images in the FIT are valid
35515 - improve output of fit_image_check_hashes() when the hash check fails
35516
35517 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35518
35519 commit 1de1fa408967cef6804bb046b904114519bb36f0
35520 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35521 Date: Mon Sep 8 20:54:39 2008 +0200
35522
35523 qemu_mips: Update linux bootm to support dynamic cmdline
35524
35525 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35526
35527 commit f5ed9e39088ecfa5a5f3ef47b08e5bda7890d764
35528 Author: Peter Tyser <ptyser@xes-inc.com>
35529 Date: Mon Sep 8 14:56:49 2008 -0500
35530
35531 Add support for booting of INTEGRITY operating system uImages
35532
35533 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35534
35535 commit 72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a
35536 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35537 Date: Mon Sep 8 21:01:29 2008 +0200
35538
35539 mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start"
35540
35541 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35542
35543 commit 9ba2e2c8191353d75b2d535e672a125be7b84c03
35544 Author: Kumar Gala <galak@kernel.crashing.org>
35545 Date: Mon Sep 8 13:57:12 2008 -0500
35546
35547 Remove support for booting ARTOS images
35548
35549 Pantelis Antoniou stated:
35550 AFAIK, it is still used but the products using PPC are long gone.
35551 Nuke it plz (from orbit).
35552
35553 So remove it since it cleans up a usage of env_get_char outside of
35554 the environment code.
35555
35556 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35557
35558 commit 47ffd6c2fc72b46daa9d5d59eedb894fab2b7ee1
35559 Author: Wolfgang Denk <wd@denx.de>
35560 Date: Tue Sep 9 15:45:18 2008 +0200
35561
35562 Makefile: compile and link each module just once
35563
35564 Several source files need to be compiled and linked when one or more
35565 config options are selected. To allow for easy selection in the
35566 Makefiles yet to avoild multiple compilation (which costs build time)
35567 and especially multiple linking (which causes errors), we use
35568 "COBJS = $(sort COBJS-y)" which eliminates duplicates.
35569
35570 By courtesy of Detlev Zundel who suggested this approach.
35571
35572 Signed-off-by: Wolfgang Denk <wd@denx.de>
35573
35574 commit 48d0192fe869948fef14b460b5f0c85bca933693
35575 Author: Andreas Engel <andreas.engel@ericsson.com>
35576 Date: Mon Sep 8 14:30:53 2008 +0200
35577
35578 Moved conditional compile into Makefile
35579
35580 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
35581
35582 commit 20c9226cb8cab08a111ee73db04e62d943ee0c97
35583 Author: Andreas Engel <andreas.engel@ericsson.com>
35584 Date: Mon Sep 8 10:17:31 2008 +0200
35585
35586 Merged serial_pl010.c and serial_pl011.c.
35587
35588 They only differ in the init function.
35589 This also adds the missing watchdog support for the PL011.
35590
35591 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
35592
35593 commit 0817d688f307ee2c0598e79175c94a40ce90337b
35594 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
35595 Date: Sun Sep 7 17:10:27 2008 -0400
35596
35597 Remove gap fill in srec object v2
35598
35599 SREC files do not need gap fill: The load address is specified in the
35600 file. On the other hand, it can't be avoided in a .bin object. It has
35601 no information about memory location.
35602
35603 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
35604
35605 commit 1dc306931ca5ce87f13916fa7165b052d3aa714f
35606 Author: Markus Heidelberg <markus.heidelberg@web.de>
35607 Date: Sun Sep 7 20:18:27 2008 +0200
35608
35609 README: fix missing subdirectory in the documentation
35610
35611 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
35612
35613 commit 3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd
35614 Author: Graeme Russ <graeme.russ@gmail.com>
35615 Date: Sun Sep 7 07:08:42 2008 +1000
35616
35617 Update i386 code (sc520_cdp)
35618
35619 Attempt to bring i386 / sc520 inline with master
35620
35621 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
35622
35623 commit 5608692104efa8d56df803dc79ea41ac3607eee5
35624 Author: Guennadi Liakhovetski <lg@denx.de>
35625 Date: Thu Sep 4 13:01:49 2008 +0200
35626
35627 fw_env: add NAND support
35628
35629 Add support for environment in NAND with automatic NOR / NAND recognition,
35630 including unaligned environment, bad-block skipping, redundant environment
35631 copy.
35632
35633 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
35634
35635 commit dd794323a2a1ed6a8a5df51785c31bcde60ad7ca
35636 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35637 Date: Tue Sep 9 09:50:24 2008 +0200
35638
35639 ppc4xx: Fix out-of-tree building of CPCI405 variants
35640
35641 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35642 Acked-by: Stefan Roese <sr@denx.de>
35643
35644 commit 59f630588e3fdbd698a0a2798e52a8924e899563
35645 Author: Sergei Poselenov <sposelenov@emcraft.com>
35646 Date: Fri Aug 15 15:42:11 2008 +0200
35647
35648 Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
35649
35650 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
35651
35652 commit e64987a892353f3d49eb242d997820ef8f538912
35653 Author: Anatolij Gustschin <agust@denx.de>
35654 Date: Fri Aug 15 15:42:13 2008 +0200
35655
35656 85xx: socrates: Enable Lime support.
35657
35658 This patch adds Lime GDC support together with support for the PWM
35659 backlight control through the w83782d chip. The reset pin of the
35660 latter is attached to GPIO, so we need to reset it in
35661 early_board_init_r.
35662
35663 Signed-off-by: Anatolij Gustschin <agust@denx.de>
35664
35665 commit 3e79b588b5199f35016f178fc0d5d1266382097f
35666 Author: Detlev Zundel <dzu@denx.de>
35667 Date: Fri Aug 15 15:42:12 2008 +0200
35668
35669 85xx: Socrates: Major code update.
35670
35671 - Update the local bus ranges in the FDT for Linux for the various
35672 devices connected to the local bus via chip-select.
35673
35674 - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
35675 lower than 66 MHz and uses I/O accessor functions consequently.
35676
35677 - UPM data update.
35678
35679 - Update of default environment and configuration. Use I2C multibus
35680 as we do have two I2C buses. Also enable sdram and ext2 commands.
35681
35682 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
35683 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
35684 Signed-off-by: Detlev Zundel <dzu@denx.de>
35685
35686 commit e8d18541c6ceab821f75faab031740b33fdbfa4b
35687 Author: Timur Tabi <timur@freescale.com>
35688 Date: Fri Jul 18 16:52:23 2008 +0200
35689
35690 Update Freescale 85xx boards to sys_eeprom.c
35691
35692 The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
35693 format, and so it obsoletes board/freescale/common/cds_eeprom.c. Freescale
35694 86xx boards already use sys_eeprom.c, so this patch migrates the remaining
35695 Freescale 85xx boards to use it as well. cds_eeprom.c is deleted.
35696
35697 Signed-off-by: Timur Tabi <timur@freescale.com>
35698
35699 commit aab2bf0202c86227e3dcc8a5b58946087ebcc1af
35700 Author: Wolfgang Denk <wd@denx.de>
35701 Date: Tue Sep 9 10:08:02 2008 +0200
35702
35703 lib_ppc/interrupts.c: make board_show_activity() a weak function
35704
35705 This allows to use show_activity() without having to
35706 define an empty board_show_activity() function.
35707
35708 Signed-off-by: Wolfgang Denk <wd@denx.de>
35709
35710 commit fe876787f8743883ce58fed61525eaa2f34da4c5
35711 Author: Wolfgang Denk <wd@denx.de>
35712 Date: Tue Sep 9 10:06:44 2008 +0200
35713
35714 stxxtc: remove empty CONFIG_SHOW_ACTIVITY functions
35715
35716 Signed-off-by: Wolfgang Denk <wd@denx.de>
35717
35718 commit 965de106ba8900372c8b16dc60d5acab7f925e38
35719 Author: Wolfgang Denk <wd@denx.de>
35720 Date: Tue Sep 9 10:03:47 2008 +0200
35721
35722 NETTA2: remove empty CONFIG_SHOW_ACTIVITY functions
35723
35724 Signed-off-by: Wolfgang Denk <wd@denx.de>
35725
35726 commit 6cc64f9b5f69239c8b1969572b5a3a4aab7de5b9
35727 Author: Sergei Poselenov <sposelenov@emcraft.com>
35728 Date: Fri Aug 15 15:42:11 2008 +0200
35729
35730 Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
35731
35732 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
35733
35734 commit 36241ca29d4804a1006fb3f26069effda5202581
35735 Author: Anatolij Gustschin <agust@denx.de>
35736 Date: Fri Aug 15 15:42:13 2008 +0200
35737
35738 85xx: socrates: Enable Lime support.
35739
35740 This patch adds Lime GDC support together with support for the PWM
35741 backlight control through the w83782d chip. The reset pin of the
35742 latter is attached to GPIO, so we need to reset it in
35743 early_board_init_r.
35744
35745 Signed-off-by: Anatolij Gustschin <agust@denx.de>
35746
35747 commit 7a47753ddcaebbf2142809842f70c5f723bd9ddb
35748 Author: Detlev Zundel <dzu@denx.de>
35749 Date: Fri Aug 15 15:42:12 2008 +0200
35750
35751 85xx: Socrates: Major code update.
35752
35753 - Update the local bus ranges in the FDT for Linux for the various
35754 devices connected to the local bus via chip-select.
35755
35756 - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
35757 lower than 66 MHz and uses I/O accessor functions consequently.
35758
35759 - UPM data update.
35760
35761 - Update of default environment and configuration. Use I2C multibus
35762 as we do have two I2C buses. Also enable sdram and ext2 commands.
35763
35764 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
35765 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
35766 Signed-off-by: Detlev Zundel <dzu@denx.de>
35767
35768 commit 4d2ae70e8c31c22e5710df5ff236b5565ea2cf2c
35769 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35770 Date: Tue Sep 9 01:22:39 2008 +0200
35771
35772 disk-on-chip: remove duplicate doc_probe declaration
35773
35774 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35775
35776 commit 3221b074a0ab199f6ae47c19cc22f42ddf3ef819
35777 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35778 Date: Tue Sep 9 00:59:40 2008 +0200
35779
35780 onenand_uboot: fix warning: 'struct mtd_oob_ops' declared inside parameter list
35781
35782 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35783
35784 commit 13b4db0e2107175a8622ebb48529fa3ad8e12c75
35785 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35786 Date: Tue Sep 9 00:59:39 2008 +0200
35787
35788 rs5c372: fix rtc_set prototype
35789
35790 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35791
35792 commit 1bb8b2ef2722bbaea3cc5d46321ce1d99f9b56f7
35793 Author: Sergei Poselenov <sposelenov@emcraft.com>
35794 Date: Thu Aug 14 14:08:28 2008 +0200
35795
35796 ARM: fix warning: target CPU does not support interworking
35797
35798 This patch fixes warnings like this:
35799
35800 start.S:0: warning: target CPU does not support interworking
35801
35802 which come from some ARM cross compilers and are caused by hard-coded
35803 (with "--with-cpu=arm9" configuration option) ARM targets (which
35804 support ARM Thumb instructions), while the ARM target selected from
35805 the command line (with "-march=armv4") doesn't support Thumb
35806 instructions.
35807
35808 This warning is issued by the compiler regardless of the real use of
35809 the Thumb instructions in code.
35810
35811 To fix this problem, we use options according to compiler version
35812 being used.
35813
35814 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
35815 Signed-off-by: Wolfgang Denk <wd@denx.de>
35816
35817 commit 4265c35fbcb248e58179007621d61d32d0b3b82a
35818 Author: Sergei Poselenov <sposelenov@emcraft.com>
35819 Date: Thu Aug 14 14:08:28 2008 +0200
35820
35821 ARM: Use do_div() instead of division for "long long".
35822
35823 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
35824 Signed-off-by: Wolfgang Denk <wd@denx.de>
35825
35826 commit 8febd13c69cb68652577d1a9fcbde954bf784155
35827 Author: Timur Tabi <timur@freescale.com>
35828 Date: Fri Jul 18 16:52:23 2008 +0200
35829
35830 Update Freescale 85xx boards to sys_eeprom.c
35831
35832 The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
35833 format, and so it obsoletes board/freescale/common/cds_eeprom.c. Freescale
35834 86xx boards already use sys_eeprom.c, so this patch migrates the remaining
35835 Freescale 85xx boards to use it as well. cds_eeprom.c is deleted.
35836
35837 Signed-off-by: Timur Tabi <timur@freescale.com>
35838
35839 commit 1055171ed05b7c4885737463d52b8d6c013bcb5d
35840 Author: Wolfgang Denk <wd@denx.de>
35841 Date: Mon Sep 8 23:26:22 2008 +0200
35842
35843 lib_arm/bootm.c: fix compile warnings
35844
35845 bootm.c:128: warning: label 'error' defined but not used
35846 bootm.c:65: warning: unused variable 'ret'
35847
35848 Signed-off-by: Wolfgang Denk <wd@denx.de>
35849
35850 commit 2e3c867d0a63c563a51e65b776973b008f16cec5
35851 Author: Wolfgang Denk <wd@denx.de>
35852 Date: Mon Sep 8 22:46:42 2008 +0200
35853
35854 ml507: fix out of tree build problem
35855
35856 Signed-off-by: Wolfgang Denk <wd@denx.de>
35857
35858 commit 9863a15a98f23b79f34a0e4f9e465bc6df5d504d
35859 Author: Wolfgang Denk <wd@denx.de>
35860 Date: Mon Sep 8 22:10:28 2008 +0200
35861
35862 common/cmd_bootm.c: fix printf() format warnings
35863
35864 Signed-off-by: Wolfgang Denk <wd@denx.de>
35865
35866 commit 4394f9a8c42bb1b0abc4fc04bd582d4db5f8b726
35867 Author: Wolfgang Denk <wd@denx.de>
35868 Date: Mon Sep 8 22:37:45 2008 +0200
35869
35870 BMW, PCIPPC2, PCIPPC6, RBC82: fix compile warnings
35871
35872 missing doc_probe() prototype.
35873
35874 Signed-off-by: Wolfgang Denk <wd@denx.de>
35875
35876 commit 2c5e3cc4994897d364b148942ff23e47783198f6
35877 Author: Wolfgang Denk <wd@denx.de>
35878 Date: Mon Sep 8 21:28:14 2008 +0200
35879
35880 mk48t59: fix compile problem introduced by commit d1e23194
35881
35882 Signed-off-by: Wolfgang Denk <wd@denx.de>
35883
35884 commit 5ff889349d2ace13f10c9335e09365fcec8247cc
35885 Author: Stefan Roese <sr@denx.de>
35886 Date: Mon Sep 8 14:11:12 2008 +0200
35887
35888 ppc4xx: Move ppc4xx specific prototypes to ppc4xx header
35889
35890 This patch moves some 4xx specific prototypes out of include common.h
35891 to a ppc4xx specific header.
35892
35893 Signed-off-by: Stefan Roese <sr@denx.de>
35894
35895 commit ac53ee8318678190bf3c68da477a84a657d86fb0
35896 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35897 Date: Fri Sep 5 15:34:04 2008 +0200
35898
35899 ppc4xx: Update CPCI405(AB) configuration
35900
35901 This patch add FDT support and command line editing capabilities
35902 for CPCI405 and CPCI405AB boards.
35903
35904 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35905 Signed-off-by: Stefan Roese <sr@denx.de>
35906
35907 commit 7b1fbcadf73a83b3beb94abccda1c35e2c075a94
35908 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35909 Date: Fri Sep 5 15:34:03 2008 +0200
35910
35911 ppc4xx: Cleanup CPCI405 linker script
35912
35913 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35914 Signed-off-by: Stefan Roese <sr@denx.de>
35915
35916 commit 767f9159c5c94cd0cb3135b5b82814ad12816ddf
35917 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35918 Date: Fri Sep 5 15:34:02 2008 +0200
35919
35920 ppc4xx: Update CPCI405 variants handling
35921
35922 This patch replaces the BOARD_REVISION variable in include/config.mk
35923 by a using a temporary include file in the platform directory.
35924
35925 The former way does not work anymore and the latter is also used by
35926 some other boards.
35927
35928 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35929 Signed-off-by: Stefan Roese <sr@denx.de>
35930
35931 commit f071f01fd09e9bf1cf09de37a7416aacce71bae1
35932 Author: Stefan Roese <sr@denx.de>
35933 Date: Mon Sep 8 10:01:48 2008 +0200
35934
35935 ppc4xx: Remove CONFIG_CS8952_PHY define
35936
35937 Since this define is only used on one board that was never really in
35938 production, removing this compile time option doesn't hurt and makes
35939 the code more readable.
35940
35941 Signed-off-by: Stefan Roese <sr@denx.de>
35942
35943 commit 6ca8646c1860bba74326bf916a5a3389a5c0d3b5
35944 Author: Stefan Roese <sr@denx.de>
35945 Date: Fri Sep 5 14:11:40 2008 +0200
35946
35947 ppc4xx: Fix compilation warning for PIP405
35948
35949 This patch fixes a compilation warning for the PIP405 board. It moves the
35950 #ifndef CONFIG_CS8952_PHY define a little so that the warning doesn't
35951 occur anymore. I am a little unsure if this #ifdef is at the correct
35952 place now or if it could be removed completely. This needs to get
35953 tested on the PIP405 board.
35954
35955 Signed-off-by: Stefan Roese <sr@denx.de>
35956
35957 commit 725b53ac61f4df3026b8f6489ef0080fd27d3816
35958 Author: Stefan Roese <sr@denx.de>
35959 Date: Fri Sep 5 14:09:09 2008 +0200
35960
35961 ppc4xx: Fix compilation warning for canyonlands & glacier
35962
35963 Signed-off-by: Stefan Roese <sr@denx.de>
35964
35965 commit 302e52e0b1d4c7f994991709d0cb6c3ea612cdb5
35966 Author: Kumar Gala <galak@kernel.crashing.org>
35967 Date: Fri Sep 5 14:40:29 2008 -0500
35968
35969 Fix compiler warning in mpc8xxx ddr code
35970
35971 ctrl_regs.c: In function 'compute_fsl_memctl_config_regs':
35972 ctrl_regs.c:523: warning: 'caslat' may be used uninitialized in this function
35973 ctrl_regs.c:523: note: 'caslat' was declared here
35974
35975 Add a warning in DDR1 case if cas_latency isn't a value we know about.
35976
35977 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35978 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35979
35980 commit d1e2319414ea5218ba801163e4530ecf2dfcbf36
35981 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35982 Date: Mon Sep 1 23:06:23 2008 +0200
35983
35984 rtc: allow rtc_set to return an error and use it in cmd_date
35985
35986 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35987
35988 commit ee9536a28cb149bcb6c5dee9d08c62c91f4c72d2
35989 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35990 Date: Mon Sep 1 01:16:33 2008 +0200
35991
35992 ap325rxa/favr-32-ezkit: Use CONFIG_FLASH_CFI_DRIVER
35993
35994 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35995
35996 commit 6b971c73f182248ce103503d74fbc0100bb8c8b7
35997 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35998 Date: Sun Aug 31 05:37:04 2008 +0900
35999
36000 config.mk: Move arch-specific condition to $(ARCH)_config.mk
36001
36002 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36003
36004 commit ea86b9e64b811753d9eabe0f560ee189fbe5d0c1
36005 Author: Kumar Gala <galak@kernel.crashing.org>
36006 Date: Fri Aug 29 19:08:29 2008 -0500
36007
36008 Prevent crash if random/invalid ramdisks are passed to bootm
36009
36010 Adds returning an error from the ramdisk detection code if
36011 its not a real ramdisk (invalid). There is no reason we can't
36012 just return back to the console if we detect an invalid
36013 ramdisk or CRC error.
36014
36015 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36016
36017 commit 8e02494e8f86c8f2d7324b5eb9e75271104a01ef
36018 Author: Anatolij Gustschin <agust@denx.de>
36019 Date: Fri Aug 29 21:04:45 2008 +0200
36020
36021 Prevent crash if random DTB address is passed to bootm
36022
36023 This patch adds bootm_start() return value check. If
36024 error status is returned, we do not proceed further to
36025 prevent board reset or crash as we still can recover
36026 at this point.
36027
36028 Signed-off-by: Anatolij Gustschin <agust@denx.de>
36029
36030 commit cc347801add2689b1ee54d21f62bc14ecf6e1dd8
36031 Author: Andrew Dyer <adyer@righthandtech.com>
36032 Date: Fri Aug 29 12:30:39 2008 -0500
36033
36034 clean up some #if !defined() in drivers/video/cfb_console.c
36035
36036 rearrange some #if !defined() / #else / #endif statements to remove
36037 the negative logic.
36038
36039 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
36040
36041 commit c83f4c2d77f07174dcd6bef7e87a0f7017be7c33
36042 Author: Kyungmin Park <kmpark@infradead.org>
36043 Date: Fri Aug 29 09:02:20 2008 +0900
36044
36045 apollon: use the last memory area for u-boot
36046
36047 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36048
36049 commit a6f2e455b774d0c5d56e44e5661df9adb69b6e07
36050 Author: Heiko Schocher <hs@denx.de>
36051 Date: Thu Aug 28 13:50:42 2008 +0200
36052
36053 TQM8272: move NAND part in seperate File
36054
36055 I didn't try to use drivers/mtd/nand/fsl_upm.c for the NAND driver,
36056 because I have no longer access to the hardware.
36057
36058 Signed-off-by: Heiko Schocher <hs@denx.de>
36059
36060 commit 584f979f7ee914e32d408739cbdd2c4457ec18b8
36061 Author: Heiko Schocher <hs@denx.de>
36062 Date: Thu Aug 28 13:48:36 2008 +0200
36063
36064 TQM8272: Fix compiling error for the TQM8272 board.
36065
36066 Fix compile problems caused by
36067 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
36068
36069 Signed-off-by: Heiko Schocher <hs@denx.de>
36070
36071 commit 1a7f8ccec981648ccd38fca2535490582eee08e6
36072 Author: Kyungmin Park <kmpark@infradead.org>
36073 Date: Wed Aug 27 14:45:20 2008 +0900
36074
36075 Add JFFS2 command support on OneNAND
36076
36077 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36078
36079 commit f5c3ba79788b0e39baab7026d374fe375dd1a43f
36080 Author: Mark Jackson <mpfj@mimc.co.uk>
36081 Date: Mon Aug 25 19:21:30 2008 +0100
36082
36083 Allow console input to be disabled
36084
36085 Added new CONFIG_DISABLE_CONSOLE define and GD_FLG_DISABLE_CONSOLE.
36086
36087 When CONFIG_DISABLE_CONSOLE is defined, setting
36088 GD_FLG_DISABLE_CONSOLE disables all console input and output.
36089
36090 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
36091
36092 commit 2b22d608f370565c87f55928b524207031419c11
36093 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
36094 Date: Wed Jul 30 12:39:29 2008 +0200
36095
36096 loads: allow negative offsets
36097
36098 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
36099
36100 commit e90fb6afab2c0c074dfb67bacb4de179eb188a24
36101 Author: Yuri Tikhonov <yur@emcraft.com>
36102 Date: Thu Sep 4 11:19:05 2008 +0200
36103
36104 USB EHCI: reset root hub
36105
36106 Some of multi-function USB controllers (e.g. ISP1562) allow root hub
36107 resetting only via EHCI registers. So, this patch adds the
36108 corresponding kind of reset to OHCI's hc_reset() if the newly
36109 introduced CONFIG_PCI_EHCI_DEVNO option is set (e.g. for Socrates
36110 board).
36111
36112 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
36113 Acked-by: Markus Klotzbuecher <mk@denx.de>
36114
36115 commit 5875d358f025c1b042d8a0f08384b756de7256c9
36116 Author: Yuri Tikhonov <yur@emcraft.com>
36117 Date: Fri Aug 15 15:42:09 2008 +0200
36118
36119 RX 8025 RTC: analyze 12/24-hour mode flag in rtc_get().
36120
36121 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
36122
36123 commit 3e3c026ed746a284c6f0ef139b26d859939de7e9
36124 Author: Stefan Roese <sr@denx.de>
36125 Date: Fri Sep 5 10:47:46 2008 +0200
36126
36127 devices: Use list_add_tail() instead of list_add() to register a device
36128
36129 This patch fixes a problem spotted on Glacier/Canyonlands (and most
36130 likely lots of other board ports), that no serial output was seen
36131 after console initialization in console_init_r(). This is because the
36132 last added console device was used instead of the first added.
36133
36134 This patch fixes this problem by using list_add_tail() instead of
36135 list_add() to register a device. This way the first added console
36136 is used again.
36137
36138 Signed-off-by: Stefan Roese <sr@denx.de>
36139
36140 commit 78d78236896d62bb8ca7302af38d8f1493eb2651
36141 Author: Victor Gallardo <vgallardo@amcc.com>
36142 Date: Thu Sep 4 23:49:36 2008 -0700
36143
36144 ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY
36145
36146 This patch adds GPCS, SGMII and M88E1112 PHY support
36147 for the AMCC PPC460GT/EX processors.
36148
36149 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
36150 Signed-off-by: Stefan Roese <sr@denx.de>
36151
36152 commit f6b6c45840f9b4671d2d97243a12a1f3ffb64765
36153 Author: Adam Graham <agraham@amcc.com>
36154 Date: Wed Sep 3 12:26:59 2008 -0700
36155
36156 ppc4xx: Update Kilauea to use PPC4xx DDR autocalibration routines
36157
36158 Signed-off-by: Adam Graham <agraham@amcc.com>
36159 Signed-off-by: Stefan Roese <sr@denx.de>
36160
36161 commit 075d0b81e896e8735ae26372cd384f87cbd24e41
36162 Author: Adam Graham <agraham@amcc.com>
36163 Date: Wed Sep 3 12:26:28 2008 -0700
36164
36165 ppc4xx: IBM Memory Controller DDR autocalibration routines
36166
36167 Alternate SDRAM DDR autocalibration routine that can be generically used
36168 for any PPC4xx chips that have the IBM SDRAM Controller core allowing for
36169 support of more DIMM/memory chip vendors and gets the DDR autocalibration
36170 values which give the best read latency performance (SDRAM0_RDCC.[RDSS]).
36171
36172 Two alternate SDRAM DDR autocalibration algoritm are provided in this patch,
36173 "Method_A" and "Method_B". DDR autocalibration Method_A scans the full range
36174 of possible PPC4xx SDRAM Controller DDR autocalibration values and takes a
36175 lot longer to run than Method_B. Method_B executes in the same amount of time
36176 as the currently existing DDR autocalibration routine, i.e. 1 second or so.
36177 Normally Method_B is used and it is set as the default method.
36178
36179 The current U-Boot PPC4xx DDR autocalibration code calibrates the IBM SDRAM
36180 Controller registers.[bit-field]:
36181 1) SDRAM0_RQDC.[RQFD]
36182 2) SDRAM0_RFDC.[RFFD]
36183
36184 This alternate PPC4xx DDR autocalibration code calibrates the following
36185 IBM SDRAM Controller registers.[bit-field]:
36186
36187 1) SDRAM0_WRDTR.[WDTR]
36188 2) SDRAM0_CLKTR.[CKTR]
36189 3) SDRAM0_RQDC.[RQFD]
36190 4) SDRAM0_RFDC.[RFFD]
36191
36192 and will also use the calibrated settings of the above four registers that
36193 produce the best "Read Sample Cycle Select" value in the SDRAM0_RDCC.[RDSS]
36194 register.[bit-field].
36195
36196 Signed-off-by: Adam Graham <agraham@amcc.com>
36197 Signed-off-by: Stefan Roese <sr@denx.de>
36198
36199 commit e07f4a8033b6270b8103049adb6456f660ff4a89
36200 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
36201 Date: Mon Sep 1 13:09:39 2008 -0400
36202
36203 ppc44x: Unification of virtex5 pp440 boards
36204
36205 This patch provides an unificated way of handling xilinx v5 ppc440 boards.
36206
36207 It unificates 3 different things:
36208
36209 1) Source code
36210 A new board called ppc440-generic has been created. This board includes
36211 a generic tlb initialization (Maps the whole memory into virtual) and
36212 defines board_pre_init, checkboard, initdram and get_sys_info weakly,
36213 so, they can be replaced by specific functions.
36214
36215 If a new board needs to redefine any of the previous functions
36216 (specific initialization) it can create a new directory with the
36217 specific initializations needed. (see the example ml507 board).
36218
36219 2) Configuration file
36220 Common configurations are located under configs/xilinx-ppc440.h, this
36221 header file interpretes the xparameters file generated by EDK and
36222 configurates u-boot in correspondence. Example: if there is a Temac,
36223 allows CMD_CONFIG_NET
36224 Specific configuration are located under specific configuration file.
36225 (see the example ml507 board)
36226
36227 3) Makefile
36228 Some work has been done in order to not duplicate work in the Main
36229 Makefile. Please see the attached code.
36230
36231 In order to support new boards they can be implemented in the next way:
36232
36233 a) Simple Generic Board (90% of the time)
36234 Using EDK generates a new xparameters.h file, replace
36235 ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
36236 && make
36237
36238 b) Simple Boards with special u-boot parameters (9 % of the time)
36239 Create a new file under configs for it (use ml507.h as example) and
36240 change your paramaters. Create a new Makefile paragraph and compile
36241
36242 c) Complex boards (1% of the time)
36243 Create a new folder for the board, like the ml507
36244
36245 Finally, it adds support for the Avnet FX30T Evaluation board, following
36246 the new generic structure:
36247
36248 Cheap board by Avnet for evaluating the Virtex5 FX technology.
36249
36250 This patch adds support for:
36251 - UartLite
36252 - 16MB Flash
36253 - 64MB RAM
36254
36255 Prior using U-boot in this board, read carefully the ERRATA by Avnet
36256 to solve some memory initialization issues.
36257
36258 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
36259 Signed-off-by: Stefan Roese <sr@denx.de>
36260
36261 commit 64ac1eb5afafced49b327425ad1814b2dc422d6e
36262 Author: Nick Spence <nick.spence@freescale.com>
36263 Date: Tue Sep 2 15:21:16 2008 -0500
36264
36265 mpc83xx: fix mpc8313 in-tree building with NAND
36266
36267 and add mpc8313 NAND build to MAKEALL
36268
36269 Signed-off-by: Nick Spence <nick.spence@freescale.com>
36270 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36271
36272 commit 6eb2a44e27919fdc601e0c05404b298a7602c0e3
36273 Author: Nick Spence <nick.spence@freescale.com>
36274 Date: Thu Aug 28 14:09:25 2008 -0700
36275
36276 mpc83xx: clean up cache operations and unlock_ram_in_cache() functions
36277
36278 Cleans up some latent issues with the data cache control so that
36279 dcache_enable() and dcache_disable() will work reliably (after
36280 unlock_ram_in_cache() has been called)
36281
36282 Signed-off-by: Nick Spence <nick.spence@freescale.com>
36283 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36284
36285 commit 46497056ae3b1e81e736e9cf3a170472c5d9719f
36286 Author: Nick Spence <nick.spence@freescale.com>
36287 Date: Thu Aug 28 14:09:19 2008 -0700
36288
36289 mpc83xx: Store and display Arbiter Event Register values
36290
36291 Record the Arbiter Event Register values and optionally display them.
36292
36293 The Arbiter Event Register can record the type and effective address of
36294 an arbiter error, even through an HRESET. This patch stores the values in
36295 the global data structure.
36296
36297 Display of the Arbiter Event registers immediately after the RSR value
36298 can be enabled with defines. The Arbiter values will only be displayed
36299 if an arbiter event has occured since the last Power On Reset, and either
36300 of the following defines exist:
36301 #define CONFIG_DISPLAY_AER_BRIEF - display only the arbiter address and
36302 and type register values
36303 #define CONFIG_DISPLAY_AER_FULL - display and interpret the arbiter
36304 event register values
36305
36306 Address Only transactions are one of the trapped events that can register
36307 as an arbiter event. They occur with some cache manipulation instructions
36308 if the HID0_ABE (Address Broadcast Enable) is set and the memory region
36309 has the MEMORY_COHERENCE WIMG bit set. Setting:
36310 #define CONFIG_MASK_AER_AO - prevents the arbiter from recording address
36311 only events, so that it can still capture
36312 other real problems.
36313
36314 Signed-off-by: Nick Spence <nick.spence@freescale.com>
36315 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36316
36317 commit ade50c7fa1b16ef98be17e9c3ae286aecf4f5605
36318 Author: Nick Spence <nick.spence@freescale.com>
36319 Date: Thu Aug 28 14:09:11 2008 -0700
36320
36321 mpc83xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
36322
36323 This is needed in unlock_ram_in_cache() because it is called from C and
36324 will corrupt the small data area anchor that is kept in R2.
36325
36326 lock_ram_in_cache() is modified similarly as good coding practice, but
36327 is not called from C.
36328
36329 Signed-off-by: Nick Spence <nick.spence@freescale.com>
36330 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36331
36332 commit d9fe88173cb4f7d293796ffe10c7a0d3d426d8f9
36333 Author: Nick Spence <nick.spence@freescale.com>
36334 Date: Fri Aug 22 23:52:50 2008 -0700
36335
36336 MPC83XX: Fix GPIO configuration - set gpio level before direction
36337
36338 Set DAT value before DIR values to avoid creating glitches on the
36339 GPIO signals.
36340
36341 Set gpio level register before direction register to inhibit
36342 glitches on high level output pins.
36343
36344 Dir and data gets cleared at powerup, so high level output lines see
36345 a short low pulse between setting the direction and level registers.
36346
36347 Issue was seen on a new board with the nReset line of the NOR flash
36348 connected to a GPIO. Setting the direction register puts the NOR flash
36349 in reset so the next instruction to set the level cannot get executed.
36350
36351 Signed-off-by: Nick Spence <nick.spence@freescale.com>
36352 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
36353 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36354
36355 commit 7007c5975ee900ad70983b0681d3251e221f8321
36356 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36357 Date: Tue Sep 2 02:58:32 2008 +0200
36358
36359 doc/qemu_mips: add doc howto debug u-boot with gdb
36360
36361 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36362
36363 commit 7deb3b3ecd0e81ef09bb68aa0ec2346f4ae0a405
36364 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36365 Date: Wed Sep 3 17:15:45 2008 +0200
36366
36367 ppx4xx: Fix broken DASA_SIM board
36368
36369 This patch adds initdram() to DASA_SIM boards that has been
36370 removed accidentally by a previous commit.
36371
36372 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36373 Signed-off-by: Stefan Roese <sr@denx.de>
36374
36375 commit 7e410aa30fbcb1d19a26bbf1e84a9ca6102d534b
36376 Author: Stefan Roese <sr@denx.de>
36377 Date: Mon Sep 1 08:35:37 2008 +0200
36378
36379 ppc4xx: Remove reference to common/lists.o from some esd linker scripts
36380
36381 This patch removes some direct references to common/lists.o from some
36382 esd linker scripts. This is necessary because the lists source was moved
36383 and is not in the "common" directory anymore.
36384
36385 Signed-off-by: Stefan Roese <sr@denx.de>
36386
36387 commit 97b0734d65f8a0b03df0a335a2addc759da56107
36388 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36389 Date: Tue Sep 2 16:33:05 2008 +0200
36390
36391 ppc4xx: Remove obsolete or unused functions from some esd boards
36392
36393 This patch removes initdram() and testdram() from most esd 405 platforms.
36394 Some boards also have an empty dummy implementation of
36395 misc_init_f(). This is also removed.
36396
36397 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36398 Signed-off-by: Stefan Roese <sr@denx.de>
36399
36400 commit 1092ce218c514e5ccb18450ac5af501d96d6e3e9
36401 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36402 Date: Tue Sep 2 15:07:54 2008 +0200
36403
36404 ppc4xx: Update VOM405 board configuration
36405
36406 - remove PCI code
36407 - add command line editing
36408 - minor cleanup
36409
36410 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36411 Signed-off-by: Stefan Roese <sr@denx.de>
36412
36413 commit 830c800e28e96ec7c3c6936a0bd1b9461f3e77d4
36414 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36415 Date: Tue Sep 2 15:07:53 2008 +0200
36416
36417 ppc4xx: Remove obsolete initdram() function from VOM405 board
36418
36419 This patch removed the obsolete initdram() function from
36420 VOM405 platform file.
36421
36422 Some minor cleanup.
36423
36424 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36425 Signed-off-by: Stefan Roese <sr@denx.de>
36426
36427 commit 3d4dd7a941b2327b8c2fc535b782ca307ff8b6c8
36428 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36429 Date: Tue Sep 2 15:07:52 2008 +0200
36430
36431 ppc4xx: Cleanup VOM405 linker script
36432
36433 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36434 Signed-off-by: Stefan Roese <sr@denx.de>
36435
36436 commit fcaffd597f6f5191b12ca66c2a4789bbdeea85c2
36437 Author: Matthias Fuchs <mf@esd.eu>
36438 Date: Tue Sep 2 15:07:51 2008 +0200
36439
36440 ppc4xx: Add fdt support for VOM405 boards
36441
36442 Signed-off-by: Matthias Fuchs <mf@esd.eu>
36443 Signed-off-by: Stefan Roese <sr@denx.de>
36444
36445 commit 9ec367aa2c5dcf79558aa2b209b45d7686654c14
36446 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36447 Date: Tue Sep 2 11:36:14 2008 +0200
36448
36449 ppc4xx: Coding style cleanup
36450
36451 Wrap long lines etc.
36452
36453 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36454 Signed-off-by: Stefan Roese <sr@denx.de>
36455
36456 commit 17e65c21adfb63980e6aff80bfbd2df0eeb12060
36457 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36458 Date: Tue Sep 2 11:35:56 2008 +0200
36459
36460 ppc4xx: Enable USB on PLU405 boards
36461
36462 This patch enables the PCI-OHCI controller on PLU405 board.
36463
36464 Also the default CPU frequency is updated to 266 MHz and
36465 command line editing is enabled.
36466
36467 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36468 Signed-off-by: Stefan Roese <sr@denx.de>
36469
36470 commit 40e43e3b87d57b2ac786e27f6e25a7df9940d93b
36471 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36472 Date: Tue Sep 2 11:35:35 2008 +0200
36473
36474 ppc4xx: Cleanup PLU405 platform file
36475
36476 This patch
36477 - wraps some long lines
36478 - removes unused/obsolete functions: misc_init_f() and initdram()
36479
36480 Signed-off-by: Matthias Fuchs <mf@esd.eu>
36481 Signed-off-by: Stefan Roese <sr@denx.de>
36482
36483 commit d74cdb1d0614ab78128e0735a51e7988a7b7ea33
36484 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36485 Date: Tue Sep 2 11:35:04 2008 +0200
36486
36487 ppc4xx: Cleanup PLU405 linker script
36488
36489 Signed-off-by: Matthias Fuchs <mf@esd.eu>
36490 Signed-off-by: Stefan Roese <sr@denx.de>
36491
36492 commit 3bc1054cec2f6b25822f301ea922a16233baa4c7
36493 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36494 Date: Tue Sep 2 11:34:36 2008 +0200
36495
36496 ppc4xx: Add fdt support for PLU405 boards
36497
36498 Signed-off-by: Matthias Fuchs <mf@esd.eu>
36499 Signed-off-by: Stefan Roese <sr@denx.de>
36500
36501 commit 5a3e480b783bfbc139586293a54fb875d7c5c5d4
36502 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36503 Date: Tue Sep 2 11:34:08 2008 +0200
36504
36505 ppc4xx: Increase U-Boot size to 384kB for PLU405 boards
36506
36507 Signed-off-by: Matthias Fuchs <mf@esd.eu>
36508 Signed-off-by: Stefan Roese <sr@denx.de>
36509
36510 commit be1b0d2777e179191a57b138b660547a17e55aad
36511 Author: Jochen Friedrich <jochen@scram.de>
36512 Date: Tue Sep 2 11:24:59 2008 +0200
36513
36514 Don't tftp to unknown flash
36515
36516 If a board has a variable number of flash banks, there are empty entries
36517 in flash_info[] and CFG_DIRECT_FLASH_TFTP is set, tftp boot fails with
36518 "Outside available Flash". This patch skips flash banks with unknown
36519 flash ids.
36520
36521 Signed-off-by: Jochen Friedrich <jochen@scram.de>
36522 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36523
36524 commit 33314470ab32a3f5412bb61b5f3d6c216c88bf9b
36525 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
36526 Date: Thu Aug 28 13:40:44 2008 +0900
36527
36528 net: smc911x: Add pkt_data_pull and pkt_data_push function
36529
36530 The RSK7203 board has the SMSC9118 wired up 'incorrectly'.
36531 Byte-swapping is necessary, and so poor performance is inevitable.
36532 This problem cannot evade by the swap function of CHIP, this can
36533 evade by software Byte-swapping.
36534 And this has problem by FIFO access only. pkt_data_pull/pkt_data_push
36535 functions necessary to solve this problem.
36536
36537 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
36538 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36539
36540 commit 10efa024b8ffd9e6aaca63da8bddfdffdc672274
36541 Author: Ben Warren <biggerbadderben@gmail.com>
36542 Date: Sun Aug 31 20:37:00 2008 -0700
36543
36544 Moved initialization of EEPRO100 Ethernet controller to board_eth_init()
36545
36546 Affected boards:
36547 db64360
36548 db64460
36549 katmai
36550 taihu
36551 taishan
36552 yucca
36553 cpc45
36554 cpu87
36555 eXalion
36556 elppc
36557 debris
36558 kvme080
36559 mpc8315erdb
36560 integratorap
36561 ixdp425
36562 oxc
36563 pm826
36564 pm828
36565 pm854
36566 pm856
36567 ppmc7xx
36568 sc3
36569 sc520_spunk
36570 sorcery
36571 tqm8272
36572 tqm85xx
36573 utx8245
36574
36575 Removed initialization of the driver from net/eth.c
36576 Also, wrapped contents of pci_eth_init() by CONFIG_PCI.
36577
36578 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36579
36580 commit 8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0
36581 Author: Ben Warren <biggerbadderben@gmail.com>
36582 Date: Sun Aug 31 10:45:44 2008 -0700
36583
36584 Moved initialization of TULIP Ethernet controller to board_eth_init()
36585
36586 Affected boards:
36587 cu824
36588 bab7xx
36589 adciop
36590 dasa_sim
36591 mousse
36592 mpc8540eval
36593 musenki
36594 mvblue
36595 pcippc2/pcippc6
36596 sbc8240
36597 stxssa
36598
36599 Removed initialization of the driver from net/eth.c
36600
36601 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36602
36603 commit ad3381cf4167120db5c7b88e4970245e1d5c0a32
36604 Author: Ben Warren <biggerbadderben@gmail.com>
36605 Date: Sun Aug 31 10:44:19 2008 -0700
36606
36607 Moved initialization of E1000 Ethernet controller to board_eth_init()
36608
36609 Affected boards:
36610 ap1000
36611 mvbc_p
36612 PM854
36613
36614 Removed initialization of the driver from net/eth.c
36615
36616 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36617
36618 commit 4fce2aceaf8afd31a252bc782c9dbc497bf40487
36619 Author: Ben Warren <biggerbadderben@gmail.com>
36620 Date: Sun Aug 31 10:40:51 2008 -0700
36621
36622 Moved initialization of plb2800 Ethernet driver to board_eth_init
36623
36624 Affected boards:
36625 purple
36626
36627 Removed initialization of controller from net/eth.c
36628
36629 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36630
36631 commit e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d
36632 Author: Ben Warren <biggerbadderben@gmail.com>
36633 Date: Sun Aug 31 10:39:12 2008 -0700
36634
36635 Moved initialization of MPC5xxx_FEC Ethernet driver to CPU directory
36636
36637 Modified board_eth_init() functions of boards that have this FEC in addition
36638 to other Ethernet controllers.
36639
36640 Affected boards:
36641 bc3450
36642 icecube
36643 mvbc_p
36644 o2dnt
36645 pm520
36646 total5200
36647 tq5200
36648
36649 Removed initialization of controller from net/eth.c
36650
36651 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36652
36653 commit a0aad08f9427ac00218bdb2cb649833ce6ec9b8d
36654 Author: Ben Warren <biggerbadderben@gmail.com>
36655 Date: Sun Aug 31 10:36:38 2008 -0700
36656
36657 Moved initialization of MPC512x_FEC Ethernet driver to CPU directory
36658
36659 Added a cpu_eth_init() function to MPC512x CPU directory and
36660 removed code from net/eth.c
36661
36662 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36663
36664 commit 8218bd2aa68820b878a8413493ae17fd8d21f944
36665 Author: Ben Warren <biggerbadderben@gmail.com>
36666 Date: Sun Aug 31 10:16:59 2008 -0700
36667
36668 Moved initialization of IncaIP Ethernet controller to board_eth_init
36669
36670 Affected boards:
36671 IncaIP
36672
36673 Removed initialization of the driver from net/eth.c
36674
36675 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36676
36677 commit 164846eeb25cb2a5ede7ab9371fdca7f4831a055
36678 Author: Ben Warren <biggerbadderben@gmail.com>
36679 Date: Sun Aug 31 10:15:26 2008 -0700
36680
36681 Moved initialization of 3COM Ethernet controller (AmigaOne) to board_eth_init()
36682
36683 Affected boards:
36684 AmigaOneG3SE
36685
36686 Removed initialization of the driver from net/eth.c
36687
36688 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36689
36690 commit 6aca145e067efe75398e9fac97822bd3700de0b2
36691 Author: Ben Warren <biggerbadderben@gmail.com>
36692 Date: Sun Aug 31 10:13:34 2008 -0700
36693
36694 Moved initialization of GT6426x Ethernet controller to board_eth_init()
36695
36696 Affected boards:
36697 EVB64260
36698 P3G4
36699 ZUMA
36700
36701 Removed initialization of the driver from net/eth.c
36702
36703 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36704
36705 commit e3090534d62045dcb73f5392bacc64a4e8e443dc
36706 Author: Ben Warren <biggerbadderben@gmail.com>
36707 Date: Sun Aug 31 10:08:43 2008 -0700
36708
36709 Moved initialization of PCNET Ethernet controller to board_eth_init()
36710
36711 Affected boards:
36712 PN62
36713 sc520_cdp
36714
36715 Removed initialization of the driver from net/eth.c
36716
36717 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36718
36719 commit b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed
36720 Author: Ben Warren <biggerbadderben@gmail.com>
36721 Date: Sun Aug 31 10:07:16 2008 -0700
36722
36723 Moved initialization of NATSEMI Ethernet controller to board_eth_init()
36724
36725 Affected boards:
36726 a3000
36727
36728 Removed initialization of the driver from net/eth.c
36729
36730 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36731
36732 commit 19403633dd70333893c2da7926a1d0dcd6dab7d8
36733 Author: Ben Warren <biggerbadderben@gmail.com>
36734 Date: Sun Aug 31 10:03:22 2008 -0700
36735
36736 Moved initialization of NS8382X Ethernet controller to board_eth_init()
36737
36738 Affected boards:
36739 bc3450
36740 cpci5200
36741 mecp5200
36742 pf2000
36743 icecube
36744 o2dnt
36745 pm520
36746 sandpoint8245
36747 total5200
36748 tqm5200
36749
36750 Removed initialization of the driver from net/eth.c
36751
36752 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36753
36754 commit ccdd12f83ef93719fbe85f642aa4dc648b9498f0
36755 Author: Ben Warren <biggerbadderben@gmail.com>
36756 Date: Sun Aug 31 09:59:33 2008 -0700
36757
36758 Moved initialization of TSI108 Ethernet controller to board_eth_init()
36759
36760 Affected boards:
36761 mpc7448hpc2
36762
36763 Removed initialization of the driver from net/eth.c
36764
36765 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36766
36767 commit 0b252f50ae218ae15bfb63af44227972686ebc56
36768 Author: Ben Warren <biggerbadderben@gmail.com>
36769 Date: Sun Aug 31 21:41:08 2008 -0700
36770
36771 Moved initialization of RTL8139 Ethernet controller to board_eth_init()
36772
36773 Affected boards:
36774 hidden_dragon
36775 MPC8544DS
36776 MPC8610HPCN
36777 R2DPLUS
36778 TB0229
36779
36780 Removed initialization of the driver from net/eth.c
36781
36782 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36783
36784 commit 02d69891d95ee76b0e86e1715a4dc0b964a57cb7
36785 Author: Ben Warren <biggerbadderben@gmail.com>
36786 Date: Sun Aug 31 09:49:42 2008 -0700
36787
36788 Moved initialization of RTL8169 Ethernet controller to board_eth_init()
36789
36790 Affected boards:
36791 linkstation
36792 r7780mp
36793
36794 Removed initialization of the driver from net/eth.c
36795
36796 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36797
36798 commit 3ae071e44256144d6c1e3febb65f6c56bd433769
36799 Author: Ben Warren <biggerbadderben@gmail.com>
36800 Date: Tue Aug 12 22:11:53 2008 -0700
36801
36802 Moved initialization of Ethernet controllers on Atmel AT91 to board_eth_init()
36803
36804 Removed at91sam9_eth_initialize() from net/eth.c
36805
36806 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36807
36808 commit 89973f8a82c28ad893c4c3cc56839a8e10fe5f13
36809 Author: Ben Warren <biggerbadderben@gmail.com>
36810 Date: Sun Aug 31 22:22:04 2008 -0700
36811
36812 Introduce netdev.h header file and remove externs
36813
36814 This addresses all drivers whose initializers have already
36815 been moved to board_eth_init()/cpu_eth_init().
36816
36817 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36818
36819 commit 5a8a163ac394d9f4f7ff57f415d82bd673b0068c
36820 Author: Andy Fleming <afleming@freescale.com>
36821 Date: Sun Aug 31 16:33:30 2008 -0500
36822
36823 Add pixis_set_sgmii command
36824
36825 The 8544DS and 8572DS platforms support an optional SGMII riser card to
36826 expose ethernet over an SGMII interface. Once the card is in, it is also
36827 necessary to configure the board such that it uses the card, rather than
36828 the on-board ethernet ports. This can either be done by flipping dip switches
36829 on the motherboard, or by modifying registers in the pixis. Either way
36830 requires a reboot.
36831
36832 This adds a command to allow users to choose which ports are routed through
36833 the SGMII card, and which through the onboard ports. It also allows users
36834 to revert to the current switch settings.
36835
36836 This code does not work on the 8572, as the PIXIS is different.
36837
36838 Signed-off-by: Andy Fleming <afleming@freescale.com>
36839 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36840
36841 commit 216f2a7156a5fde7b47adc40ad553c888a9cbaa7
36842 Author: Andy Fleming <afleming@freescale.com>
36843 Date: Sun Aug 31 16:33:29 2008 -0500
36844
36845 Add SGMII support for the 8544 DS
36846
36847 The 8544 DS has an optional SGMII Riser card, which uses different PHY
36848 addresses. Check if we are in SGMII mode, and invoke the SGMII Riser
36849 setup code if so.
36850
36851 Signed-off-by: Andy Fleming <afleming@freescale.com>
36852 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36853
36854 commit 652f7c2eef76a1340928bd660845441e932d86a2
36855 Author: Andy Fleming <afleming@freescale.com>
36856 Date: Sun Aug 31 16:33:28 2008 -0500
36857
36858 Add support for Freescale SGMII Riser Card
36859
36860 The 8544DS and 8572DS systems have an optional SGMII riser card which
36861 exposes new ethernet ports which are connected to the eTSECs via an
36862 SGMII interface. The SGMII PHYs for this board are offset from the standard
36863 PHY addresses, so this code modifies the passed in tsec_info structure to
36864 use the SGMII PHYs on the card, instead.
36865
36866 Signed-off-by: Andy Fleming <afleming@freescale.com>
36867 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36868
36869 commit 2abe361c03b43e6dcf68f54e96b5c05156c49284
36870 Author: Andy Fleming <afleming@freescale.com>
36871 Date: Sun Aug 31 16:33:27 2008 -0500
36872
36873 Add SGMII support to the tsec
36874
36875 Adds support for configuring the TBI to talk properly with the SerDes.
36876
36877 Signed-off-by: Andy Fleming <afleming@freescale.com>
36878 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36879
36880 commit 75b9d4ae0d69f214eab641caf12ce8af83a39a42
36881 Author: Andy Fleming <afleming@freescale.com>
36882 Date: Sun Aug 31 16:33:26 2008 -0500
36883
36884 Pass in tsec_info struct through tsec_initialize
36885
36886 The tsec driver contains a hard-coded array of configuration information
36887 for the tsec ethernet controllers. We create a default function that works
36888 for most tsecs, and allow that to be overridden by board code. It creates
36889 an array of tsec_info structures, which are then parsed by the corresponding
36890 driver instance to determine configuration. Also, add regs, miiregs, and
36891 devname fields to the tsec_info structure, so that we don't need the kludgy
36892 "index" parameter.
36893
36894 Signed-off-by: Andy Fleming <afleming@freescale.com>
36895 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36896
36897 commit dd3d1f56a01f460d560766126ee7dfed2ea9bc10
36898 Author: Andy Fleming <afleming@freescale.com>
36899 Date: Sun Aug 31 16:33:25 2008 -0500
36900
36901 tsec: Move tsec.h to include/
36902
36903 This is to prepare the way for board code passing in the tsec_info structure
36904
36905 Signed-off-by: Andy Fleming <afleming@freescale.com>
36906 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36907
36908 commit d23dc394aa69093b6326ad917db04dc0d1aff3f8
36909 Author: Sergei Poselenov <sposelenov@emcraft.com>
36910 Date: Fri Jun 6 15:52:44 2008 +0200
36911
36912 PHY: Add support for the M88E1121R Marvell chip.
36913
36914 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
36915 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
36916 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36917
36918 commit 1711f3bd16d1c5e9d17b4c0198b426d86999781b
36919 Author: Wolfgang Denk <wd@denx.de>
36920 Date: Tue Sep 2 21:17:36 2008 +0200
36921
36922 fw_env.c: fix build problems with MTD_VERSION=old
36923
36924 (as needed to support old 2.4 Linux kernel based releases)
36925
36926 Signed-off-by: Wolfgang Denk <wd@denx.de>
36927
36928 commit 628ffd73bcff0c9f3bc5a8eeb2c7455fe9d28a51
36929 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36930 Date: Mon Sep 1 17:11:26 2008 +0200
36931
36932 device: make device_register() clone the device
36933
36934 This is expected by the callers, but this fact was hidden well within
36935 the old list implementation.
36936
36937 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36938
36939 commit baf449fc5ff96f071bb0e3789fd3265f6d4fd9a0
36940 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36941 Date: Mon Sep 1 14:00:07 2008 +0200
36942
36943 avr32: Add support for "GPIO" port mux
36944
36945 The "GPIO" port mux is used on AVR32 UC3 parts as well as AT32AP7200 and
36946 all later AVR32 chips. This patch adds a driver for it, implementing the
36947 same API as the existing portmux-pio driver but with more functionality.
36948
36949 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36950
36951 commit d92852579546c46bdaac978e0b6767a6645b69e0
36952 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36953 Date: Fri Aug 15 15:02:29 2008 +0200
36954
36955 atstk1000: Convert to new-style makefile
36956
36957 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36958
36959 commit 25e6854d42c11046a468576179b5494f850311b2
36960 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36961 Date: Sun Aug 31 18:46:35 2008 +0200
36962
36963 avr32: use board_early_init_r instead of board_init_info
36964
36965 Replace the avr32-specific board_init_info hook by the standard
36966 board_early_init_r hook and make it optional.
36967
36968 board_early_init_r() runs somewhat earlier than board_init_info used to
36969 do, but this isn't a problem for any of the in-tree boards.
36970
36971 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36972
36973 commit 36d375faf5cff98e8dca32aabbbb1ec6036437dd
36974 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36975 Date: Sun Aug 31 18:24:24 2008 +0200
36976
36977 avr32: Use board_postclk_init instead of gclk_init
36978
36979 Replace the avr32-specific gclk_init() board hook with the standard
36980 board_postclk_init() hook which is supposed to run at the same point
36981 during initialization.
36982
36983 Provide a dummy weak alias for boards not implementing this hook. The
36984 cost of this is:
36985 - 2 bytes for the dummy function (retal 0)
36986 - 2 bytes for each unnecessary function call (short rcall)
36987
36988 which is a pretty small price to pay for avoiding lots of #ifdef
36989 clutter. In this particular case, all boards probably end up slightly
36990 smaller because we avoid the conditional checking if the gclk_init
36991 symbol is NULL.
36992
36993 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36994
36995 commit abdde2b1d570b1ee77606bf783444fcddf7f0965
36996 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
36997 Date: Sun Aug 31 18:07:35 2008 +0200
36998
36999 hammerhead: Use gclk helper functions
37000
37001 Use the new gclk helper functions to set up the PHY clock instead of
37002 accessing the PM registers directly.
37003
37004 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37005
37006 commit 98090cd75cdb40b2ab94c806c338540a5716748b
37007 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37008 Date: Sun Aug 31 18:05:32 2008 +0200
37009
37010 avr32: Add gclk helper functions
37011
37012 Add two helper functions for configuring and enabling generic clocks:
37013 - gclk_enable_output: Enables output on a GCLKx pin
37014 - gclk_set_rate: Configures a gclk to run at a specific rate
37015
37016 This should eliminate any reason to go mucking about with PM registers
37017 from board code.
37018
37019 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37020
37021 commit ab0df36fc7db9dda0b786b909f653e279dfeb9cf
37022 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37023 Date: Fri Aug 29 21:09:49 2008 +0200
37024
37025 avr32: refactor the portmux/gpio code
37026
37027 - Separate the portmux configuration functionality from the GPIO pin
37028 control API.
37029 - Separate the controller-specific code from the chip-specific code.
37030 - Allow "ganged" port configuration (multiple pins at once).
37031 - Add more flexibility to the "canned" peripheral select functions:
37032 - Allow using more than 23 address bits, more chip selects, as
37033 well as NAND- and CF-specific pins.
37034 - Make the MACB SPEED pin optional, and choose between MII/RMII
37035 using a parameter instead of an #ifdef.
37036 - Make it possible to use other MMC slots than slot 0, and support
37037 different MMC/SDCard data bus widths.
37038 - Use more reasonable pull-up defaults; floating pins may consume a
37039 lot of power.
37040 - Get rid of some custom portmux code from the mimc200 board code. The
37041 old gpio/portmux API couldn't really handle its requirements, but
37042 the new one can.
37043 - Add documentation.
37044
37045 The end result is slightly smaller code for all boards. Which isn't
37046 really the point, but at least it isn't any larger.
37047
37048 This has been verified on ATSTK1002 and ATNGW100. I'd appreciate if
37049 the board maintainers could help me test this on their boards. In
37050 particular, the mimc200 port has lost a lot of code, so I'm hoping Mark
37051 can help me out.
37052
37053 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37054 Cc: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
37055 Cc: Mark Jackson <mpfj@mimc.co.uk>
37056 Cc: Alex Raimondi <alex.raimondi@miromico.ch>
37057 Cc: Julien May <julien.may@miromico.ch>
37058
37059 Changes since v1:
37060 * Enable pullup on NWAIT
37061 * Add missing include to portmux-pio.h
37062 * Rename CONFIG_PIO2 -> CONFIG_PORTMUX_PIO to match docs
37063
37064 commit 4c24e8288c601cb773ab02528b48a8577970e867
37065 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37066 Date: Sat Aug 30 17:28:36 2008 +0200
37067
37068 avr32: data_bits should reflect the actual number of data bits
37069
37070 Make the data_bits enum in struct sdram_config reflect the actual number
37071 of data bits on the bus, i.e. 16 or 32. Having 0 mean 16 bits and 1 mean
37072 32 bits is just too confusing.
37073
37074 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37075
37076 commit 66b7bc5175325809718d8d49ef073bc1036ad71b
37077 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37078 Date: Fri Aug 29 17:48:18 2008 +0200
37079
37080 avr32: Update README
37081
37082 Remove some outdated and/or unnecessary information, and add updated
37083 information about the toolchain and buildroot.
37084
37085 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37086
37087 commit c75e772a2f061a508bba28ded1b5bea91f0442b0
37088 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37089 Date: Sun Aug 31 23:28:15 2008 +0900
37090
37091 sh: Remove CC line from board's Makefile
37092
37093 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37094
37095 commit 468eae0660de6fdfd9999944c536ecc4797bd944
37096 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37097 Date: Sun Aug 31 23:25:57 2008 +0900
37098
37099 sh: Replaced "@./mkconfig" for @$(MKCONFIG)
37100
37101 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37102
37103 commit 3aeb1ff7482a732503186c742d3a5ded4b7a0d34
37104 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37105 Date: Thu Aug 28 14:50:52 2008 +0900
37106
37107 sh: Add support sh2 to MAKEALL
37108
37109 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37110 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37111
37112 commit 6f3d8bb5faa12dbf3031382286784c978df038ee
37113 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37114 Date: Thu Aug 28 14:52:23 2008 +0900
37115
37116 sh: Fix compile error rsk7203 board
37117
37118 This boards used old type preprocessor.
37119 This patch fix compile error.
37120
37121 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37122 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37123
37124 commit 1c98172e025018552e9bb4c43b0aaee76f79b1aa
37125 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37126 Date: Thu Aug 28 14:53:31 2008 +0900
37127
37128 sh: Fix compile error sh7785lcr board
37129
37130 This boards used old type preprocessor.
37131 This patch fix compile error.
37132
37133 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37134 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37135
37136 commit 6f0da4972e48f99d37bc522814940a6022cd3084
37137 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37138 Date: Fri Aug 22 17:39:09 2008 +0900
37139
37140 sh: Renesas Solutions AP325RXA board support
37141
37142 AP325RXA is SH7723's reference board.
37143 This has SCIF, NOR Flash, Ethernet, USB host, LCDC, SD Host, Camera and other.
37144 In this patch, support SCIF, NOR Flash, and Ethernet.
37145
37146 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37147 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37148
37149 commit ab09f433b50bb83b5e440c335bc3839ee069e534
37150 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37151 Date: Fri Aug 22 17:48:51 2008 +0900
37152
37153 sh: add support Renesas SH7723
37154
37155 Renesas SH7723 has 5 SCIF, SD, Camera, LCDC and other.
37156 This patch supports CPU register's header file and SCIF serial driver.
37157
37158 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37159 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37160
37161 commit c655fad06ba3fb042dbc667724a40e1a9a091248
37162 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37163 Date: Sun Aug 31 23:02:04 2008 +0900
37164
37165 sh: Renesas RSK+ 7203 board support
37166
37167 This adds initial support for the RTE RSK+ SH7203 board.
37168
37169 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37170 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37171
37172 commit 6ede753ddf52a7b0f992d9bccbe5e4a0968ca475
37173 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37174 Date: Thu Jul 3 23:11:02 2008 +0900
37175
37176 sh: Add support Renesas SH7203 processor
37177
37178 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37179 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37180
37181 commit 6ad43d0dd86b612895ddc7f480eb6cdfe793adf9
37182 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37183 Date: Sun Aug 31 22:48:33 2008 +0900
37184
37185 sh: Add support SH2/SH2A which is CPU of Renesas Technology
37186
37187 Add support SH2/SH2A basic function.
37188
37189 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37190 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37191
37192 commit 0d53a47dc0737b6aa3a39caee21410c169441ae5
37193 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37194 Date: Sun Aug 31 22:45:08 2008 +0900
37195
37196 sh: Renesas R0P7785LC0011RL board support
37197
37198 This board has SH7785, 512MB DDR2-SDRAM, NOR Flash,
37199 Graphic, Ethernet, USB, SD, RTC, and I2C controller.
37200
37201 This patch supports the following functions:
37202 - 128MB DDR2-SDRAM (29-bit address mode only)
37203 - NOR Flash
37204 - USB host
37205 - Ethernet
37206
37207 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
37208 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37209
37210 commit b0b6218929bc7de9a6bdb8e564fa8ec2efa71b4e
37211 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
37212 Date: Thu Jul 10 19:32:53 2008 +0900
37213
37214 sh: add support for SH7785
37215
37216 Renesas SH7785 has DDR2-SDRAM controller, PCI, and other.
37217 This patch supports CPU register's header file.
37218
37219 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
37220 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37221
37222 commit d6e04258be8f2408845468d3cf722a4cf0433445
37223 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37224 Date: Sun Aug 31 04:45:42 2008 +0200
37225
37226 davinci: fix remaining dm644x_eth
37227
37228 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37229
37230 commit 08ab4e1780fa63c88dd5a5ab52f4ff4ed1ee1878
37231 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37232 Date: Sun Aug 31 04:24:56 2008 +0200
37233
37234 fs: Move conditional compilation to Makefile
37235
37236 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37237
37238 commit c1de7a6daf9c657484e1c6d433f01fccd49a7f48
37239 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37240 Date: Sun Aug 31 04:24:55 2008 +0200
37241
37242 devices: merge to list_head
37243
37244 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37245
37246 commit ef0255fc75f28655f9681422079287d68a14dbaa
37247 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37248 Date: Sun Aug 31 04:24:51 2008 +0200
37249
37250 update linux/list
37251
37252 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37253
37254 commit 71cb31227bee741b274f6c0279b2aac1ab8e28e3
37255 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37256 Date: Sun Aug 31 00:39:48 2008 +0200
37257
37258 smdk6400: add gitignore
37259
37260 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37261
37262 commit f9f692e2b146d4e306b777e6d5f69f1d725b9eb9
37263 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37264 Date: Sun Aug 31 00:39:48 2008 +0200
37265
37266 smdk6400: Use CONFIG_FLASH_CFI_DRIVER
37267
37268 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37269
37270 commit 7c0e5a8db3d1358b0ce3cc85ada0de6341ca4a15
37271 Author: Guennadi Liakhovetski <lg@denx.de>
37272 Date: Sun Aug 31 00:39:47 2008 +0200
37273
37274 smdk6400: remove redundant bootargs definition
37275
37276 Double bootargs setting leads to a duplicated environmant entry.
37277
37278 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
37279
37280 commit 11edcfe260f20dcea79284a3e95270989d433854
37281 Author: Guennadi Liakhovetski <lg@denx.de>
37282 Date: Sun Aug 31 00:39:47 2008 +0200
37283
37284 ARM: Add support for S3C6400 based SMDK6400 board
37285
37286 SMDK6400 can only boot U-Boot from NAND-flash. This patch adds a nand_spl
37287 driver for it too. The board can also boot from the NOR flash, but due to
37288 hardware limitations it can only address 64KiB on it, which is not enough
37289 for U-Boot. Based on the original sources by Samsung for U-Boot 1.1.6.
37290
37291 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
37292
37293 commit e0056b341069796eaea11eae0fc8eb93a3dceaac
37294 Author: Guennadi Liakhovetski <lg@denx.de>
37295 Date: Sun Aug 31 00:39:47 2008 +0200
37296
37297 NAND: add NAND driver for S3C64XX
37298
37299 Based on the original S3C64XX NAND driver by Samsung for U-Boot 1.1.6.
37300
37301 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
37302
37303 commit 3fe7b589f9c7463df39056f8872006a67f56a91c
37304 Author: Guennadi Liakhovetski <lg@denx.de>
37305 Date: Sun Aug 31 00:39:47 2008 +0200
37306
37307 S3C64XX: remove broken HWFLOW support from the serial driver
37308
37309 As noted by Harald Welte, HWFLOW support in the S3C64XX serial driver is
37310 broken and currently unused. Remove it.
37311
37312 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
37313
37314 commit 2fb28dcf82048045e1bf5014e938e486fa6c2383
37315 Author: Guennadi Liakhovetski <lg@denx.de>
37316 Date: Sun Aug 31 00:39:47 2008 +0200
37317
37318 serial: add S3C64XX serial driver
37319
37320 Based on the original S3C64XX UART driver by Samsung for U-Boot 1.1.6.
37321
37322 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
37323
37324 commit 8262813ca04fc57f5d8856e1828085c136e0f1eb
37325 Author: Guennadi Liakhovetski <lg@denx.de>
37326 Date: Sun Aug 31 00:39:46 2008 +0200
37327
37328 USB: Add support for OHCI controller on S3C6400
37329
37330 Notice: USB on S3C6400 currently works _only_ with switched off MMU. One could
37331 try to enable the MMU, but map addresses 1-to-1, and disable data cache, then
37332 it should work too and we could still profit from instruction cache.
37333
37334 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
37335
37336 commit 9b07773f8883665b002500c190507e9fd99b7181
37337 Author: Guennadi Liakhovetski <lg@denx.de>
37338 Date: Sun Aug 31 00:39:46 2008 +0200
37339
37340 ARM: Add arm1176 core with S3C6400 SoC
37341
37342 Based on the original S3C64XX port by Samsung for U-Boot 1.1.6.
37343
37344 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
37345
37346 commit fcaac589a68115819ddadcf5c18ded9a5f9e2c75
37347 Author: Sandeep Paulraj <s-paulraj@ti.com>
37348 Date: Sun Aug 31 00:39:46 2008 +0200
37349
37350 ARM DaVinci: Changing function names for EMAC driver
37351
37352 DM644x is just one of a series of DaVinci chips that use the EMAC driver.
37353 By replacing all the function names that start with dm644x_* to davinci_*
37354 we make these function more portable. I have tested this change on my EVM.
37355 DM6467 is another DaVinci SOC which uses the EMAC driver and i will
37356 be sending patches that add DaVinci DM6467 support to the list soon.
37357
37358 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
37359
37360 commit fbbb1de369ca7d5ace6f7b0ce9d0aee24a6f457b
37361 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
37362 Date: Sat Aug 30 23:21:30 2008 +0200
37363
37364 Integrator[AP/CP] - Remove unused file memsetup.S
37365
37366 - memsetup.s is changed/merged to lowlevel_init.S
37367 memsetup.S has a global label memsetup that just returns back to caller
37368 - memsetup global label is changed/merged to lowlevel_init
37369 This label is not called from anywhere.
37370
37371 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
37372
37373 commit 89d51d022a63be1a851eda983c8cbce1a044f65f
37374 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
37375 Date: Wed Aug 27 21:35:52 2008 +0200
37376
37377 ARM DaVinci: Standardize names of directories/files
37378
37379 ARM DaVinci: Standardize names of directories/files.
37380
37381 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
37382 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37383
37384 commit 264bbdd11d01f14f5ea4629556ae63b00b13402d
37385 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
37386 Date: Fri Jul 11 15:10:13 2008 -0400
37387
37388 ARM DaVinci: Move common functions to board/davinci/common
37389
37390 ARM DaVinci: Move common functions to board/davinci/common.
37391
37392 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
37393
37394 commit c2b4b2e4814f4ace9015fdb64132894327400bf0
37395 Author: Stefan Roese <sr@denx.de>
37396 Date: Fri Aug 29 11:56:49 2008 +0200
37397
37398 ppc4xx/NAND: Add select_chip function to 4xx NDFC driver
37399
37400 This function is needed for the new NAND infrastructure. We only need
37401 a dummy implementation though for the NDFC.
37402
37403 Signed-off-by: Stefan Roese <sr@denx.de>
37404
37405 commit 3d4a746e2fb4545f07d871049805fb34ae97cc94
37406 Author: Stefan Roese <sr@denx.de>
37407 Date: Fri Aug 29 12:06:27 2008 +0200
37408
37409 ppc4xx: Increase image size for NAND boot target
37410
37411 This is needed since now with HUSH enabled (amcc-common.h) the image
37412 read from NAND exceeds the previous limit.
37413
37414 Signed-off-by: Stefan Roese <sr@denx.de>
37415
37416 commit 6b5049d056cd8ef72d1f2f461ceb2d033d93f759
37417 Author: Ben Warren <biggerbadderben@gmail.com>
37418 Date: Thu Aug 28 23:58:30 2008 -0700
37419
37420 Move MPC512x_FEC driver to drivers/net
37421
37422 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37423
37424 commit 80b00af01b3c9154774de2936f05a051e92f6a03
37425 Author: Ben Warren <biggerbadderben@gmail.com>
37426 Date: Thu Aug 28 23:58:29 2008 -0700
37427
37428 Move MPC5xxx_FEC driver to drivers/net
37429
37430 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37431
37432 commit 3de7bf0e6b1ad2608014096c8192f13229b2e9d7
37433 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37434 Date: Fri Aug 29 21:53:57 2008 +0200
37435
37436 cmd_terminal: remove no need ifdef
37437
37438 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37439
37440 commit 578118bdf122877ae769776be002255be447b4fa
37441 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37442 Date: Fri Aug 29 21:53:57 2008 +0200
37443
37444 common/Makefile: order by functionality
37445
37446 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37447
37448 commit ba7b5b2348b684cf8ec424b2e38e267dc1cfd2fb
37449 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37450 Date: Fri Aug 29 21:53:56 2008 +0200
37451
37452 miiphyutil: Move conditional compilation to Makefile
37453
37454 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37455
37456 commit 81789c39db3f0f6b621df8c0ec66014d701f368e
37457 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37458 Date: Fri Aug 29 21:53:37 2008 +0200
37459
37460 autoscript: Move conditional compilation to Makefile
37461
37462 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37463
37464 commit bbf52df9aa94ffb115b8b1ebeb00d01374bb0a1d
37465 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37466 Date: Fri Aug 29 01:18:11 2008 +0200
37467
37468 crc16: move to lib_generic
37469
37470 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37471
37472 commit 55195773eacefb22dd483a3c560ea30a14263ce1
37473 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37474 Date: Fri Aug 29 01:18:01 2008 +0200
37475
37476 miiphybb: move to drivers/net/phy
37477
37478 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37479
37480 commit e8314035996a9118ac5948df2ff8a2f2161ed67a
37481 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37482 Date: Thu Aug 28 12:31:51 2008 +0200
37483
37484 soft_spi: move to drivers/spi
37485
37486 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37487
37488 commit 4d75e0aa9caca64d4a1d55d95cd1ca5f30d9fc56
37489 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37490 Date: Thu Aug 28 12:31:51 2008 +0200
37491
37492 soft_i2c: move to drivers/i2c
37493
37494 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37495
37496 commit 717a222229fdb77703e9174d0eb08a4b41febf49
37497 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37498 Date: Thu Aug 28 12:31:48 2008 +0200
37499
37500 gunzip: move to lib_generic
37501
37502 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37503
37504 commit 52aef8f9ba28b747973bf76741c23db658d5773c
37505 Author: Wolfgang Ocker <weo@reccoware.de>
37506 Date: Tue Aug 26 19:55:23 2008 +0200
37507
37508 ppc4xx: NAND configuration
37509
37510 Made NAND bank configuration setting a config variable.
37511
37512 Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
37513 Signed-off-by: Stefan Roese <sr@denx.de>
37514
37515 commit 5bc542a593abc9e974fbd34704af85c37c366c60
37516 Author: Victor Gallardo <vgallardo@amcc.com>
37517 Date: Thu Aug 28 16:03:28 2008 -0700
37518
37519 ppc4xx: fix UIC external_interrupt hang on UIC0
37520
37521 This patch fixes a UIC external_interrupt hang if critical or non-critical
37522 interrupt is set at the same time as a normal interrupt is set on UIC0.
37523
37524 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
37525 Signed-off-by: Stefan Roese <sr@denx.de>
37526
37527 commit 04737d5ffd16248cb80ab3dd4f3765057a803f18
37528 Author: Prodyut Hazarika <phazarika@amcc.com>
37529 Date: Wed Aug 27 16:39:00 2008 -0700
37530
37531 ppc4xx: Optimizations/Cleanups for IBM DDR2 Memory Controller
37532
37533 Removed Magic numbers from Initialization preload registers
37534 Tested with Kilauea, Glacier, Canyonlands and Katmai boards
37535 About 5-7% improvement seen for LMBench memtests
37536
37537 Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
37538 Signed-off-by: Stefan Roese <sr@denx.de>
37539
37540 commit 8a490422bed685c9491274ec997f62061d88620b
37541 Author: John Rigby <jrigby@freescale.com>
37542 Date: Thu Aug 28 13:17:07 2008 -0600
37543
37544 ADS5121: Fix NOR and CPLD ALE timing for rev 2 silicon
37545
37546 MPC5121 rev 2 silicon has a new register for controlling how long
37547 CS is asserted after deassertion of ALE in multiplexed mode.
37548
37549 The default is to assert CS together with ALE. The alternative
37550 is to assert CS (ALEN+1)*LPC_CLK clocks after deassertion of ALE.
37551
37552 The default is wrong for the NOR flash and CPLD on the ADS5121.
37553
37554 This patch turns on the alternative for CS0 (NOR) and CS2 (CPLD)
37555 it does so conditionally based on silicon rev 2.0 or greater.
37556
37557 Signed-off-by: Martha J Marx <mmarx@silicontkx.com>
37558 Signed-off-by: John Rigby <jrigby@freescale.com>
37559
37560 commit 5d9a5efa4b332f442b54a755d49969123c3a8742
37561 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37562 Date: Tue Aug 19 00:56:46 2008 +0600
37563
37564 Add I2C frequency dividers for ColdFire
37565
37566 The existing I2C freqency dividers for FDR does not apply
37567 to ColdFire platforms; thus, a seperate table is added
37568 based on MCF5xxx Reference Manual
37569
37570 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
37571 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37572 Acked-by: Tabi Timur <timur@freescale.com>
37573
37574 commit eec567a67e00d1ed8d941e9098b7d421f4091abf
37575 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37576 Date: Tue Aug 19 03:01:19 2008 +0600
37577
37578 ColdFire: I2C fix for multiple platforms
37579
37580 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37581
37582 commit d53cf6a9c7423cba668b867978648645f71c3090
37583 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37584 Date: Tue Aug 19 00:37:13 2008 +0600
37585
37586 ColdFire: Add CONFIG_MII_INIT for M5272C3
37587
37588 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37589
37590 commit f78ced3028d4130b24a318943a70cf5584ab16f4
37591 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37592 Date: Tue Aug 19 00:26:25 2008 +0600
37593
37594 ColdFire: Multiple fixes for MCF5445x platforms
37595
37596 Add FEC pin set and mii reset in __mii_init(). Change
37597 legacy flash vendor from 2 to AMD LEGACY (0xFFF0),
37598 change cfi_offset to 0, and change CFG_FLASH_CFI to
37599 CONFIG_FLASH_CFI_LEGACY. Correct M54451EVB and
37600 M54455EVB env settings in configuration file.
37601
37602 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37603
37604 commit 454e725b3a9537b7f273bbd0cbca180f23a7a6e8
37605 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37606 Date: Fri Aug 15 18:24:25 2008 +0000
37607
37608 ColdFire: Change the SDRAM BRD2WT timing from 3 to 7
37609
37610 The user manuals recommend 7.
37611
37612 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
37613 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37614
37615 commit 79e0799cf6e88d98d77b216a55234bf674b59a4e
37616 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37617 Date: Fri Aug 15 16:50:07 2008 +0000
37618
37619 ColdFire: Raise uart baudrate to 115200 bps
37620
37621 M5249EVB, M5271EVB, M5272C3, M5275EVB and M5282EVB platforms
37622 uart baudrate increase from 19200 to 115200 bps
37623
37624 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37625
37626 commit ab6ba842682552ccf071d0034da0a20633d1d1ac
37627 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37628 Date: Wed Aug 13 12:07:03 2008 +0000
37629
37630 ColdFire: Fix board.c warning message
37631
37632 Implicit declaration of nand_init() warning message
37633
37634 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37635
37636 commit 5798b1c4650e9a8713c95b25c1e669a2bc80a97b
37637 Author: Kumar Gala <galak@kernel.crashing.org>
37638 Date: Wed Aug 27 01:10:34 2008 -0500
37639
37640 FSL DDR: Remove duplicate setting of cs0_bnds register on 86xx.
37641
37642 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37643
37644 commit 258c37b147353bc522ffc33dfbd7d0d9cd7c32d7
37645 Author: Heiko Schocher <hs@denx.de>
37646 Date: Thu Aug 21 20:44:49 2008 +0200
37647
37648 mpc52xx: added support for the MPC5200 based MUC.MC52 board from MAN.
37649
37650 Signed-off-by: Heiko Schocher <hs@denx.de>
37651
37652 commit 9cff4448a9cb882defe6c8bde73b77fc0c636799
37653 Author: Kumar Gala <galak@kernel.crashing.org>
37654 Date: Tue Aug 19 14:46:36 2008 -0500
37655
37656 mpc85xx: remove redudant code with lib_ppc/interrupts.c
37657
37658 For some reason we duplicated the majority of code in lib_ppc/interrupts.c
37659 not show how that happened, but there is no good reason for it.
37660
37661 Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
37662 they exist.
37663
37664 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37665
37666 commit 9490a7f1a9484617bad75c60807ce02c8a3a6d56
37667 Author: Kumar Gala <galak@kernel.crashing.org>
37668 Date: Fri Jul 25 13:31:05 2008 -0500
37669
37670 mpc85xx: Add support for the MPC8536DS reference board
37671
37672 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37673 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
37674 Signed-off-by: Dejan Minic <minic@freescale.com>
37675 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
37676 Signed-off-by: Dave Liu <daveliu@freescale.com>
37677 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37678
37679 commit ef50d6c06ece74fb17e8d7510e62cad9df8b810d
37680 Author: Kumar Gala <galak@kernel.crashing.org>
37681 Date: Tue Aug 12 11:14:19 2008 -0500
37682
37683 mpc85xx: Add support for the MPC8536
37684
37685 The MPC8536 Adds SDHC and SATA controllers to the PQ3 family. We
37686 also have SERDES init code for the 8536.
37687
37688 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37689 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
37690 Signed-off-by: Dejan Minic <minic@freescale.com>
37691 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
37692 Signed-off-by: Dave Liu <daveliu@freescale.com>
37693
37694 commit 129ba616b3813dde861f25f3d8a3c47c5c36ad5f
37695 Author: Kumar Gala <galak@kernel.crashing.org>
37696 Date: Tue Aug 12 11:13:08 2008 -0500
37697
37698 mpc85xx: Add support for the MPC8572DS reference board
37699
37700 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37701
37702 commit 457caecdbca3df21a93abff19eab12dbc61b7897
37703 Author: Kumar Gala <galak@kernel.crashing.org>
37704 Date: Wed Aug 27 01:05:35 2008 -0500
37705
37706 FSL DDR: Remove old SPD support from cpu/mpc85xx
37707
37708 All 85xx boards have been converted to the new code so we can
37709 remove the old SPD DDR setup code.
37710
37711 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37712
37713 commit 0e7927db138976469e7257e29c1338050a50fcd9
37714 Author: Kumar Gala <galak@kernel.crashing.org>
37715 Date: Wed Aug 27 01:04:07 2008 -0500
37716
37717 FSL DDR: Convert STXSSA to new DDR code.
37718
37719 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37720
37721 commit c360d9b970fbb9c13744c355879671165bbb9b9e
37722 Author: Kumar Gala <galak@kernel.crashing.org>
37723 Date: Wed Aug 27 01:03:42 2008 -0500
37724
37725 FSL DDR: Convert STXGP3 to new DDR code.
37726
37727 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37728
37729 commit 8e55313b7ae12352a343f9b9962e662dbd897187
37730 Author: Kumar Gala <galak@kernel.crashing.org>
37731 Date: Tue Aug 26 23:52:58 2008 -0500
37732
37733 FSL DDR: Convert SBC8560 to new DDR code.
37734
37735 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37736
37737 commit 9658bec2e8f55d56ca1be70090ce5a348be4980f
37738 Author: Kumar Gala <galak@kernel.crashing.org>
37739 Date: Tue Aug 26 23:52:32 2008 -0500
37740
37741 FSL DDR: Convert MPC8540EVAL to new DDR code.
37742
37743 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37744
37745 commit 6bfa8f723cfd82c55e3ef5620ade396916470a70
37746 Author: Kumar Gala <galak@kernel.crashing.org>
37747 Date: Tue Aug 26 23:52:07 2008 -0500
37748
37749 FSL DDR: Convert PM856 to new DDR code.
37750
37751 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37752
37753 commit d53bd3e17bd4f460257c19255569ea6dcfaae817
37754 Author: Kumar Gala <galak@kernel.crashing.org>
37755 Date: Tue Aug 26 23:51:49 2008 -0500
37756
37757 FSL DDR: Convert PM854 to new DDR code.
37758
37759 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37760
37761 commit 33b9079ba20926f14238fff863b68a98e938948e
37762 Author: Kumar Gala <galak@kernel.crashing.org>
37763 Date: Tue Aug 26 23:15:28 2008 -0500
37764
37765 FSL DDR: Convert sbc8548 to new DDR code.
37766
37767 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37768
37769 commit a947e4c7eb15cea1d9fb633955c516aab5ad35dd
37770 Author: Kumar Gala <galak@kernel.crashing.org>
37771 Date: Tue Aug 26 23:14:14 2008 -0500
37772
37773 FSL DDR: Convert atum8548 to new DDR code.
37774
37775 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37776
37777 commit be0bd8234b9777ecd63c4c686f72af070d886517
37778 Author: Kumar Gala <galak@kernel.crashing.org>
37779 Date: Tue Aug 26 22:56:56 2008 -0500
37780
37781 FSL DDR: Convert socrates to new DDR code.
37782
37783 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37784
37785 commit 1167a2fd56138b716e01370c4267f3b70bf9ffa0
37786 Author: Kumar Gala <galak@kernel.crashing.org>
37787 Date: Tue Aug 26 08:02:30 2008 -0500
37788
37789 FSL DDR: Convert MPC8544DS to new DDR code.
37790
37791 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37792
37793 commit e6f5b35b41ddbd637bb9ca4ad985b1e0b07dae0e
37794 Author: Jon Loeliger <jdl@freescale.com>
37795 Date: Tue Mar 18 13:51:05 2008 -0500
37796
37797 FSL DDR: Convert MPC8568MDS to new DDR code.
37798
37799 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37800 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37801
37802 commit e31d2c1e2bc954dc32e33bb2076139f85b95f8e6
37803 Author: Jon Loeliger <jdl@freescale.com>
37804 Date: Tue Mar 18 13:51:06 2008 -0500
37805
37806 FSL DDR: Convert MPC8548CDS to new DDR code.
37807
37808 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37809 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37810
37811 commit aa11d85cf318b961e029fe50d68ca47d004bce93
37812 Author: Jon Loeliger <jdl@freescale.com>
37813 Date: Mon Mar 17 15:48:18 2008 -0500
37814
37815 FSL DDR: Convert MPC8541CDS to new DDR code.
37816
37817 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37818 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37819
37820 commit 2b40edb10d81da7bba724edbccd7f53777112579
37821 Author: Jon Loeliger <jdl@freescale.com>
37822 Date: Tue Mar 18 11:12:42 2008 -0500
37823
37824 FSL DDR: Convert MPC8555ADS to new DDR code.
37825
37826 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37827 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37828
37829 commit 8b625114e8bc5a6b436181167a6e7fcd3303dd2c
37830 Author: Jon Loeliger <jdl@freescale.com>
37831 Date: Tue Mar 18 11:12:44 2008 -0500
37832
37833 FSL DDR: Convert MPC8560ADS to new DDR code.
37834
37835 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37836 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37837
37838 commit 9617c8d49a21703eaf13a4033ab1a56eecc033cc
37839 Author: Kumar Gala <galak@kernel.crashing.org>
37840 Date: Fri Jun 6 13:12:18 2008 -0500
37841
37842 FSL DDR: Convert MPC8540ADS to new DDR code.
37843
37844 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37845
37846 commit 2a6c2d7ab2a66660f40a6cd3de2eb29ee29d9693
37847 Author: Kumar Gala <galak@kernel.crashing.org>
37848 Date: Tue Aug 26 21:34:55 2008 -0500
37849
37850 FSL DDR: Add 85xx specific register setting
37851
37852 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37853
37854 commit 6fb1b7346849ccd0c20306143e334f5b76143070
37855 Author: Kumar Gala <galak@kernel.crashing.org>
37856 Date: Mon Jun 9 11:07:46 2008 -0500
37857
37858 FSL DDR: Add e500 TLB helper for DDR code
37859
37860 Provide a helper function that board code can call to map TLBs when
37861 setting up DDR.
37862
37863 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37864
37865 commit d26b739afe5a6760bd345743188759cd9d0f3b47
37866 Author: Andrew Dyer <adyer@righthandtech.com>
37867 Date: Tue Aug 26 17:03:38 2008 -0500
37868
37869 dm9000 remove dead external phy support, gpio fix
37870
37871 dm9000 has code to detect and initialize external phy parts, but later
37872 on in the code the part is forced to use the internal phy
37873 unconditionally. Remove the unused/untested code.
37874
37875 change the GPIO initialization so that only the GPIO used as an
37876 internal phy reset (hardwired in the chip) is set as an output. The
37877 remaining GPIO need to be handled by board specific code to prevent
37878 possible drive conflicts. Set as inputs for safety.
37879
37880 replace a few magic numbers with defines
37881
37882 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
37883 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37884
37885 commit a1573db0c07c8ba99e9c373bb07ecd6f59da672c
37886 Author: Peter Tyser <ptyser@xes-inc.com>
37887 Date: Tue Aug 26 11:17:48 2008 -0500
37888
37889 Standardize bootp, tftpboot, rarpboot, dhcp, and nfs command descriptions
37890
37891 cmd_net.c command descriptions were updated to describe the optional
37892 hostIPaddr argument. The dhcp command help message was also updated
37893 to more closely reflect the other commands in cmd_net.c
37894
37895 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
37896 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37897
37898 commit 51dfe1382ebaf691485badfa0ea5e75b0710531b
37899 Author: Remy Bohmer <linux@bohmer.net>
37900 Date: Wed Aug 20 11:30:28 2008 +0200
37901
37902 Fix bogus error message in the DHCP handler
37903
37904 The DHCP handler has 1 state that is not listed in this case, causing a
37905 failure message when there is actually no failure.
37906
37907 Signed-off-by: Remy Bohmer <linux@bohmer.net>
37908 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37909
37910 commit 61365501a0e2cae9c1df2818b7b5b3f52c450d18
37911 Author: Remy Bohmer <linux@bohmer.net>
37912 Date: Wed Aug 20 11:30:27 2008 +0200
37913
37914 Fix compile error when CONFIG_BOOTP_RANDOM_DELAY is set.
37915
37916 The option CONFIG_BOOTP_RANDOM_DELAY does not compile, because of a
37917 missing extern inside the net/bootp.h header
37918
37919 Signed-off-by: Remy Bohmer <linux@bohmer.net>
37920 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37921
37922 commit 1803f7f91ff35ca402259065df7557107dcf28a2
37923 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37924 Date: Tue Aug 19 21:26:32 2008 +0000
37925
37926 ColdFire: Add FEC Buffer descriptors in SRAM
37927
37928 Add FEC Buffer descriptors and data buffer in SRAM for
37929 faster execution and access.
37930
37931 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37932 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37933
37934 commit 429be27ce195210d4b9decf9e867b9ca6155a87d
37935 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37936 Date: Thu Aug 21 23:55:11 2008 +0000
37937
37938 Fix ColdFire FEC warning messages
37939
37940 Types mismatch and implicit declaration of icache_invalid()
37941 warning messages
37942
37943 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37944 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37945
37946 commit 6a002171098e968bd5b362347d2831224fab6048
37947 Author: Ben Warren <biggerbadderben@gmail.com>
37948 Date: Sat Jul 12 00:17:50 2008 -0700
37949
37950 Moved initialization of SKGE Ethernet driver to board code.
37951
37952 The only board using this driver is the SL8245 board.
37953 Removed initialization for the driver from net/eth.c
37954
37955 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37956
37957 commit 8379f42bc745eb9e4ca551a30fd2d0a63f740d75
37958 Author: Ben Warren <biggerbadderben@gmail.com>
37959 Date: Sat Jul 12 00:08:45 2008 -0700
37960
37961 Moved conditional compilation to Makefile for SK98 Ethernet driver
37962
37963 Brute-force removal of #ifdefs. Didn't touch the code.
37964 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37965
37966 commit 65d3d99c28dc363d15eaee78225ff643df499b97
37967 Author: Ben Warren <biggerbadderben@gmail.com>
37968 Date: Fri Jul 11 23:42:19 2008 -0700
37969
37970 Moved initialization of ULI526X Ethernet driver to board code.
37971
37972 The only board using this driver is the Freescale MPC8610HPCD board.
37973 Removed initialization for the driver from net/eth.c
37974
37975 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37976
37977 commit 914947313a710f5dcf06beaf7f2aa24f1ebcce4f
37978 Author: Ben Warren <biggerbadderben@gmail.com>
37979 Date: Fri Jul 11 23:15:28 2008 -0700
37980
37981 Moved initialization of Blackfin EMAC Ethernet controller to board_eth_init()
37982
37983 Added board_eth_init() function to bf537-stamp board.
37984 Removed initialization for the Blackin EMAC driver from net/eth.c
37985
37986 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37987
37988 commit fc363ce35408f348cacced68505f3747a53e3d7c
37989 Author: Ben Warren <biggerbadderben@gmail.com>
37990 Date: Wed Jul 9 01:04:19 2008 -0700
37991
37992 Moved initialization of GRETH Ethernet driver to CPU directory
37993
37994 Added a cpu_eth_init() function to leon2/leon3 CPU directories and
37995 removed code from net/eth.c
37996
37997 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37998
37999 commit 86882b80771309bceb11c6accfd7f6f90ade8bfc
38000 Author: Ben Warren <biggerbadderben@gmail.com>
38001 Date: Tue Aug 26 22:16:25 2008 -0700
38002
38003 Moved initialization of MCFFEC Ethernet driver to CPU directory
38004
38005 Added a cpu_eth_init() function to coldfire CPU directories and
38006 removed code from net/eth.c
38007
38008 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38009
38010 commit b31da88b9c160d80d42a59cbbb31e24f27184d5c
38011 Author: Ben Warren <biggerbadderben@gmail.com>
38012 Date: Tue Aug 26 22:12:36 2008 -0700
38013
38014 Moved initialization of FSL_MCDMAFEC Ethernet driver to CPU directory
38015
38016 Added a cpu_eth_init() function to cpu/mcf547x_8x directory and
38017 removed code from net/eth.c
38018
38019 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38020
38021 commit b5710d9974f6f0f3ddb4e67d6cccc262ab37049e
38022 Author: Kumar Gala <galak@kernel.crashing.org>
38023 Date: Tue Aug 26 15:01:38 2008 -0500
38024
38025 FSL DDR: Remove old SPD support from cpu/mpc86xx
38026
38027 All 86xx boards have been converted to the new code so we can
38028 remove the old SPD DDR setup code.
38029
38030 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38031
38032 commit 9bd4e5911b750837515466bc7449087698b88e0e
38033 Author: Kumar Gala <galak@kernel.crashing.org>
38034 Date: Tue Aug 26 15:01:37 2008 -0500
38035
38036 FSL DDR: Convert SBC8641D to new DDR code.
38037
38038 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38039
38040 commit 39aa1a73483e1ac2bd56d5523abfc3970ee82c77
38041 Author: Jon Loeliger <jdl@freescale.com>
38042 Date: Tue Aug 26 15:01:36 2008 -0500
38043
38044 FSL DDR: Convert MPC8610HPCD to new DDR code.
38045
38046 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38047 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38048
38049 commit 6a8e5692933e8e6d6e5ba7e594f49dd6d4c3a263
38050 Author: Kumar Gala <galak@kernel.crashing.org>
38051 Date: Tue Aug 26 15:01:35 2008 -0500
38052
38053 FSL DDR: Convert MPC8641HPCN to new DDR code.
38054
38055 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38056 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38057
38058 commit 46ff4f1100ea64a01d21cc008ce85ac15eb1821f
38059 Author: Kumar Gala <galak@kernel.crashing.org>
38060 Date: Tue Aug 26 15:01:34 2008 -0500
38061
38062 FSL DDR: Add 86xx specific register setting
38063
38064 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38065
38066 commit 233fdd502a6c227f476212b3097653ad48d7e254
38067 Author: Kumar Gala <galak@kernel.crashing.org>
38068 Date: Tue Aug 26 15:01:32 2008 -0500
38069
38070 FSL DDR: Add DDR2 DIMM paramter support
38071
38072 Compute DIMM parameters based upon the SPD information.
38073
38074 Signed-off-by: James Yang <James.Yang@freescale.com>
38075 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38076 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38077
38078 commit 05c05a2363a6ac11e0e405926034546ffad71fad
38079 Author: Kumar Gala <galak@kernel.crashing.org>
38080 Date: Tue Aug 26 15:01:30 2008 -0500
38081
38082 FSL DDR: Add DDR1 DIMM paramter support
38083
38084 Compute DIMM parameters based upon the SPD information in spd.
38085
38086 Signed-off-by: James Yang <James.Yang@freescale.com>
38087 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38088 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38089
38090 commit 58e5e9aff147e8c7e2bc1406bf9384f65f020ffa
38091 Author: Kumar Gala <galak@kernel.crashing.org>
38092 Date: Tue Aug 26 15:01:29 2008 -0500
38093
38094 FSL DDR: Rewrite the FSL mpc8xxx DDR controller setup code.
38095
38096 The main purpose of this rewrite it to be able to share the same
38097 initialization code on all FSL PowerPC products that have DDR
38098 controllers. (83xx, 85xx, 86xx).
38099
38100 The code is broken up into the following steps:
38101 GET_SPD
38102 COMPUTE_DIMM_PARMS
38103 COMPUTE_COMMON_PARMS
38104 GATHER_OPTS
38105 ASSIGN_ADDRESSES
38106 COMPUTE_REGS
38107 PROGRAM_REGS
38108
38109 This allows us to share more code an easily allow for board specific code
38110 overrides.
38111
38112 Additionally this code base adds support for >4G of DDR and provides a
38113 foundation for supporting interleaving on processors with more than one
38114 controller.
38115
38116 Signed-off-by: James Yang <James.Yang@freescale.com>
38117 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38118 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
38119 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38120 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38121
38122 commit f784e32b4bce0013983506b11af4b85b8ca3d36e
38123 Author: Kumar Gala <galak@kernel.crashing.org>
38124 Date: Tue Aug 26 15:01:28 2008 -0500
38125
38126 FSL DDR: Provide a generic set_ddr_laws()
38127
38128 Provide a helper function that will setup the last available
38129 LAWs (upto 2) for DDR. Useful for SPD/dyanmic DDR setting code.
38130
38131 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38132
38133 commit 0f2cbe3f5eddbdf3848265f35e4f714434929cff
38134 Author: James Yang <James.Yang@freescale.com>
38135 Date: Tue Aug 26 15:01:27 2008 -0500
38136
38137 Add proper SPD definitions for DDR1/2/3
38138
38139 Also adds helper functions for DDR1/2 to verify the checksum.
38140
38141 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38142
38143 commit 285db74716c724ae8a0ff177878fd09a74428c7b
38144 Author: Wolfgang Denk <wd@denx.de>
38145 Date: Wed Aug 27 01:02:48 2008 +0200
38146
38147 Update CHANGELOG
38148
38149 Signed-off-by: Wolfgang Denk <wd@denx.de>
38150
38151 commit adf22b66d8bf05bd46e098cf71e6dca29b30aa7b
38152 Author: Heiko Schocher <hs@denx.de>
38153 Date: Tue Aug 19 10:08:49 2008 +0200
38154
38155 Add support for muas3001 board (MPC8270)
38156
38157 Signed-off-by: Heiko Schocher <hs@denx.de>
38158
38159 commit 322098bff32410d2a00031649b47c4ec90a66d9a
38160 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
38161 Date: Tue Aug 19 08:31:18 2008 +0530
38162
38163 common/cmd_load.c cleanup - remove unused variables
38164
38165 - Remove unused global variable os_data_count.
38166 - Remove unused variable z.
38167
38168 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
38169
38170 commit 306620b762a4f9fa6678568ad2e8772dec145208
38171 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
38172 Date: Mon Aug 18 13:35:27 2008 +0200
38173
38174 remove MVS1 board
38175
38176 MVS1 board has reached end-of-life and can be removed completely.
38177
38178 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
38179
38180 commit 40d7e99d374ba0a0a29cd1a8ba40d3b7c2c175c7
38181 Author: Kumar Gala <galak@kernel.crashing.org>
38182 Date: Fri Aug 15 08:24:45 2008 -0500
38183
38184 bootm: refactor do_reset and os boot function args
38185
38186 There is no need for each OS specific function to call do_reset() we
38187 can just do it once in bootm. This means its feasible on an error for
38188 the OS boot function to return.
38189
38190 Also, remove passing in cmd_tbl_t as its not needed by the OS boot
38191 functions. flag isn't currently used but might be in the future so
38192 we left it alone.
38193
38194 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38195
38196 commit 40afac22a9c602e55c501c800f1c064324711b56
38197 Author: Kumar Gala <galak@kernel.crashing.org>
38198 Date: Fri Aug 15 08:24:44 2008 -0500
38199
38200 fdt: Added resize command
38201
38202 Resize the fdt to size + padding to 4k boundary
38203
38204 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38205
38206 commit 2a1a2cb6e2b87ee550e6f27b647d23331dfd5e1b
38207 Author: Kumar Gala <galak@kernel.crashing.org>
38208 Date: Fri Aug 15 08:24:43 2008 -0500
38209
38210 fdt: refactor initrd related code
38211
38212 Created a new fdt_initrd() to deal with setting the initrd properties
38213 in the device tree and fixing up the mem reserve. We can use this
38214 both in the choosen node handling and lets us remove some duplicated
38215 code when we fixup the initrd info in bootm on PPC.
38216
38217 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38218
38219 commit 3082d2348c8e13342f5fdd10e9b3f7408062dbf9
38220 Author: Kumar Gala <galak@kernel.crashing.org>
38221 Date: Fri Aug 15 08:24:42 2008 -0500
38222
38223 fdt: refactor fdt resize code
38224
38225 Move the fdt resizing code out of ppc specific boot code and into
38226 common fdt support code.
38227
38228 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38229
38230 commit 396f635b8ff3ccbc38d75d5eda98444c6466810a
38231 Author: Kumar Gala <galak@kernel.crashing.org>
38232 Date: Fri Aug 15 08:24:41 2008 -0500
38233
38234 bootm: refactor image detection and os load steps
38235
38236 Created a bootm_start() that handles the parsing and detection of all
38237 the images that will be used by the bootm command (OS, ramdisk, fdt).
38238 As part of this we now tract all the relevant image offsets in the
38239 bootm_headers_t struct. This will allow us to have all the needed
38240 state for future sub-commands and lets us reduce a bit of arch
38241 specific code on SPARC.
38242
38243 Created a bootm_load_os() that deals with decompression and loading
38244 the OS image.
38245
38246 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38247
38248 commit e906cfae08e8cc2447f59b1bc4c22ab9c3c286d2
38249 Author: Kumar Gala <galak@kernel.crashing.org>
38250 Date: Fri Aug 15 08:24:40 2008 -0500
38251
38252 bootm: move lmb into the bootm_headers_t structure
38253
38254 To allow for persistent state between future bootm subcommands we
38255 need the lmb to exist in a global state.
38256 Moving it into the bootm_headers_t allows us to do that.
38257
38258 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38259
38260 commit 54f9c86691309b2f919f567f9255b8bcad2c7651
38261 Author: Kumar Gala <galak@kernel.crashing.org>
38262 Date: Fri Aug 15 08:24:39 2008 -0500
38263
38264 bootm: Set working fdt address as part of the bootm flow
38265
38266 Set the fdt working address so "fdt FOO" commands can be used as part
38267 of the bootm flow. Also set an the environment variable "fdtaddr"
38268 with the value.
38269
38270 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38271
38272 commit 06a09918f3903450313e2047a9cc258bf5872f46
38273 Author: Kumar Gala <galak@kernel.crashing.org>
38274 Date: Fri Aug 15 08:24:38 2008 -0500
38275
38276 bootm: refactor fdt locating and relocation code
38277
38278 Move the code that handles finding a device tree blob and relocating
38279 it (if needed) into common code so all arch's have access to it.
38280
38281 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38282
38283 commit c4f9419c6b54958e0eddbcbc9e5a4a7b7ec99865
38284 Author: Kumar Gala <galak@kernel.crashing.org>
38285 Date: Fri Aug 15 08:24:37 2008 -0500
38286
38287 bootm: refactor ramdisk locating code
38288
38289 Move determing if we have a ramdisk and where its located into the
38290 common code. Keep track of the ramdisk start and end in the
38291 bootm_headers_t image struct.
38292
38293 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38294
38295 commit c160a9544743e80e8889edb2275538e7764ce334
38296 Author: Kumar Gala <galak@kernel.crashing.org>
38297 Date: Fri Aug 15 08:24:36 2008 -0500
38298
38299 bootm: refactor entry point code
38300
38301 Move entry point code out of each arch and into common code.
38302 Keep the entry point in the bootm_headers_t images struct.
38303
38304 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38305
38306 commit 20220d22b9f41446288588cd2e457e0077a18bed
38307 Author: Randy Vinson <rvinson@mvista.com>
38308 Date: Wed Aug 13 11:44:57 2008 -0700
38309
38310 mpc7448hpc2: Fix PCI I/O space mapping.
38311
38312 PCI I/O space is currently mapped 1:1 at 0xFA000000. Linux requires
38313 PCI I/O space to start at 0 on the PCI bus. This patch maps PCI I/O
38314 space such that 0xFA000000 in the processor's address space maps to 0
38315 on the PCI I/O bus.
38316
38317 Signed-off-by Randy Vinson <rvinson@mvista.com>
38318 Acked-by: Roy Zang <tie-fei.zang@freescale.com>
38319
38320 commit b4e07520bbb5467ad72eb92a5c9177d2797b9e30
38321 Author: Guennadi Liakhovetski <lg@denx.de>
38322 Date: Wed Aug 13 18:10:26 2008 +0200
38323
38324 i.MX31: Specify maintainers for i.MX31-based boards
38325
38326 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
38327 Signed-off-by: Wolfgang Denk <wd@denx.de>
38328
38329 commit 51e46e28fda4bbdf5149ac7f67d62fcc8df4da63
38330 Author: Wolfgang Denk <wd@denx.de>
38331 Date: Tue Aug 26 15:01:28 2008 +0200
38332
38333 ADS5121: adjust image addresses in RAM and flash
38334
38335 Use the same mapping in flash as used by Linux
38336
38337 Signed-off-by: Wolfgang Denk <wd@denx.de>
38338
38339 commit 19f101412c16edee9fd55db4039e1d68a833b28b
38340 Author: Wolfgang Denk <wd@denx.de>
38341 Date: Tue Aug 26 13:14:34 2008 +0200
38342
38343 cmd_mem.c: Fix help message alignment
38344
38345 Bug was introced by "Big white-space cleanup" (53677ef1)
38346
38347 Signed-off-by: Wolfgang Denk <wd@denx.de>
38348
38349 commit 1a9eeb78b825bfade31d7606a2fe3b9eca9e35be
38350 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
38351 Date: Wed Aug 20 11:11:52 2008 +0200
38352
38353 change mvBL-M7 default env and move to vendor subdir
38354
38355 fix mvBL-M7 config and move to matrix_vision subdir
38356
38357 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
38358 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38359
38360 commit 002d27caf26e7eb913d474d3a91f67d56c8c31d5
38361 Author: Nick Spence <nick.spence@freescale.com>
38362 Date: Fri Aug 22 23:52:40 2008 -0700
38363
38364 MPC83XX: Add miscellaneous registers and #defines to support MPC83xx family devices
38365
38366 This patch adds elements to the 83xx sysconf structure and #define values that are used
38367 by mpc83xx family devices.
38368
38369 Signed-off-by: Nick Spence <nick.spence@freescale.com>
38370 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38371
38372 commit 447ad5768abda669ac0e7f46fcdb62fbe828d637
38373 Author: Ira W. Snyder <iws@ovro.caltech.edu>
38374 Date: Fri Aug 22 11:00:15 2008 -0700
38375
38376 MPC8349EMDS: Add PCI Agent (PCISLAVE) support
38377
38378 Add the ability for the MPC8349EMDS to run in PCI Agent mode, acting as a
38379 PCI card rather than a host computer.
38380
38381 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
38382 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38383
38384 commit 4ff9aea9d6b5602683a920951ef896996438af62
38385 Author: Ira W. Snyder <iws@ovro.caltech.edu>
38386 Date: Fri Aug 22 11:00:14 2008 -0700
38387
38388 mpc83xx: add PCISLAVE support to 83XX_GENERIC_PCI setup code
38389
38390 This adds a helper function to unlock the PCI configuration bit, so that
38391 any extra PCI setup (such as outbound windows, etc.) can be done after
38392 using the 83XX_GENERIC_PCI code to set up the PCI bus.
38393
38394 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
38395 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38396
38397 commit 162338e1fcde231ca4d562e5ebd7859456731691
38398 Author: Ira W. Snyder <iws@ovro.caltech.edu>
38399 Date: Fri Aug 22 11:00:13 2008 -0700
38400
38401 MPC8349EMDS: use 83XX_GENERIC_PCI setup code
38402
38403 Change the MPC8349EMDS board to use the generic PCI initialization code
38404 for the mpc83xx cpu.
38405
38406 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
38407 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38408
38409 commit f4e55a4941e8ba46bc06020b2747928adf8fdee7
38410 Author: Kim Phillips <kim.phillips@freescale.com>
38411 Date: Mon Aug 25 14:53:09 2008 -0500
38412
38413 fix out of tree building
38414
38415 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38416
38417 commit a49d10cf027d059ee15c262010a05cdaec0961e1
38418 Author: Wolfgang Denk <wd@denx.de>
38419 Date: Mon Aug 25 23:45:41 2008 +0200
38420
38421 Minor coding style cleanup, updte CHANGELOG
38422
38423 Signed-off-by: Wolfgang Denk <wd@denx.de>
38424
38425 commit 4d56e8dea670757c801a6a65531f02a8f981ce1f
38426 Author: Stefan Roese <sr@denx.de>
38427 Date: Wed Aug 20 20:29:38 2008 +0200
38428
38429 RTC: Fix Makefile problem with COBJS-$(CONFIG_RTC_DS1307 || CONFIG_RTC_DS1338)
38430
38431 This "||" doesn't seem to work. Now using the idea suggest by Scott Wood
38432 to combine both config options into one line. This even allows defining
38433 both options and not generating the target object twice.
38434
38435 Signed-off-by: Stefan Roese <sr@denx.de>
38436
38437 commit 079edb913dbae147b50a488cf02e03f473fc5f28
38438 Author: Jens Gehrlein <sew_s@tqs.de>
38439 Date: Fri Jul 4 16:50:05 2008 +0200
38440
38441 MX31: fix bit masks in function mx31_decode_pll()
38442
38443 Bits MPCTL[MFN] and MPCTL[MFD] were not fully covered.
38444
38445 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
38446
38447 commit e8f1207bbf2df6fb693ee1aa3329b2014c92e5e6
38448 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
38449 Date: Mon Aug 25 11:11:34 2008 +0200
38450
38451 Correct ARM Versatile Timer Initialization
38452
38453 - According to ARM Dual-Timer Module (SP804) TRM (ARM DDI0271),
38454 -- Timer Value Register @ TIMER Base + 4 is Read-only.
38455 -- Prescale Value (Bits 3-2 of TIMER Control register)
38456 can only be one of 00,01,10. 11 is undefined.
38457 -- CFG_HZ for Versatile board is set to
38458 #define CFG_HZ (1000000 / 256)
38459 So Prescale bits is set to indicate
38460 - 8 Stages of Prescale, Clock divided by 256
38461 - The Timer Control Register has one Undefined/Shouldn't Use Bit
38462 So we should do read/modify/write Operation
38463
38464 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
38465
38466 commit 535cfa4f3de86cf48d6c0af1daf33aebdca089f9
38467 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
38468 Date: Mon Aug 25 11:30:29 2008 +0200
38469
38470 Add ARM AMBA PL031 RTC Support
38471
38472 Signed-off-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
38473
38474 commit e39411674669cc880e1ec4a8ca4794fb15c33a45
38475 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
38476 Date: Tue Aug 19 16:21:03 2008 -0400
38477
38478 ARM DaVinci: Removed redundant NAND initialization code.
38479
38480 ARM DaVinci: Removed redundant NAND initialization code.
38481
38482 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
38483
38484 commit b3fb663b20d995ca41327db877ddb168279b3f62
38485 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
38486 Date: Tue Aug 19 16:21:00 2008 -0400
38487
38488 ARM DaVinci: Fix compilation error with new MTD code.
38489
38490 ARM DaVinci: Fix compilation error with new MTD code.
38491
38492 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
38493
38494 commit 109c30fb8edea1a15d37a6ce787cd5faf33d8e43
38495 Author: Gerald Van Baren <vanbaren@cideas.com>
38496 Date: Fri Aug 22 14:37:05 2008 -0400
38497
38498 Add note on dereferencing /aliases pointers
38499
38500 Replace the "must quote special characters" note with a hint on
38501 how to dereference /aliases pointers by omitting the leading "/".
38502 This feature was introduced by Kumar Gala as a libfdt enhancement
38503 in commit ed035708235332c3c117ee3bb1a426063f03cfcb.
38504
38505 Example:
38506
38507 => fdt print /aliases
38508 aliases {
38509 ethernet0 = "/qe@e0100000/ucc@2000";
38510 ethernet1 = "/qe@e0100000/ucc@3000";
38511 serial0 = "/soc8360@e0000000/serial@4500";
38512 serial1 = "/soc8360@e0000000/serial@4600";
38513 pci0 = "/pci@e0008500";
38514 };
38515 => fdt print ethernet0
38516 ucc@2000 {
38517 device_type = "network";
38518 compatible = "ucc_geth";
38519 cell-index = <0x1>;
38520 reg = <0x2000 0x200>;
38521 interrupts = <0x20>;
38522 interrupt-parent = <0x2>;
38523 local-mac-address = [00 00 00 00 00 00];
38524 rx-clock-name = "none";
38525 tx-clock-name = "clk9";
38526 phy-handle = <0x3>;
38527 phy-connection-type = "rgmii-id";
38528 pio-handle = <0x4>;
38529 };
38530
38531 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38532
38533 commit feeca3f578b7f53c032ba203698751c982f8bf5a
38534 Author: Kumar Gala <galak@kernel.crashing.org>
38535 Date: Thu Aug 14 08:28:19 2008 -0500
38536
38537 libfdt: Add support for using aliases in fdt_path_offset()
38538
38539 If the path doesn't start with '/' check to see if it matches some alias
38540 under "/aliases" and substitute the matching alias value in the path
38541 and retry the lookup.
38542
38543 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38544 Acked-by: David Gibson <david@gibson.dropbear.id.au>
38545 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
38546
38547 commit 0219399a4e3a8edb428e1924e1a03d58cccf8d8e
38548 Author: David Gibson <david@gibson.dropbear.id.au>
38549 Date: Wed Aug 6 14:50:49 2008 +1000
38550
38551 libfdt: Implement fdt_get_property_namelen() and fdt_getprop_namelen()
38552
38553 As well as fdt_subnode_offset(), libfdt includes an
38554 fdt_subnode_offset_namelen() function that takes the subnode name to
38555 look up not as a NUL-terminated string, but as a string with an
38556 explicit length. This can be useful when the caller has the name as
38557 part of a longer string, such as a full path.
38558
38559 However, we don't have corresponding 'namelen' versions for
38560 fdt_get_property() and fdt_getprop(). There are less obvious use
38561 cases for these variants on property names, but there are
38562 circumstances where they can be useful e.g. looking up property names
38563 which need to be parsed from a longer string buffer such as user input
38564 or a configuration file, or looking up an alias in a path with
38565 IEEE1275 style aliases.
38566
38567 So, since it's very easy to implement such variants, this patch does
38568 so. The original NUL-terminated variants are, of course, implemented
38569 in terms of the namelen versions.
38570
38571 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
38572
38573 commit f171746f701ea58bf6a53e835b53d2aaebee0d81
38574 Author: David Gibson <david@gibson.dropbear.id.au>
38575 Date: Tue Jul 29 14:51:22 2008 +1000
38576
38577 libfdt: Forgot one function when cleaning the namespace
38578
38579 In commit b6d80a20fc293f3b995c3ce1a6744a5574192125, we renamed all
38580 libfdt functions to be prefixed with fdt_ or _fdt_ to minimise the
38581 chance of collisions with things from whatever package libfdt is
38582 embedded in, pulled into the libfdt build via that environment's
38583 libfdt_env.h.
38584
38585 Except... I missed one. This patch applies the same treatment to
38586 _stringlist_contains(). While we're at it, also make it static since
38587 it's only used in the same file.
38588
38589 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
38590
38591 commit 46390da15411351fc3b498bd8c1615f78fe80df0
38592 Author: Wolfram Sang <w.sang@pengutronix.de>
38593 Date: Wed Jul 9 11:22:44 2008 +0200
38594
38595 libfdt: Improve documentation in libfdt.h
38596
38597 Fix a few typos and mistakes.
38598
38599 Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
38600 Acked-by: David Gibson <david@gibson.dropbear.id.au>
38601
38602 commit fc7758ee4f5782878f2e96876b7bc56cfee0ac66
38603 Author: David Gibson <david@gibson.dropbear.id.au>
38604 Date: Wed Jul 9 14:10:24 2008 +1000
38605
38606 libfdt: Increase namespace-pollution paranoia
38607
38608 libfdt is supposed to easy to embed in projects all and sundry.
38609 Often, it won't be practical to separate the embedded libfdt's
38610 namespace from that of the surrounding project. Which means there can
38611 be namespace conflicts between even libfdt's internal/static functions
38612 and functions or macros coming from the surrounding project's headers
38613 via libfdt_env.h.
38614
38615 This patch, therefore, renames a bunch of libfdt internal functions
38616 and macros and makes a few other chances to reduce the chances of
38617 namespace collisions with embedding projects. Specifically:
38618 - Internal functions (even static ones) are now named _fdt_*()
38619
38620 - The type and (static) global for the error table in
38621 fdt_strerror() gain an fdt_ prefix
38622
38623 - The unused macro PALIGN is removed
38624
38625 - The memeq and streq macros are removed and open-coded in the
38626 users (they were only used once each)
38627
38628 - Other macros gain an FDT_ prefix
38629
38630 - To save some of the bulk from the previous change, an
38631 FDT_TAGALIGN() macro is introduced, where FDT_TAGALIGN(x) ==
38632 FDT_ALIGN(x, FDT_TAGSIZE)
38633
38634 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
38635
38636 commit c66830263af19831f2b7db307f79d1943febf7f9
38637 Author: David Gibson <david@gibson.dropbear.id.au>
38638 Date: Mon Jul 7 10:14:15 2008 +1000
38639
38640 dtc: Enable and fix -Wcast-qual warnings
38641
38642 Enabling -Wcast-qual warnings in dtc shows up a number of places where
38643 we are incorrectly discarding a const qualification. There are also
38644 some places where we are intentionally discarding the 'const', and we
38645 need an ugly cast through uintptr_t to suppress the warning. However,
38646 most of these are pretty well isolated with the *_w() functions. So
38647 in the interests of maximum safety with const qualifications, this
38648 patch enables the warnings and fixes the existing complaints.
38649
38650 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
38651 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
38652
38653 commit ef4e8ce1beb5b93aedda5a4c1b90bfd989c6791e
38654 Author: David Gibson <david@gibson.dropbear.id.au>
38655 Date: Mon Jul 7 10:10:48 2008 +1000
38656
38657 dtc: Enable and fix -Wpointer-arith warnings
38658
38659 This patch turns on the -Wpointer-arith option in the dtc Makefile,
38660 and fixes the resulting warnings due to using (void *) in pointer
38661 arithmetic. While convenient, pointer arithmetic on void * is not
38662 portable, so it's better that we avoid it, particularly in libfdt.
38663
38664 Also add necessary definition of uintptr_t needed by David Gibson's
38665 changeset "dtc: Enable and fix -Wpointer-arith warnings" (the definition
38666 comes from stdint.h, which u-boot doesn't have). -- gvb
38667
38668 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
38669 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38670
38671 commit 5d4b3d2b31e58fcb2d4bd10af762f5ff41b229fd
38672 Author: Tirumala R Marri <tmarri@amcc.com>
38673 Date: Thu Aug 21 21:54:53 2008 -0700
38674
38675 ppc4xx: AMCC PPC460GT/EX PCI-E de-emphasis adjustment fix
38676
38677 During recent PCI-E tests it has been found that current
38678 driverl level and de-emphasis values are not set correctly.
38679 After sweeping throgh all de-ephasis values, it was found that
38680 0x130 is a right value. Where 0x13 is driver level and 0 is
38681 de-emphasis.
38682
38683 Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
38684 Signed-off-by: Stefan Roese <sr@denx.de>
38685
38686 commit 0bb86d823b6c150c7ee17de0cfca9ffccc16463b
38687 Author: Remy Bohmer <linux@bohmer.net>
38688 Date: Wed Aug 20 20:46:56 2008 +0200
38689
38690 Make the YAFFS filesystem work
38691
38692 Recently the YAFFS filesystem support has been added to U-boot.
38693 However, just enabling CONFIG_YAFFS2 is not enough to get it working.
38694
38695 ymount will generate an exception (when dereferencing mtd->readoob()), because
38696 the genericDevice is a null pointer. Further, a lot of logging is produced
38697 while using YAFFS fs, so logging should also be disabled.
38698 Both issues are solved by this patch.
38699
38700 With this patch and CONFIG_YAFFS2 enabled, I get a readable filesystem
38701 in U-boot, as well as in Linux.
38702
38703 Tested on a Atmel AT91SAM9261EK board.
38704
38705 Signed-off-by: Remy Bohmer <linux@bohmer.net>
38706 Acked-by: William Juul <william.juul@tandberg.com>
38707 Signed-off-by: Scott Wood <scottwood@freescale.com>
38708
38709 commit bfd7f38614e21f745b6d6845fcc616ebc5e4d36f
38710 Author: Kyungmin Park <kmpark@infradead.org>
38711 Date: Tue Aug 19 08:42:53 2008 +0900
38712
38713 Fix OneNAND read_oob/write_oob functions compatability
38714
38715 Also sync with kernel OneNAND codes
38716
38717 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
38718 Signed-off-by: Scott Wood <scottwood@freescale.com>
38719
38720 commit 8d765456c1d33f2010d2717ee58de7647fdc6346
38721 Author: Scott Wood <scottwood@freescale.com>
38722 Date: Mon Aug 18 17:11:20 2008 -0500
38723
38724 NAND: Remove delay from nand_boot_fsl_elbc.c.
38725
38726 It was for debugging purposes, and shouldn't have been left in.
38727
38728 Signed-off-by: Scott Wood <scottwood@freescale.com>
38729
38730 commit f556483734126793522fb7a8cf36af90da78f084
38731 Author: Stefan Roese <sr@denx.de>
38732 Date: Thu Aug 21 11:05:03 2008 +0200
38733
38734 ppc4xx: Cleanup of "ppc4xx: Optimize PLB4 Arbiter..." patch
38735
38736 This patch fixes some minor issues introduced with the patch:
38737 ppc4xx: Optimize PLB4 Arbiter... from Prodyut Hazarika:
38738
38739 - Rework memory-queue and PLB arbiter optimization code, that the
38740 local variable is not needed anymore. This removes one #ifdef.
38741 - Use consistant spacing in ppc4xx.h header (XXX + 0x01 instead
38742 of XXX+ 0x01). This was not introduced by Prodyut, just a
38743 copy-paste problem.
38744
38745 Signed-off-by: Stefan Roese <sr@denx.de>
38746
38747 commit 079589bcfb24ba11068460276a3cc9549ab5346f
38748 Author: Prodyut Hazarika <phazarika@amcc.com>
38749 Date: Wed Aug 20 09:38:51 2008 -0700
38750
38751 ppc4xx: Optimize PLB4 Arbiter and Memory Queue settings for PPC440SP/SPe,
38752 PPC405EX and PPC460EX/GT/SX
38753
38754 - Read pipeline depth set to 4 for PPC440SP/SPE, PPC405EX, PPC460EX/GT/SX
38755 processors
38756 - Moved PLB4 Arbiter register definitions to ppc4xx.h since it is shared
38757 across processors (405 and 440/460)
38758 - Optimize Memory Queue settings for PPC440SP/SPE and PPC460EX/GT/SX
38759 processors
38760 - Add register bit definitions for Memory Queue Configuration registers
38761
38762 Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
38763 Signed-off-by: Stefan Roese <sr@denx.de>
38764
38765 commit ba37aa03287c5483c61c0a3e320c8888bee0143a
38766 Author: Kumar Gala <galak@kernel.crashing.org>
38767 Date: Tue Aug 19 15:41:18 2008 -0500
38768
38769 fdt: rework fdt_fixup_ethernet() to use env instead of bd_t
38770
38771 Move to using the environment variables 'ethaddr', 'eth1addr', etc..
38772 instead of bd->bi_enetaddr, bi_enet1addr, etc.
38773
38774 This makes the code a bit more flexible to the number of ethernet
38775 interfaces.
38776
38777 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38778
38779 commit 4cacf7c64609839f809e2f9c45873f1d65861703
38780 Author: Stefan Roese <sr@denx.de>
38781 Date: Tue Aug 19 14:57:55 2008 +0200
38782
38783 hush: Fix printf debug macro in hush.c so that it usable in U-Boot
38784
38785 This patch changes the debug_printf() marco for U-Boot in hush.c and
38786 moves the definition of DEBUG_SHELL to a place that is actually compiled
38787 under U-Boot.
38788
38789 Signed-off-by: Stefan Roese <sr@denx.de>
38790
38791 commit 8f2b457ef26a44d9e5fd7d6b16c394e5c3a71ca2
38792 Author: Heiko Schocher <hs@denx.de>
38793 Date: Tue Aug 19 09:57:41 2008 +0200
38794
38795 cfi: rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
38796
38797 Commit 00b1883a4cac59d97cd297b1a3a398db85982865
38798 missed a few boards:
38799 include/configs/M5253DEMO.h
38800 include/configs/ml507.h
38801 include/configs/redwood.h
38802
38803 This patch fixes this.
38804
38805 Signed-off-by: Heiko Schocher <hs@denx.de>
38806
38807 commit 0768b7a872964085eece8d5e9fec9175e9deb161
38808 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38809 Date: Mon Aug 18 13:41:27 2008 +0200
38810
38811 Consolidate strmhz() implementation
38812
38813 ARM, i386, m68k and ppc all have identical implementations of strmhz().
38814 Other architectures don't provide this function at all.
38815
38816 This patch moves strmhz() into lib_generic, reducing code duplication
38817 and providing a more unified API across architectures.
38818
38819 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38820
38821 commit a928d0df211f1d829308d335d19be3ca42558dfc
38822 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
38823 Date: Mon Aug 18 12:02:51 2008 +0200
38824
38825 fix mvbc_p board build warnings
38826
38827 fix build warnings @ mvBC-P board by using correct types, i.e. change
38828 out_be32 to out_be16 and out_8 accordingly.
38829
38830 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
38831
38832 commit a958b663d27f616bd1dfb720d1b476d1ecaaa569
38833 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38834 Date: Sat Aug 16 18:54:27 2008 +0200
38835
38836 Makefile: fix posix support on find
38837
38838 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38839
38840 commit bef92e215d945cc574399c1a1b00a3a76d35aa03
38841 Author: Axel Beierlein <belatronix@web.de>
38842 Date: Sat Aug 16 00:30:48 2008 +0200
38843
38844 Adding bootlimit/bootcount feature for MPC5XXX on TQM5200 Boards
38845
38846 Tested with TQM5200S on STK52XX.200 Board
38847
38848 Signed-off-by: Axel Beierlein <belatronix@web.de>
38849
38850 commit 0800707b6d5041a840a65d556032c15c584b55f8
38851 Author: Peter Tyser <ptyser@xes-inc.com>
38852 Date: Fri Aug 15 14:36:32 2008 -0500
38853
38854 mod_i2c_mem() bugfix
38855
38856 The last used chip, address, and address length were not being
38857 stored for the imm and imn commands.
38858
38859 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
38860
38861 commit 4afbef967275b2f636abae86f91b81becee7ad03
38862 Author: Steven A. Falco <sfalco@harris.com>
38863 Date: Fri Aug 15 15:37:31 2008 -0400
38864
38865 Fix typo in spelling of ATAPI.
38866
38867 Correct a small spelling mistake.
38868
38869 Signed-off-by: Steven A. Falco <sfalco@harris.com>
38870
38871 commit 36c2d3062ecc6ab85f8e237180eb134464c48418
38872 Author: Steven A. Falco <sfalco@harris.com>
38873 Date: Fri Aug 15 15:34:10 2008 -0400
38874
38875 Add a hook to allow board-specific PIO mode setting.
38876
38877 This patch adds a hook whereby a board-specific routine can be called to
38878 configure hardware for a PIO mode. The prototype for the board-specific
38879 routine is:
38880
38881 int inline ide_set_piomode(int pio_mode)
38882
38883 ide_set_piomode should be prepared to configure hardware for a pio_mode
38884 between 0 and 6, inclusive. It should return 0 on success or 1 on failure.
38885
38886 Signed-off-by: Steven A. Falco <sfalco@harris.com>
38887
38888 commit 9571b84cb1423876f1153081b9e6a51d90fbcdc4
38889 Author: Steven A. Falco <sfalco@harris.com>
38890 Date: Fri Aug 15 15:29:12 2008 -0400
38891
38892 Replace enums in ata.h with an include of libata.h
38893
38894 This patch removes some enums from ata.h and replaces them with an
38895 include of libata.h. This way, we eliminate duplicated code, and
38896 prevent errors whereby the different versions could be out of sync.
38897
38898 Signed-off-by: Steven A. Falco <sfalco@harris.com>
38899
38900 commit 0de0afbca865ecf482b4d2b635236746def8518f
38901 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38902 Date: Fri Aug 15 18:32:41 2008 +0200
38903
38904 coldfire: fix CFI drivers activation with new macro
38905
38906 rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
38907
38908 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38909
38910 commit 7dbc38ad915f4ae67f4cd1818b7ac8fed368aaa9
38911 Author: Kumar Gala <galak@kernel.crashing.org>
38912 Date: Fri Aug 15 08:24:35 2008 -0500
38913
38914 fdt: fdt addr w/o any args reports back the current working address
38915
38916 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38917
38918 commit f953d99fd528a496b400a706b511eaf8e3ea66af
38919 Author: Kumar Gala <galak@kernel.crashing.org>
38920 Date: Fri Aug 15 08:24:34 2008 -0500
38921
38922 fdt: added the ability to set initrd start/end via chosen command
38923
38924 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38925
38926 commit ffa4bafacaef67058463b3d7d0099ced57569dd2
38927 Author: Kumar Gala <galak@kernel.crashing.org>
38928 Date: Fri Aug 15 08:24:33 2008 -0500
38929
38930 Add command to enable/disable interrupts
38931
38932 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38933
38934 commit 9e8e63cce69556aef10b58bcbc56d324f570ec3a
38935 Author: Nick Spence <nick.spence@freescale.com>
38936 Date: Tue Aug 19 22:21:16 2008 -0700
38937
38938 CFI: Add CFI_CMDSET_INTEL_EXTENDED to fix flash_real_protect()
38939
38940 This patch fixes a missing vendor code in the flash_real_protect() function.
38941
38942 Signed-off-by: Nick Spence <nick.spence@freescale.com>
38943 Signed-off-by: Stefan Roese <sr@denx.de>
38944
38945 commit 4e00acded2e6a8d663e12690a0f0f08f5bec5a58
38946 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
38947 Date: Tue Aug 19 16:53:39 2008 +0000
38948
38949 CFI: Fix AMD Legacy sector protect
38950
38951 New implement sector lock and unlock or softlock commands
38952 do not exist in AMD legacy flash. Thus, causing issue
38953 when erasing AMD legacy flash (such as lv040)
38954
38955 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
38956 Signed-off-by: Stefan Roese <sr@denx.de>
38957
38958 commit 492671404140f09d5b21b3d2ce4e362c0692c069
38959 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38960 Date: Wed Aug 20 09:40:16 2008 +0200
38961
38962 hammerhead/mimc200: Use CONFIG_FLASH_CFI_DRIVER
38963
38964 CFG_FLASH_CFI_DRIVER was recently renamed CONFIG_FLASH_CFI_DRIVER.
38965
38966 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38967
38968 commit 33eac2b3d946fc998a09245dfe54d017079b9056
38969 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38970 Date: Wed Aug 20 09:28:36 2008 +0200
38971
38972 hammerhead: Add missing printf parameter to CONFIG_AUTOBOOT_PROMPT
38973
38974 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38975
38976 commit 25da0b84195fdda89a943b2d25757db5afeef5b8
38977 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38978 Date: Wed Aug 20 09:27:37 2008 +0200
38979
38980 favr-32-ezkit: Fix printf format warnings
38981
38982 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38983
38984 commit 462da25e89b0b58bf4c66346c1fcb3087c61b4b8
38985 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38986 Date: Fri Aug 15 12:04:25 2008 +0200
38987
38988 MAINTAINERS: Sort avr32 section alphabetically
38989
38990 The rest of the MAINTAINERS file appears to be sorted
38991 almost-alphabetically, but entries for the newly added AVR32 boards were
38992 added somewhat randomly. This patch sorts the list alphabetically again.
38993
38994 Also update my e-mail address. The old one still works, but it may not
38995 work forever.
38996
38997 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38998
38999 commit 13b50fe3bc065c48911fa373231421280855a9d6
39000 Author: Mark Jackson <mpfj@mimc.co.uk>
39001 Date: Wed Jul 30 13:07:27 2008 +0100
39002
39003 avr32: Add MIMC200 board
39004
39005 The MIMC200 board is based on Atmel's NGW100 dev kit, but with an extra
39006 8MByte FLASH and 128KByte FRAM.
39007
39008 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
39009 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
39010
39011 commit db70b84329315c52f6ec77f5ae5ca1afe970a9bb
39012 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
39013 Date: Wed Jul 9 21:07:34 2008 +0900
39014
39015 rtl8169: add support for RTL8110SCL
39016
39017 This patch fixes a problem that RTL8110SCL started transfer
39018 with an incorrect memory address.
39019
39020 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
39021 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39022
39023 commit 943b825bf15e6a28ac8328e0f6489478bceef1ea
39024 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39025 Date: Wed Jun 25 15:48:52 2008 -0500
39026
39027 Fix dm9000 receive status and len little endian issue
39028
39029 The received status and len was in little endian
39030 format and caused the ethernet unable to proceed
39031 further. Add __le16_to_cpu() in dm9000_rx_status_8/16/32bit().
39032
39033 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39034 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39035
39036 commit fcd69a1a57fb2af4d26201422095a4be9f36963e
39037 Author: Kumar Gala <galak@kernel.crashing.org>
39038 Date: Fri Aug 15 08:24:32 2008 -0500
39039
39040 Clean up usage of icache_disable/dcache_disable
39041
39042 There is no point in disabling the icache on 7xx/74xx/86xx parts and not
39043 also flushing the icache. All callers of invalidate_l1_instruction_cache()
39044 call icache_disable() right after. Make it so icache_disable() calls
39045 invalidate_l1_instruction_cache() for us.
39046
39047 Also, dcache_disable() already calls dcache_flush() so there is no point
39048 in the explicit calls of dcache_flush().
39049
39050 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39051
39052 commit a15b07104ca7bbb7093c9009c9ae1b58b4202d13
39053 Author: Kumar Gala <galak@kernel.crashing.org>
39054 Date: Fri Aug 15 08:24:31 2008 -0500
39055
39056 Update linux bootm to support ePAPR client interface
39057
39058 The ePAPR spec has some subtle differences from the current device
39059 tree based boot interface to the powerpc linux kernel. The powerpc
39060 linux kernel currently ignores the differences that ePAPR specifies.
39061
39062 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39063
39064 commit b734e5556a239b3be5f9693b2f4b4b739683ec16
39065 Author: Wolfgang Denk <wd@denx.de>
39066 Date: Mon Aug 18 23:50:20 2008 +0200
39067
39068 Minor code cleanup: keep lists sorted.
39069
39070 Signed-off-by: Wolfgang Denk <wd@denx.de>
39071
39072 commit d0039d4ed275e6ca09fb417895024ad02be118c4
39073 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
39074 Date: Wed Jul 23 19:10:14 2008 +0200
39075
39076 Add support for ADT7460 I2C monitor chip
39077
39078 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
39079
39080 commit eb59ea45ab77c14b090ea857d9ea9f902f40db0b
39081 Author: Michal Simek <monstr@monstr.eu>
39082 Date: Mon Jul 14 19:45:45 2008 +0200
39083
39084 video: Clean drivers/video/Makefile
39085
39086 Signed-off-by: Michal Simek <monstr@monstr.eu>
39087
39088 commit 871c18dd301752270e1f74328c846c3104be1e2e
39089 Author: Michal Simek <monstr@monstr.eu>
39090 Date: Mon Jul 14 19:45:37 2008 +0200
39091
39092 rtc: Clean drivers/rtc/Makefile
39093
39094 Signed-off-by: Michal Simek <monstr@monstr.eu>
39095
39096 commit a4a549b4b53adf40a0d3882cc30ac812a8f847c5
39097 Author: Michal Simek <monstr@monstr.eu>
39098 Date: Mon Jul 14 19:45:35 2008 +0200
39099
39100 i2c: Clean drivers/i2c/ Makefile
39101
39102 Signed-off-by: Michal Simek <monstr@monstr.eu>
39103
39104 commit 0a823aa2a8a8c0685e73900f387d602d7edafc0e
39105 Author: Harald Welte <laforge@openmoko.org>
39106 Date: Wed Jul 9 22:30:30 2008 +0800
39107
39108 Add 'license' command to U-Boot command line
39109
39110 The 'license' command includes the U-Boot license (GPLv2) into the
39111 actual bootloader binary. The license text can be shown interactively
39112 at the U-Boot commandline.
39113
39114 For products where the commandline can actually be accessed by the
39115 end user, this helps to prevent inadvertent GPL violations, since the
39116 GPLv2 license text can no longer be 'forgotten' to be included into
39117 the product.
39118
39119 The 'license' command can be enabled by CONFIG_CMD_LICENSE.
39120
39121 Signed-off-by: Harald Welte <laforge@openmoko.org>
39122
39123 commit fe2ce5500ebf43d79d227190bd2370232d5b113d
39124 Author: Harald Welte <laforge@gnumonks.org>
39125 Date: Sun Jul 6 15:56:38 2008 +0800
39126
39127 add 'unzip' command to u-boot commandline
39128
39129 [PATCH] add new 'unzip' command to u-boot commandline
39130
39131 common/cmd_mem.c: new command "unzip srcaddr dstaddr [dstsize]" to unzip from
39132 memory to memory, and option CONFIG_CMD_UNZIP to enable it
39133
39134 Signed-off-by: Werner Almesberger <werner@openmoko.org>
39135 Signed-off-by: Harald Welte <laforge@openmoko.org>
39136
39137 commit 07efc9e321619c3dec213310c32e011aa6f02783
39138 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39139 Date: Wed Aug 6 19:37:17 2008 -0500
39140
39141 Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase
39142
39143 The CFG_ENV_SIZE is not suitable used for SPI flash erase
39144 sector size if CFG_ENV_SIZE is less than CFG_ENV_SECT_SIZE.
39145 Add condition check if CFG_ENV_SIZE is larger than
39146 CFG_ENV_SECT_SIZE, calculate the right number of sectors for
39147 erasing.
39148
39149 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39150
39151 commit 4cb4e654cafabaa1ac180d37b00c8f6095dae9c9
39152 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39153 Date: Mon Aug 11 15:54:25 2008 +0000
39154
39155 ColdFire: Multiple fixes for M5282EVB
39156
39157 Incorrect CFG_HZ value, change 1000000 to 1000.
39158 Rename #waring to #warning. RAMBAR1 uses twice
39159 in start.S, rename the later to FLASHBAR. Insert
39160 nop for DRAM setup. And, env_offset in linker file.
39161
39162 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39163
39164 commit 10db3a17a278dd3a27668b31cb32cdd1476e9513
39165 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39166 Date: Mon Aug 11 15:26:43 2008 +0000
39167
39168 ColdFire: Move m5282evb from board to board/freescale
39169
39170 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39171
39172 commit 56df091d391f74bbf2dc2f7931f9f3c8f23529e4
39173 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39174 Date: Mon Aug 11 15:25:07 2008 +0000
39175
39176 ColdFire: Move m5272c3 from board to board/freescale
39177
39178 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39179
39180 commit 659e9bad629a480f606b286d5703aef7159edf98
39181 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39182 Date: Mon Aug 11 15:23:16 2008 +0000
39183
39184 ColdFire: Move m5271evb from board to board/freescale
39185
39186 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39187
39188 commit 05316f8ece8206339a208ec052f039cd0f7ca922
39189 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39190 Date: Mon Aug 11 13:41:49 2008 +0000
39191
39192 ColdFire: Add M54451EVB platform support for MCF5445x
39193
39194 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39195
39196 commit 922cd7515597e9a2c07d68e2a6240b0b7b0f0136
39197 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39198 Date: Wed Aug 6 19:14:08 2008 -0500
39199
39200 ColdFire: Add Serial Flash support for M54455EVB
39201
39202 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39203
39204 commit 9f751551456828b2d0ff417f10959fb0c7110bd0
39205 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39206 Date: Wed Jul 23 20:38:53 2008 -0500
39207
39208 ColdFire: Implement SBF feature for M5445EVB
39209
39210 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39211
39212 commit a7323bba229203aae2604afde131ab47bad4eadc
39213 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39214 Date: Wed Jul 23 17:53:36 2008 -0500
39215
39216 ColdFire: Add SSPI feature for MCF5445x
39217
39218 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39219
39220 commit b2d022d1ac3f59bffa9cec249341e77aea168abc
39221 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39222 Date: Wed Jul 23 17:37:10 2008 -0500
39223
39224 ColdFire: Use CFI Flash driver for M54455EVB
39225
39226 Remove non-common flash driver in
39227 board/freescale/m54455evb/flash.c. The non-cfi flash will
39228 use CONFIG_FLASH_CFI_LEGACY to configure the flash
39229 attribute.
39230
39231 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39232
39233 commit 6d33c6acfa35b1144d46ffbff7e29ee7969290d0
39234 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39235 Date: Wed Jul 23 17:11:47 2008 -0500
39236
39237 ColdFire: Add M5253DEMO platform support for MCF5253
39238
39239 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39240
39241 commit 80ba61fd82569af40e04d4a089257b81881884f2
39242 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39243 Date: Wed Aug 6 14:17:09 2008 -0500
39244
39245 ColdFire: Raise M5253EVBE uart baudrate to 115200 bps
39246
39247 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39248
39249 commit d361307e73ce1f6fc68760123f37d4876f851f3e
39250 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39251 Date: Wed Aug 6 14:11:36 2008 -0500
39252
39253 ColdFire: Fix M5253EVB dram bring up issue
39254
39255 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39256
39257 commit 4b0708093e15b412296328bf81325cf9b69fe512
39258 Author: Wolfgang Denk <wd@denx.de>
39259 Date: Thu Aug 14 14:41:06 2008 +0200
39260
39261 Coding Style cleanup, update CHANGELOG
39262
39263 Signed-off-by: Wolfgang Denk <wd@denx.de>
39264
39265 commit 68cf19aae48f2969ec70669604d0d776f02c8bc4
39266 Author: Scott Wood <scottwood@freescale.com>
39267 Date: Wed Aug 13 18:24:05 2008 -0500
39268
39269 socrates: Update NAND driver to new API.
39270
39271 Also, fix some minor formatting issues, and simplify the handling of
39272 "state" for writes.
39273
39274 Signed-off-by: Scott Wood <scottwood@freescale.com>
39275
39276 commit ba22d10f39eaeedd035e8265616e31ff88e314d5
39277 Author: Scott Wood <scottwood@freescale.com>
39278 Date: Wed Aug 13 18:03:40 2008 -0500
39279
39280 quad100hd: Update NAND driver to new API.
39281
39282 Signed-off-by: Scott Wood <scottwood@freescale.com>
39283
39284 commit f64cb652a8a84c5c34d0afcbd7ffef886aa1d838
39285 Author: Scott Wood <scottwood@freescale.com>
39286 Date: Wed Aug 13 17:53:48 2008 -0500
39287
39288 m5373evb: Update NAND driver to new API.
39289
39290 Signed-off-by: Scott Wood <scottwood@freescale.com>
39291
39292 commit 1a23a197c8722b805f40895544bbdb1a648c1c82
39293 Author: Scott Wood <scottwood@freescale.com>
39294 Date: Wed Aug 13 17:04:30 2008 -0500
39295
39296 s3c24x0: Update NAND driver to new API.
39297
39298 Signed-off-by: Scott Wood <scottwood@freescale.com>
39299
39300 commit aa5f75f20db8a7103fad9c34d6f1193e10d1890f
39301 Author: Scott Wood <scottwood@freescale.com>
39302 Date: Wed Aug 13 15:56:00 2008 -0500
39303
39304 at91: Update board NAND drivers to current API.
39305
39306 Signed-off-by: Scott Wood <scottwood@freescale.com>
39307
39308 commit d438d50848e9425286e5fb0493e0affb5a0b1e1b
39309 Author: Kyungmin Park <kmpark@infradead.org>
39310 Date: Wed Aug 13 09:11:02 2008 +0900
39311
39312 Fix OneNAND build break
39313
39314 Since page size field is changed from oobblock to writesize. But OneNAND is not updated.
39315 - fix bufferram management at erase operation
39316 This patch includes the NAND/OneNAND state filed too.
39317
39318 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
39319 Signed-off-by: Scott Wood <scottwood@freescale.com>
39320
39321 commit 9483df6408c25f16060432de3868901e352e23bc
39322 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39323 Date: Wed Aug 13 01:40:43 2008 +0200
39324
39325 drivers/mtd/nand_legacy: Move conditional compilation to Makefile
39326
39327 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39328
39329 commit cc4a0ceeac5462106172d0cc9d9d542233aa3ab2
39330 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39331 Date: Wed Aug 13 01:40:43 2008 +0200
39332
39333 drivers/mtd/nand: Move conditional compilation to Makefile
39334
39335 rename CFG_NAND_LEGACY to CONFIG_NAND_LEGACY
39336
39337 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39338
39339 commit 4fb09b81920e5dfdfc4576883186733f0bd6059c
39340 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39341 Date: Wed Aug 13 01:40:42 2008 +0200
39342
39343 drivers/mtd/onenand: Move conditional compilation to Makefile
39344
39345 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39346
39347 commit 00b1883a4cac59d97cd297b1a3a398db85982865
39348 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39349 Date: Wed Aug 13 01:40:42 2008 +0200
39350
39351 drivers/mtd: Move conditional compilation to Makefile
39352
39353 rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
39354
39355 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39356
39357 commit 7ba44a5521cdb7fa1c72864025cde1e21a6f6921
39358 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39359 Date: Wed Aug 13 01:40:41 2008 +0200
39360
39361 drivers/qe: Move conditional compilation to Makefile
39362
39363 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39364
39365 commit ab6878c7bc68a7b5e5b731655bdc13221bbfc493
39366 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39367 Date: Wed Aug 13 01:40:40 2008 +0200
39368
39369 drivers/pci: Move conditional compilation to Makefile
39370
39371 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39372
39373 commit 55d6d2d39fe3fe87802e399aa17539368b495d2e
39374 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39375 Date: Wed Aug 13 01:40:40 2008 +0200
39376
39377 drivers/misc: Move conditional compilation to Makefile
39378
39379 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39380
39381 commit 65e41ea0548b86e3d7892defac8e4dc1ea70aed1
39382 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39383 Date: Wed Aug 13 01:40:40 2008 +0200
39384
39385 drivers/input: Move conditional compilation to Makefile
39386
39387 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39388
39389 commit 88f57e093114a44aa9a858d52b099bcc52034a8c
39390 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39391 Date: Wed Aug 13 01:40:39 2008 +0200
39392
39393 drivers/dma: Move conditional compilation to Makefile
39394
39395 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39396
39397 commit 1a02806c4b1b4a09ad4e95d3aac3783889e5f8d7
39398 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39399 Date: Wed Aug 13 01:40:39 2008 +0200
39400
39401 drivers/block: Move conditional compilation to Makefile
39402
39403 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39404
39405 commit 1a6ffbfaf4353bec379ed1fcfc54b6f1a30af09a
39406 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39407 Date: Wed Aug 13 01:40:39 2008 +0200
39408
39409 serial: move CFG_NS9750_UART to CONFIG_NS9750_UART
39410
39411 move also conditional compilation to Makefile
39412
39413 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39414
39415 commit 6c58a030f86829fa4f0d4337cf4b794c41a1823e
39416 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39417 Date: Wed Aug 13 01:40:38 2008 +0200
39418
39419 serial: move CFG_SCIF_CONSOLE to CONFIG_SCIF_CONSOLE
39420
39421 move also conditional compilation to Makefile
39422
39423 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39424
39425 commit d6e9ee92e890f67594ab150689510df361133ead
39426 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39427 Date: Wed Aug 13 01:40:38 2008 +0200
39428
39429 common: Move conditional compilation to Makefile
39430
39431 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39432
39433 commit f5acb9fd9bba1160de3ef349c7d33fe510eda286
39434 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39435 Date: Wed Aug 13 01:40:09 2008 +0200
39436
39437 mx31: move freescale's mx31 boards to vendor board dir
39438
39439 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39440
39441 commit 8ed2f5f950e2581214d20b011a8f27a6396d65d2
39442 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39443 Date: Sat Jul 5 23:11:11 2008 +0200
39444
39445 at91: move arch-at91sam9 to arch-at91
39446
39447 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39448
39449 commit 195ccfc5991d48764b2519941e3507f693851d5d
39450 Author: Fathi BOUDRA <fabo@debian.org>
39451 Date: Wed Aug 6 10:06:20 2008 +0200
39452
39453 OneNAND: Fill in MTD function pointers for OneNAND.
39454
39455 onenand_print_device_info():
39456 - Now returns a string to be placed in mtd->name,
39457 rather than calling printf.
39458 - Remove verbose parameter as it becomes useless.
39459
39460 Signed-off-by: Fathi Boudra <fabo@debian.org>
39461 Signed-off-by: Scott Wood <scottwood@freescale.com>
39462
39463 commit aa646643b6bc250cb3a4966bf728876e0c10d329
39464 Author: Guennadi Liakhovetski <lg@denx.de>
39465 Date: Wed Aug 6 21:42:07 2008 +0200
39466
39467 nand_spl: Support page-aligned read in nand_load, use chipselect
39468
39469 Supporting page-aligned reads doesn't incure any sinificant overhead, just
39470 a small change in the algorithm. Also replace in_8 with readb, since there
39471 is no in_8 on ARM.
39472
39473 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39474 Signed-off-by: Scott Wood <scottwood@freescale.com>
39475
39476 commit 4f32d7760a58fe73981b6edc0b0751565d2daa4c
39477 Author: Scott Wood <scottwood@freescale.com>
39478 Date: Tue Aug 5 11:15:59 2008 -0500
39479
39480 NAND boot: Update large page support for current API.
39481
39482 Also, remove the ctrl variable in favor of passing the constants
39483 directly, and remove redundant (u8) casts.
39484
39485 Signed-off-by: Scott Wood <scottwood@freescale.com>
39486
39487 commit e4c09508545d1c45617ba45391c03c03cbc360b9
39488 Author: Scott Wood <scottwood@freescale.com>
39489 Date: Mon Jun 30 14:13:28 2008 -0500
39490
39491 NAND boot: MPC8313ERDB support
39492
39493 Note that with older board revisions, NAND boot may only work after a
39494 power-on reset, and not after a warm reset. I don't have a newer board
39495 to test on; if you have a board with a 33MHz crystal, please let me know
39496 if it works after a warm reset.
39497
39498 Signed-off-by: Scott Wood <scottwood@freescale.com>
39499
39500 commit acdab5c33f1ea6f5e08f06f08bc64af23ff40d71
39501 Author: Scott Wood <scottwood@freescale.com>
39502 Date: Thu Jun 26 14:06:52 2008 -0500
39503
39504 mpc8313erdb: Enable NAND in config.
39505
39506 Signed-off-by: Scott Wood <scottwood@freescale.com>
39507
39508 commit c3db8c649c6ab3da2f1411c4c6d61aecea054aa4
39509 Author: Guennadi Liakhovetski <lg@denx.de>
39510 Date: Thu Jul 31 12:38:26 2008 +0200
39511
39512 NAND: Do not write or read a whole block if it is larger than the environment
39513
39514 Environment can be smaller than NAND block size, do not need to read a whole
39515 block and minimum for writing is one page. Also remove an unused variable.
39516
39517 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39518 Signed-off-by: Scott Wood <scottwood@freescale.com>
39519
39520 commit eafcabd15f00c142156235c519fcc55b10993241
39521 Author: Marcel Ziswiler <marcel@ziswiler.com>
39522 Date: Sun Jun 22 16:30:06 2008 +0200
39523
39524 NAND: chip->state does not always get set.
39525
39526 Fixes an issue with chip->state not always being set causing troubles.
39527
39528 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
39529 Signed-off-by: Scott Wood <scottwood@freescale.com>
39530
39531 commit 13f0fd94e3cae6f8a0d9fba5d367e311edc8ebde
39532 Author: Ilya Yanok <yanok@emcraft.com>
39533 Date: Mon Jun 30 15:34:40 2008 +0200
39534
39535 NAND: Scan bad blocks lazily.
39536
39537 Rather than scanning on boot, scan upon the first attempt to check the
39538 badness of a block. This speeds up boot when not using NAND, and reduces
39539 the likelihood of needing to reflash via JTAG if NAND becomes
39540 nonfunctional.
39541
39542 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
39543 Signed-off-by: Scott Wood <scottwood@freescale.com>
39544
39545 commit dfbf617ff055e4216f78d358b0867c548916d14b
39546 Author: Scott Wood <scottwood@freescale.com>
39547 Date: Thu Jun 12 13:20:16 2008 -0500
39548
39549 NAND read/write fix
39550
39551 Implement block-skipping read/write, based on a patch from
39552 Morten Ebbell Hestens <morten.hestnes@tandberg.com>.
39553
39554 Signed-off-by: Morten Ebbell Hestnes <morten.hestnes@tandberg.com>
39555 Signed-off-by: Scott Wood <scottwood@freescale.com>
39556
39557 commit 984e03cdf1431bb593aeaa1b74c445d616f955d3
39558 Author: Scott Wood <scottwood@freescale.com>
39559 Date: Thu Jun 12 13:13:23 2008 -0500
39560
39561 NAND: Always skip blocks on read/write/boot.
39562
39563 Use of the non-skipping versions was almost always (if not always)
39564 an error, and no valid use case has been identified.
39565
39566 Signed-off-by: Scott Wood <scottwood@freescale.com>
39567
39568 commit e1c3dbada349992875934575c97b328ab2cb33ca
39569 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
39570 Date: Thu Jun 12 11:10:21 2008 -0500
39571
39572 nand: fsl_upm: convert to updated MTD NAND infrastructure
39573
39574 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
39575 Signed-off-by: Scott Wood <scottwood@freescale.com>
39576
39577 commit 300253306acc72b1b2e9faf0987f86551151d7cf
39578 Author: Scott Wood <scottwood@freescale.com>
39579 Date: Thu May 22 15:02:46 2008 -0500
39580
39581 fsl_elbc_nand: Hard-code the FBAR/FPAR split.
39582
39583 The hardware has separate registers for block and page-within-block,
39584 but the division between the two has no apparent relation to the
39585 actual erase block size of the NAND chip.
39586
39587 Signed-off-by: Scott Wood <scottwood@freescale.com>
39588
39589 commit 9c814b0a716aae884bec977b9a032dfa59cfb79a
39590 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
39591 Date: Fri Mar 28 22:10:54 2008 +0300
39592
39593 fsl_elbc_nand: workaround for hangs during nand write
39594
39595 Using current driver elbc sometimes hangs during nand write. Reading back
39596 last byte helps though (thanks to Scott Wood for the idea).
39597
39598 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
39599 Signed-off-by: Scott Wood <scottwood@freescale.com>
39600
39601 commit 9fd020d6b4b36b9fb67cd834bc1ae7fdba15ee9e
39602 Author: Scott Wood <scottwood@freescale.com>
39603 Date: Fri Mar 21 16:12:51 2008 -0500
39604
39605 Freescale eLBC FCM NAND driver
39606
39607 This is a driver for the Flash Control Machine of the enhanched Local Bus
39608 Controller found on some Freescale chips (such as the mpc8313 and the
39609 mpc8379).
39610
39611 Signed-off-by: Scott Wood <scottwood@freescale.com>
39612
39613 commit 41ef8c716e93fdf50efe9c1ba733ca6675daaca6
39614 Author: Scott Wood <scottwood@freescale.com>
39615 Date: Tue Mar 18 15:29:14 2008 -0500
39616
39617 Don't panic if a controller driver does ecc its own way.
39618
39619 Some hardware, such as the enhanced local bus controller used on some
39620 mpc83xx chips, does ecc transparently when reading and writing data, rather
39621 than providing a generic calculate/correct mechanism that can be exported to
39622 the nand subsystem.
39623
39624 The subsystem should not BUG() when calculate, correct, or hwctl are
39625 missing, if the methods that call them have been overridden.
39626
39627 Signed-off-by: Scott Wood <scottwood@freescale.com>
39628
39629 commit e52b34d40a8a646e3d11638ea8797e96398dba13
39630 Author: Stefan Roese <sr@denx.de>
39631 Date: Thu Jan 10 18:47:33 2008 +0100
39632
39633 NAND: Make NAND driver less verbose per default
39634
39635 This patch turns off printing of bad blocks per default upon bootup.
39636 This can always be shown via the "nand bad" command later.
39637
39638 Signed-off-by: Stefan Roese <sr@denx.de>
39639
39640 commit fe56a2772e5c59577df906163d0d4b29b056140e
39641 Author: Sergey Kubushyn <ksi@koi8.net>
39642 Date: Wed Jan 9 15:36:20 2008 +0100
39643
39644 NAND: Davinci driver updates
39645
39646 Here comes a trivial patch to cpu/arm926ejs/davinci/nand.c. Unfortunately I
39647 don't have hardware handy so I can not test it at the moment but changes are
39648 rather trivial so it should work. It would be nice if somebody with a
39649 hardware checked it anyways.
39650
39651 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
39652
39653 commit deac913effd8d80535c9ff4687b6fcdff540c554
39654 Author: Stefan Roese <sr@denx.de>
39655 Date: Sat Jan 5 16:50:32 2008 +0100
39656
39657 NAND: Fix compilation warning and small coding style issue
39658
39659 Signed-off-by: Stefan Roese <sr@denx.de>
39660
39661 commit c568f77acdf896fc3dd6413ce53205b17ba809a3
39662 Author: Stefan Roese <sr@denx.de>
39663 Date: Sat Jan 5 16:49:37 2008 +0100
39664
39665 NAND: Update nand_spl driver to match updated nand subsystem
39666
39667 This patch changes the NAND booting driver nand_spl/nand_boot.c to match
39668 the new infrastructure from the updated NAND subsystem. This NAND
39669 subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
39670 subsystem.
39671
39672 Signed-off-by: Stefan Roese <sr@denx.de>
39673
39674 commit 3df2ece0f0fbba47d27f02fff96c533732b98c14
39675 Author: Stefan Roese <sr@denx.de>
39676 Date: Sat Jan 5 16:47:58 2008 +0100
39677
39678 NAND: Update 4xx NDFC driver to match updated nand subsystem
39679
39680 This patch changes the 4xx NAND driver ndfc.c to match the new
39681 infrastructure from the updated NAND subsystem. This NAND
39682 subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
39683 subsystem.
39684
39685 Tested successfully on AMCC Sequoia and Bamboo.
39686
39687 Signed-off-by: Stefan Roese <sr@denx.de>
39688
39689 commit 12072264528eba33737bc9674e19f0e925ffda23
39690 Author: Stefan Roese <sr@denx.de>
39691 Date: Sat Jan 5 16:43:25 2008 +0100
39692
39693 NAND: Change nand_wait_ready() to not call nand_wait()
39694
39695 This patch changes nand_wait_ready() to not just call nand_wait(),
39696 since this will send a new command to the NAND chip. We just want to
39697 wait for the chip to become ready here.
39698
39699 Signed-off-by: Stefan Roese <sr@denx.de>
39700
39701 commit 9ad754fef5053144daed3b007adaf1c9bec654c9
39702 Author: William Juul <william.juul@datarespons.no>
39703 Date: Fri Dec 14 16:33:45 2007 +0100
39704
39705 make nand dump and nand dump.oob work
39706
39707 Signed-off-by: William Juul <william.juul@tandberg.com>
39708 Signed-off-by: Scott Wood <scottwood@freescale.com>
39709
39710 commit 43ea36fb8fdcbc6e26f0caffe808c63633b18838
39711 Author: William Juul <william.juul@datarespons.no>
39712 Date: Mon Nov 19 14:46:00 2007 +0100
39713
39714 moving files from yaffs2/direct/ to yaffs2/ and deleting all symlinks
39715
39716 Signed-off-by: William Juul <william.juul@tandberg.com>
39717
39718 commit 98824ce3f95e6c4d08d439b779c0acb0048045a6
39719 Author: William Juul <william.juul@tandberg.com>
39720 Date: Tue Jun 10 16:18:13 2008 -0500
39721
39722 Clean out unneeded files
39723
39724 Signed-off-by: William Juul <william.juul@tandberg.com>
39725
39726 commit ec29a32b5a71b203f7d9087f1f4d786e7f13dd23
39727 Author: William Juul <william.juul@datarespons.no>
39728 Date: Fri Nov 16 08:44:27 2007 +0100
39729
39730 Create symlinks from yaffs2/direct to yaffs2
39731
39732 Signed-off-by: William Juul <william.juul@tandberg.com>
39733
39734 commit 90ef117b68387d66763291af0117677644166611
39735 Author: William Juul <william.juul@datarespons.no>
39736 Date: Thu Nov 15 12:23:57 2007 +0100
39737
39738 Incorporate yaffs2 into U-boot
39739
39740 To use YAFFS2 define CONFIG_YAFFS2
39741
39742 Signed-off-by: William Juul <william.juul@tandberg.com>
39743 Signed-off-by: Scott Wood <scottwood@freescale.com>
39744
39745 commit 0e8cc8bd92257da2e1df88cbc985e166e472ce61
39746 Author: William Juul <william.juul@datarespons.no>
39747 Date: Thu Nov 15 11:13:05 2007 +0100
39748
39749 YAFFS2 import
39750
39751 Direct import of yaffs as a tarball as of 20071113 from their public
39752 CVS-web at http://www.aleph1.co.uk/cgi-bin/viewcvs.cgi/yaffs2/
39753
39754 The code can also be imported on the command line with:
39755 export CVSROOT=:pserver:anonymous@cvs.aleph1.co.uk:/home/aleph1/cvs cvs logon
39756 (Hit return when asked for a password)
39757 cvs checkout yaffs2
39758
39759 Signed-off-by: William Juul <william.juul@tandberg.com>
39760 Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
39761
39762 commit 3043c045d5a9897faba7d5c7218c2f4d06cd0038
39763 Author: William Juul <william.juul@datarespons.no>
39764 Date: Wed Nov 14 14:28:11 2007 +0100
39765
39766 Whitespace cleanup and marking broken code.
39767
39768 Changes requested by maintainer Stefan Roese after
39769 posting patch to U-boot mailing list.
39770
39771 Signed-off-by: William Juul <william.juul@tandberg.com>
39772 Signed-off-by: Scott Wood <scottwood@freescale.com>
39773
39774 commit 5e1dae5c3db7f4026f31b6a2a81ecd9e9dee475f
39775 Author: William Juul <william.juul@datarespons.no>
39776 Date: Fri Nov 9 13:32:30 2007 +0100
39777
39778 Fixing coding style issues
39779
39780 - Fixing leading white spaces
39781 - Fixing indentation where 4 spaces are used instead of tab
39782 - Removing C++ comments (//), wherever I introduced them
39783
39784 Signed-off-by: William Juul <william.juul@tandberg.com>
39785 Signed-off-by: Scott Wood <scottwood@freescale.com>
39786
39787 commit 4cbb651b29cb64d378a06729970e1e153bb605b1
39788 Author: William Juul <william.juul@datarespons.no>
39789 Date: Thu Nov 8 10:39:53 2007 +0100
39790
39791 Remove white space at end.
39792
39793 Signed-off-by: William Juul <william.juul@tandberg.com>
39794 Signed-off-by: Scott Wood <scottwood@freescale.com>
39795
39796 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
39797 Author: William Juul <william.juul@datarespons.no>
39798 Date: Wed Oct 31 13:53:06 2007 +0100
39799
39800 Update MTD to that of Linux 2.6.22.1
39801
39802 A lot changed in the Linux MTD code, since it was last ported from
39803 Linux to U-Boot. This patch takes U-Boot NAND support to the level
39804 of Linux 2.6.22.1 and will enable support for very large NAND devices
39805 (4KB pages) and ease the compatibility between U-Boot and Linux
39806 filesystems.
39807
39808 This patch is tested on two custom boards with PPC and ARM
39809 processors running YAFFS in U-Boot and Linux using gcc-4.1.2
39810 cross compilers.
39811
39812 MAKEALL ppc/arm has some issues:
39813 * DOC/OneNand/nand_spl is not building (I have not tried porting
39814 these parts, and since I do not have any HW and I am not familiar
39815 with this code/HW I think its best left to someone else.)
39816
39817 Except for the issues mentioned above, I have ported all drivers
39818 necessary to run MAKEALL ppc/arm without errors and warnings. Many
39819 drivers were trivial to port, but some were not so trivial. The
39820 following drivers must be examined carefully and maybe rewritten to
39821 some degree:
39822 cpu/ppc4xx/ndfc.c
39823 cpu/arm926ejs/davinci/nand.c
39824 board/delta/nand.c
39825 board/zylonite/nand.c
39826
39827 Signed-off-by: William Juul <william.juul@tandberg.com>
39828 Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
39829 Signed-off-by: Scott Wood <scottwood@freescale.com>
39830
39831 commit cd82919e6c8a73b363a26f34b734923844e52d1c
39832 Author: Wolfgang Denk <wd@denx.de>
39833 Date: Tue Aug 12 16:08:38 2008 +0200
39834
39835 Coding style cleanup, update CHANGELOG, prepare release
39836
39837 Signed-off-by: Wolfgang Denk <wd@denx.de>
39838
39839 commit 17e900b8c0f38d922da47073246219dce2a847f2
39840 Author: Wolfgang Denk <wd@denx.de>
39841 Date: Tue Aug 12 14:54:04 2008 +0200
39842
39843 MVBC_P: fix compile problem
39844
39845 Signed-off-by: Wolfgang Denk <wd@denx.de>
39846
39847 commit 52b047ae48219b59bebe37ba743ab103fd4f8316
39848 Author: Wolfgang Denk <wd@denx.de>
39849 Date: Tue Aug 12 12:10:11 2008 +0200
39850
39851 MPC8272ADS: fix build error: 'bd_t' has no member named 'pci_clk'
39852
39853 Signed-off-by: Wolfgang Denk <wd@denx.de>
39854
39855 commit c9c101c660b3d1995045c61c7c6041f52b6cf335
39856 Author: Wolfgang Denk <wd@denx.de>
39857 Date: Tue Aug 12 00:36:53 2008 +0200
39858
39859 ads5121: fix compiler warnings (unused variables)
39860
39861 Signed-off-by: Wolfgang Denk <wd@denx.de>
39862
39863 commit 902ca09246039964d59bbcb519b1e1b5aed01308
39864 Author: Kumar Gala <galak@kernel.crashing.org>
39865 Date: Mon Aug 11 11:29:28 2008 -0500
39866
39867 85xx: Rename CONFIG_NR_CPUS to CONFIG_NUM_CPUS
39868
39869 Use CONFIG_NUM_CPUS to match existing define used by 86xx.
39870
39871 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39872 Acked-by: Jon Loeliger <jdl@freescale.com>
39873
39874 commit 3216ca9692ff80d7c638723ef448f3d36301d9e7
39875 Author: Kumar Gala <galak@kernel.crashing.org>
39876 Date: Mon Aug 11 09:20:53 2008 -0500
39877
39878 Fix fallout from autostart revert
39879
39880 The autostart revert caused a bit of duplicated code as well as
39881 code that was using images->autostart that needs to get removed so
39882 we can build again.
39883
39884 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39885
39886 commit 3cf8a234b8e8c02e4da1f23566043bc288b05220
39887 Author: Kumar Gala <galak@kernel.crashing.org>
39888 Date: Mon Aug 11 09:16:25 2008 -0500
39889
39890 Fix compile error related to r8a66597-hcd & usb
39891
39892 When building the 8544DS board we get this error:
39893
39894 In file included from r8a66597-hcd.c:22:
39895 u-boot/include/usb.h:190:2: error: #error USB Lowlevel not defined
39896 make[1]: *** [r8a66597-hcd.o] Error 1
39897
39898 The cleanest fix is to only build r8a66597-hcd.c if CONFIG_USB_R8A66597_HCD
39899 is set.
39900
39901 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39902
39903 commit 2d0daa03612338a813e3c9d22680e54eabfea378
39904 Author: Becky Bruce <becky.bruce@freescale.com>
39905 Date: Mon Aug 4 14:02:26 2008 -0500
39906
39907 POWERPC 86xx: Move BAT setup code to C
39908
39909 This is needed because we will be possibly be locating
39910 devices at physical addresses above 32bits, and the asm
39911 preprocessing does not appear to deal with ULL constants
39912 properly. We now call write_bat in lib_ppc/bat_rw.c.
39913
39914 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
39915 Acked-by: Jon Loeliger <jdl@freescale.com>
39916
39917 commit 9de67149db576c91b9c2a0a182652331e7e44211
39918 Author: Becky Bruce <becky.bruce@freescale.com>
39919 Date: Mon Aug 4 14:01:53 2008 -0500
39920
39921 POWERPC: Add synchronization to write_bat in lib_ppc/bat_rw.c
39922
39923 Perform sync/isync as required by the architecture.
39924
39925 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
39926 Acked-by: Jon Loeliger <jdl@freescale.com>
39927
39928 commit 23f935c073e7578c6066804fd2f9ee116cae6ffe
39929 Author: Becky Bruce <becky.bruce@freescale.com>
39930 Date: Mon Aug 4 14:01:16 2008 -0500
39931
39932 POWERPC: 86xx - add missing CONFIG_HIGH_BATS to sbc8641d config
39933
39934 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
39935 Acked-by: Jon Loeliger <jdl@freescale.com>
39936
39937 commit 5276a3584d26a9533404f0ec00c3b61cf9a97939
39938 Author: Magnus Lilja <lilja.magnus@gmail.com>
39939 Date: Sun Aug 3 21:44:10 2008 +0200
39940
39941 i.MX31: Fix mx31_gpio_mux() function and MUX_-macros.
39942
39943 Correct the mx31_gpio_mux() function to allow changing all i.MX31 IOMUX
39944 contacts instead of only the first 256 ones as is the case prior to
39945 this patch.
39946
39947 Add missing MUX_* macros and update board files to use the new macros.
39948
39949 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
39950
39951 commit b6b183c5b2fffd4c456b7e3fcb064cceb47fe7ac
39952 Author: Magnus Lilja <lilja.magnus@gmail.com>
39953 Date: Sun Aug 3 21:43:37 2008 +0200
39954
39955 i.MX31: Fix IOMUX related typos
39956
39957 Correct the names of some IOMUX macros.
39958
39959 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
39960
39961 commit 4d57b0fb2927d4f50d834884b4ec4a7ca01708b0
39962 Author: Steve Sakoman <steve@sakoman.com>
39963 Date: Mon Aug 11 20:26:16 2008 +0200
39964
39965 OneNAND: Remove unused parameters to onenand_verify_page
39966
39967 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.
39968
39969 Signed-off-by: Steve Sakoman <steve@sakoman.com>
39970 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
39971
39972 commit e84d568fa2a9f4ce7888141e71676368ef6b3f25
39973 Author: Anatolij Gustschin <agust@denx.de>
39974 Date: Fri Aug 8 18:00:40 2008 +0200
39975
39976 video: fix bug in cfb_console code
39977
39978 FILL_15BIT_555RGB macro extension for pixel swapping
39979 by commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
39980 introduced a bug in cfb_console:
39981
39982 Bitmaps with odd-numbered width won't be rendered
39983 correctly and even U-Boot crashes are observed on
39984 some platforms while repeated rendering of such
39985 bitmaps with "bmp display". Also if a bitmap is
39986 rendered to an odd-numbered x starting position,
39987 the same problem occurs. This patch is an attempt
39988 to fix it.
39989
39990 Signed-off-by: Anatolij Gustschin <agust@denx.de>
39991
39992 commit d9015f6a50d7258125349ef5c2af836458a0029a
39993 Author: Anatolij Gustschin <agust@denx.de>
39994 Date: Fri Aug 8 18:00:39 2008 +0200
39995
39996 video: fix bug in logo_plot
39997
39998 If logo_plot() should ever be called with x starting
39999 position other than zero and for pixel depths greater
40000 than 8bpp, logo colors distortion will be observed.
40001 This patch fixes the issue.
40002
40003 Signed-off-by: Anatolij Gustschin <agust@denx.de>
40004
40005 commit 406819ae94f79f5b59e01d163380ca7d83709251
40006 Author: Wolfgang Denk <wd@denx.de>
40007 Date: Mon Aug 11 00:17:52 2008 +0200
40008
40009 MAINTAINERS: sort entries
40010
40011 Signed-off-by: Wolfgang Denk <wd@denx.de>
40012
40013 commit cfc442d7913d4d1c3a9bf494f90c012c2f8c3bdc
40014 Author: Roy Zang <tie-fei.zang@freescale.com>
40015 Date: Thu Aug 7 18:19:28 2008 +0800
40016
40017 Add mpc7448hpc2 maintainer information
40018
40019 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
40020
40021 commit a9fe0c3e7ca48afa50d6a0db99fa91e7282d73d8
40022 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
40023 Date: Thu Aug 7 13:13:27 2008 +0530
40024
40025 common/cmd_load.c - Minor code & Coding Style cleanup
40026
40027 - os_data_header Variable is a carry over feature
40028 & unused. So removed all instance of this variable
40029 - Minor Code Style Update
40030
40031 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
40032 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40033
40034 commit 0d28f34bbe56d0971bd603789dcc6fe7adf11f14
40035 Author: Magnus Lilja <lilja.magnus@gmail.com>
40036 Date: Wed Aug 6 19:32:33 2008 +0200
40037
40038 Update the U-Boot wiki URL.
40039
40040 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
40041
40042 commit aa5ffa16d7e4c461b7b77bf8e79d2ef5638cf754
40043 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
40044 Date: Sun Aug 10 17:56:36 2008 +0200
40045
40046 OneNAND: Remove base address offset usage
40047
40048 While locally preparing some U-Boot patches for ARM based OMAP3 boards, some
40049 using OneNAND and some using NAND, we found some differences in OneNAND and
40050 NAND command address handling.
40051
40052 As this might confuse users (it already confused us), we like to align OneNAND
40053 and NAND address handling.
40054
40055 The issue is that cmd_onenand.c subtracts the onenand base address from the
40056 addresses you type into the u-boot command line so, unlike nand, you can't
40057 use addresses relative to the start of the onenand part e.g. this won't work:
40058
40059 onenand read 82000000 280000 400000
40060
40061 you have to use:
40062
40063 onenand read 82000000 20280000 400000
40064
40065 Looking at recent git, the only board currently using OneNAND is Apollon, and
40066 for this the OneNAND base address is 0 (apollon.h)
40067
40068 #define CFG_ONENAND_BASE 0x00000000
40069
40070 so patch below won't break any existing boards and will align OneNAND and NAND
40071 handling on boards where OneNAND base address is != 0.
40072
40073 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
40074 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
40075 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
40076
40077 commit c11528083ef6e55e76df742228c26e39d151813d
40078 Author: Kumar Gala <galak@kernel.crashing.org>
40079 Date: Thu Aug 7 09:28:20 2008 -0500
40080
40081 mpc85xx: workaround old binutils bug
40082
40083 The recent change to move the .bss outside of the image gives older
40084 binutils (ld from eldk4.1/binutils-2.16) some headache:
40085
40086 ppc_85xx-ld: u-boot: Not enough room for program headers (allocated 3, need 4)
40087 ppc_85xx-ld: final link failed: Bad value
40088
40089 We workaround it by being explicit about the program headers and not
40090 assigning the .bss to a program header.
40091
40092 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40093
40094 commit 0bf202ec586d4466c900e987720fa635c594d689
40095 Author: Wolfgang Denk <wd@denx.de>
40096 Date: Sun Aug 10 01:26:26 2008 +0200
40097
40098 Revert "[new uImage] Add autostart flag to bootm_headers structure"
40099
40100 This reverts commit f5614e7926863bf0225ec860d9b319741a9c4004.
40101
40102 The commit was based on a misunderstanding of the (documented)
40103 meaning of the 'autostart' environment variable. It might cause
40104 boards to hang if 'autostart' was used, with the potential to brick
40105 them. Go back to the documented behaviour.
40106
40107 Conflicts:
40108
40109 common/cmd_bootm.c
40110 common/image.c
40111 include/image.h
40112
40113 Signed-off-by: Wolfgang Denk <wd@denx.de>
40114
40115 commit 29f8f58ff40c67f7f2e11afd1715173094e52ac2
40116 Author: Wolfgang Denk <wd@denx.de>
40117 Date: Sat Aug 9 23:17:32 2008 +0200
40118
40119 TQM8xx{L,M}: try to normalize config files for TQM8xx? based board
40120
40121 - enable CFI driver where this was forgotten
40122 - enable mtdparts support
40123 - adjust default environment
40124 etc.
40125
40126 Signed-off-by: Wolfgang Denk <wd@denx.de>
40127
40128 commit 41266c9b5a5f873df3ec891bb0907616958b5602
40129 Author: Peter Tyser <ptyser@xes-inc.com>
40130 Date: Tue Aug 5 10:51:57 2008 -0500
40131
40132 FIT: Fix handling of images without ramdisks
40133
40134 boot_get_ramdisk() should not treat the case when a FIT image does
40135 not contain a ramdisk as an error.
40136
40137 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
40138 Acked-by: Michal Simek <monstr@monstr.eu>
40139
40140 commit f77d92a3f56d88e63cc02226a1204b3bdbac6961
40141 Author: Sergey Lapin <slapin@ossfans.org>
40142 Date: Sat Aug 9 01:39:09 2008 +0400
40143
40144 DataFlash: AT45DB021 fix and AT45DB081 support
40145
40146 Fix for page size of AT45DB021. Also adding bigger AT45DB081
40147 which comes with some newer boards.
40148
40149 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
40150
40151 commit ba9324451b662dd393afa53e5cc36fc5d3d10966
40152 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40153 Date: Fri Aug 8 16:30:23 2008 +0900
40154
40155 sh: Update sh7763rdp config
40156
40157 Add sh_eth support to sh7763rdp.
40158
40159 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40160
40161 commit 21f971ec265f6042ec21636d55d06a6bc0751077
40162 Author: Wolfgang Denk <wd@denx.de>
40163 Date: Mon Jul 7 01:22:29 2008 +0200
40164
40165 TQM823L: re-enable logo support; update LCD_INFO text
40166
40167 Signed-off-by: Wolfgang Denk <wd@denx.de>
40168
40169 commit 3b8d17f0f082073346c0df017c9dfd6acdb40d6d
40170 Author: Wolfgang Denk <wd@denx.de>
40171 Date: Fri Aug 8 16:41:56 2008 +0200
40172
40173 TQM8xxL: fix support for second flash bank
40174
40175 When switching the TQM8xxL modules to use the CFI flash driver,
40176 support for the second flash bank was broken because the CFI driver
40177 did not support dynamically sized banks. This gets fixed now.
40178
40179 Signed-off-by: Wolfgang Denk <wd@denx.de>
40180
40181 commit 2a112b234d879f6390503a5f4e38246acce9d0b0
40182 Author: Wolfgang Denk <wd@denx.de>
40183 Date: Fri Aug 8 16:39:54 2008 +0200
40184
40185 CFI: allow for dynamically determined flash sizes and addresses
40186
40187 The CFI driver allowed only for static initializers in the
40188 CFG_FLASH_BANKS_LIST definition, i. e. it did not allow to map
40189 several flash banks contiguously if the bank sizes were not known in
40190 advance, which kind of violates U-Boot's design philosophy.
40191
40192 (will be used for example by the TQM8xxL boards)
40193
40194 Signed-off-by: Wolfgang Denk <wd@denx.de>
40195
40196 commit d9d78ee46d9a396d0a81d00c2b003a9bd32c2e61
40197 Author: Ben Warren <biggerbadderben@gmail.com>
40198 Date: Thu Aug 7 23:26:35 2008 -0700
40199
40200 QE UEC: Fix compiler warnings
40201
40202 Moved static functions earlier in file so forward declarations are not needed.
40203
40204 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40205
40206 commit d5d28fe4aad5f4535400647a5617c11039506467
40207 Author: David Saada <David.Saada@ecitele.com>
40208 Date: Mon Mar 31 02:37:38 2008 -0700
40209
40210 QE UEC: Add MII Commands
40211
40212 Add MII commands to the UEC driver. Note that once a UEC device is selected,
40213 any device on its MDIO bus can be addressed.
40214
40215 Signed-off-by: David Saada <david.saada@ecitele.com>
40216 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40217
40218 commit fd0f2f3796ff2a7a32d35deb1b7996e485849df7
40219 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
40220 Date: Wed Jul 9 21:07:38 2008 +0900
40221
40222 usb: add support for R8A66597 usb controller
40223
40224 add support for Renesas R8A66597 usb controller.
40225 This patch supports USB Host mode.
40226
40227 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
40228 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
40229
40230 commit 1d10dcd041aaeae9fd7c821005692898a0303382
40231 Author: Hunter, Jon <jon-hunter@ti.com>
40232 Date: Sat Jul 26 18:59:16 2008 -0500
40233
40234 Add support for OMAP5912 and OMAP16xx to usbdcore_omap1510.c
40235
40236 Add support to drivers/usb/usbdcore_omap1510.c for OMAP5912 and OMAP16xx devices.
40237
40238 Signed-off-by: Jon Hunter <jon-hunter@ti.com>
40239 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
40240
40241 commit eab1007334b93a6209f1ec33615e26ef5311ede7
40242 Author: Steven A. Falco <sfalco@harris.com>
40243 Date: Wed Aug 6 15:42:52 2008 -0400
40244
40245 ppc4xx: Sequoia has two UARTs in "4-pin" mode. Configure the GPIOs as per schematic.
40246
40247 The Sequoia board has two UARTs in "4-pin" mode. This patch modifies the GPIO
40248 configuration to match the schematic, and also sets the SDR0_PFC1 register to
40249 select the corresponding mode for the UARTs.
40250
40251 Signed-off-by: Steven A. Falco <sfalco@harris.com>
40252 Signed-off-by: Stefan Roese <sr@denx.de>
40253
40254 commit 0eb5717a85b6cba3f67c11fa89bdde38dcd081b5
40255 Author: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
40256 Date: Wed Aug 6 14:42:13 2008 +0200
40257
40258 avr32: add support for EarthLCD Favr-32 board
40259
40260 This patch adds support for the Favr-32 board made by EarthLCD.
40261
40262 This kit, which is also called ezLCD-101 when running with EarthLCD firmware,
40263 has a 10.4" touch screen LCD panel, 16 MB 32-bit SDRAM, 8 MB parallel flash,
40264 Ethernet, audio out, USB device, SD-card slot, USART and various other
40265 connectors for cennecting stuff to SPI, I2C, GPIO, etc.
40266
40267 Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
40268 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
40269
40270 commit bc9019e19758a19a388fb20ef18dc771cd39fdda
40271 Author: Rafael Campos <rafael.campos@hanscan.com>
40272 Date: Thu Jul 31 10:22:20 2008 +0200
40273
40274 cfi-flash: Added support to flash_real_protect for Atmel flash devices
40275
40276 Some of the flash memories produced by ATMEL start in read-only mode.
40277 We need to unprotect it. This patch allows the AT49BV6416 to work with
40278 cfi_flash memories. Tested in the at91rm9200ek board.
40279
40280 Signed-off-by: Rafael Campos Las Heras <rafael.campos@hanscan.com>
40281 Signed-off-by: Stefan Roese <sr@denx.de>
40282
40283 commit 7949839e5836bf8b1074bb6142c46d30ac3aa350
40284 Author: Guennadi Liakhovetski <lg@denx.de>
40285 Date: Tue Aug 5 15:36:39 2008 +0200
40286
40287 cfi-flash: Add definition for the AM29LV800BB AMD NOR-flash
40288
40289 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40290 Signed-off-by: Stefan Roese <sr@denx.de>
40291
40292 commit 1318673045fe188c6e24c582b1e6efc00ae1c62c
40293 Author: Stefan Roese <sr@denx.de>
40294 Date: Wed Aug 6 14:06:03 2008 +0200
40295
40296 Fix merge problems
40297
40298 Signed-off-by: Stefan Roese <sr@denx.de>
40299
40300 commit f2302d4430e7f3f48308d6a585320fe96af8afbd
40301 Author: Stefan Roese <sr@denx.de>
40302 Date: Wed Aug 6 14:05:38 2008 +0200
40303
40304 Fix merge problems
40305
40306 Signed-off-by: Stefan Roese <sr@denx.de>
40307
40308 commit 6689484ccd43189322aaa5a1c6cd02cdd511ad7d
40309 Author: Kenneth Johansson <kenneth@southpole.se>
40310 Date: Tue Jul 15 12:13:38 2008 +0200
40311
40312 mpc5121: Move iopin features from board specific to common files.
40313
40314 And in the process eliminate some duplicate register defines.
40315
40316 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
40317
40318 commit ef11df6b66ecf5797e94ba322254b8fb7a4e2e12
40319 Author: John Rigby <jrigby@freescale.com>
40320 Date: Tue Aug 5 17:38:57 2008 -0600
40321
40322 mpc5121: squash some fdt fixup errors
40323
40324 On ADS5121 when booting linux the following errors are seen:
40325 Unable to update property /soc5121@80000000:bus-frequency, err=FDT_ERR_NOTFOUND
40326 Unable to update property /soc5121@80000000/ethernet@2800:local-mac-address, err=FDT_ERR_NOTFOUND
40327 Unable to update property /soc5121@80000000/ethernet@2800:address, err=FDT_ERR_NOTFOUND
40328
40329 This is caused by ft_cpu_setup trying to deal with
40330 both old and new soc node naming. This patch
40331 fixes this by being smarter about what to
40332 fixup.
40333
40334 Also do soc node fixups by compatible instead of by path.
40335 A new board config called OF_SOC_COMPAT defined
40336 to be "fsl,mpc5121-immr" replaces the old
40337 OF_SOC node path that was defined to be "soc@80000000".
40338
40339 Old device trees still work, but the compatiblity
40340 is conditional on CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
40341 which is on by default in include/configs/ads5121.h.
40342
40343 Signed-off-by: John Rigby <jrigby@freescale.com>
40344
40345 commit 81091f58f0c58ecd26c5b05de2ae20ca6cdb521c
40346 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40347 Date: Sat Aug 2 23:48:30 2008 +0200
40348
40349 drivers/serial: Move conditional compilation to Makefile for CONFIG_* macros
40350
40351 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40352
40353 commit 4cd7e6528f61ec669755c3754bb4f9779874fab3
40354 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40355 Date: Sat Aug 2 23:48:32 2008 +0200
40356
40357 nios2/sysid: fix printf warning
40358
40359 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40360
40361 commit 66da6fa0e35e7ee56628c85981709afe7180fc8e
40362 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40363 Date: Sat Aug 2 23:48:33 2008 +0200
40364
40365 Fix remaining build issues with MPC8xx FADS boards.
40366
40367 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40368
40369 commit 81d3f1fdddafd1eb53bbca8739f488d417eb3dd2
40370 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40371 Date: Sat Aug 2 23:48:31 2008 +0200
40372
40373 nios2: fix phys_addr_t and phys_size_t support
40374
40375 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40376
40377 commit 5fa62000db6d0b46ecdeadbeb50faf5197db49ef
40378 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40379 Date: Sat Aug 2 23:48:34 2008 +0200
40380
40381 mvbc_p: Fix problem with '#if (CONFIG_CMD_KGDB)'
40382
40383 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40384
40385 commit 1464eff77e7fdaed609ecf263a2423c9dcf96b1f
40386 Author: Mark Jackson <mpfj@mimc.co.uk>
40387 Date: Fri Aug 1 09:48:29 2008 +0100
40388
40389 Fix bitmap display for atmel lcd controller
40390
40391 The current lcd_display_bitmap() function does not work properly
40392 for the Atmel LCD controller.
40393
40394 2 fixes need to be done:-
40395
40396 (a) when setting the colour map, use the lcd_setcolreg() function
40397 as provided by the Atmel driver
40398 (b) the data is never actually written to the lcd framebuffer !!
40399
40400 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
40401
40402 commit 2a433c66b1e2770349fe4911be23c375f053ebd8
40403 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40404 Date: Fri Aug 1 08:40:34 2008 +0200
40405
40406 qemu_mips: update README to follow qemu update about default machine
40407
40408 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40409
40410 commit ac169d645f5f0e0b9a232563099209e92a355d8e
40411 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40412 Date: Thu Jul 31 19:53:21 2008 -0500
40413
40414 ColdFire: Fix compilation issue caused by a missing function
40415
40416 Implement usec2ticks() which is used by fsl_i2c.c in
40417 lib_m68k/time.c
40418
40419 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40420
40421 commit 01ae85b58b51d2fb1fac5b93095f6042cf48ae7b
40422 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40423 Date: Thu Jul 31 19:53:06 2008 -0500
40424
40425 Fix compilation error for TASREG
40426
40427 TASREG is ColdFire platform, the include ppc4xx.h in
40428 board/esd/common/flash.c causes conflict.
40429
40430 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40431
40432 commit 35d3bd3cc35c508a6823dac77e0fd126808e4fc7
40433 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40434 Date: Thu Jul 31 19:52:36 2008 -0500
40435
40436 Fix compilation error for MCF5275
40437
40438 Rename OBJ to COBJ in board/platform/Makefile
40439
40440 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40441
40442 commit 5c40548f01218360a1f1395198c50ff45f3035b5
40443 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40444 Date: Thu Jul 31 19:52:28 2008 -0500
40445
40446 Fix compile error caused by incorrect function return type
40447
40448 Rename int mii_init(void) to void mii_init(void) for idmr
40449 ColdFire platform
40450
40451 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40452
40453 commit a58c78067c928976c082c758d3987e89ead5b191
40454 Author: Wolfgang Denk <wd@denx.de>
40455 Date: Fri Aug 1 12:06:22 2008 +0200
40456
40457 Fix build issues with MPC8xx FADS boards.
40458
40459 Signed-off-by: Wolfgang Denk <wd@denx.de>
40460
40461 commit 4b50cd12a3b3c644153c4cf393f4a4c12289e5aa
40462 Author: Wolfgang Denk <wd@denx.de>
40463 Date: Thu Jul 31 17:54:03 2008 +0200
40464
40465 Prepare v1.3.4-rc2: update CHANGELOG
40466
40467 Signed-off-by: Wolfgang Denk <wd@denx.de>
40468
40469 commit a48311557db6e7e9473a6163b44bb1e6c6ed64c4
40470 Author: Mark Jackson <mpfj@mimc.co.uk>
40471 Date: Thu Jul 31 16:09:00 2008 +0100
40472
40473 Add gzipped logo support
40474
40475 The README file states that CONFIG_VIDEO_BMP_GZIP behaves as follows:
40476
40477 If this option is set, additionally to standard BMP
40478 images, gzipped BMP images can be displayed via the
40479 splashscreen support or the bmp command.
40480
40481 However, the splashscreen function *only* supports standard BMP images.
40482
40483 This patch adds the documented gzip support.
40484
40485 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
40486
40487 commit a5bcb01fbde6b1f1c9863cd86e5c4c369f0121ac
40488 Author: Mark Jackson <mpfj@mimc.co.uk>
40489 Date: Thu Jul 31 15:56:48 2008 +0100
40490
40491 Fix Atmel LCD controller endianess for AVR32 processors
40492
40493 The Atmel lcd controller is used on Atmel's AT91 (little endian) and
40494 AVR32 (big endian) platforms.
40495
40496 As such, the controller can handle both big and little endian memory.
40497
40498 This patch fixes the driver for the AVR32 platform.
40499
40500 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
40501
40502 commit cdb8bd2fd3bcbe65d8e4334a55f5a667845426a1
40503 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40504 Date: Thu Jul 31 15:56:01 2008 +0200
40505
40506 apollon: fix build out of tree
40507
40508 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40509
40510 commit 2e752be39d3e398d4ab89ffa6634c397df298297
40511 Author: Guennadi Liakhovetski <lg@denx.de>
40512 Date: Thu Jul 31 12:35:04 2008 +0200
40513
40514 Uncompressed images loaded to their start address shall set load_end too
40515
40516 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40517 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
40518
40519 commit c37207d7f51e19c17f859966f314e27cc1231801
40520 Author: Wolfgang Denk <wd@denx.de>
40521 Date: Wed Jul 16 16:38:59 2008 +0200
40522
40523 Fix printf() format problems with configurable prompts
40524
40525 U-Boot allows for configurable prompt strings using the
40526 CONFIG_AUTOBOOT_PROMPT resp. CONFIG_MENUPROMPT definitions. So far,
40527 the assumption was that any such user defined problts would contain
40528 exactly one "%d" format specifier. But some boards did not.
40529
40530 To allow for flexible boot prompts without adding too complex code we
40531 now allow to specify the whole list of printf() arguments in the user
40532 definition. This is powerful, but requires a responsible user who
40533 really understands what he is doing, as he needs to know for exanple
40534 which variables are available in the respective context.
40535
40536 Signed-off-by: Wolfgang Denk <wd@denx.de>
40537
40538 commit 54754120637b6a7f4ff774fb199fc550bcfea1da
40539 Author: Wolfgang Denk <wd@denx.de>
40540 Date: Thu Jul 31 17:02:14 2008 +0200
40541
40542 TQM85xx: fix typo introduce by commit ffbb5cb9
40543
40544 Signed-off-by: Wolfgang Denk <wd@denx.de>
40545
40546 commit 0b4951d4cddca9cc800745891c95b291e47cbbd7
40547 Author: Wolfgang Denk <wd@denx.de>
40548 Date: Thu Jul 31 15:27:01 2008 +0200
40549
40550 mvbc_p board: fix most build warnings.
40551
40552 Signed-off-by: Wolfgang Denk <wd@denx.de>
40553
40554 commit c4ec6db074051d2f6fc76a66411c60621b22bc02
40555 Author: Wolfgang Denk <wd@denx.de>
40556 Date: Thu Jul 31 13:57:20 2008 +0200
40557
40558 E1000: clean up CONFIG_E1000_FALLBACK_MAC handling
40559
40560 Avoid "integer constant is too large for 'long' type" warnings.
40561 And simplify the code.
40562
40563 Signed-off-by: Wolfgang Denk <wd@denx.de>
40564
40565 commit 9196b44334c330cc13de2464c59181e4db71f549
40566 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
40567 Date: Wed Jul 30 23:21:19 2008 +0400
40568
40569 8260: Making the use of gd->pci_clk dependant on the CONFIG_PCI
40570
40571 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
40572
40573 commit 6361ad4b596f5a940a01c91ae0297d98f790cbe0
40574 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
40575 Date: Wed Jul 30 23:20:32 2008 +0400
40576
40577 PPC: Add pci_clk in the global_data for CPM2 processors
40578
40579 This patch adds pci_clk field to the global_data structure for the
40580 processors which have CPM2 module in case the CONFIG_PCI is defined.
40581
40582 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
40583
40584 commit f0ff885ca64655bee6540eb8a25eed90b1152686
40585 Author: Kumar Gala <galak@kernel.crashing.org>
40586 Date: Wed Jul 30 14:13:30 2008 -0500
40587
40588 mpc85xx: Update linker scripts for Freescale boards
40589
40590 * Move to using absolute addressing always. Makes the scripts a bit more
40591 portable and common
40592 * Moved .bss after the end of the image. These allows us to have more
40593 room in the resulting binary image for code and data.
40594 * Removed .text object files that aren't really needed
40595 * Make sure _end is 4-byte aligned as the .bss init code expects this.
40596 (Its possible that the end of .bss isn't 4-byte aligned)
40597
40598 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40599
40600 commit 57c219ad5d34dd9d49991777a62e3899595f2ec7
40601 Author: Kumar Gala <galak@kernel.crashing.org>
40602 Date: Wed Jul 30 08:01:15 2008 -0500
40603
40604 Fix compile warnings in dlmalloc
40605
40606 The origional code was using on odd reference to get to the first
40607 real element in av_[]. The first two elements of the array are
40608 not used for actual bins, but for house keeping. If we are more
40609 explicit about how use the first few elements we can get rid of the
40610 warnings:
40611
40612 dlmalloc.c: In function 'malloc_extend_top':
40613 dlmalloc.c:1971: warning: dereferencing type-punned pointer will break strict-aliasing rules
40614 dlmalloc.c:1999: warning: dereferencing type-punned pointer will break strict-aliasing rules
40615 dlmalloc.c:2029: warning: dereferencing type-punned pointer will break strict-aliasing rules
40616 ...
40617
40618 The logic of how this code came to be is:
40619 bin_at(0) = (char*)&(av_[2]) - 2*SIZE_SZ
40620
40621 SIZE_SZ is the size of pointer, and av_ is arry of pointers so:
40622 bin_at(0) = &(av_[0])
40623
40624 Going from there to bin_at(0)->fd or bin_at(0)->size should be straight forward.
40625
40626 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40627
40628 commit 3f9ae1a5d43c49a8ecf497470c3d1d80255e44b9
40629 Author: Stefan Roese <sr@denx.de>
40630 Date: Wed Jul 30 10:21:01 2008 +0200
40631
40632 ppc4xx: Fix W7OLMG compile problems by adding missing LM75 defines
40633
40634 Signed-off-by: Stefan Roese <sr@denx.de>
40635
40636 commit ebb86c4ecd37a7701358284e497ca4c6483c7cc5
40637 Author: Stefan Roese <sr@denx.de>
40638 Date: Wed Jul 30 09:59:51 2008 +0200
40639
40640 cmd_bootm.c: Fix problem with '#if (CONFIG_CMD_USB)'
40641
40642 A recent patch used '#if (CONFIG_CMD_USB)' instead of
40643 '#if defined(CONFIG_CMD_USB)'. This patch fixes this problem and makes
40644 common/bootm.c compile again.
40645
40646 Signed-off-by: Stefan Roese <sr@denx.de>
40647 Acked-by: Markus Klotzbuecher <mk@denx.de>
40648
40649 commit 2cb9080427fe641dcb71da46cd0634dd406f37ed
40650 Author: Kyungmin Park <kmpark@infradead.org>
40651 Date: Tue Jul 22 08:01:43 2008 +0900
40652
40653 Remove unused I2C at apollon board
40654
40655 There are no I2C devices on this board.
40656
40657 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
40658
40659 commit 3c95960e526b3b026da20201db64526f46faf14b
40660 Author: Wolfgang Denk <wd@denx.de>
40661 Date: Thu Jul 31 10:12:09 2008 +0200
40662
40663 at91rm9200dk, csb637: fix NAND related build problems
40664
40665 Tried fixing NAND support for the at91rm9200dk board; untested.
40666 Disabled NAND support in the csb637 board config file.
40667
40668 Signed-off-by: Wolfgang Denk <wd@denx.de>
40669
40670 commit 9246f5ecfd353ae297a02ffd5328402acf16c9dd
40671 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40672 Date: Wed Jul 30 12:39:28 2008 +0200
40673
40674 ppc4xx: ML507: Environment in flash and MTD Support
40675
40676 - Relocate the location of U-Boot in the flash
40677 - Save the environment in one sector of the flash memory
40678 - MTD Support
40679
40680 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40681 Signed-off-by: Stefan Roese <sr@denx.de>
40682
40683 commit a8a16af4d59d14cc1c1187c10aaad80d6b8394b5
40684 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40685 Date: Tue Jul 29 17:16:10 2008 +0200
40686
40687 ppc4xx: ML507: Use of get_ram_size in board ml507
40688
40689 - Change suggested by WD
40690
40691 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40692 Signed-off-by: Stefan Roese <sr@denx.de>
40693
40694 commit 01a004313c5ec2d128b611df4c208b1b0d3c3fb4
40695 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40696 Date: Mon Jul 21 20:30:07 2008 +0200
40697
40698 ppc4xx: ML507: U-Boot in flash and System ACE
40699
40700 This patch allows booting from FLASH the ML507 board by Xilinx.
40701 Previously, U-Boot needed to be loaded from JTAG or a Sytem ACE CF
40702
40703 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40704 Signed-off-by: Stefan Roese <sr@denx.de>
40705
40706 commit 5c374c9ee16fee2bf68533cc4010b3c0df21f783
40707 Author: Julien May <mailinglist@miromico.ch>
40708 Date: Mon Jun 23 13:57:52 2008 +0200
40709
40710 Add support for the hammerhead (AVR32) board
40711
40712 The Hammerhead platform is built around a AVR32 32-bit microcontroller
40713 from Atmel. It offers versatile peripherals, such as ethernet, usb
40714 device, usb host etc.
40715
40716 The board also incooperates a power supply and is a Power over Ethernet
40717 (PoE) Powered Device (PD).
40718
40719 Additonally, a Cyclone III FPGA from Altera is integrated on the board.
40720 The FPGA is mapped into the 32-bit AVR memory bus. The FPGA offers two
40721 DDR2 SDRAM interfaces, which will cover even the most exceptional need
40722 of memory bandwidth. Together with the onboard video decoder the board
40723 is ready for video processing.
40724
40725 For more information see: http:///www.miromico.com/hammerhead
40726
40727 Signed-off-by: Julien May <mailinglist@miromico.ch>
40728 [haavard.skinnemoen@atmel.com: various small fixes and adaptions]
40729 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
40730
40731 commit 09d318a8bb1444ec92e31cafcdba877eb9409e58
40732 Author: Kumar Gala <galak@kernel.crashing.org>
40733 Date: Tue Jul 29 12:23:49 2008 -0500
40734
40735 fsl_i2c: Use timebase timer functions instead of get_timer()
40736
40737 The current implementation of get_timer() is only really useful after we
40738 have relocated u-boot to memory. The i2c code is used before that as part
40739 of the SPD DDR setup.
40740
40741 We actually have a bug when using the get_timer() code before relocation
40742 because the .bss hasn't been setup and thus we could be reading/writing
40743 a random location (probably in flash).
40744
40745 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40746
40747 commit 4fc72a0d6ca85070a5e90d76cc5a853526ac09c4
40748 Author: Frank Svendsbøe <frank.svendsboe@gmail.com>
40749 Date: Tue Jul 29 14:49:31 2008 +0200
40750
40751 Adder8xx: Fix CFG_MONITOR_LEN
40752
40753 Due to increased space usage, U-Boot can no longer be stored in three sectors.
40754 The current U-Boot use just over three flash sectors (197k), and U-Boot will
40755 become corrupt after saving environment variables. This patch adds another 64k
40756 to CFG_MONITOR_LEN.
40757
40758 Signed-off-by: Frank E. Svendsbøe <frank.svendsboe@gmail.com>
40759
40760 commit a4c59ad4a21140550ada6f97690d2527c4146ce5
40761 Author: Kyungmin Park <kmpark@infradead.org>
40762 Date: Tue Jul 29 08:47:57 2008 +0900
40763
40764 Add OneNAND IPL related files to gitignore
40765
40766 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
40767
40768 commit 8d87589e8e874df7120a3d9667f051bc33bac250
40769 Author: Rafal Jaworowski <raj@semihalf.com>
40770 Date: Mon Jul 28 20:38:25 2008 +0200
40771
40772 API: Teach the storage layer about SATA and MMC options.
40773
40774 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
40775 Acked-by: Rafal Jaworowski <raj@semihalf.com>
40776
40777 commit 6b73b754f782e1ecce5048bf20b22ce56a07a5b8
40778 Author: Rafal Jaworowski <raj@semihalf.com>
40779 Date: Mon Jul 28 20:37:48 2008 +0200
40780
40781 API: Dump contents of sector 0 in the demo application.
40782
40783 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
40784 Acked-by: Rafal Jaworowski <raj@semihalf.com>
40785
40786 commit 13ca6305f2eba49c175f6370c35286141059c789
40787 Author: Rafal Jaworowski <raj@semihalf.com>
40788 Date: Mon Jul 28 20:37:10 2008 +0200
40789
40790 API: Correct storage enumeration routine, other minor fixes in API storage area.
40791
40792 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
40793 Acked-by: Rafal Jaworowski <raj@semihalf.com>
40794
40795 commit 05c7fe0f049b1c9eb9a1992f27e5e350d865f4a8
40796 Author: Rafal Jaworowski <raj@semihalf.com>
40797 Date: Mon Jul 28 20:36:19 2008 +0200
40798
40799 API: Fix compilation warnings in api_examples/demo.c.
40800
40801 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
40802
40803 commit c14eefcc48212af2f3314809605698dd8393a90a
40804 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40805 Date: Sun Jul 27 17:09:43 2008 +0200
40806
40807 Fix more printf() format warnings
40808
40809 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40810
40811 commit 936897d4d1365452bbbdf8430db5e7769ef08d38
40812 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40813 Date: Fri Jul 25 15:18:16 2008 +0200
40814
40815 Fix remaining CFG_CMD_ define, ifdef and comments
40816
40817 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40818
40819 commit 5d1d00fb36005482e1803a00ddc46efa11d719af
40820 Author: Stefano Babic <sbabic@denx.de>
40821 Date: Fri Jul 25 08:57:40 2008 +0200
40822
40823 Add include for config.h in command.h.
40824
40825 Because the cmd_tbl_s structure depends on the configuration file, it
40826 must be assured that config.h is included before the structure is
40827 evaluated by the compiler. If this is not certain, it could happen
40828 that the compiler generates structures of different size, depending
40829 on the fact if the source file includes <config.h> before or after
40830 <command.h>.
40831
40832 The effect is that u-boot crashes when tries to relocate the command
40833 table (for ppc) or try to access to the command table for other
40834 architectures.
40835
40836 The problem can happen on board-depending commands. All general
40837 commands under /common are unaffected, because they include already
40838 config.h before command.h.
40839
40840 Signed-off-by: Stefano Babic <sbabic@denx.de>
40841
40842 commit 2dacb734bac9dba1db9e704d3e0b200ef521c79a
40843 Author: Scott Wood <scottwood@freescale.com>
40844 Date: Wed Jul 23 13:16:06 2008 -0500
40845
40846 NAND: $(obj)-qualify ecc.h in kilauea NAND boot Makefile.
40847
40848 This fixes building out-of-tree.
40849
40850 Signed-off-by: Scott Wood <scottwood@freescale.com>
40851
40852 commit 36d59bd9da9e15d19b867b48449408830f4e2ad5
40853 Author: Heiko Schocher <hs@denx.de>
40854 Date: Wed Jul 23 07:30:46 2008 +0200
40855
40856 Fix warnings if compiling with IDE support.
40857
40858 cmd_ide.c:827: Warnung: weak declaration of `ide_outb' after first use results in unspecified behavior
40859 cmd_ide.c:839: Warnung: weak declaration of `ide_inb' after first use results in unspecified behavior
40860
40861 Signed-off-by: Heiko Schocher <hs@denx.de>
40862
40863 commit 7610db17fd4d59c51d825488526d85ede2f06767
40864 Author: Adrian Filipi <adrian.filipi@eurotech.com>
40865 Date: Tue Jul 22 14:28:11 2008 -0400
40866
40867 Removed support for the adsvix board.
40868
40869 Support for the adsvix was originally provided by Applied Data
40870 Systems (ADS), inc., now EuroTech, Inc.
40871 The board never shipped aside from some sample boards.
40872
40873 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
40874
40875 commit f96b44cef897bd372beb86dde1b33637c119d84d
40876 Author: Remy Bohmer <linux@bohmer.net>
40877 Date: Tue Jul 22 16:22:11 2008 +0200
40878
40879 ARM: set GD_FLG_RELOC for boards skipping relocation to RAM
40880
40881 If CONFIG_SKIP_RELOCATE_UBOOT is set the flag GD_FLG_RELOC is usually
40882 never set, because relocation to RAM is actually never done by U-boot
40883 itself. However, several pieces of code check if this flag is set at
40884 some time.
40885
40886 So, to make sure this flag is set on boards skipping relocation, this
40887 is added to the initialisation of U-boot at a moment where it is safe
40888 to do so.
40889
40890 Signed-off-by: Remy Bohmer <linux@bohmer.net>
40891
40892 commit e4dafff86f289b5677143a3e41da7b45c6d27fc7
40893 Author: Timur Tabi <timur@freescale.com>
40894 Date: Mon Jul 21 14:26:23 2008 -0500
40895
40896 fsl-i2c: fix writes to data segment before relocation
40897
40898 Prevent i2c_init() in fsl_i2c.c from writing to the data segment before
40899 relocation. Commit d8c82db4 added the ability for i2c_init() to program the
40900 I2C bus speed and save the value in i2c_bus_speed[], which is a global
40901 variable. It is an error to write to the data segment before relocation,
40902 which is what i2c_init() does when it stores the bus speed in i2c_bus_speed[].
40903
40904 Signed-off-by: Timur Tabi <timur@freescale.com>
40905
40906 commit dbd32387920e5ad6f9dd58a7b5012bbabe2a6a21
40907 Author: Wolfgang Ocker <weo@reccoware.de>
40908 Date: Mon Jul 28 16:56:51 2008 +0200
40909
40910 mips: Fix baudrate divisor computation on alchemy cpus
40911
40912 Use CFG_MIPS_TIMER_FREQ when computing the baudrate divisor
40913 on alchemy cpus.
40914
40915 Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
40916 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
40917
40918 commit c8c845cfdc6d0217135c1d5927eebd2b133a3314
40919 Author: Ben Warren <biggerbadderben@gmail.com>
40920 Date: Sat Jul 5 00:08:48 2008 -0700
40921
40922 Moved initialization of AVR32 Ethernet controllers to board_eth_init()
40923
40924 Renamed initialization functions for atngw100 and atstk1000.
40925 Removed initializations for these boards from net/eth.c
40926
40927 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40928 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
40929
40930 commit a229d291f33308ab7761d39f25fa1a53c0fc00a2
40931 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
40932 Date: Wed Jul 23 10:55:46 2008 +0200
40933
40934 spi flash: Fix printf() format warnings
40935
40936 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
40937
40938 commit 252a5e0738bcafaf25f7fbb40f19a59abc2cb13e
40939 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
40940 Date: Wed Jul 23 10:55:31 2008 +0200
40941
40942 atmel_mci: Fix printf() format warnings
40943
40944 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
40945
40946 commit 7f4b009f4232d57084ce0ec5aeb3b57bccb08e4c
40947 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
40948 Date: Wed Jul 23 10:55:15 2008 +0200
40949
40950 avr32: Fix printf() format warnings
40951
40952 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
40953
40954 commit a79c3e8d9c31db25d5ca3ec8e08a97f323410dd4
40955 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
40956 Date: Wed Jul 23 10:52:19 2008 +0200
40957
40958 avr32: asm/io.h needs asm/types.h
40959
40960 map_physmem() takes a phys_addr_t as parameter. This type is defined in
40961 asm/types.h, so we need to include that file.
40962
40963 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
40964
40965 commit 1953d128fd07f07d1c3810a28c0863ea64dae1b6
40966 Author: Michal Simek <monstr@monstr.eu>
40967 Date: Thu Jul 17 12:25:46 2008 +0200
40968
40969 microblaze: Fix printf() format issues
40970
40971 Signed-off-by: Michal Simek <monstr@monstr.eu>
40972
40973 commit de2a07e534f18b1ca5f9869a4ef0604ca829cff0
40974 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
40975 Date: Thu Jul 17 07:27:51 2008 +0530
40976
40977 Remove unused code from lib_arm/bootm.c
40978
40979 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
40980
40981 commit ffbb5cb942e9856fa24e946977e0a60c64df04ab
40982 Author: Detlev Zundel <dzu@denx.de>
40983 Date: Wed Jul 16 18:56:45 2008 +0200
40984
40985 tqm85xx: Demystify 'DK: !!!' comment
40986
40987 Signed-off-by: Detlev Zundel <dzu@denx.de>
40988
40989 commit b2f44ba570f3a01113bbb745daf46f3858d22f53
40990 Author: Detlev Zundel <dzu@denx.de>
40991 Date: Wed Jul 16 18:56:44 2008 +0200
40992
40993 83xx/85xx/86xx: Add LTEDR local bus definitions
40994
40995 Signed-off-by: Detlev Zundel <dzu@denx.de>
40996
40997 commit f13f64cf42d5abec3e0f920233f6a7a61e7ae494
40998 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40999 Date: Wed Jul 16 16:22:32 2008 +0200
41000
41001 serial_xuartlite.c: fix compiler warnings
41002
41003 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41004 Acked-by: Grant Likely <grant.likely@secretlab.ca>
41005
41006 commit 86446d3a5d9d3ca81e85d1ccd3accaaae6f8e3c9
41007 Author: Stefan Roese <sr@denx.de>
41008 Date: Fri Jul 18 11:03:35 2008 +0200
41009
41010 POST: Add disable interrupts in some of the missing CPU POST tests
41011
41012 Some CPU POST tests did not disable the interrupts while running. This
41013 seems to be necessary to protect this self modifying code.
41014
41015 Signed-off-by: Stefan Roese <sr@denx.de>
41016
41017 commit 97a3bf268d096e0e97e54048448c35114edcf557
41018 Author: Stefan Roese <sr@denx.de>
41019 Date: Fri Jul 18 10:43:24 2008 +0200
41020
41021 ide: Use CFG_64BIT_LBA instead of CFG_64BIT_STRTOUL
41022
41023 This is needed for boards that define CFG_64BIT_STRTOUL but don't define
41024 CFG_64BIT_LBA.
41025
41026 Signed-off-by: Stefan Roese <sr@denx.de>
41027
41028 commit 0043ac55024963295fc79b39af85b6dc3b261e17
41029 Author: Niklaus Giger <niklaus.giger@netstal.com>
41030 Date: Fri Jul 18 11:22:23 2008 +0200
41031
41032 POST PPC4xx/spr IVPR only if PPC440
41033
41034 The SPR IVPR register is only present (as far as I know) for
41035 processors with a PPC440 core.
41036
41037 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
41038 Acked-by: Stefan Roese <sr@denx.de>
41039
41040 commit 1092fbd64748dfa2e979b102611ece9bc5ec1855
41041 Author: Stefan Roese <sr@denx.de>
41042 Date: Fri Jul 18 10:42:29 2008 +0200
41043
41044 ppc4xx: Enable 64bit printf format on 440/460 platforms
41045
41046 This patch defines CFG_64BIT_VSPRINTF and CFG_64BIT_STRTOUL for all
41047 440/460 platforms. This may be needed since those platforms support
41048 36bit physical address space.
41049
41050 Signed-off-by: Stefan Roese <sr@denx.de>
41051
41052 commit 66fe183b1dd9c7534605147a8ecfed1c02345ee5
41053 Author: Stefan Roese <sr@denx.de>
41054 Date: Fri Jul 18 15:57:23 2008 +0200
41055
41056 ppc4xx: Fix incorrect MODTx setup for some DIMM configurations
41057
41058 This patch fixes a problem with incorrect MODTx (On Die Termination)
41059 setup for a configuration with multiple DIMM's and multiple ranks.
41060 Without this change Katmai was unable to boot Linux with DDR2 frequency
41061 >= 533MHz and mem>=3GB. With this patch Katmai successfully boots Linux
41062 with DDR2 frequency = 640MHz and mem=4GB.
41063
41064 Signed-off-by: Stefan Roese <sr@denx.de>
41065
41066 commit 60204d06ed9f8c2a67cc79eb67fd2b1d22bcbc8c
41067 Author: Stefan Roese <sr@denx.de>
41068 Date: Fri Jul 18 12:24:41 2008 +0200
41069
41070 ppc4xx: Minor coding style cleanup of Xilinx Virtex5 ml507 support
41071
41072 Signed-off-by: Stefan Roese <sr@denx.de>
41073
41074 commit 086511fc96a8a9bb56e5e19a3d84c40f4dba80cc
41075 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41076 Date: Thu Jul 17 12:47:09 2008 +0200
41077
41078 ppc4xx: ML507 Board Support
41079
41080 The Xilinx ML507 Board is a Virtex 5 prototyping board that includes,
41081 among others:
41082 -Virtex 5 FX FPGA (With a ppc440x5 in it)
41083 -256MB of SDRAM2
41084 -32MB of Flash
41085 -I2C Eeprom
41086 -System ACE chip
41087 -Serial ATA connectors
41088 -RS232 Level Conversors
41089 -Ethernet Transceiver
41090
41091 This patch gives support to a standard design produced by EDK for this
41092 board: ppc440, uartlite, xilinx_int and flash
41093
41094 - Includes Changes propossed by Stefan Roese and Michal Simek
41095
41096 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41097 Acked-by: Stefan Roese <sr@denx.de>
41098
41099 commit d865fd09809a3a18669f35f970781820af40e4de
41100 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41101 Date: Thu Jul 17 11:44:12 2008 +0200
41102
41103 ppc4xx: CPU PPC440x5 on Virtex5 FX
41104
41105 -This patchs gives support for the embbedded ppc440
41106 on the Virtex5 FPGAs
41107 -interrupts.c divided in uic.c and interrupts.c
41108 -xilinx_irq.c for xilinx interrupt controller
41109 -Include modifications propossed by Stefan Roese
41110
41111 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41112 Acked-by: Stefan Roese <sr@denx.de>
41113
41114 commit 340ccb260f21516be360745d5c5e3bd0657698df
41115 Author: Sebastian Siewior <bigeasy@linutronix.de>
41116 Date: Wed Jul 16 20:04:49 2008 +0200
41117
41118 cfi_flash: fix flash on BE machines with CFG_WRITE_SWAPPED_DATA
41119
41120 This got broken by commits 93c56f212c
41121 [cfi_flash: support of long cmd in U-boot.]
41122
41123 That command needs to be in little endian format on BE machines
41124 with CFG_WRITE_SWAPPED_DATA. Without this patch, the command 0xf0
41125 gets saved on stack as 0x00 00 00 f0 and 0x00 gets written into
41126 the cmdbuf in case portwidth = chipwidth = 8bit.
41127
41128 Cc: Alexey Korolev <akorolev@infradead.org>
41129 Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
41130 Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
41131
41132 commit 11188d55bc16dd907451c00282e00a038f73dd62
41133 Author: Stefan Roese <sr@denx.de>
41134 Date: Thu Jul 17 10:40:51 2008 +0200
41135
41136 ppc4xx: Fix alphabetical order in 4xx Makefile part (redwood)
41137
41138 Signed-off-by: Stefan Roese <sr@denx.de>
41139
41140 commit 021f6df6e96af5b387810cf96d24848da1faa55c
41141 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41142 Date: Thu Jul 10 17:20:51 2008 +0400
41143
41144 83xx: mpc8315erdb: fix silly thinko in fdt_tsec1_fixup
41145
41146 The thinko was quite silly indeed, I messed with !ptr. Normally this
41147 would trigger some fault, but in U-Boot NULL pointer is equal to phys
41148 0, so the code was working still, just didn't actually test mpc8315erdb
41149 environment variable value. Heh.
41150
41151 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41152 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41153
41154 commit 25f5f0d49a3ae89bf4396f2557ce98debfef21da
41155 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41156 Date: Tue Jul 8 21:00:04 2008 +0400
41157
41158 83xx: mpc8315erdb: add support for switching between ULPI/UTMI USB PHYs
41159
41160 Freescale ships MPC8315E-RDB boards either with TSEC1 and USB UTMI
41161 support, or without TSEC1 but with USB ULPI PHY support in addition.
41162 With this patch user can specify desired USB PHY.
41163
41164 Also, it seems that we can't distinguish the two boards in software, so
41165 user have to set `mpc8315erdb' environment variable to either 'tsec1'
41166 (TSEC1 enabled) or `ulpi' (board with ULPI PHY, TSEC1 disabled), so that
41167 Linux will not probe for TSEC1.
41168
41169 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41170 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41171
41172 commit 015b27b9e165fcf220e42f2c4afbaeaa2758fcf6
41173 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41174 Date: Tue Jul 8 20:59:43 2008 +0400
41175
41176 fdt_support: fdt_fixup_dr_usb: add support for phy_type fixups
41177
41178 Currently U-Boot can only fixup the usb dr_mode, but some boards (namely
41179 MPC8315E-RDB) can use two PHY types: ULPI (stand-alone OTG port) or UTMI
41180 (connected to the four-ports hub, usb host only).
41181
41182 This patch implements support for passing Dual-Role USB controller's
41183 device tree property phy_type through the usb_phy_type environment
41184 variable.
41185
41186 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41187 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
41188 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41189
41190 commit 699f05125509249072a0b865c8d35520d97cd501
41191 Author: Wolfgang Denk <wd@denx.de>
41192 Date: Tue Jul 15 22:22:44 2008 +0200
41193
41194 Prepare v1.3.4-rc1: Code cleanup, update CHANGELOG, sort Makefile
41195
41196 Signed-off-by: Wolfgang Denk <wd@denx.de>
41197
41198 commit bcab74baa6b1b1c969038ab6f64a186239180405
41199 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41200 Date: Tue Jul 15 11:23:02 2008 -0400
41201
41202 Round the serial port clock divisor value returned by calc_divisor()
41203
41204 Round the serial port clock divisor value returned by
41205 calc_divisor()
41206
41207 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41208 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
41209
41210 commit 0328ef0edfe950f0b7b8b368dae482531506b74a
41211 Author: Robin Getz <rgetz@blackfin.uclinux.org>
41212 Date: Tue Jul 15 21:44:46 2008 +0200
41213
41214 Fix DHCP protocol so U-Boot does not respond too early
41215 on the network with it's offered IP number; it should not reply until
41216 after it has received a DHCP ACK message. Also ensures that U-Boot
41217 does it's DHCPREQUEST as broadcast (per RFC 2131).
41218
41219 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
41220 Acked-by: Ben Warren <biggerbadderben@gmail.com>
41221 Signed-off-by: Wolfgang Denk <wd@denx.de>
41222
41223 commit 7288f972fcaee14a9741cb08c8688a23874b4a2e
41224 Author: Sebastian Siewior <bigeasy@linutronix.de>
41225 Date: Tue Jul 15 13:35:23 2008 +0200
41226
41227 cfi_flash: make the command u32 only
41228
41229 This got changed by commit 93c56f212c
41230 [cfi_flash: support of long cmd in U-boot.]
41231
41232 Long is the wrong type because it will behave differently on 64bit
41233 machines in a way that is probably not expected. u32 should be
41234 enough.
41235
41236 Cc: Alexey Korolev <akorolev@infradead.org>
41237 Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
41238 Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
41239
41240 commit 31cfe57491b183acae575d486729e158f016c27b
41241 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41242 Date: Mon Jul 14 23:48:41 2008 +0200
41243
41244 tools/gitignore: update to all generated files
41245
41246 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41247
41248 commit 5e0de0e216b8fb27634afb11c60a2fa24c23349e
41249 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
41250 Date: Wed Jul 9 18:30:44 2008 +0200
41251
41252 mpc5xxx: Add MVBC_P board support
41253
41254 The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet
41255 controller (using e1000) and custom Altera Cyclone-II FPGA on PCI.
41256
41257 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
41258 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41259
41260 commit e2d31fb3450653115452144363d5bde4e5e3e693
41261 Author: Timur Tabi <timur@freescale.com>
41262 Date: Thu Jun 19 17:56:11 2008 -0500
41263
41264 Update Freescale sys_eeprom.c to handle CCID formats
41265
41266 Update the sys_eeprom.c file to handle both NXID and CCID EEPROM formats. The
41267 NXID format replaces the older CCID format, but it's important to support both
41268 since most boards out there still use the CCID format. This change is in
41269 preparation for using one file to handle both formats. This will also unify
41270 EEPROM support for all Freescale 85xx and 86xx boards.
41271
41272 Also update the 86xx board header files to use the standard CFG_I2C_EEPROM_ADDR
41273 instead of ID_EEPROM_ADDR.
41274
41275 Signed-off-by: Timur Tabi <timur@freescale.com>
41276
41277 commit d85f46a25ccb33ed9b295de3c2cfe1ce270ece9a
41278 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
41279 Date: Fri Jul 11 17:22:43 2008 +0900
41280
41281 pci: sh: Add pci_skip_dev and pci_print_dev function
41282
41283 Add function of new PCI, pci_skip_dev and pci_print_dev.
41284
41285 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
41286 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41287
41288 commit 1107014e835ec9d46c0333f4211d104f77442db0
41289 Author: Andy Fleming <afleming@freescale.com>
41290 Date: Mon Jul 14 20:29:07 2008 -0500
41291
41292 Clean up INIT_RAM options
41293
41294 The L2_INIT_RAM option was unused, and recent changes to the TLB code
41295 meant that the INIT_RAM TLBs weren't being cleared out. In order to reduce
41296 the amount of mapped space attached to nothing, we change things so the TLBs
41297 get cleared.
41298
41299 Signed-off-by: Andy Fleming <afleming@freescale.com>
41300
41301 commit 4524561820a9327e89107854b3a7187800ccf719
41302 Author: Andy Fleming <afleming@freescale.com>
41303 Date: Mon Jul 14 20:26:57 2008 -0500
41304
41305 Remove fake flash bank from 8544 DS
41306
41307 The fake flash bank was generating errors for anyone who didn't have a
41308 PromJET hooked up to the board. As that constitutes the vast majority of
41309 users, we remove it.
41310
41311 Signed-off-by: Andy Fleming <afleming@freescale.com>
41312
41313 commit 630d9bfcb5f6d3a43f251901a6b480994dcb6ea3
41314 Author: Kumar Gala <galak@kernel.crashing.org>
41315 Date: Mon Jul 14 14:07:03 2008 -0500
41316
41317 MPC8544DS: Add ATI Video card support
41318
41319 Add support for using a PCIe ATI Video card on PCIe2.
41320
41321 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41322
41323 commit 7f9f4347cf325c63a39fe30910f3fb211ae2cc15
41324 Author: Kumar Gala <galak@kernel.crashing.org>
41325 Date: Mon Jul 14 14:07:02 2008 -0500
41326
41327 85xx: Add some L1/L2 SPR register definitions
41328
41329 Add new L1/L2 SPRs related to e500mc cache config and control.
41330
41331 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41332
41333 commit e5852787f0c3c442a276262f13d91ca450605ac0
41334 Author: Kumar Gala <galak@kernel.crashing.org>
41335 Date: Mon Jul 14 14:07:01 2008 -0500
41336
41337 MPC8544DS: Report board id, board version and fpga version.
41338
41339 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41340
41341 commit 73f15a060f67a2462551c334215bd20fac6b81d1
41342 Author: Kumar Gala <galak@kernel.crashing.org>
41343 Date: Mon Jul 14 14:07:00 2008 -0500
41344
41345 85xx: Cleanup L2 cache size detection
41346
41347 The L2 size detection code was a bit confusing and we kept having to add
41348 code to it to handle new processors. Change the sense of detection so we
41349 look for the older processors that aren't changing.
41350
41351 Also added support for 1M cache size on 8572.
41352
41353 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41354
41355 commit c3ca7e5e00a24451f20df3bded9a61ba541921df
41356 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
41357 Date: Fri Jul 11 15:33:08 2008 -0400
41358
41359 sbc8560: enable CONFIG_OF_LIBFDT by default
41360
41361 Make the default build for the sbc8560 board be powerpc
41362 capable with libfdt support.
41363
41364 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
41365
41366 commit 6b44a44ec2aab180d7095c1c92e669cee1d3e3bd
41367 Author: Andy Fleming <afleming@freescale.com>
41368 Date: Mon Jul 14 20:04:40 2008 -0500
41369
41370 Fix indentation for default boot environment variables
41371
41372 This was proposed by Paul Gortmaker in response to Wolfgang's comments on
41373 similar #defines in sbc8560.h.
41374
41375 Signed-off-by: Andy Fleming <afleming@freescale.com>
41376
41377 commit 37fef499104e28e0a83b02b85ca0d1fbe80d294a
41378 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
41379 Date: Fri Jul 11 15:33:07 2008 -0400
41380
41381 sbc8560: add default fdt values
41382
41383 Add in the default fdt settings and the typical EXTRA_ENV
41384 settings as borrowed from the mpc8560ads. Fix a couple
41385 of stale references to the mpc8560ads dating back to the
41386 original clone/fork.
41387
41388 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
41389 Signed-off-by: Andy Fleming <afleming@freescale.com>
41390
41391 commit d04e76edf92f7f89696989e8702b97e020455af3
41392 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
41393 Date: Fri Jul 11 15:33:06 2008 -0400
41394
41395 sbc8560: add in ft_board_setup()
41396
41397 Add in for the sbc8560, the ft_board_setup() routine, based on what is
41398 in use for the Freescale MPC8560ADS board.
41399
41400 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
41401
41402 commit c158bcaca3b31cbe38c4143812e6170e38a57393
41403 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
41404 Date: Fri Jul 11 15:33:05 2008 -0400
41405
41406 sbc8560: define eth0 and eth1 instead of eth1 and eth2
41407
41408 The existing config doesn't define CONFIG_HAS_ETH0, and so the
41409 fdt support doesn't update the zeros in the dtb local-mac with
41410 real data from the u-boot env. Since the existing config is
41411 tailored to just two interfaces, get rid of the ETH2 definitions
41412 at the same time.
41413
41414 Also don't include any end user specific data into the environment
41415 by default -- things like MAC address, network parameters etc. need
41416 to come from the end user.
41417
41418 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
41419 Signed-off-by: Andy Fleming <afleming@freescale.com>
41420
41421 commit 0ec436d2f95076d9e46ae594db6e9b1d8732840d
41422 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
41423 Date: Fri Jul 11 15:33:04 2008 -0400
41424
41425 sbc8560: properly set cs0_bnds for 512MB
41426
41427 The sbc8560 board ships with 512MB of memory installed,
41428 but the current cs0_bnds is hard coded for 256MB. Set the
41429 value based on CFG_SDRAM_SIZE.
41430
41431 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
41432
41433 commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27
41434 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
41435 Date: Fri Jul 11 15:33:03 2008 -0400
41436
41437 sbc8560: proper definitions for TSEC.
41438
41439 The definitions for the TSEC have become out of date. There is no
41440 longer any such options like "CONFIG_MPC85xx_TSEC1" or similar.
41441 Update to match those of other boards, like the MPC8560ADS.
41442
41443 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
41444 Acked-by: Ben Warren <biggerbadderben@gmail.com>
41445
41446 commit 71074abbe0c76429577aff58aeff0a24ad210b23
41447 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
41448 Date: Wed Jul 9 13:23:05 2008 -0400
41449
41450 8xxx-fdt: set ns16550 clock from CFG_NS16550_CLK, not bi_busfreq
41451
41452 Some boards that have external 16550 UARTs don't have a direct
41453 tie between bi_busfreq and the clock used for the UARTs. Boards
41454 that do have such a tie should set CFG_NS16550_CLK to be
41455 get_bus_freq(0) -- which most of them do already.
41456
41457 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
41458 Acked-by: Kim Phillips <kim.phillips@freescale.com>
41459
41460 commit 24ef76f320fbadf074105229826514db140f939f
41461 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
41462 Date: Wed Jul 2 07:03:53 2008 -0700
41463
41464 Change the temp map to ROM to align addresses to page size.
41465
41466 With a page size of BOOKE_PAGESZ_16M, both the real and effective
41467 addresses must be multiples of 16MB. The hardware silently truncates
41468 them so the code happens to work. This patch clarifies the situation
41469 by establishing addresses that the hardware doesn't need to truncate.
41470
41471 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
41472 Signed-off-by: Andy Fleming <afleming@freescale.com>
41473
41474 commit 06b4186c10204b6683edb047ac5f506fb0ce0937
41475 Author: Kim Phillips <kim.phillips@freescale.com>
41476 Date: Tue Jun 17 17:45:22 2008 -0500
41477
41478 mpc85xx: use IS_E_PROCESSOR macro
41479
41480 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41481
41482 commit 6b70ffb9d1b2e791161f3cf92937aa45b4a07b78
41483 Author: Kim Phillips <kim.phillips@freescale.com>
41484 Date: Mon Jun 16 15:55:53 2008 -0500
41485
41486 fdt: add crypto node handling for MPC8{3, 5}xxE processors
41487
41488 Delete the crypto node if not on an E-processor. If on 8360 or 834x family,
41489 check rev and up-rev crypto node (to SEC rev. 2.4 property values)
41490 if on an 'EA' processor, e.g. MPC8349EA.
41491
41492 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41493
41494 commit 85e5808e8ea9f77da5219f23394112f0b424fa5e
41495 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41496 Date: Fri Jul 11 15:10:11 2008 -0400
41497
41498 ARM DaVinci: Remove extern phy_t declaration by moving code to proper place
41499
41500 ARM DaVinci: Remove extern phy_t declaration by moving
41501 code to proper place.
41502
41503 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41504
41505 commit 3a9e7ba2ac14018c5dd1e78a7dd735571569c971
41506 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41507 Date: Fri Jul 11 15:10:10 2008 -0400
41508
41509 ARM DaVinci: Remove duplicate definitions of MACH_TYPE and prototype of i2c_init()
41510
41511 ARM DaVinci: Remove duplicate definitions of MACH_TYPE
41512 and prototype of i2c_init().
41513
41514 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41515
41516 commit 348753d416cd2c9e7ec6520a544c8f33cf02a560
41517 Author: Kumar Gala <galak@kernel.crashing.org>
41518 Date: Mon Jul 14 14:03:02 2008 -0500
41519
41520 Fix some more printf() format problems.
41521
41522 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41523
41524 commit 45b16d22c64674ccd8c4637456a987463609141c
41525 Author: Wolfgang Denk <wd@denx.de>
41526 Date: Mon Jul 14 22:38:42 2008 +0200
41527
41528 Fix coding style; make code better parsable by external tools
41529
41530 Signed-off-by: Wolfgang Denk <wd@denx.de>
41531
41532 commit b880cbf207b1c109d3a661417a8feddcbd729a9d
41533 Author: Wolfgang Denk <wd@denx.de>
41534 Date: Mon Jul 14 21:19:08 2008 +0200
41535
41536 cpu/i386/serial.c: Fix syntax errors
41537
41538 Signed-off-by: Wolfgang Denk <wd@denx.de>
41539
41540 commit e2d45e6f4d9919e1afeac5e09557b2252832fccf
41541 Author: Wolfgang Denk <wd@denx.de>
41542 Date: Mon Jul 14 20:41:35 2008 +0200
41543
41544 elppc board: Coding style cleanup.
41545
41546 Signed-off-by: Wolfgang Denk <wd@denx.de>
41547
41548 commit 82b24a8a505fc81466484b3c55b574ee0b4205bc
41549 Author: Wolfgang Denk <wd@denx.de>
41550 Date: Mon Jul 14 20:40:22 2008 +0200
41551
41552 elppc board: fix syntax error.
41553
41554 Signed-off-by: Wolfgang Denk <wd@denx.de>
41555
41556 commit 0fe340585a6a48bd392d315b0dd84d068b1c3790
41557 Author: Wolfgang Denk <wd@denx.de>
41558 Date: Mon Jul 14 20:38:26 2008 +0200
41559
41560 EB+MCF-EV123 board: fix coding style (alingment)
41561
41562 Signed-off-by: Wolfgang Denk <wd@denx.de>
41563
41564 commit 6841785a0bb0f38175456a923edd634fb7dd6947
41565 Author: Wolfgang Denk <wd@denx.de>
41566 Date: Mon Jul 14 20:36:44 2008 +0200
41567
41568 EB+MCF-EV123 board: fix syntx error
41569
41570 Signed-off-by: Wolfgang Denk <wd@denx.de>
41571
41572 commit ab5cda9f88c3eaf9cf599adc3a3375906c4ed904
41573 Author: Andy Fleming <afleming@freescale.com>
41574 Date: Mon Jul 7 18:02:08 2008 -0500
41575
41576 Remove LBC_CACHE_BASE from 8544 DS
41577
41578 The 8544 DS doesn't have any cacheable Local Bus memories set up. By mapping
41579 space for some anyway, we were allowing speculative loads into unmapped space,
41580 which would cause an exception (annoying, even if ultimately harmless).
41581 Removing LBC_CACHE_BASE, and using LBC_NONCACHE_BASE for the LBC LAW solves the
41582 problem.
41583
41584 Signed-off-by: Andy Fleming <afleming@freescale.com>
41585
41586 commit d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90
41587 Author: Wolfgang Denk <wd@denx.de>
41588 Date: Mon Jul 14 15:19:07 2008 +0200
41589
41590 Code cleanup: fix old style assignment ambiguities like "=-" etc.
41591
41592 Signed-off-by: Wolfgang Denk <wd@denx.de>
41593
41594 commit d7854223c5c85b5849fbf422cc8ac0efef461c37
41595 Author: Wolfgang Denk <wd@denx.de>
41596 Date: Mon Jul 14 15:10:53 2008 +0200
41597
41598 AmigaOneG3SE: remove dead and incomplete files
41599
41600 Signed-off-by: Wolfgang Denk <wd@denx.de>
41601
41602 commit b64f190b7a34224df09b559ca111eb1b733f00ad
41603 Author: Wolfgang Denk <wd@denx.de>
41604 Date: Mon Jul 14 15:06:35 2008 +0200
41605
41606 Fix printf() format issues with sizeof_t types by using %zu
41607
41608 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41609 Signed-off-by: Wolfgang Denk <wd@denx.de>
41610
41611 commit f354b73e16a86f9e9085471a830605f74f84ea5d
41612 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41613 Date: Mon Jul 14 14:11:45 2008 +0200
41614
41615 vsprintf: add z and t options
41616
41617 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41618
41619 commit 25dbe98abb686d8210e1731fba85ced7d3ce874c
41620 Author: Wolfgang Denk <wd@denx.de>
41621 Date: Sun Jul 13 23:07:35 2008 +0200
41622
41623 Fix some more printf() format issues.
41624
41625 Signed-off-by: Wolfgang Denk <wd@denx.de>
41626
41627 commit d5996dd555edf52721b7691a4c59de016251ed39
41628 Author: Wolfgang Denk <wd@denx.de>
41629 Date: Sun Jul 13 19:51:00 2008 +0200
41630
41631 Fix some more printf() format problems.
41632
41633 Signed-off-by: Wolfgang Denk <wd@denx.de>
41634
41635 commit 0f9d5f6d6e814907794995c6a22af752040c35d9
41636 Author: Wolfgang Denk <wd@denx.de>
41637 Date: Sun Jul 13 19:48:26 2008 +0200
41638
41639 ADS5121: Fix (delete) incorrect ads5121_diu_init() prototype
41640
41641 Signed-off-by: Wolfgang Denk <wd@denx.de>
41642
41643 commit 322716a1d1eb33a71067ba0eb1c5346fb2dd6b34
41644 Author: Anatolij Gustschin <agust@denx.de>
41645 Date: Sat Jul 12 17:31:36 2008 +0200
41646
41647 Fix bug in Lime video driver
41648
41649 We need to wait while drawing engine clears frame
41650 buffer before any further software accesses to frame
41651 buffer will be initiated. Otherwise software drawn
41652 parts could be partially destroyed by the drawing
41653 engine or even GDC chip freeze could occur (as
41654 observed on socrates board).
41655
41656 Signed-off-by: Anatolij Gustschin <agust@denx.de>
41657
41658 commit 0a5676befb0c590212a53f7627fa5d0d8a84bf34
41659 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41660 Date: Sat Jul 12 14:36:34 2008 +0200
41661
41662 Fix some more printf() format issues.
41663
41664 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41665
41666 commit 18c8a28aad49803780bd8d52432ded528e37e701
41667 Author: Michal Simek <monstr@monstr.eu>
41668 Date: Fri Jul 11 15:11:57 2008 +0200
41669
41670 hwmon: rename CONFIG_DS1722 to CONFIG_DTT_DS1722
41671
41672 Signed-off-by: Michal Simek <monstr@monstr.eu>
41673 Acked-by: Stefan Roese <sr@denx.de>
41674
41675 commit 6ecbb45bb027e90c19d63b48e7b0c05acc1a87c0
41676 Author: Michal Simek <monstr@monstr.eu>
41677 Date: Fri Jul 11 11:50:53 2008 +0200
41678
41679 hwmon: Cleaning hwmon devices
41680
41681 Clean Makefile
41682 Move device specific values to driver for better reading
41683
41684 Signed-off-by: Michal Simek <monstr@monstr.eu>
41685 Acked-by: Stefan Roese <sr@denx.de>
41686
41687 commit c78fce699c7ff467ecd841da6a79f065180bf578
41688 Author: Michal Simek <monstr@monstr.eu>
41689 Date: Fri Jul 11 10:43:13 2008 +0200
41690
41691 FIS: repare incorrect return value with ramdisk handling
41692
41693 Microblaze and PowerPC use boot_get_ramdisk for loading
41694 ramdisk to memory with checking return value.
41695 Return 0 means success. Return 1 means failed.
41696 Here is correspond part of code from bootm.c which check
41697 return code.
41698
41699 ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC,
41700 &rd_data_start, &rd_data_end);
41701 if (ret)
41702 goto error;
41703
41704 Signed-off-by: Michal Simek <monstr@monstr.eu>
41705
41706 commit 84a2c64a26dc5e275e1cf4e76a6e194a18fb5477
41707 Author: Michal Simek <monstr@monstr.eu>
41708 Date: Fri Jul 11 10:10:32 2008 +0200
41709
41710 microblaze: Remove useless ancient headers
41711
41712 Signed-off-by: Michal Simek <monstr@monstr.eu>
41713
41714 commit 53ea981c3124b13c137c2d10e975b7c6672266e0
41715 Author: Michal Simek <monstr@monstr.eu>
41716 Date: Fri Jul 11 10:10:31 2008 +0200
41717
41718 microblaze: Clean uartlite driver
41719
41720 Redesign uartlite driver to in_be32 and out_be32 macros
41721 Fix missing header in io.h
41722
41723 Signed-off-by: Michal Simek <monstr@monstr.eu>
41724 Acked-by: Grant Likely <grant.likely@secretlab.ca>
41725
41726 commit dbf3dfb386a2d5d2381814e39985ab2e21894550
41727 Author: Marcel Ziswiler <marcel@ziswiler.com>
41728 Date: Fri Jul 11 02:39:14 2008 +0200
41729
41730 Enable passing of ATAGs required by latest Linux kernel.
41731
41732 commit ef130d3093bdf88f01cf3e000fe5df249ebf2b1a
41733 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41734 Date: Fri Jul 11 10:24:15 2008 -0400
41735
41736 Fix integer overflow warning in calc_divisor()
41737
41738 which happened when rounding the serial port clock divisor
41739
41740 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41741
41742 commit 6b760189d77f001684e3160b355c185ca3804961
41743 Author: Marcel Ziswiler <marcel@ziswiler.com>
41744 Date: Fri Jul 11 01:09:59 2008 +0200
41745
41746 Fix build time warnings in function mmc_decode_csd()
41747
41748 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
41749
41750 commit c15947d6ce0d59925c97fdfac692476af6e262d0
41751 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41752 Date: Thu Jul 10 10:46:33 2008 -0400
41753
41754 ARM: Fix for broken compilation when defining CONFIG_CMD_ELF
41755
41756 caused by missing dcache status/enable/disable functions.
41757
41758 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41759
41760 commit 068c1b77c8f42a1a31084d2f4b1d5cc807c1a9ce
41761 Author: Stefan Roese <sr@denx.de>
41762 Date: Thu Jul 10 13:53:31 2008 +0200
41763
41764 ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
41765
41766 This patch removes some ft_board_setup() functions from some 4xx boards.
41767 This can be done since we now have a default weak implementation for this
41768 in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
41769 implementation like canyonlands need their own version.
41770
41771 Signed-off-by: Stefan Roese <sr@denx.de>
41772
41773 commit d39a089f8bc960ba9ae6a08fda5582b578620cc1
41774 Author: Wolfgang Denk <wd@denx.de>
41775 Date: Sun Jul 13 14:58:16 2008 +0200
41776
41777 Add last known maintainer for orphaned boards; reformat.
41778
41779 Signed-off-by: Wolfgang Denk <wd@denx.de>
41780
41781 commit 5c761d57bb9940e016d561fda8b2ed84c55de5b6
41782 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
41783 Date: Thu Jul 10 13:16:04 2008 +0200
41784
41785 Remove kharris@nexus-tech.net from MAINTAINERS
41786
41787 Mail to kharris@nexus-tech.net bounces because the user doesn't exist
41788 anymore. You can't be a maintainer without a valid e-mail address, so
41789 move all boards that used to be maintained by Kyle Harris to the
41790 "orphaned" list.
41791
41792 Currently, only PowerPC has a list of orphaned boards, so this patch
41793 creates one for ARM as well.
41794
41795 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
41796
41797 commit 17bd17071463b0cde391ac4a0863d600474b4ea1
41798 Author: Anatolij Gustschin <agust@denx.de>
41799 Date: Thu Jul 10 01:15:10 2008 +0200
41800
41801 at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
41802
41803 On the at91sam9260ep development board there is an EEPROM
41804 connected to the TWI interface (PA23, PA24 Peripheral A
41805 multiplexing), so we cannot use these pins as ETX2, ETX3.
41806 This patch configures PA10, PA11 pins for ETX2, ETX3
41807 instead of PA23, PA24 pins.
41808
41809 Signed-off-by: Anatolij Gustschin <agust@denx.de>
41810 Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de>
41811
41812 commit f889265753ddf4465d9d580827bb9289bfac55d6
41813 Author: Kenneth Johansson <kenneth@southpole.se>
41814 Date: Sat Jul 12 13:18:34 2008 -0600
41815
41816 fix DIU for small screens
41817
41818 The DIU_DIV register is 8 bit not 5 bit. This prevented large DIV values
41819 so it was not possible to set a slow pixel clock and thus prevented
41820 display on small screens.
41821
41822 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
41823 Acked-by: John Rigby <jrigby@freescale.com>
41824
41825 commit b60b8573875e650e4c69be667bfc88d3ed474a7c
41826 Author: John Rigby <jrigby@freescale.com>
41827 Date: Fri Jul 11 14:44:09 2008 -0600
41828
41829 ADS5121 cleanup compile warnings
41830
41831 board/ads5121/iopin.c
41832 Replace bit fields in struct iopin_t with a single
41833 field and intialize it via plain old macros.
41834 This fixes the type pun warnings and makes the code
41835 more readable.
41836
41837 board/ads5121/ads5121.c
41838 Add include iopin.h to ads5121.c for the iopin_initialize
41839 prototype.
41840
41841 Add an extern void ads5121_diu_init(void)
41842
41843 Signed-off-by: John Rigby <jrigby@freescale.com>
41844
41845 commit bde63587622c4b830a27d1ddf7265843de9e994f
41846 Author: Wolfgang Denk <wd@denx.de>
41847 Date: Fri Jul 11 22:56:11 2008 +0200
41848
41849 Fix some more printf() format issues.
41850
41851 Signed-off-by: Wolfgang Denk <wd@denx.de>
41852
41853 commit 184f1b404a90eef8b425c0e7b3018d59ef9982c8
41854 Author: Wolfgang Denk <wd@denx.de>
41855 Date: Fri Jul 11 22:55:31 2008 +0200
41856
41857 Fixed some out-of-tree build issues
41858
41859 Signed-off-by: Wolfgang Denk <wd@denx.de>
41860
41861 commit 47bf9c71ae838305a3ea3161af8d14e6f3fc2c82
41862 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41863 Date: Wed Jul 9 16:20:23 2008 -0500
41864
41865 ColdFire: Fix FB CS not setup properly for Mcf5282
41866
41867 Remove all CFG_CSn_RO in cpu/mcf52x2/cpu_init.c. If
41868 CFG_CSn_RO is defined as 0, the chipselect will not
41869 be assigned.
41870
41871 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41872
41873 commit bc3ccb139f0836f0a834cfd370a120a00ad7e63a
41874 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41875 Date: Wed Jul 9 15:47:27 2008 -0500
41876
41877 ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC
41878
41879 Rename CONFIG_MCFTMR to CONFIG_MCFRTC to include real time
41880 clock module in cpu/<cf arch>/cpu_init.c
41881
41882 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41883
41884 commit f94945b517f10e01927101679c62361e03d4e837
41885 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41886 Date: Wed Jul 9 15:25:01 2008 -0500
41887
41888 ColdFire: Fix incorrect board name in MAKEALL for M5253EVBE
41889
41890 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41891
41892 commit 0e0c4357d14a3563c6a2a1e6d5ad6a2cc4f35cab
41893 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41894 Date: Wed Jul 9 15:21:44 2008 -0500
41895
41896 Fix compile error caused by missing timer function
41897
41898 Add #define CONFIG_MCFTMR in EB+MCF-EV123.h configuration file
41899
41900 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41901
41902 commit c37ea031175b807c54e6bad9b270e9bede6c0078
41903 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41904 Date: Wed Jul 9 15:14:25 2008 -0500
41905
41906 Fix compile error caused by incorrect function return type
41907
41908 Rename int mii_init(void) to void mii_init(void)
41909
41910 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41911
41912 commit ab4860b255239dbaecccdd002c8d11f4ef54dd75
41913 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41914 Date: Wed Jun 18 19:27:23 2008 -0500
41915
41916 ColdFire: Fix power up issue for MCF5235
41917
41918 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41919
41920 commit dd08e97361fbc9e79fa5ef1a8acf29273b934b11
41921 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41922 Date: Wed Jun 18 19:19:07 2008 -0500
41923
41924 ColdFire: Fix compiling error for MCF5275
41925
41926 The compiling error was caused by missing a closed parentheses
41927 in speed.c
41928
41929 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41930
41931 commit 94603c2fd4dbe0655878416aa0da9f302d4c30d3
41932 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41933 Date: Wed Jun 18 19:14:01 2008 -0500
41934
41935 ColdFire: Fix timer issue for MCF5272
41936
41937 The timer was assigned to wrong timer memory mapped which
41938 caused udelay() and timer() not working properly.
41939
41940 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41941
41942 commit 3b1e8ac9b43f89cc9291a6a86e6b33ef55801515
41943 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41944 Date: Wed Jun 18 19:12:13 2008 -0500
41945
41946 ColdFire: Change invalid JMP to BRA caught by new v4e toolchain
41947
41948 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
41949
41950 commit 8371dc2066136be21e10b7b9293e469297d77298
41951 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41952 Date: Wed Jun 18 19:05:23 2008 -0500
41953
41954 ColdFire: Add -got=single param for new linux v4e toolchains
41955
41956 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
41957
41958 commit 56d52615cd47bc522ee13bb7ec7e59d6ce9426c7
41959 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41960 Date: Wed Jun 18 13:21:19 2008 -0500
41961
41962 ColdFire: Fix code flash configuration for M547x/M548x boards
41963
41964 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
41965
41966 commit 6e37091afc07fdcc15590093fd066b0cb7399f85
41967 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41968 Date: Tue Jun 24 12:12:16 2008 -0500
41969
41970 ColdFire: Fix warning messages by passing correct data type in board.c
41971
41972 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41973
41974 commit 81cc32322acb1b3225ee45606ced48e2a14824dc
41975 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41976 Date: Thu May 29 12:21:54 2008 -0500
41977
41978 ColdFire: Fix UART baudrate formula
41979
41980 The formula "counter = (u32) (gd->bus_clk / gd->baudrate) / 32"
41981 can generate the wrong divisor due to integer division truncation.
41982 Round the calculated divisor value by adding 1/2 the baudrate
41983 before dividing by the baudrate.
41984
41985 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
41986 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
41987
41988 commit b578fb471444cbd7db1285701ba51343baaf73fb
41989 Author: Stefan Roese <sr@denx.de>
41990 Date: Thu Jul 10 11:38:26 2008 +0200
41991
41992 ppc4xx: Fix include sequence in 4xx_pcie.c
41993
41994 This patch now moves common.h to the top of the inlcude list. This
41995 is needed for boards with CONFIG_PHYS_64BIT set (e.g. katmai), so that
41996 the phys_size_t/phys_addr_t are defined to the correct size in this
41997 driver.
41998
41999 Signed-off-by: Stefan Roese <sr@denx.de>
42000
42001 commit 69e2c6d0d13d7c8cf1612ac090bdc4c59ba6858e
42002 Author: Stefan Roese <sr@denx.de>
42003 Date: Fri Jul 11 13:10:56 2008 +0200
42004
42005 ppc4xx: Fix compile warning in 44x_spd_ddr2.c
42006
42007 Signed-off-by: Stefan Roese <sr@denx.de>
42008
42009 commit 6bd9138498c2e4f4f09190108b99157d1b2140b5
42010 Author: Stefan Roese <sr@denx.de>
42011 Date: Fri Jul 11 11:40:13 2008 +0200
42012
42013 ppc4xx: Fix small korat merge problem
42014
42015 Signed-off-by: Stefan Roese <sr@denx.de>
42016
42017 commit 1d0554736a0a1dd59718acda660871ce56b69e18
42018 Author: Stefan Roese <sr@denx.de>
42019 Date: Fri Jul 11 11:34:52 2008 +0200
42020
42021 ppc4xx: Some Rewood cleanups (coding style, leading white spaces)
42022
42023 Signed-off-by: Stefan Roese <sr@denx.de>
42024
42025 commit 3a82113ed5934d498f25080441a8261fc9454b15
42026 Author: Stefan Roese <sr@denx.de>
42027 Date: Thu Jul 10 16:37:09 2008 +0200
42028
42029 ppc4xx: Add 460SX UIC defines
42030
42031 Only the really needed ones are added (cascading and EMAC/MAL).
42032
42033 Signed-off-by: Stefan Roese <sr@denx.de>
42034
42035 commit 26173fc6f60521c2a8072f652f863617fc11ba9a
42036 Author: Stefan Roese <sr@denx.de>
42037 Date: Mon Jun 30 14:11:07 2008 +0200
42038
42039 ppc4xx: Continue cleanup of ppc440.h
42040
42041 This patch continues the ppc440.h cleanup by removing some of the unused
42042 defines.
42043
42044 Signed-off-by: Stefan Roese <sr@denx.de>
42045
42046 commit d9056b7913ed6a228d2f33671d916efedee541dd
42047 Author: Stefan Roese <sr@denx.de>
42048 Date: Mon Jun 30 14:05:05 2008 +0200
42049
42050 ppc4xx: Cleanup Katmai & Yucca PCIe register usage
42051
42052 This patch cleans up the 440SPe PCIe register usage. Now only defines
42053 from the include/asm-ppc/4xx_pcie.h are used.
42054
42055 Signed-off-by: Stefan Roese <sr@denx.de>
42056
42057 commit 5de851403b01489b493fa83137ad990b8ce60d1c
42058 Author: Stefan Roese <sr@denx.de>
42059 Date: Thu Jun 26 17:36:39 2008 +0200
42060
42061 ppc4xx: Rework 440GX UIC handling
42062
42063 This patch reworks the 440GX interrupt handling so that the common 4xx
42064 code can be used. The 440GX is an exception to all other 4xx variants
42065 by having the cascading interrupt vectors not on UIC0 but on a special
42066 UIC named UICB0 (UIC Base 0). With this patch now, U-Boot references
42067 the 440GX UICB0 when UIC0 is selected. And the common 4xx interrupt
42068 handling is simpler without any 440GX special cases.
42069
42070 Also some additional cleanup to cpu/ppc4xx/interrupt.c is done.
42071
42072 Signed-off-by: Stefan Roese <sr@denx.de>
42073
42074 commit d1631fe1a05b063ccaf62ea892a8887b829847d1
42075 Author: Stefan Roese <sr@denx.de>
42076 Date: Thu Jun 26 13:40:57 2008 +0200
42077
42078 ppc4xx: Consolidate PPC4xx UIC defines
42079
42080 This 2nd patch now removes all UIC mask bit definition. They should be
42081 generated from the vectors by using the UIC_MASK() macro from now on.
42082 This way only the vectors need to get defined for new PPC's.
42083
42084 Also only the really used interrupt vectors are now defined. This makes
42085 definitions for new PPC versions easier and less error prone.
42086
42087 Another part of this patch is that the 4xx emac driver got a little
42088 cleanup, since now the usage of the interrupts is clearer.
42089
42090 Signed-off-by: Stefan Roese <sr@denx.de>
42091
42092 commit 4fb25a3db3b3839094aa9ab748efd7a95924690b
42093 Author: Stefan Roese <sr@denx.de>
42094 Date: Wed Jun 25 10:59:22 2008 +0200
42095
42096 ppc4xx: Consolidate PPC4xx UIC defines
42097
42098 This patch is the first step to consolidate the UIC related defines in the
42099 4xx headers. Move header from asm-ppc/ppc4xx-intvec.h to
42100 asm-ppc/ppc4xx-uic.h as it will hold all UIC related defines in the next
42101 steps.
42102
42103 Signed-off-by: Stefan Roese <sr@denx.de>
42104
42105 commit 7ee2619c20ccecd57966d74d844e6329e141261c
42106 Author: Stefan Roese <sr@denx.de>
42107 Date: Tue Jun 24 17:18:50 2008 +0200
42108
42109 ppc4xx: Consolidate PPC4xx EBC defines
42110
42111 This patch removes all EBC related defines from the PPC4xx headers
42112 ppc405.h and ppc440.h and introduces a new header
42113
42114 include/asm-ppc/ppc4xx-ebc.h
42115
42116 with all those defines.
42117
42118 Signed-off-by: Stefan Roese <sr@denx.de>
42119
42120 commit e321801bed5a6d896d298c00fd20046f039d5d66
42121 Author: Stefan Roese <sr@denx.de>
42122 Date: Thu Jul 10 13:52:44 2008 +0200
42123
42124 ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
42125
42126 This patch removes some ft_board_setup() functions from some 4xx boards.
42127 This can be done since we now have a default weak implementation for this
42128 in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
42129 implementation like canyonlands need their own version.
42130
42131 Signed-off-by: Stefan Roese <sr@denx.de>
42132
42133 commit 08250eb2edbd96514d049602d9e134110ac3185f
42134 Author: Stefan Roese <sr@denx.de>
42135 Date: Thu Jul 10 15:32:32 2008 +0200
42136
42137 ppc4xx: Fix merge problems in 44x_spd_ddr2.c
42138
42139 Signed-off-by: Stefan Roese <sr@denx.de>
42140
42141 commit 1740c1bf40e3c6d03ac16c29943fdd9fc1e87038
42142 Author: Grant Erickson <gerickson@nuovations.com>
42143 Date: Tue Jul 8 08:35:00 2008 -0700
42144
42145 ppc4xx: Add MII mode support to the EMAC RGMII Bridge
42146
42147 This patch adds support for placing the RGMII bridge on the
42148 PPC405EX(r) into MII/GMII mode and allows a board-specific
42149 configuration to specify the bridge mode at compile-time.
42150
42151 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
42152 Signed-off-by: Stefan Roese <sr@denx.de>
42153
42154 commit 2e2050842e731c823ce8d41fb0c15579eb70ced9
42155 Author: Grant Erickson <gerickson@nuovations.com>
42156 Date: Wed Jul 9 16:46:35 2008 -0700
42157
42158 ppc4xx: Add Mnemonics for AMCC/IBM DDR2 SDRAM Controller
42159
42160 This patch completes the preprocessor mneomics for the IBM DDR2 SDRAM
42161 controller registers (MODT and INITPLR) used by the
42162 PowerPC405EX(r). The MMODE and MEMODE registers are unified with their
42163 peer values used for the INITPLR MR and EMR registers,
42164 respectively. Finally, a spelling typo is correct (MANUEL to MANUAL).
42165
42166 With these mnemonics in place, the CFG_SDRAM0_* magic numbers for
42167 Kilauea are replaced by equivalent mnemonics to make it easier to
42168 compare and contrast other 405EX(r)-based boards (e.g. during board
42169 bring-up).
42170
42171 Finally, unified the SDRAM controller register dump routine such that
42172 it can be used across all processor variants that utilize the IBM DDR2
42173 SDRAM controller core. It produces output of the form:
42174
42175 PPC4xx IBM DDR2 Register Dump:
42176 ...
42177 SDRAM_MB0CF[40] = 0x00006701
42178 ...
42179
42180 which is '<mnemonic>[<DCR #>] = <value>'. The DCR number is included
42181 since it is not uncommon that the DCR values in header files get mixed
42182 up and it helps to validate, at a glance, they match what is printed
42183 in the user manual.
42184
42185 Tested on:
42186 AMCC Kilauea/Haleakala:
42187 - NFS Linux Boot: PASSED
42188 - NAND Linux Boot: PASSED
42189
42190 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
42191 Signed-off-by: Stefan Roese <sr@denx.de>
42192
42193 commit ad7382d828982e9c1bafc4313ef1b666f6145f58
42194 Author: Grant Erickson <gerickson@nuovations.com>
42195 Date: Wed Jul 9 16:31:59 2008 -0700
42196
42197 ppc4xx: Add AMCC/IBM DDR2 SDRAM ECC Field Mnemonics
42198
42199 Add additional DDR2 SDRAM memory controller DCR mneomnics, condition
42200 revision ID DCR based on 405EX, and add field mnemonics for bus error
42201 status and ECC error status registers.
42202
42203 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
42204 Signed-off-by: Stefan Roese <sr@denx.de>
42205
42206 commit 103201731bd8e85404d0f51a5b4e8abd14c0b6c6
42207 Author: Grant Erickson <gerickson@nuovations.com>
42208 Date: Wed Jul 9 16:31:36 2008 -0700
42209
42210 ppc4xx: Add SDR0_SRST Mnemonics for the 405EX(r)
42211
42212 This patch adds bit field mnemonics for the 405EX(r) SDR0_SRST soft reset register.
42213
42214 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
42215 Signed-off-by: Stefan Roese <sr@denx.de>
42216
42217 commit 5b457d00730d4aa0c6450d21a9104723e606fb98
42218 Author: Grant Erickson <gerickson@nuovations.com>
42219 Date: Wed Jul 9 11:55:46 2008 -0700
42220
42221 PPC4xx: Correct SDRAM_MCSTAT for PPC405EX(r)
42222
42223 While the PowerPC 405EX(r) shares in common the AMCC/IBM DDR2 SDRAM
42224 controller core also used in the 440SP, 440SPe, 460EX, and 460GT, in
42225 the 405EX(r), SDRAM_MCSTAT has a different DCR value.
42226
42227 Its present value on the 405EX(r) causes a read back of 0xFFFFFFFF
42228 which causes SDRAM initialization to periodically fail since it can
42229 prematurely indicate SDRAM ready status.
42230
42231 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
42232 Signed-off-by: Stefan Roese <sr@denx.de>
42233
42234 commit 0ce5c8675bb2c61f1d71fb97f0bbe822663fb93d
42235 Author: Feng Kan <fkan@amcc.com>
42236 Date: Tue Jul 8 22:48:42 2008 -0700
42237
42238 ppc4xx: Initial framework of the AMCC PPC460SX redwood reference board.
42239
42240 Add AMCC Redwood reference board that uses the latest
42241 PPC 464 CPU processor combined with a rich mix of peripheral
42242 controllers. The board will support PCIe, mutiple Gig ethernet
42243 ports, advanced hardware RAID assistance and IEEE 1588.
42244
42245 Signed-off-by: Feng Kan <fkan@amcc.com>
42246 Signed-off-by: Stefan Roese <sr@denx.de>
42247
42248 commit 96e5fc0e6a1861d0fea4efa3cd376df95a5b1b89
42249 Author: Feng Kan <fkan@amcc.com>
42250 Date: Tue Jul 8 22:48:07 2008 -0700
42251
42252 ppc4xx: Add initial 460SX reference board (redwood) config file and defines.
42253
42254 Signed-off-by: Feng Kan <fkan@amcc.com>
42255 Signed-off-by: Stefan Roese <sr@denx.de>
42256
42257 commit 7d30793685efcada183891c78fc892e6c9ba50c7
42258 Author: Feng Kan <fkan@amcc.com>
42259 Date: Tue Jul 8 22:47:31 2008 -0700
42260
42261 ppc4xx: Add initial 460SX defines for the cpu/ppc4xx directory.
42262
42263 Signed-off-by: Feng Kan <fkan@amcc.com>
42264 Signed-off-by: Stefan Roese <sr@denx.de>
42265
42266 commit 9b55a2536919f4de1bb1044e6eb8262c2f53bc96
42267 Author: Wolfgang Denk <wd@denx.de>
42268 Date: Fri Jul 11 01:16:00 2008 +0200
42269
42270 Fix some more print() format errors.
42271
42272 Signed-off-by: Wolfgang Denk <wd@denx.de>
42273
42274 commit fdd70d1921b87287d9a99d1be99bc35226c2b412
42275 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42276 Date: Thu Jul 10 20:57:54 2008 +0200
42277
42278 MAKEALL: remove duplicated at91 from ARM9 list and add LIST_at91 to arm
42279
42280 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42281
42282 commit c6457e3b8bc79a97381cf7deffa08f7c5a24f86c
42283 Author: Sergey Lapin <slapin@ossfans.org>
42284 Date: Thu Jun 5 11:06:29 2008 +0400
42285
42286 DataFlash AT45DB021 support
42287
42288 Some boards based on AT91SAM926X-EK use smaller DF chips to keep
42289 bootstrap, u-boot and its environment, using NAND or other external
42290 storage for kernel and rootfs. This patch adds support for
42291 small 1024x263 chip.
42292
42293 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
42294
42295 commit 4109df6f75fc00ab7da56d286ba50149a0d16a69
42296 Author: Kim Phillips <kim.phillips@freescale.com>
42297 Date: Thu Jul 10 14:00:15 2008 -0500
42298
42299 silence misc printf formatting compiler warnings
42300
42301 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42302
42303 commit 3d71c81a9bb03f866a1e98da96363ef3f46c76b3
42304 Author: Markus Klotzbücher <mk@denx.de>
42305 Date: Thu Jul 10 14:47:09 2008 +0200
42306
42307 USB: shutdown USB before booting
42308
42309 This patch fixes a potentially serious issue related to USB which was
42310 discouvered by Martin Krause <martin.krause@tqs.de> and fixed for
42311 ARM920T. Martin wrote:
42312
42313 Turn off USB to prevent the host controller from writing to the
42314 SDRAM while Linux is booting. This could happen, because the HCCA
42315 (Host Controller Communication Area) lies within the SDRAM and the
42316 host controller writes continously to this area (as busmaster!), for
42317 example to increase the HccaFrameNumber variable, which happens
42318 every 1 ms.
42319
42320 This is a slightly modified version of the patch in order to shutdown
42321 USB when booting on all architectures.
42322
42323 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
42324
42325 commit f31c49db2a5e076f415c0785eb37f67f2faa5fc8
42326 Author: Martha Marx <mmarx@silicontkx.com>
42327 Date: Thu May 29 14:23:25 2008 -0400
42328
42329 Configuration changes for ADS5121 Rev 3
42330
42331 ADS5121 Rev 3 board is now the default config
42332
42333 config targets are now
42334
42335 ads5121_config
42336 Rev 3 board with
42337 PCI
42338 M41T62 on board RTC
42339 512MB DRAM
42340
42341 ads5121_rev2_config
42342 Rev 2 board with
42343 No PCI
42344 256MB DRAM
42345
42346 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
42347 Acked-by: Grant Likely <grant.likely@secretlab.ca>
42348 Acked-by: John Rigby <jrigby@freescale.com>
42349
42350 commit 16bee7b0dc294ee01ca2434aa1dd3bd717a69615
42351 Author: Martha Marx <mmarx@silicontkx.com>
42352 Date: Thu May 29 15:37:21 2008 -0400
42353
42354 Consolidate ADS5121 IO Pin configuration
42355
42356 Consolidate ADS5121 IO Pin configuration to one file
42357 board/ads5121/iopin.c.
42358
42359 Remove pin config from cpu/mpc512x/fec.c
42360
42361 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
42362 Acked-by: Grant Likely <grant.likely@secretlab.ca>
42363 Acked-by: John Rigby <jrigby@freescale.com>
42364
42365 commit d4692b0ba83b7b454bbd92bad1f4befe6e1657b7
42366 Author: Christian Eggers <christian@p2400.wgnetz.xx>
42367 Date: Fri Jun 27 19:46:51 2008 +0200
42368
42369 Fix "usb part" command
42370
42371 Only print partition for selected device if user supplied the <dev>
42372 arg with the "usb part [dev]" command.
42373
42374 Signed-off-by: Christian Eggers <ceggers@gmx.de>
42375 Acked-by: Markus Klotzbuecher <mk@denx.de>
42376
42377 commit cc83b27217f7380041fea386ddb6d6d9b261617d
42378 Author: Harald Welte <laforge@gnumonks.org>
42379 Date: Mon Jul 7 00:58:05 2008 +0800
42380
42381 fix USB devices with multiple configurations
42382
42383 This patch fixes bugs in usbdcore*.c related to the use of devices
42384 with multiple configurations.
42385
42386 The original code made mistakes about the meaning of configuration value and
42387 configuration index, and the resulting off-by-one errors resulted in:
42388
42389 * SET_CONFIGURATION always selected the first configuration, no matter what
42390 wValue is being passed.
42391 * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
42392 configuration (index 0).
42393
42394 Signed-off-by: Harald Welte <laforge@openmoko.org>
42395 Acked-by: Markus Klotzbuecher <mk@denx.de>
42396
42397 commit 06c53beae1a726e707971c555613f09b270a2461
42398 Author: Wolfgang Denk <wd@denx.de>
42399 Date: Thu Jul 10 13:16:09 2008 +0200
42400
42401 Fix some more print() format errors.
42402
42403 Signed-off-by: Wolfgang Denk <wd@denx.de>
42404
42405 commit d4b5f3fa001228d76e2c3380cedadf804b802c2a
42406 Author: Christian Eggers <christian@p2400.wgnetz.xx>
42407 Date: Fri Jun 27 19:46:51 2008 +0200
42408
42409 Fix "usb part" command
42410
42411 Only print partition for selected device if user supplied the <dev>
42412 arg with the "usb part [dev]" command.
42413
42414 Signed-off-by: Christian Eggers <ceggers@gmx.de>
42415 Acked-by: Markus Klotzbuecher <mk@denx.de>
42416
42417 commit e73b5212e0463a3db0af0a5c95c75bfb762ca973
42418 Author: Harald Welte <laforge@gnumonks.org>
42419 Date: Mon Jul 7 00:58:05 2008 +0800
42420
42421 fix USB devices with multiple configurations
42422
42423 This patch fixes bugs in usbdcore*.c related to the use of devices
42424 with multiple configurations.
42425
42426 The original code made mistakes about the meaning of configuration value and
42427 configuration index, and the resulting off-by-one errors resulted in:
42428
42429 * SET_CONFIGURATION always selected the first configuration, no matter what
42430 wValue is being passed.
42431 * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
42432 configuration (index 0).
42433
42434 Signed-off-by: Harald Welte <laforge@openmoko.org>
42435 Acked-by: Markus Klotzbuecher <mk@denx.de>
42436
42437 commit e870690bdca154943ecadd5212d2d59c1b9d391b
42438 Author: Stefan Roese <sr@denx.de>
42439 Date: Thu Jul 10 10:10:54 2008 +0200
42440
42441 MTD/NAND: Fix printf format warning in nand code
42442
42443 This patch fixes NAND related printf format warning. Those warnings are
42444 now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
42445 [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
42446 really helpful.
42447
42448 Signed-off-by: Stefan Roese <sr@denx.de>
42449
42450 commit 10943c9afa25694bd9999461f4e9e50ce22fff2b
42451 Author: Stefan Roese <sr@denx.de>
42452 Date: Thu Jul 10 10:00:45 2008 +0200
42453
42454 rtc: Fix printf format warning in m41t60.c
42455
42456 Signed-off-by: Stefan Roese <sr@denx.de>
42457
42458 commit dc1da42f814cd71e6756c2cf62af1ada1d0581fb
42459 Author: Stefan Roese <sr@denx.de>
42460 Date: Tue Jul 8 12:01:47 2008 +0200
42461
42462 pci: Move PCI device configuration check into a separate weak function
42463
42464 This patch moves the check, if a device should be skipped in PCI PNP
42465 configuration into the function pci_skip_dev(). This function is defined
42466 as weak so that it can be overwritten by a platform specific one if
42467 needed. The check if the device should get printed in the PCI summary upon
42468 bootup (when CONFIG_PCI_SCAN_SHOW is defined) is moved to the function
42469 pci_print_dev() which is also defined as weak too.
42470
42471 Signed-off-by: Stefan Roese <sr@denx.de>
42472
42473 commit b002144e1dc21374b1ef5281fe6b5d014af96650
42474 Author: Stefan Roese <sr@denx.de>
42475 Date: Thu Jul 10 09:58:06 2008 +0200
42476
42477 ppc4xx: Fix printf format warnings now visible with the updated format check
42478
42479 This patch fixes ppc4xx related printf format warning. Those warnings are
42480 now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
42481 [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
42482 really helpful.
42483
42484 Signed-off-by: Stefan Roese <sr@denx.de>
42485
42486 commit 5d812b8b4ad9667c77a5bf92b4ba81699abc9fc3
42487 Author: Stefan Roese <sr@denx.de>
42488 Date: Wed Jul 9 17:33:57 2008 +0200
42489
42490 ppc4xx: Enable support for > 2GB SDRAM on AMCC Katmai
42491
42492 Newer PPC's like 440SPe, 460EX/GT can be equipped with more than 2GB of SDRAM.
42493 To support such configurations, we "only" map the first 2GB via the TLB's. We
42494 need some free virtual address space for the remaining peripherals like, SoC
42495 devices, FLASH etc.
42496
42497 Note that ECC is currently not supported on configurations with more than 2GB
42498 SDRAM. This is because we only map the first 2GB on such systems, and therefore
42499 the ECC parity byte of the remaining area can't be written.
42500
42501 Signed-off-by: Stefan Roese <sr@denx.de>
42502
42503 commit cf1c2ed91df26903b956948f37f82de9e1158a89
42504 Author: Larry Johnson <lrj@acm.org>
42505 Date: Sat Jun 14 17:02:49 2008 -0400
42506
42507 ppc4xx: Remove implementation of testdram() from Korat board support
42508
42509 Signed-off-by: Larry Johnson <lrj@acm.org>
42510 Signed-off-by: Stefan Roese <sr@denx.de>
42511
42512 commit 47ce4a28ccfcfb803aa68d3d4505a8de056a8a5e
42513 Author: Larry Johnson <lrj@acm.org>
42514 Date: Sat Jun 14 16:53:02 2008 -0400
42515
42516 ppc4xx: Update and add FDT to Korat board support
42517
42518 Signed-off-by: Larry Johnson <lrj@acm.org>
42519 Signed-off-by: Stefan Roese <sr@denx.de>
42520
42521 commit 4188f0491886b3b486164e819c0a83fdb97efd7d
42522 Author: Wolfgang Denk <wd@denx.de>
42523 Date: Thu Jul 10 01:13:30 2008 +0200
42524
42525 Minor coding style cleanup; update CHANGELOG
42526
42527 Signed-off-by: Wolfgang Denk <wd@denx.de>
42528
42529 commit 8915f1189c1d29d8be7f4de325702d90a8988219
42530 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
42531 Date: Wed Jul 9 17:50:45 2008 -0400
42532
42533 e1000: add support for 82545GM 64bit PCI-X copper variant
42534
42535 This PCI-X e1000 variant works by just adding in the correct
42536 PCI IDs in the appropriate places.
42537
42538 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
42539
42540 commit 21ae6ca0315afdbc65dc3e95ffd5763e6773d030
42541 Author: Daniel Hellstrom <daniel@gaisler.com>
42542 Date: Wed Jul 9 12:34:11 2008 +0000
42543
42544 SPARC: Build error fix
42545
42546 (introduced by commit 391fd93ab23e15ab3dd58a54f5b609024009c378)
42547
42548 This patch makes SPARC targets build again. It is caused by
42549 phys_addr_t and phys_size_t being defined in the wrong header
42550 file. include/lmb.h need those typedefs to build.
42551
42552 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
42553
42554 commit 11ccc33fa21acce108f6b4a6936e3271af904c64
42555 Author: Marcel Ziswiler <marcel@ziswiler.com>
42556 Date: Wed Jul 9 08:17:15 2008 +0200
42557
42558 Many spelling fixes in README.
42559
42560 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
42561
42562 commit dbab0691d2533560f7e91b92ae844046a9ad1df3
42563 Author: Marcel Ziswiler <marcel@ziswiler.com>
42564 Date: Wed Jul 9 08:17:06 2008 +0200
42565
42566 Minor spelling fix in comment.
42567
42568 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
42569
42570 commit 89134ea1f67208fd3160bdbb0b9eaab4eab98484
42571 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
42572 Date: Tue Jul 8 14:54:58 2008 -0400
42573
42574 Round the serial port clock divisor value returned by calc_divisor()
42575
42576 Round the serial port clock divisor value returned by
42577 calc_divisor().
42578
42579 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
42580 Signed-off-by: John Roberts <john.roberts@pwav.com>
42581
42582 commit 9d2e3947b2944e5bb85b4335533f8c93c58445fe
42583 Author: Scott Wood <scottwood@freescale.com>
42584 Date: Wed Jul 9 17:47:52 2008 -0500
42585
42586 NAND: ifdef-protect most of nand.h when using legacy NAND.
42587
42588 Some macros such as NAND_CTL_SETALE conflict between current and legacy
42589 NAND, being defined by the subsystem in the former case and the board
42590 config file in the latter.
42591
42592 Signed-off-by: Scott Wood <scottwood@freescale.com>
42593
42594 commit 2b1fa9d383cbbb7d347c1583bd6ca4e181ba8e9e
42595 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
42596 Date: Tue Jul 8 11:02:05 2008 -0400
42597
42598 ARM: Fix for wrong patch version applied for Lyrtech SFF-SDR board (ARM926EJS)
42599
42600 ARM: Fix for incorrect version of patch applied when
42601 adding support for the Lyrtech SFF-SDR board.
42602
42603 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
42604 Signed-off-by: Philip Balister, OpenSDR <philip@opensdr.com>
42605
42606 commit 47042b363ee5022b8180c65d3f4558e7972c79cd
42607 Author: Kyungmin Park <kmpark@infradead.org>
42608 Date: Tue Jul 8 09:08:40 2008 +0900
42609
42610 Remove useless print message at apollon
42611
42612 Remove useless print message at apollon
42613
42614 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
42615
42616 commit 98874ff329d4a5b32c467b43f6e966e1aa68479f
42617 Author: Andy Fleming <afleming@freescale.com>
42618 Date: Mon Jul 7 14:24:39 2008 -0500
42619
42620 Fix LMB type issues
42621
42622 The LMB code now uses phys_addr_t and phys_size_t. Also, there were a couple
42623 of casting problems in the bootm code that called the LMB functions.
42624
42625 Signed-off-by: Andy Fleming <afleming@freescale.com>
42626
42627 commit da8693a91b8eef75ade8de50a1b2ce035bc5fb54
42628 Author: Kumar Gala <galak@kernel.crashing.org>
42629 Date: Mon Jul 7 09:39:06 2008 -0500
42630
42631 Fix compiler warnings
42632
42633 gcc-4.3.x generates the following:
42634
42635 bootm.c: In function 'do_bootm_linux':
42636 bootm.c:208: warning: cast from pointer to integer of different size
42637 bootm.c:215: warning: cast from pointer to integer of different size
42638
42639 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42640
42641 commit 5bb12dbd7ae03189b6c13d8737b5a1b37c3df698
42642 Author: Harald Welte <laforge@gnumonks.org>
42643 Date: Mon Jul 7 15:40:39 2008 +0800
42644
42645 Remove code duplication for setting the default environment
42646
42647 common/env_common.c (default_env): new function that resets the environment to
42648 the default value
42649 common/env_common.c (env_relocate): use default_env instead of own copy
42650 common/env_nand.c (env_relocate_spec): use default_env instead of own copy
42651 include/environment.h: added default_env prototype
42652
42653 Signed-off-by: Werner Almesberger <werner@openmoko.org>
42654 Signed-off-by: Harald Welte <laforge@openmoko.org>
42655
42656 commit 99c2b434d37863df5dda5207a53760c6506fc2be
42657 Author: Marcel Ziswiler <marcel@ziswiler.com>
42658 Date: Sun Jun 22 16:13:46 2008 +0200
42659
42660 NAND: Fix warning due to missing env_ptr casts to u_char * in env_nand.c.
42661
42662 The writeenv() and readenv() calls introduced by the recently added bad block
42663 management for environment variables were missing casts therefore producing
42664 compile time warnings.
42665 While at it fixing some typo in a comment and indentation.
42666
42667 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
42668 Signed-off-by: Scott Wood <scottwood@freescale.com>
42669
42670 commit 3167c5386ea1c98b638be5d8763ef6d5938ef1bd
42671 Author: Scott Wood <scottwood@freescale.com>
42672 Date: Fri Jun 20 12:38:57 2008 -0500
42673
42674 NAND: Rename DEBUG to MTDDEBUG to avoid namespace pollution.
42675
42676 This is particularly problematic now that non-NAND-specific code is
42677 including <nand.h>, and thus all debugging code is being compiled
42678 regardless of whether it was requested, as reported by Scott McNutt
42679 <smcnutt@psyent.com>.
42680
42681 Signed-off-by: Scott Wood <scottwood@freescale.com>
42682
42683 commit c3bf1ad7baa1b0dd989dedc260b7098b6089ae05
42684 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
42685 Date: Thu Jun 12 19:27:58 2008 +0200
42686
42687 mmc: Move atmel_mci driver into drivers/mmc
42688
42689 This makes it easier to use the driver on other platforms.
42690
42691 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
42692 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42693
42694 commit d2d54ea449639f3d1a6007e333ab9fcc609a18f0
42695 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
42696 Date: Thu Jun 12 19:27:57 2008 +0200
42697
42698 avr32: Use CONFIG_ATMEL_MCI to select the atmel_mci driver
42699
42700 After we move the atmel_mci driver into drivers/mmc, we can't select
42701 it with CONFIG_MMC anymore. Introduce a new symbol specifically for
42702 this driver so that there's no ambiguity.
42703
42704 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
42705 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42706
42707 commit 5ce13051a48c62bda9723df3b4778c492fb47f36
42708 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
42709 Date: Thu Jun 12 19:27:56 2008 +0200
42710
42711 Create drivers/mmc subdirectory
42712
42713 In order to consolidate more of the various MMC drivers around the
42714 tree, we must first have a common place to put them.
42715
42716 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
42717 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42718
42719 commit b502611b51f02718c2d1117d4981dabceb5af6de
42720 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
42721 Date: Sun Jul 6 12:30:09 2008 +0200
42722
42723 Change env_get_char from a global function ptr to a function
42724
42725 This avoids an early global data reference.
42726
42727 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
42728
42729 commit 27269417ade432189b234d9fbac98b54e37b978c
42730 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
42731 Date: Sun Jul 6 13:57:58 2008 +0400
42732
42733 Some copy-n-paste fixes in printf usage
42734
42735 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
42736
42737 commit 0e6989b9faf1588e8723535539e88a0df3c71356
42738 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
42739 Date: Sun Jul 6 13:57:00 2008 +0400
42740
42741 FDT memory and pci node fixes for MPC8260ADS
42742
42743 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
42744
42745 commit dc4b0b38d4aadf08826f6c31270f1eecd27964fd
42746 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
42747 Date: Mon Jul 7 06:41:14 2008 -0700
42748
42749 Fix printf errors.
42750
42751 The compiler will help find mismatches between printf formats and
42752 arguments if you let it. This patch adds the necessary attributes to
42753 declarations in include/common.h, then begins to correct the resulting
42754 compiler warnings. Some of these were bugs, e.g., "$d" instead of
42755 "%d" and incorrect arguments. Others were just annoying, like
42756 int-long mismatches on a system where both are 32 bits. It's worth
42757 fixing the annoying errors to catch the real ones.
42758
42759 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
42760
42761 commit 417faf285b2527acb2de24c5cd3e2621d385408c
42762 Author: Becky Bruce <becky.bruce@freescale.com>
42763 Date: Wed Jul 9 11:09:41 2008 -0500
42764
42765 Allow print_size to print in GB
42766
42767 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
42768
42769 commit e7c374529c87525c9aa463e0557c287887ae4e9e
42770 Author: Jason McMullan <mcmullan@netapp.com>
42771 Date: Sun Jun 8 23:56:00 2008 -0400
42772
42773 mips: When booting Linux images, add 'ethaddr' and 'eth1addr' to the environment
42774
42775 Add 'ethaddr' and 'eth1addr' to the Linux kernel environment if
42776 they are set in the U-Boot environment.
42777
42778 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
42779 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42780
42781 commit 0192d7d56e9320819dea262f49789ae18fdd2c72
42782 Author: Stefan Roese <sr@denx.de>
42783 Date: Tue Jul 8 12:57:14 2008 +0200
42784
42785 jedec_flash: Fix AM29DL800BB device ID
42786
42787 As pointed out by Jerry Hicks, this patch corrects the device ID of
42788 the Spansion AM29DL800BB NOR device. Verified against latest Spansion
42789 datasheet (rev C4 from Dezember 2006).
42790
42791 Signed-off-by: Stefan Roese <sr@denx.de>
42792
42793 commit 689c1b30caacba3fbca0b1813facb3ab70b6cd63
42794 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42795 Date: Mon Jul 7 11:22:37 2008 +0900
42796
42797 sh: Fix compile error sh7763rdp board
42798
42799 Disable SH ether driver.
42800
42801 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42802
42803 commit 9e23fe0560b84e324dc5f0ff8813dab2aa34f074
42804 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42805 Date: Tue Jul 8 12:03:24 2008 +0900
42806
42807 sh: Fix SH-boards compile error
42808
42809 By Cleanup out-or-tree building for some boards (.depend)
42810 (commit:c8a3b109f07f02342d097b30908965f7261d9f15)
42811 because filse ware changed, some SH-boards have compile error.
42812 I revised this problem.
42813
42814 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42815
42816 commit 3473ab737282b08ad61841fcbb14c4d264a93a8e
42817 Author: Jason Jin <Jason.jin@freescale.com>
42818 Date: Tue May 13 11:50:36 2008 +0800
42819
42820 Feed the watchdog in u-boot for 8610 board.
42821
42822 The watchdog on 8610 board is enabled by setting sw[6]
42823 to on. Once enabled, the watchdog can not be disabled
42824 by software. So feed the dog in u-boot is necessary for
42825 normal operation.
42826
42827 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
42828
42829 commit 63676841ca2d603b13765f3f7b72ff1a61c23f90
42830 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
42831 Date: Wed Jun 18 12:10:33 2008 -0400
42832
42833 Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
42834
42835 Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
42836
42837 Remove duplicate code in a if/else block in
42838 cpu/arm926ejs/davinci/lxt972.c.
42839 Fixed style issues.
42840
42841 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
42842 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42843
42844 commit fec61431a003f5778bafa2624073a571af8bec9f
42845 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
42846 Date: Wed Jun 18 12:10:31 2008 -0400
42847
42848 Remove duplicate definitions in include/lxt971a.h.
42849
42850 Remove duplicate definitions in include/lxt971a.h.
42851
42852 Remove duplicate registers and bits definitions in
42853 include/lxt971a.h for standard MII registers, and
42854 use values in include/miiphy.h instead.
42855
42856 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
42857 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42858
42859 commit 9751ee0990f467941da0b095a4e995f863672d7a
42860 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42861 Date: Wed Jun 11 21:05:00 2008 +0900
42862
42863 net: sh: Renesas SH7763 Ethernet device support
42864
42865 Renesas SH7763 has 2 channel Ethernet device.
42866 This is 10/100/1000 Base support.
42867 But this patch check 10/100 Base only.
42868
42869 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42870 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42871
42872 commit 873d97aabc0b1c8822ed1d87e8c5c8ae0a7e4ae9
42873 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42874 Date: Tue Jun 17 16:28:05 2008 +0900
42875
42876 sh: Update Renesas R2DPlus board
42877
42878 New NOR Flash board support and remove old type flash board config.
42879 And Remove network setting from config file.
42880
42881 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42882 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42883
42884 commit ec39d479d2003f15e86e23ebc4e02a1c9a3a181c
42885 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42886 Date: Tue Jun 17 16:28:01 2008 +0900
42887
42888 sh: Update Renesas R7780MP board
42889
42890 New NOR Flash board support and remove network setting from config file.
42891
42892 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42893 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42894
42895 commit c001cd604e9f133743effbddb1c215b48e761c5a
42896 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42897 Date: Tue Jun 17 16:27:56 2008 +0900
42898
42899 sh: Update Renesas Migo-R board
42900
42901 Remove network setting from config file.
42902
42903 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42904 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42905
42906 commit f9599eca7cb5ebe40e5305c8006dced6ecc5cd9e
42907 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42908 Date: Tue Jun 17 16:27:52 2008 +0900
42909
42910 sh: Update Hitachi MS7722SE board
42911
42912 Remove network setting from config file.
42913
42914 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42915 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42916
42917 commit 26209e48e8791670c93108029a5c31a30016c6df
42918 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42919 Date: Tue Jun 17 16:27:48 2008 +0900
42920
42921 sh: Cleanup source code of SH7763RDP
42922
42923 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42924 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42925
42926 commit 5cd5b2c96ef0025762931349d350287aec03ab47
42927 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42928 Date: Tue Jun 17 16:27:44 2008 +0900
42929
42930 sh: Cleanup source code of R2DPlus
42931
42932 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42933 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42934
42935 commit 4ec7e915cfaa31b392755dd2c8231e64736d2ea8
42936 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42937 Date: Tue Jun 17 16:27:41 2008 +0900
42938
42939 sh: Cleanup source code of R7780MP
42940
42941 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42942 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42943
42944 commit 0955ef34c0454ae2ee59a78657a0f01fb3ef16d6
42945 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42946 Date: Tue Jun 17 16:27:38 2008 +0900
42947
42948 sh: Cleanup source code of MS7722SE
42949
42950 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42951 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42952
42953 commit 1d7b31d97b34ccb6f9b20a2465864998b0bf2691
42954 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42955 Date: Tue Jun 17 16:27:34 2008 +0900
42956
42957 sh: Cleanup source code of MS7720SE
42958
42959 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42960 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42961
42962 commit 3ab4827cbe409488ebea1a2ee5094783f2672214
42963 Author: Wolfgang Denk <wd@denx.de>
42964 Date: Mon Jul 7 00:45:03 2008 +0200
42965
42966 SH: fix out of tree building
42967
42968 Signed-off-by: Wolfgang Denk <wd@denx.de>
42969
42970 commit 9047bfa1e737d787be460387dd6f45737eeceb10
42971 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42972 Date: Thu Jul 3 23:16:06 2008 +0900
42973
42974 net: smc911x: Fix typo
42975
42976 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
42977
42978 commit 5ed546fdd0ca46a165661c2009fa743d9c9fceca
42979 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
42980 Date: Wed Jul 2 18:54:08 2008 +0200
42981
42982 update mvBL-M7 board config
42983
42984 update mvBL-M7 config file to use UBOOT_VERSION and define
42985 CONFIG_HIGH_BATS.
42986
42987 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
42988
42989 commit 5cacc5d0ec52678a5eb83ecda5c3bcb22eb47f30
42990 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42991 Date: Mon Jun 30 17:45:01 2008 +0900
42992
42993 net: fix compile problem in smc911x driver.
42994
42995 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42996 Acked-by: Ben Warren <biggerbadderben@gmail.com>
42997
42998 commit 9fea65a6c469b1b474b27446feb58738baba2d31
42999 Author: Michal Simek <monstr@monstr.eu>
43000 Date: Tue Jun 24 09:54:09 2008 +0200
43001
43002 ppc4xx: Rename CONFIG_XILINX_ML300 to CONFIG_XILINX_405
43003
43004 This change helps with better handling with others
43005 Xilinx based platform.
43006
43007 Signed-off-by: Michal Simek <monstr@monstr.eu>
43008 Acked-by: Stefan Roese <sr@denx.de>
43009
43010 commit cbb6289569ae4fc6e2d676528e46ffcc72d743d0
43011 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43012 Date: Tue Jun 17 13:07:11 2008 +0900
43013
43014 net: ne2000: Move dev_addr variable from grobal to local.
43015
43016 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43017 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43018
43019 commit dd7e5fa5f847188f78f62f2c52de6cb3def3ecdb
43020 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43021 Date: Tue Jun 17 13:07:15 2008 +0900
43022
43023 net: ne2000: Fix compile error of NE2000
43024
43025 If enable DEBUG, can not compile ne2000 driver.
43026
43027 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43028 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43029
43030 commit dd35479a50f6c7c31ea491c07c5200c6dfd06a24
43031 Author: Ben Warren <biggerbadderben@gmail.com>
43032 Date: Mon Jun 23 22:57:27 2008 -0700
43033
43034 Add mechanisms for CPU and board-specific Ethernet initialization
43035
43036 This patch is the first step in cleaning up net/eth.c, by moving Ethernet
43037 initialization to CPU or board-specific code. Initial implementation is
43038 only on the Freescale TSEC controller, but others will be added soon.
43039
43040 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43041
43042 commit 7754f2be5d1835d263aad21b5a629526f3e680b0
43043 Author: Wolfgang Denk <wd@denx.de>
43044 Date: Sun Jul 6 01:21:46 2008 +0200
43045
43046 include/sha256.h: fix file permissions.
43047
43048 Signed-off-by: Wolfgang Denk <wd@denx.de>
43049
43050 commit d3bcdf838e2991d58571308fa6e04ca335bc06e8
43051 Author: Patrice Vilchez <patrice.vilchez@atmel.com>
43052 Date: Tue May 27 11:15:29 2008 +0200
43053
43054 [AT91SAM9] Fix NAND FLASH timings
43055
43056 Fix NAND FLASH timings for at91sam9x evaluation kits.
43057
43058 New timings are based on application note
43059 "NAND Flash Support on AT91SAM9 Microcontrollers" available at
43060 http://atmel.com/dyn/resources/prod_documents/doc6255.pdf
43061
43062 Signed-off-by: Patrice Vilchez <patice.vilchez@atmel.com>
43063 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43064 Acked-by: Stelian Pop <stelian@popies.net>
43065
43066 commit 19bd688484322fe62d1a66c8299da6ff9e967ff9
43067 Author: Stelian Pop <stelian@popies.net>
43068 Date: Thu May 22 00:15:40 2008 +0200
43069
43070 Fix boot from NOR due to incorrect reset delay.
43071
43072 AT91 RSTC registers are battery-backuped, so their values
43073 are not reset across power cycles. One of those registers,
43074 the AT91_RSTC_MR register, is being modified by U-Boot, in
43075 the ethernet initialisation routine, to generate a 500ms
43076 user reset.
43077
43078 Unfortunately, this value is not being restored afterwards,
43079 causing subsequent resets to also last for 500ms.
43080
43081 This long reset sequence causes problems (at least) in the
43082 boot sequence from NOR: by the time the CPU tries to load
43083 a program from the NOR flash, the latter is still in reset
43084 and not yet available.
43085
43086 Additionaly, this patch fixes a bug in the original code which
43087 caused the reset delay to last for 2s instead of 500ms.
43088
43089 Signed-off-by: Stelian Pop <stelian@popies.net>
43090 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43091
43092 commit f492dd636fbbae529e17533995bc6e5813c007f6
43093 Author: Wolfgang Denk <wd@denx.de>
43094 Date: Fri Jul 4 20:11:49 2008 +0200
43095
43096 Update CHANGELOG
43097
43098 Signed-off-by: Wolfgang Denk <wd@denx.de>
43099
43100 commit 5e6e350fc489aa19402f1e79037dd8c0a4bbd73d
43101 Author: Wolfgang Denk <wd@denx.de>
43102 Date: Fri Jul 4 20:07:35 2008 +0200
43103
43104 CCM/SCM boards: fix out of tree building
43105
43106 Signed-off-by: Wolfgang Denk <wd@denx.de>
43107
43108 commit ab4c3a490df9a964711556d2a05b0c787db45fde
43109 Author: Wolfgang Denk <wd@denx.de>
43110 Date: Thu Jul 3 23:22:27 2008 +0200
43111
43112 SCM board: fix build errors.
43113
43114 Signed-off-by: Wolfgang Denk <wd@denx.de>
43115
43116 commit a566466f17ba0e2d2b6c250e77da678fb932470d
43117 Author: Wolfgang Denk <wd@denx.de>
43118 Date: Thu Jul 3 23:06:36 2008 +0200
43119
43120 IAD210 board: fix ``"ALIGN" redefined'' warning.
43121
43122 Signed-off-by: Wolfgang Denk <wd@denx.de>
43123
43124 commit ad756314797c16fa5dca23e115aab881011f164f
43125 Author: Wolfgang Denk <wd@denx.de>
43126 Date: Thu Jul 3 23:00:24 2008 +0200
43127
43128 CCM board: fix build errors.
43129
43130 Signed-off-by: Wolfgang Denk <wd@denx.de>
43131
43132 commit f16ed51702cb9fb6fa2e019bbc0fcd1466b57c3b
43133 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
43134 Date: Wed Jul 2 18:54:08 2008 +0200
43135
43136 update mvBL-M7 board config
43137
43138 update mvBL-M7 config file to use UBOOT_VERSION.
43139
43140 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
43141 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43142
43143 commit ced209c50e80c25f13c083099b05044048d21f4f
43144 Author: Wolfgang Denk <wd@denx.de>
43145 Date: Thu Jul 3 22:39:21 2008 +0200
43146
43147 sacsng board: fix warnings "suggest explicit braces to avoid ambiguous 'else'"
43148
43149 Signed-off-by: Wolfgang Denk <wd@denx.de>
43150
43151 commit 4ff170a8180a79da4cdaab1b30d58cd7b6be565e
43152 Author: Wolfgang Denk <wd@denx.de>
43153 Date: Thu Jul 3 22:34:08 2008 +0200
43154
43155 Cleanup: fix "expected specifier-qualifier-list before 'phys_size_t'" errors
43156
43157 Signed-off-by: Wolfgang Denk <wd@denx.de>
43158
43159 commit 730f298485984b011b6ee8f4acb511cb45a843dd
43160 Author: Wolfgang Denk <wd@denx.de>
43161 Date: Thu Jul 3 22:04:17 2008 +0200
43162
43163 lmb: fix "implicit declaration of function 'lmb_free'" warning
43164
43165 Signed-off-by: Wolfgang Denk <wd@denx.de>
43166
43167 commit 322ef5e28d2dc62571afc699b00add22a8e006e4
43168 Author: Wolfgang Denk <wd@denx.de>
43169 Date: Wed Jul 2 23:53:23 2008 +0200
43170
43171 Cleanup: remove redundant deleting on *~ files
43172
43173 Signed-off-by: Wolfgang Denk <wd@denx.de>
43174
43175 commit c8a3b109f07f02342d097b30908965f7261d9f15
43176 Author: Wolfgang Denk <wd@denx.de>
43177 Date: Wed Jul 2 23:49:18 2008 +0200
43178
43179 Cleanup out-or-tree building for some boards (.depend)
43180
43181 Signed-off-by: Wolfgang Denk <wd@denx.de>
43182
43183 commit a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4
43184 Author: Wolfgang Denk <wd@denx.de>
43185 Date: Wed Jul 2 23:38:50 2008 +0200
43186
43187 Cleanup: fix out-of-tree building for some boards
43188
43189 Signed-off-by: Wolfgang Denk <wd@denx.de>
43190
43191 commit 461fa68d20861811487944d22291db5a13410e20
43192 Author: Wolfgang Denk <wd@denx.de>
43193 Date: Wed Jul 2 23:00:14 2008 +0200
43194
43195 Cleanup: replace hard-wired $(AR) 'crv' settings by $(ARFLAGS)
43196
43197 Signed-off-by: Wolfgang Denk <wd@denx.de>
43198
43199 commit 5981ebd32017e062b08aa6747cf591276f2db779
43200 Author: Detlev Zundel <dzu@denx.de>
43201 Date: Fri Jun 20 22:26:24 2008 +0200
43202
43203 fdt: Fix typo in variable name.
43204
43205 Signed-off-by: Detlev Zundel <dzu@denx.de>
43206
43207 commit a7a5982cd0f3482f88225af4da7795bc4f6cb9bc
43208 Author: Gary Jennejohn <garyj@denx.de>
43209 Date: Thu Jun 19 11:11:19 2008 +0200
43210
43211 Add logos for RRvision board
43212
43213 Signed-off-by: Gary Jennejohn <garyj@denx.de>
43214
43215 commit ee4ae38342142237ca85913f88ee570c1eb5ca7c
43216 Author: Esben Haabendal <EsbenHaabendal@gmail.com>
43217 Date: Wed Jun 18 11:03:57 2008 +0200
43218
43219 mpc8260: add fdt_fixup_ethernet support
43220
43221 Add support for updating mac-address and local-mac-address in fdt for
43222 all MPC8260 targets.
43223
43224 Signed-off-by: Esben Haabendal <eha@doredevelopment.dk>
43225
43226 commit f6a69559d64498a04e1e0b087a9b920e5775f866
43227 Author: Steven A. Falco <sfalco@harris.com>
43228 Date: Thu Jun 12 13:24:42 2008 -0400
43229
43230 cmd_nvedit.c: clean up syntax highlighting
43231
43232 My text-editor (vim) has a bit of trouble syntax-highlighting the
43233 cmd_nvedit.c file, because it apparently does not parse C
43234 ifdef/else/endif. The following patch does not change the behavior of
43235 the code at all, but does allow the editor to properly
43236 syntax-highlight the file.
43237
43238 Signed-off-by: Steve Falco <sfalco@harris.com>
43239
43240 commit 75678c807a6272ecc5541eb32898c93887f08400
43241 Author: Steven A. Falco <sfalco@harris.com>
43242 Date: Thu Jun 12 13:22:12 2008 -0400
43243
43244 Make setenv() return status
43245
43246 Currently, the setenv function does not return an error code.
43247 This patch allows to test for errors.
43248
43249 Signed-off-by: Steve Falco <sfalco@harris.com>
43250
43251 commit 4928e97c8531283ca9b368b7c29a8a12e726562a
43252 Author: Kumar Gala <galak@kernel.crashing.org>
43253 Date: Wed Jun 11 10:14:06 2008 -0500
43254
43255 PPC: Added fls, fls64, __ilog2_u64, and ffs64 to bitops
43256
43257 fls64, __ilog2_u64, ffs64 are variants that work on an u64,
43258 and fls is used to implement them.
43259
43260 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43261
43262 commit 83002a77cbdf383015ca384eff5fa31722d8e571
43263 Author: Magnus Lilja <lilja.magnus@gmail.com>
43264 Date: Mon Jun 9 22:58:48 2008 +0200
43265
43266 i.MX31: Cleanup comments in lowlevel_init.S.
43267
43268 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
43269
43270 commit f8cc312bbee69257d741dc9f4062f4a0f5adf609
43271 Author: Ben Warren <biggerbadderben@gmail.com>
43272 Date: Sun Jun 8 23:28:33 2008 -0700
43273
43274 Move conditional compilation of MPC8XXX SPI driver to Makefile
43275
43276 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43277
43278 commit d92ea21bafb674ee2bf27447970b047845e7b0a2
43279 Author: Juergen Kilb <J.Kilb@gmx.de>
43280 Date: Sun Jun 8 17:59:53 2008 +0200
43281
43282 i.MX31: fixed CTRL-C detection
43283
43284 The Register URXD contains status information in bits [15..8].
43285 With status bit 15 set, CTRL-C was reported as 0x8003 instead
43286 of 0x03. Therefore CTRL-C was not detected.
43287 To solve this, bits [15..8] were masked out now.
43288
43289 Signed-off-by: Juergen Kilb <J.Kilb@gmx.de>
43290 Acked-by: Felix Radensky <felix@embedded-sol.com>
43291
43292 commit dd1c5523d6f44e842e69f2fcb50788c6060eab86
43293 Author: Stefan Roese <sr@denx.de>
43294 Date: Tue Jul 1 17:03:19 2008 +0200
43295
43296 ppc4xx: Fix 460EX/GT PCIe port initialization
43297
43298 This patch fixes a bug where the 460EX/GT PCIe UTLSET1 register was
43299 configured incorrectly. Thanks to Olga Buchonina from AMCC for pointing
43300 this out.
43301
43302 Signed-off-by: Stefan Roese <sr@denx.de>
43303
43304 commit b571afde0295b007a45055ee49f8822c753a5651
43305 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43306 Date: Sat Jun 7 12:29:52 2008 +0200
43307
43308 add SHA256 support
43309
43310 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43311 Signed-off-by: Francesco Albanese <Francesco.Albanese@swisscom.com>
43312
43313 commit 3bab76a26e03df4ff81342fcc16393ce37d9766b
43314 Author: Marian Balakowicz <m8@semihalf.com>
43315 Date: Fri Jun 6 23:07:40 2008 +0200
43316
43317 Delay FIT format check on sector based devices
43318
43319 Global FIT image operations like format check cannot be performed on
43320 a first sector data, defer them to the point when whole FIT image was
43321 uploaded to a system RAM.
43322
43323 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43324 Partial ('cmd_nand' case) Acked-by: Grant Erickson <gerickson@nuovations.com>
43325 NAND and DOC bits Acked-by: Scott Wood <scottwood@freescale.com>
43326
43327 commit 9810263afec5ac5f38f92963bb3b6d799e4331d0
43328 Author: Dave Liu <r63238@freescale.com>
43329 Date: Tue Jun 3 17:38:19 2008 +0800
43330
43331 sata: wait for device updating signature to host
43332
43333 The driver need wait for the device updating signature to host.
43334 If we don't wait for it, the driver can not detect the device(disk)
43335 when the system powers up.
43336
43337 Signed-off-by: Dave Liu <daveliu@freescale.com>
43338
43339 commit 745d8a0d3cea82e6d1753e14afb4588c34761b15
43340 Author: Stefan Roese <sr@denx.de>
43341 Date: Sat Jun 28 14:56:17 2008 +0200
43342
43343 ppc4xx: Fix 460EX errata with CPU lockup upon high AHB traffic
43344
43345 This patch implements a fix provided by AMCC so that the lockup upon
43346 simultanious traffic on AHB USB OTG, USB 2.0 and SATA doesn't occur
43347 anymore:
43348
43349 Set SDR0_AHB_CFG[A2P_INCR4] (bit 24) and clear SDR0_AHB_CFG[A2P_PROT2]
43350 (bit 25) for a new 460EX errata regarding concurrent use of AHB USB OTG,
43351 USB 2.0 host and SATA.
43352
43353 This errata is not officially available yet. I'll update the comment
43354 to add the errata number later.
43355
43356 Signed-off-by: Stefan Roese <sr@denx.de>
43357
43358 commit 8b616edb118e37d05f6401389eaee1c636b22828
43359 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
43360 Date: Mon Jun 2 16:42:19 2008 -0400
43361
43362 serial_pl010.c: add watchdog support
43363
43364 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
43365
43366 commit 86d3273e2b7be3fffb45e20c08535d6ad3aded6b
43367 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
43368 Date: Mon Jun 2 16:40:08 2008 -0400
43369
43370 jffs2_1pass.c: add watchdog support
43371
43372 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
43373
43374 commit 5744ddc6637fea4f7b911a54a5fa860cb81a5d89
43375 Author: Sascha Laue <sascha.laue@liebherr.com>
43376 Date: Fri May 30 09:48:14 2008 +0200
43377
43378 Configure DSP POST; add watchdog reset to diag command
43379
43380 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
43381
43382 commit f13526517859bf6b573e23ff47199e107d1009b5
43383 Author: Tor Krill <tor@excito.com>
43384 Date: Thu May 29 10:40:17 2008 +0200
43385
43386 Add sata sil3114 support
43387
43388 Signed-off-by: Tor Krill <tor@excito.com>
43389
43390 commit e093a247628228100f405b6d7f6b1bfc16141938
43391 Author: Wolfgang Denk <wd@denx.de>
43392 Date: Sat Jun 28 23:34:37 2008 +0200
43393
43394 Coding Style Cleanup
43395
43396 Signed-off-by: Wolfgang Denk <wd@denx.de>
43397
43398 commit 01db232dd7a0ceb81208a9f2545720c80e5bfd83
43399 Author: Wolfgang Denk <wd@denx.de>
43400 Date: Sat Jun 28 23:16:01 2008 +0200
43401
43402 Update CHANGELOG
43403
43404 Signed-off-by: Wolfgang Denk <wd@denx.de>
43405
43406 commit c7f879ec2b389c4f2bf726b293bd516f4c692e03
43407 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
43408 Date: Wed May 21 13:58:41 2008 -0400
43409
43410 ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS)
43411
43412 This patch adds support for the Lyrtech SFF-SDR board,
43413 based on the TI DaVinci architecture (ARM926EJS).
43414
43415 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
43416 Signed-off-by: Philip Balister <philip@balister.org>
43417 Signed-off-by: Wolfgang Denk <wd@denx.de>
43418
43419 commit 341188b9ccaa8d4462d772cc067aca8d7618633a
43420 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43421 Date: Thu May 22 11:09:59 2008 +0200
43422
43423 MMC: Consolidate MMC/SD command definitions
43424
43425 This moves the MMC and SD Card command definitions from
43426 include/asm/arch/mmc.h into include/mmc.h. These definitions are
43427 given by the MMC and SD Card standards, not by any particular
43428 architecture.
43429
43430 There's a lot more room for consolidation in the MMC drivers which
43431 I'm hoping to get done eventually, but this patch is a start.
43432
43433 Compile-tested for all avr32 boards as well as lpc2292sodimm and
43434 lubbock. This should cover all three mmc drivers in the tree.
43435
43436 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43437
43438 commit fa60edfc4c952626e048c0e065f654b3c1822fa5
43439 Author: Kyungmin Park <kmpark@infradead.org>
43440 Date: Wed May 21 14:38:08 2008 +0900
43441
43442 Use better Ethernet timings for apollon board
43443
43444 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
43445
43446 commit 41c5eaa7253ed82bbae1eda5667755872c615164
43447 Author: Andy Fleming <afleming@freescale.com>
43448 Date: Mon Jun 16 13:58:56 2008 -0500
43449
43450 Resize device tree to allow space for board changes and the chosen node
43451
43452 Current code requires that a compiled device tree have space added to the end to
43453 leave room for extra nodes added by board code (and the chosen node). This
43454 requires that device tree creators anticipate how much space U-Boot will add to
43455 the tree, which is absurd. Ideally, the code would resize and/or relocate the
43456 tree when it needed more space, but this would require a systemic change to the
43457 fdt code, which is non-trivial. Instead, we resize the tree inside
43458 boot_relocate_fdt, reserving either the remainder of the bootmap (in the case
43459 where the fdt is inside the bootmap), or adding CFG_FDT_PAD bytes to the size.
43460
43461 Signed-off-by: Andy Fleming <afleming@freescale.com>
43462
43463 commit 7570a9941fc565922078679a72d246fe208d696d
43464 Author: Andy Fleming <afleming@freescale.com>
43465 Date: Mon Jun 16 13:58:55 2008 -0500
43466
43467 Fix an underflow bug in __lmb_alloc_base
43468
43469 __lmb_alloc_base can underflow if it fails to find free space. This was fixed
43470 in linux with commit d9024df02ffe74d723d97d552f86de3b34beb8cc. This patch
43471 merely updates __lmb_alloc_base to resemble the current version in Linux.
43472
43473 Signed-off-by: Andy Fleming <afleming@freescale.com>
43474
43475 commit 63796c4e61b207d2e635729d41b7a7f7d188b03c
43476 Author: Andy Fleming <afleming@freescale.com>
43477 Date: Mon Jun 16 13:58:54 2008 -0500
43478
43479 Add lmb_free
43480
43481 lmb_free allows us to unreserve some memory so we can use lmb_alloc_base or
43482 lmb_reserve to temporarily reserve some memory.
43483
43484 Signed-off-by: Andy Fleming <afleming@freescale.com>
43485
43486 commit 4b03ac8b5102ad95f9fede7d13fa236977593e7d
43487 Author: Andy Fleming <afleming@freescale.com>
43488 Date: Mon Jun 16 13:58:53 2008 -0500
43489
43490 Add ALIGN() macro
43491
43492 ALIGN() returns the smallest aligned value greater than the passed
43493 in address or size. Taken from Linux.
43494
43495 Signed-off-by: Andy Fleming <afleming@freescale.com>
43496
43497 commit 93262af85e3e9d9974c6c08fbd37a9a72e090ca2
43498 Author: Stefan Roese <sr@denx.de>
43499 Date: Tue Jun 24 17:15:22 2008 +0200
43500
43501 ppc4xx: Fix compilation problems with phys_size_t
43502
43503 This patch includes <asm/types.h> before <asm/u-boot.h> in some 4xx
43504 board specific files where it has been missing.
43505
43506 Signed-off-by: Stefan Roese <sr@denx.de>
43507
43508 commit 28eab0d77352b84885f938759bf2612b7bf0bc44
43509 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43510 Date: Mon May 19 12:26:38 2008 +0200
43511
43512 Conditionally add -fno-stack-protector to CFLAGS
43513
43514 When compile-testing on powerpc, I get errors like this:
43515
43516 net/nfs.c:422: undefined reference to `__stack_chk_fail_local'
43517
43518 This seems to be because -fstack-protector is on by default, so
43519 let's explicitly disable it on all architectures that support the
43520 option.
43521
43522 The Ubuntu toolchain is affected by this problem, and according to
43523 Mike Frysinger, Gentoo has been running with SSP enabled for years.
43524 More and more distros are turning SSP on by default, so this problem
43525 is likely to get worse in the future.
43526
43527 Also, powerpc just happens to be one of the arches I do
43528 compile-testing on. There may be other arches affected by this too.
43529
43530 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43531
43532 commit dfd3be881c03a26e31f0dea4a42e76061fa610ac
43533 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43534 Date: Sun May 18 19:09:52 2008 +0200
43535
43536 pcmcia/ti_pci1410a: Move compile condition to the Makefile
43537
43538 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43539
43540 commit 72d5d5f7b5c74a188df238ec6dd824d80c74857a
43541 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43542 Date: Sun May 18 19:09:51 2008 +0200
43543
43544 pxa_pcmcia: Move compile condition to the Makefile
43545
43546 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43547
43548 commit c9eff32881fb429101c937cf8c268f1d42e5c2a9
43549 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43550 Date: Sun May 18 19:09:50 2008 +0200
43551
43552 marabun_pcmcia: Move compile condition to the Makefile
43553
43554 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43555
43556 commit 6a19c46cae43c16c528eddefae3db97134f1915d
43557 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
43558 Date: Mon Jun 23 13:25:34 2008 +0200
43559
43560 fix non-working mvBL-M7
43561
43562 Add missing #define CONFIG_HIGH_BATS in mvBL-M7 board config file.
43563
43564 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
43565 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43566
43567 commit 846f1574ddddeda2bc227655e687308695f41cdc
43568 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
43569 Date: Mon Jun 23 11:40:56 2008 +0200
43570
43571 fix system config overwrite @ MPC834x and MPC8313
43572
43573 During 83xx setup the "System I/O configuration register high" gets
43574 overwritten with user defined value if CFG_SICRH is defined.
43575
43576 Regarding to the MPC834x manual (Table 5-28 reve.1) bits 28+29 of SICRH
43577 must keep their reset value regardless of configuration.
43578
43579 On my board (using RGMII) those bits are set after reset - yet it's
43580 unclear where they come from.
43581
43582 The patch keeps both bits on MPC834x and MPC8313.
43583
43584 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
43585 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43586
43587 commit 4890246a2c5df90a74e2941e3673a49bbd36aee9
43588 Author: Kim Phillips <kim.phillips@freescale.com>
43589 Date: Tue Jun 17 17:45:27 2008 -0500
43590
43591 mpc83xx: move CPU_TYPE_ENTRY over to processor.h
43592
43593 to avoid this:
43594
43595 cpu.c:47:1: warning: "CPU_TYPE_ENTRY" redefined
43596 In file included from cpu.c:33:
43597 /home/kim/git/u-boot/include/asm/processor.h:982:1: warning: this is the location of the previous definition
43598
43599 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43600
43601 commit aac7a5095b968d6c9a3e6422f31b4ad203cac9c8
43602 Author: Stefan Roese <sr@denx.de>
43603 Date: Mon Jun 23 11:15:09 2008 +0200
43604
43605 ppc4xx: Fix problem in gpio_config()
43606
43607 As pointed out by Guennadi Liakhovetski (thanks), pin2 is already shifted
43608 left by one. So the additional shift is bogus.
43609
43610 Signed-off-by: Stefan Roese <sr@denx.de>
43611
43612 commit 40777812316fc252c941665c0f60c148fd79d50f
43613 Author: Detlev Zundel <dzu@denx.de>
43614 Date: Fri Jun 20 22:24:05 2008 +0200
43615
43616 fdt: Fix typo in variable name.
43617
43618 Signed-off-by: Detlev Zundel <dzu@denx.de>
43619
43620 commit 5f723a3b98c630bde33de74351f2121691fdef14
43621 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43622 Date: Fri Jun 20 10:41:05 2008 +0200
43623
43624 avr32: Enable SPI flash support on ATNGW100
43625
43626 The ATNGW100 has 8MB DataFlash on board. Give users access to it through
43627 the new SPI flash framework.
43628
43629 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43630
43631 commit 5605ef6b5802921cbefe6a933a9dea3497396b5c
43632 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43633 Date: Fri Jun 20 12:44:28 2008 +0200
43634
43635 avr32: Fix SPI portmux initialization
43636
43637 Use the new GPIO manipulation functions to set up the chip select lines,
43638 and make sure both busses use GPIO for chip select control.
43639
43640 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43641
43642 commit 4688f9e34a87e825aed34d07c9ca7a273e6fc8ab
43643 Author: Peter Ma <pma@mediamatech.com>
43644 Date: Sun Jun 1 22:59:24 2008 -0700
43645
43646 avr32: Add GPIO manipulation functions
43647
43648 Adds GPIO manipulation functions for AVR32 AP7 platform.
43649
43650 Signed-off-by: Peter Ma <pma@mediamatech.com>
43651 [haavard.skinnemoen@atmel.com: coding style fixup, slight simplification]
43652 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43653
43654 commit b4fe1a71090c73efc6e4188eed188b2ff67fc02a
43655 Author: Wolfgang Grandegger <wg@grandegger.com>
43656 Date: Thu Jun 5 13:02:30 2008 +0200
43657
43658 MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
43659
43660 This patch is based on the following patch sent a few minutes ago:
43661 "NAND FSL UPM: driver re-write using the hwcontrol callback"
43662 It is untested, of course. Anton, could you please give it a try.
43663
43664 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
43665 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
43666
43667 commit 96026d42fa4e646d28318c0a1438aac4b2017909
43668 Author: Anatolij Gustschin <agust@denx.de>
43669 Date: Thu Jun 12 12:40:11 2008 +0200
43670
43671 Fix 4xx build issue
43672
43673 Building for 4xx doesn't work since commit 4dbdb768:
43674
43675 In file included from 4xx_pcie.c:28:
43676 include/asm/processor.h:971: error: expected ')' before 'ver'
43677 make[1]: *** [4xx_pcie.o] Error 1
43678
43679 This patch fixes the problem.
43680
43681 Signed-off-by: Anatolij Gustschin <agust@denx.de>
43682 Acked-by: Stefan Roese <sr@denx.de>
43683 Acked-by: Kumar Gala <galak@kernel.crashing.org>
43684
43685 commit a036b0443657fe0f4773786de9092251869f08ac
43686 Author: Kumar Gala <galak@kernel.crashing.org>
43687 Date: Thu Jun 19 01:45:50 2008 -0500
43688
43689 MPC8610HPCD: Report board id, board version and fpga version.
43690
43691 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43692
43693 commit 7de8c21f14df9c20fdcf6027aec8e8545f75f835
43694 Author: Kumar Gala <galak@kernel.crashing.org>
43695 Date: Thu Jun 19 01:45:27 2008 -0500
43696
43697 MPC8641HPCN: Report board id, board version and fpga version.
43698
43699 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43700
43701 commit fb8c061ea05fc68d37e2a8b9f8c949d76c8d71a8
43702 Author: Stefan Roese <sr@denx.de>
43703 Date: Mon Jun 16 10:40:02 2008 +0200
43704
43705 cfi-flash: Fix problem in flash_toggle(), busy was not detected reliably
43706
43707 This patch simplifies flash_toggle() (AMD commandset), which is used to
43708 detect if a FLASH device is still busy with erase/program operations. On
43709 800MHz Canyonlands/Glacier boards (460EX/GT) the current implementation
43710 did not detect the busy state reliably, resulting in non erased sectors
43711 etc. This patch now simplifies this function by "just" comparing the
43712 complete data-word instead of ANDing it with the command-word (0x40)
43713 before the compatison. It is done the same way in the Linux implementation
43714 chip_ready() in cfi_cmdset_0002.c.
43715
43716 Signed-off-by: Stefan Roese <sr@denx.de>
43717
43718 commit 9e4006bca3d9fb4a2d061996771036cb01e539d3
43719 Author: Philip Balister <philip@balister.org>
43720 Date: Mon Jun 16 08:58:07 2008 -0400
43721
43722 NAND: Add missing declaration to non-redundant saveenv().
43723
43724 Signed-off-by: Scott Wood <scottwood@freescale.com>
43725
43726 commit 2cdb7f50ac59594540fffdf8dbd7b12beac79c52
43727 Author: Wolfgang Grandegger <wg@grandegger.com>
43728 Date: Mon Jun 2 15:09:55 2008 +0200
43729
43730 MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
43731
43732 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
43733 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
43734 Signed-off-by: Scott Wood <scottwood@freescale.com>
43735
43736 commit 212ed90615c3d20fa6bd73d70d5153bd0d124e5f
43737 Author: Stefan Roese <sr@denx.de>
43738 Date: Tue Jun 10 15:34:11 2008 +0200
43739
43740 ppc4xx: Canyonlands: Disable the RTC M41T62 square wave output
43741
43742 This patch disables the square wave output of the M41T62 RTC used on
43743 Canyonlands & Glacier. Here the explanation:
43744
43745 The serial real-time clock part used in the design is an
43746 STMicro M41T62. This part has a full-time 32KHz square wave
43747 output that is connected to the TmrClk input to the
43748 processor. The default state for this square wave output is
43749 enabled so the output runs continuously when the board is
43750 powered normally and also from the battery. The TmrClk input
43751 to the processor goes to ground when the power is removed
43752 from the board/processor, and therefore the running square
43753 wave output is driving ground which drains the battery quickly.
43754
43755 Signed-off-by: Stefan Roese <sr@denx.de>
43756
43757 commit a94f22f08f280905926219e568568964cb9eeb9d
43758 Author: Andy Fleming <afleming@freescale.com>
43759 Date: Wed Jun 11 18:10:20 2008 -0500
43760
43761 Fix build issue with string.h and linux/string.h
43762
43763 This commit:
43764 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
43765 Author: Wolfgang Denk <wd@denx.de>
43766 Date: Fri Jun 6 14:28:14 2008 +0200
43767
43768 tools/mkimage: fix compiler warnings on some systems.
43769
43770 Broke building on some systems, because the host's string.h was interfering
43771 with u-boot's linux/string.h. It doesn't look like we need the u-boot one if
43772 we're building for the host, so now we only include when building inside
43773 u-boot.
43774
43775 Signed-off-by: Andy Fleming <afleming@freescale.com>
43776
43777 commit 9973e3c614721bbf169882ffc3be266a6611cd60
43778 Author: Becky Bruce <becky.bruce@freescale.com>
43779 Date: Mon Jun 9 16:03:40 2008 -0500
43780
43781 Change initdram() return type to phys_size_t
43782
43783 This patch changes the return type of initdram() from long int to phys_size_t.
43784 This is required for a couple of reasons: long int limits the amount of dram
43785 to 2GB, and u-boot in general is moving over to phys_size_t to represent the
43786 size of physical memory. phys_size_t is defined as an unsigned long on almost
43787 all current platforms.
43788
43789 This patch *only* changes the return type of the initdram function (in
43790 include/common.h, as well as in each board's implementation of initdram). It
43791 does not actually modify the code inside the function on any of the platforms;
43792 platforms which wish to support more than 2GB of DRAM will need to modify
43793 their initdram() function code.
43794
43795 Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc
43796 MPC8641HPCN.
43797
43798 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
43799
43800 commit 391fd93ab23e15ab3dd58a54f5b609024009c378
43801 Author: Becky Bruce <becky.bruce@freescale.com>
43802 Date: Mon Jun 9 20:37:18 2008 -0500
43803
43804 Change lmb to use phys_size_t/phys_addr_t
43805
43806 This updates the lmb code to use phys_size_t
43807 and phys_addr_t instead of unsigned long. Other code
43808 which interacts with this code, like getenv_bootm_size()
43809 is also updated.
43810
43811 Booted on MPC8641HPCN, build-tested ppc, arm, mips.
43812
43813 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
43814
43815 commit 61b09fc2952dc636017df4e7970e3de132276ba1
43816 Author: Becky Bruce <becky.bruce@freescale.com>
43817 Date: Mon Jun 9 20:37:17 2008 -0500
43818
43819 Change print_size to take phys_size_t
43820
43821 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
43822
43823 commit b57ca3e128cc10a133ba79bc7ec3e7b50e7c8fbe
43824 Author: Becky Bruce <becky.bruce@freescale.com>
43825 Date: Mon Jun 9 20:37:16 2008 -0500
43826
43827 Change bd/gd memsize/ram_size to be phys_size_t.
43828
43829 Currently, both are defined as an unsigned long, but
43830 should be phys_size_t. This should result in no real change,
43831 since phys_size_t is currently an unsigned long for all the
43832 default configs. Also add print_lnum to cmd_bdinfo to deal
43833 with the potentially wider memsize.
43834
43835 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
43836
43837 commit ba04f7010958e88a8910f2a123fee53fdc72e013
43838 Author: Kumar Gala <galak@kernel.crashing.org>
43839 Date: Tue Jun 10 16:16:02 2008 -0500
43840
43841 FSL LAW: Add new interface to use the last free LAW
43842
43843 LAWs have the concept of priority so its useful to be able to allocate
43844 the lowest (highest number) priority. We will end up using this with the
43845 new DDR code.
43846
43847 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43848
43849 commit 859a86a25c569d3665ff413d1d923394b8a961f3
43850 Author: Kumar Gala <galak@kernel.crashing.org>
43851 Date: Wed Jun 11 00:51:45 2008 -0500
43852
43853 85xx/86xx: Move to dynamic mgmt of LAWs
43854
43855 With the new LAW interface (set_next_law) we can move to letting the
43856 system allocate which LAWs are used for what purpose. This makes life
43857 a bit easier going forward with the new DDR code.
43858
43859 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43860 Signed-off-by: Andy Fleming <afleming@freescale.com>
43861 Acked-by: Jon Loeliger <jdl@freescale.com>
43862 Acked-by: Becky Bruce <becky.bruce@freescale.com>
43863
43864 commit f060054dadbbe7027ca088eed806a3ef1f82fdb7
43865 Author: Kumar Gala <galak@kernel.crashing.org>
43866 Date: Wed Jun 11 00:44:10 2008 -0500
43867
43868 FSL LAW: Keep track of LAW allocations
43869
43870 Make it so we keep track of which LAWs have allocated and provide
43871 a function (set_next_law) which can allocate a LAW for us if one is
43872 free.
43873
43874 In the future we will move to doing more "dynamic" LAW allocation
43875 since the majority of users dont really care about what LAW number
43876 they are at.
43877
43878 Also, add CONFIG_MPC8540 or CONFIG_MPC8560 to those boards which needed them
43879
43880 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43881 Signed-off-by: Andy Fleming <afleming@freescale.com>
43882
43883 commit ddde74a159caa6e18b481fec01d40b885aebb566
43884 Author: Kumar Gala <galak@kernel.crashing.org>
43885 Date: Mon Jun 9 22:31:57 2008 -0500
43886
43887 85xx: remove dummy board_early_init_f
43888
43889 A number of board ports have empty version of board_early_init_f
43890 for no reason since we control its via CONFIG_BOARD_EARLY_INIT_F.
43891
43892 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43893
43894 commit 81e56e9af0d43712db8efb843606a8d62eab454f
43895 Author: Kumar Gala <galak@kernel.crashing.org>
43896 Date: Mon Jun 9 18:55:38 2008 -0500
43897
43898 MPC8544DS: Update config.h
43899
43900 * Enable flash progress
43901 * remove CLEAR_LAW0 since we dont really use it
43902
43903 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43904
43905 commit 978e81604c1b28526ed580df0fbe64eb8384e94f
43906 Author: Kumar Gala <galak@kernel.crashing.org>
43907 Date: Mon Jun 9 13:37:24 2008 -0500
43908
43909 85xx: Remove unused and unconfigured memory test code.
43910
43911 Remove unused and unconfigured DDR test code from FSL 85xx boards.
43912 Besides, other common code exists.
43913
43914 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43915
43916 commit a23cddde1a95f987e3fe2a720a7ec9375b7264d7
43917 Author: Sergei Poselenov <sposelenov@emcraft.com>
43918 Date: Fri Jun 6 15:42:45 2008 +0200
43919
43920 Socrates: Added FPGA base address update in FDT.
43921
43922 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
43923
43924 commit fd51b0e0e620b8bc9fd4f6daa3a4fa6f5e1316f4
43925 Author: Sergei Poselenov <sposelenov@emcraft.com>
43926 Date: Fri Jun 6 15:42:44 2008 +0200
43927
43928 Socrates: NAND support added. Changed the U-Boot base address and
43929
43930 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
43931
43932 commit 248ae5cfc8bf69074d1da099dc495d8e06070547
43933 Author: Sergei Poselenov <sposelenov@emcraft.com>
43934 Date: Fri Jun 6 15:42:43 2008 +0200
43935
43936 NAND: Added support for 128-bit OOB, adapted
43937
43938 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
43939
43940 commit 31ca0208612f2eb57690110d7c2815953650e47b
43941 Author: Sergei Poselenov <sposelenov@emcraft.com>
43942 Date: Fri Jun 6 15:42:42 2008 +0200
43943
43944 Socrates: added missed file with UPMA configuration data.
43945
43946 Signed-of-by: Sergei Poselenov <sposelenov@emcraft.com>
43947
43948 commit 59abd15b43cab7a4d19de4ba0943837d9555f7ba
43949 Author: Sergei Poselenov <sposelenov@emcraft.com>
43950 Date: Fri Jun 6 15:42:41 2008 +0200
43951
43952 Socrates: Added FPGA mapping. LAWs and TLBs cleanup.
43953
43954 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
43955
43956 commit 740280e68ccc0b971e613face7eaaa8bd1382b8c
43957 Author: Sergei Poselenov <sposelenov@emcraft.com>
43958 Date: Fri Jun 6 15:42:40 2008 +0200
43959
43960 Added the upmconfig() function for 85xx.
43961
43962 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
43963 Signed-off-by: Andy Fleming <afleming@freescale.com>
43964
43965 commit d39e68514ff943930ee692cff3fde03532eb7fec
43966 Author: Sergei Poselenov <sposelenov@emcraft.com>
43967 Date: Fri Jun 6 15:42:39 2008 +0200
43968
43969 Socrates: config file cleanup.
43970
43971 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
43972
43973 commit e8cc3f04b124f757af4528206e60d8eb715ae083
43974 Author: Wolfgang Grandegger <wg@grandegger.com>
43975 Date: Thu Jun 5 13:12:10 2008 +0200
43976
43977 TQM85xx: Change memory map to support Flash memory > 128 MiB
43978
43979 Some TQM85xx boards could be equipped with up to 1 GiB (NOR) Flash
43980 memory. The current memory map only supports up to 128 MiB Flash.
43981 This patch adds the configuration option CONFIG_TQM_BIGFLASH. If
43982 set, up to 1 GiB flash is supported. To achieve this, the memory
43983 map has to be adjusted in great parts (for example the CCSRBAR is
43984 moved from 0xE0000000 to 0xA0000000).
43985
43986 If you want to boot Linux with CONFIG_TQM_BIGFLASH set, the new
43987 memory map also has to be considered in the kernel (changed
43988 CCSRBAR address, changed PCI IO base address, ...). Please use
43989 an appropriate Flat Device Tree blob (tqm8548.dtb).
43990
43991 Signed-off-by: Martin Krause <martin.krause@tqs.de>
43992 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
43993
43994 commit 1c2deff22cd6e2bf0e618fd6e09ca3eec5a8d051
43995 Author: Wolfgang Grandegger <wg@grandegger.com>
43996 Date: Thu Jun 5 13:12:09 2008 +0200
43997
43998 TQM85xx: NAND support via local bus UPMB
43999
44000 This patch adds support for NAND FLASH on the TQM8548. It is disabled by
44001 default and can be enabled for the TQM8548 modules. It is now based on
44002 the re-written FSL NAND UPM driver. A patch has been posted earlier today
44003 with the subject:
44004
44005 "NAND FSL UPM: driver re-write using the hwcontrol callback"
44006
44007 Note that the R/B pin is not supported by that module requiring to use
44008 the specified maximum delay time.
44009
44010 Note: With NAND support enabled the size of the U-Boot image exceeds
44011 256 KB and TEXT_BASE must therefore be set to 0xfff80000 in config.mk,
44012 doubling the image size :-(.
44013
44014 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
44015 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44016
44017 commit b9e8078bb3f3c48111a7081e27279938c3a445e1
44018 Author: Wolfgang Grandegger <wg@grandegger.com>
44019 Date: Thu Jun 5 13:12:08 2008 +0200
44020
44021 TQM8548: PCI express support
44022
44023 This patch adds support for PCI express cards. The board support
44024 now uses common FSL PCI init code, for both, PCI and PCIe on all
44025 TQM85xx modules.
44026
44027 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
44028 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44029
44030 commit 1287e0c55a2ee2c575ac9ce8e4302cd4085be876
44031 Author: Wolfgang Grandegger <wg@grandegger.com>
44032 Date: Thu Jun 5 13:12:07 2008 +0200
44033
44034 TQM8548: Basic support for the TQM8548 modules
44035
44036 This patch adds basic support for the TQM8548 module from TQ-Components
44037 (http://www.tqc.de/) including DDR2 SDRAM initialisation and support for
44038 eTSEC 3 and 4
44039
44040 Furthermore Flash buffer write has been enabled to speed up output to
44041 the Flash by approx. a factor of 10.
44042
44043 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
44044 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44045
44046 commit 25991353204c78b094c3c1fec90182dcd607ab8f
44047 Author: Wolfgang Grandegger <wg@grandegger.com>
44048 Date: Thu Jun 5 13:12:06 2008 +0200
44049
44050 TQM85xx: Support for Flat Device Tree
44051
44052 This patch adds support for Linux kernels using the Flat Device Tree.
44053 It also re-defines the default environment settings for booting Linux
44054 with the FDT blob.
44055
44056 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44057
44058 commit d9ee843d54c54776e1fdb86336ce554906a87331
44059 Author: Wolfgang Grandegger <wg@grandegger.com>
44060 Date: Thu Jun 5 13:12:05 2008 +0200
44061
44062 TQM85xx: Support for Intel 82527 compatible CAN controller
44063
44064 This patch adds initialization of the UPMC RAM to support up to two
44065 Intel 82527 compatible CAN controller on the TQM85xx modules.
44066
44067 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
44068 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44069
44070 commit 518d5cfe72916323c746af1647764459914f555f
44071 Author: Wolfgang Grandegger <wg@grandegger.com>
44072 Date: Thu Jun 5 13:12:04 2008 +0200
44073
44074 TQM85xx: Bugfix in the SDRAM initialisation
44075
44076 The CS0_BNDS register is now set according to the detected
44077 memory size.
44078
44079 Signed-off-by Martin Krause <martin.krause@tqs.de>
44080
44081 commit 45dee2e620ccec6ac7b3548fe8979a34fd030e5d
44082 Author: Wolfgang Grandegger <wg@grandegger.com>
44083 Date: Thu Jun 5 13:12:03 2008 +0200
44084
44085 TQM85xx: Fix chip select configuration for second FLASH bank
44086
44087 This patch fixes the re-calculation of the automatic chip select
44088 configuration for boards with two populated FLASH banks.
44089
44090 Signed-off-by: Martin Krause <martin.krause@tqs.de>
44091
44092 commit 46346f27cda6fd025a496bde8f2d4aeee04aca5f
44093 Author: Wolfgang Grandegger <wg@grandegger.com>
44094 Date: Thu Jun 5 13:12:02 2008 +0200
44095
44096 TQM85xx: Support for Spansion 'N' type flashes added
44097
44098 The 'N' type Spansion flashes (S29GLxxxN series) have bigger sectors,
44099 than the formerly used 'M' types (S29GLxxxM series), so the flash layout
44100 needs to be changed -> new start address of the environment. The macro
44101 definition CONFIG_TQM_FLASH_N_TYPE is undefined by default and must be
44102 defined for boards with 'N' type flashes.
44103
44104 Signed-off-by: Martin Krause <martin.krause@tqs.de>
44105 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44106
44107 commit 5d5bd838f76eade22c0ea40a500389f924d0da36
44108 Author: Wolfgang Grandegger <wg@grandegger.com>
44109 Date: Thu Jun 5 13:12:01 2008 +0200
44110
44111 TQM85xx: Fix CPM port pin configuration
44112
44113 Do not configure port pins PD30/PD31 as SCC1 TxD/RxD except for the TQM8560
44114 board. On the other TQM85xx boards (TQM8541 and TQM8555) SCC1 is not used
44115 as serial interface anyway. Worse, on some board variants configuring the
44116 pins for SCC1 leads to short circuits (for example on the TQM8541-BG).
44117
44118 Signed-off-by: Martin Krause <martin.krause@tqs.de>
44119
44120 commit b99ba1679e8cd51b023e67098c89e606e47137d2
44121 Author: Wolfgang Grandegger <wg@grandegger.com>
44122 Date: Thu Jun 5 13:12:00 2008 +0200
44123
44124 TQM85xx: Various coding style fixes
44125
44126 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44127
44128 commit ae9e97fa96f643c8ba2b666b06a026cc8717eb00
44129 Author: Gerald Van Baren <vanbaren@cideas.com>
44130 Date: Tue Jun 10 22:15:58 2008 -0400
44131
44132 libfdt: Move the working_fdt pointer to cmd_fdt.c
44133
44134 The working_fdt pointer was declared in common/fdt_support.c but was
44135 not used there. Move it to common/cmd_fdt.c where it is used (it is
44136 also used in lib_ppc/bootm.c).
44137
44138 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44139
44140 commit e489b9c078e22b0d9e75f002cd2a1bd967e88f5e
44141 Author: Kim Phillips <kim.phillips@freescale.com>
44142 Date: Tue Jun 10 11:06:17 2008 -0500
44143
44144 fdt: unshadow global working fdt variable
44145
44146 differentiate with local variables of the same name by renaming the
44147 global 'fdt' variable 'working_fdt'.
44148
44149 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44150
44151 commit e1eb0e25d9d8fd8efdfb93f670a417663f386022
44152 Author: Andy Fleming <afleming@freescale.com>
44153 Date: Tue Jun 10 18:49:34 2008 -0500
44154
44155 socrates: Fix PCI clk fix patch
44156
44157 The submitted patch seems to have been more up-to-date, but an older patch was
44158 already in the repository. This patch encompasses the differences
44159
44160 Taken entirely from Sergei Poselenov <sposelenov@emcraft.com>
44161
44162 Signed-off-by: Andy Fleming <afleming@freescale.com>
44163
44164 commit a75a57ef6e4b613c81434971e96ed70cf9ec9ba0
44165 Author: Wolfgang Grandegger <wg@grandegger.com>
44166 Date: Thu Jun 5 13:02:29 2008 +0200
44167
44168 NAND FSL UPM: driver re-write using the hwcontrol callback
44169
44170 This is a re-write of the NAND FSL UPM driver using the more universal
44171 hwcontrol callback (instead of the cmdfunc callback). Here is a brief
44172 list of furher modifications:
44173
44174 - For the time being, the UPM setup writing the UPM array has been
44175 removed from the driver and must now be done by the board specific
44176 code.
44177
44178 - The bus width definition in "struct fsl_upm_nand" is now in bits to
44179 comply with the corresponding Linux driver and 8, 16 and 32 bit
44180 accesses are supported.
44181
44182 - chip->dev_read is only set if fun->dev_ready != NULL, which is
44183 required for boards not connecting the R/B pin.
44184
44185 - A few issue have been fixed with MxMR bit manipulation like in the
44186 corresponding Linux driver.
44187
44188 Note: I think the "io_addr" field of "struct fsl_upm" could be removed
44189 as well, because the address is already determined by
44190 "nand->IO_ADDR_[RW]", but I'm not 100% sure.
44191
44192 This patch has been tested on a TQM8548 modules with the NAND chip
44193 Micron MT29F8G08FABWP.
44194
44195 This patch is based on the following patches posted to this list a few
44196 minutes ago:
44197
44198 PPC: add accessor macros to clear and set bits in one shot
44199 83xx/85xx/86xx: add more MxMR local bus definitions
44200
44201 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44202 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44203
44204 commit 6beecfbb542992eede5831240cd58678274683a9
44205 Author: Wolfgang Grandegger <wg@grandegger.com>
44206 Date: Thu Jun 5 13:11:59 2008 +0200
44207
44208 MPC85xx: Beautify boot output of L2 cache configuration
44209
44210 The boot output is now aligned poperly with other boot output
44211 lines, e.g.:
44212
44213 FLASH: 128 MB
44214 L2: 512 KB enabled
44215
44216 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44217
44218 commit 398415114f0a705163a14543e9fef03f734b1ffa
44219 Author: Wolfgang Grandegger <wg@grandegger.com>
44220 Date: Wed Jun 4 12:45:22 2008 +0200
44221
44222 PPC: add accessor macros to clear and set bits in one shot
44223
44224 PPC: add accessor macros to clear and set bits in one shot
44225
44226 This patch adds macros from linux/include/asm-powerpc/io.h to clear and
44227 set bits in one shot using the in_be32, out_be32, etc. accessor functions.
44228 They are very handy to manipulate bits it I/O registers.
44229
44230 This patch is required for my forthcoming FSL NAND UPM driver re-write and
44231 the support for the TQM8548 module.
44232
44233 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44234
44235 commit 4677988c7edc070c3786d3db7994abeca3ab82a0
44236 Author: Wolfgang Grandegger <wg@grandegger.com>
44237 Date: Wed Jun 4 13:52:17 2008 +0200
44238
44239 TQM: move TQM boards to board/tqc
44240
44241 Move all TQM board directories to the vendor specific directory "tqc"
44242 for modules from TQ-Components GmbH (http://www.tqc.de).
44243
44244 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44245
44246 commit 6fab2fe72ca5bf95280cd52cdf378af3e506eb50
44247 Author: Wolfgang Grandegger <wg@grandegger.com>
44248 Date: Mon Jun 2 12:09:30 2008 +0200
44249
44250 83xx/85xx/86xx: add more MxMR local bus definitions
44251
44252 83xx/85xx/86xx: add more MxMR local bus definitions
44253
44254 This patch adds more macro definitions for the UPM Machine Mode Registers
44255 They are copied from "include/mpc82xx.h" to simplify the merge of all 8xxx
44256 common local bus definitions into include/asm-ppc/fsl_lbc.h. They are
44257 required for my forthcoming FSL NAND UPM driver re-write and the support
44258 for the TQM8548 module.
44259
44260 This patch is based on the following two patches from Anton Vorontsov:
44261
44262 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06511.html
44263 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06587.html
44264
44265 I leave coding style violation fixes, code beautification and name
44266 corrections to somebody else ;-(.
44267
44268 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44269
44270 commit c8c5fc266e4499e283c293ccb972863156aa4134
44271 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44272 Date: Thu May 29 18:14:56 2008 +0400
44273
44274 83xx/85xx: further localbus cleanups
44275
44276 Merge mpc85xx.h's LBC defines to fsl_lbc.h. Also, adopt ACS names
44277 from mpc85xx.h, so ACS_0b10 renamed to ACS_DIV4, ACS_0b11 to ACS_DIV2.
44278
44279 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44280
44281 commit 42dbd667c88d496882d53e22656e89b654205492
44282 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44283 Date: Wed May 28 18:20:15 2008 +0400
44284
44285 83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
44286
44287 This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
44288 use it on MPC85xx and MPC86xx processors.
44289
44290 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44291
44292 commit 730b2fcf6fcd9eec3ea86fbb087c3f98aa23a769
44293 Author: Kumar Gala <galak@kernel.crashing.org>
44294 Date: Thu May 29 11:22:06 2008 -0500
44295
44296 85xx: Add setting of cache props in the device tree.
44297
44298 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44299
44300 commit 4dbdb7681e243431530df0725627192a0c4aefda
44301 Author: Kumar Gala <galak@kernel.crashing.org>
44302 Date: Tue Jun 10 16:53:46 2008 -0500
44303
44304 85xx: expose cpu identification
44305
44306 The current cpu identification code is used just to return the name
44307 of the processor at boot. There are some other locations that the name
44308 is useful (device tree setup). Expose the functionality to other bits
44309 of code.
44310
44311 Also, drop the 'E' suffix and add it on by looking at the SVR version
44312 when we print this out. This is mainly to allow the most flexible use
44313 of the name. The device tree code tends to not care about the 'E' suffix.
44314
44315 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44316
44317 commit 2329fe113d847e43cca8e4a0e4edd613b50b8492
44318 Author: Kim Phillips <kim.phillips@freescale.com>
44319 Date: Tue Jun 10 13:25:24 2008 -0500
44320
44321 mpc83xx: MVBLM7: minor build fixups
44322
44323 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44324
44325 commit a1293e549b56da135ef32ffca5b9d35a16aa6802
44326 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
44327 Date: Tue Jun 10 09:14:05 2008 +0200
44328
44329 add MPC8343 based board mvBlueLYNX-M7 (board+make files)
44330
44331 Add MPC8343 based board mvBlueLYNX-M7.
44332 It's a single board stereo camera system.
44333 Please read doc/README.mvblm7 for details.
44334
44335 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
44336 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44337
44338 commit c005b93925ba49f07da2aa748527996d927e172f
44339 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
44340 Date: Tue Jun 10 09:13:16 2008 +0200
44341
44342 add MPC8343 based board mvBlueLYNX-M7 (doc+config)
44343
44344 Add MPC8343 based board mvBlueLYNX-M7.
44345 It's a single board stereo camera system.
44346 Please read doc/README.mvblm7 for details.
44347
44348 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
44349 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44350
44351 commit f9023afbdfd9f27e7c38f3cce965746e56d62dd3
44352 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44353 Date: Thu May 29 18:14:56 2008 +0400
44354
44355 83xx/85xx: further localbus cleanups
44356
44357 move the BRx_* and ORx_* left behind in mpc85xx.h
44358
44359 The same is needed for mpc8xx.h and mpc8260.h (defines are almost
44360 the same, just few differences which needs some attention though).
44361
44362 But the bad news for mpc8xx and mpc8260 is that there are a lot of users
44363 of these defines. So this cleanup I'll leave for the "better times".
44364
44365 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44366 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44367
44368 commit bf30bb1f7c954d7855d9b23624b33b00c50b4697
44369 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44370 Date: Wed May 28 18:20:15 2008 +0400
44371
44372 83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
44373
44374 This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
44375 use it on MPC85xx and MPC86xx processors.
44376
44377 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44378 Acked-by: Andy Fleming <afleming@freescale.com>
44379 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44380
44381 commit d82b4fc0ce8cca95e857fc51022e841cb2dbee6a
44382 Author: Tor Krill <tor@excito.com>
44383 Date: Mon Jun 2 15:09:30 2008 +0200
44384
44385 Add missing CSCONFIG_BANK_BIT_3 define to mpc83xx.h
44386
44387 Signed-off-by: Tor Krill <tor@excito.com>
44388 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44389
44390 commit 3b904ccb93c3196727e2e9870cb1df903cab19ad
44391 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44392 Date: Mon Jun 9 23:37:44 2008 +0900
44393
44394 net: Conditional COBJS inclusion of network drivers
44395
44396 Replace COBJS-y with appropriate driver config names.
44397
44398 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44399 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44400
44401 commit 2fb698bf50f4aff2485581a12fa634a07c040e4a
44402 Author: Gerald Van Baren <vanbaren@cideas.com>
44403 Date: Mon Jun 9 21:02:17 2008 -0400
44404
44405 Use strncmp() for the fdt command
44406
44407 Cleaner than doing multiple conditionals on characters.
44408
44409 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44410
44411 commit 47abe8ab290d2721a8eeadff65b939e6af8c01b0
44412 Author: Gerald Van Baren <vanbaren@cideas.com>
44413 Date: Sat Jun 7 12:25:05 2008 -0400
44414
44415 The fdt boardsetup command criteria was not unique
44416
44417 It was checking just for "b", which is not unique with respect to the
44418 "boot" command. Change to check for "boa"[rdsetup].
44419
44420 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44421
44422 commit 2f08bfa9526bae4f461e043530cfb903fec0d273
44423 Author: David Gibson <david@gibson.dropbear.id.au>
44424 Date: Tue May 20 17:19:11 2008 +1000
44425
44426 libfdt: Several cleanups to parameter checking
44427
44428 This patch makes a couple of small cleanups to parameter checking of
44429 libfdt functions.
44430
44431 - In several functions which take a node offset, we use an
44432 idiom involving fdt_next_tag() first to check that we have indeed been
44433 given a node offset. This patch adds a helper function
44434 _fdt_check_node_offset() to encapsulate this usage of fdt_next_tag().
44435
44436 - In fdt_rw.c in several places we have the expanded version
44437 of the RW_CHECK_HEADER() macro for no particular reason. This patch
44438 replaces those instances with an invocation of the macro; that's what
44439 it's for.
44440
44441 - In fdt_sw.c we rename the check_header_sw() function to
44442 sw_check_header() to match the analgous function in fdt_rw.c, and we
44443 provide an SW_CHECK_HEADER() wrapper macro as RW_CHECK_HEADER()
44444 functions in fdt_rw.c
44445
44446 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
44447
44448 commit fec6d9ee7c10443f65ce1788ef818919167bbf2e
44449 Author: Gerald Van Baren <vanbaren@cideas.com>
44450 Date: Tue Jun 3 20:34:45 2008 -0400
44451
44452 Remove the deprecated CONFIG_OF_FLAT_TREE
44453
44454 Use CONFIG_OF_LIBFDT instead to support flattened device trees. It is
44455 cleaner, has better functionality, and is better supported.
44456
44457 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44458
44459 commit 62bcdda293efa752f8281fbd9da03822b27ce82f
44460 Author: Gerald Van Baren <vanbaren@cideas.com>
44461 Date: Tue Jun 3 20:26:29 2008 -0400
44462
44463 Change the stxxst to CONFIG_OF_LIBFDT
44464
44465 This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
44466 to CONFIG_OF_LIBFDT.
44467
44468 WARNING: It appears that this board lost its ability to boot via a
44469 flattened device tree prior to this changeset.
44470
44471 WARNING: This conversion was untested because I do not have a board to
44472 test it on.
44473
44474 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44475
44476 commit 589c04271d129729a8b01391453851ab9cc4069c
44477 Author: Gerald Van Baren <vanbaren@cideas.com>
44478 Date: Tue Jun 3 20:24:58 2008 -0400
44479
44480 Convert mpc7448hpc2 to CONFIG_OF_LIBFDT
44481
44482 This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
44483 to CONFIG_OF_LIBFDT.
44484
44485 WARNING: This conversion is untested because I do not have a board to
44486 test it on.
44487
44488 NOTE: The FDT blob (DTS) must have an /aliases/ethernet0 and (optionally)
44489 /aliases/ethernet1 property for the ethernet to work.
44490
44491 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44492
44493 commit ee1e35bede91debc8bff9b02f75574486033b652
44494 Author: Kumar Gala <galak@kernel.crashing.org>
44495 Date: Thu May 29 01:21:24 2008 -0500
44496
44497 85xx: Only use PORPLLSR[DDR_Ratio] on platforms that define it
44498
44499 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44500
44501 commit 3b9519fc50802436e417c839e69df7b2016cade5
44502 Author: Becky Bruce <becky.bruce@freescale.com>
44503 Date: Wed May 14 13:10:04 2008 -0500
44504
44505 MPC85xx: Change traps.c to not reference non-addressable memory
44506
44507 Currently, END_OF_RAM is used by the trap code to determine if
44508 we should attempt to access the stack pointer or not. However,
44509 on systems with a lot of RAM, only a subset of the RAM is
44510 guaranteed to be mapped in and accessible. Change END_OF_RAM
44511 to use get_effective_memsize() instead of using the raw ram
44512 size out of the bd.
44513
44514 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
44515
44516 commit 7faddaecea52f585f538fdf9c2e61f85a789b19c
44517 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
44518 Date: Mon Jun 9 13:39:57 2008 +0900
44519
44520 sh: Renesas Solutions SH7763RDP board support
44521
44522 SH7763RDP has SCIF, NOR Flash, Ethernet, USB host, LCDC and MMC.
44523 In this patch, support SCIF, NOR Flash, and Ethernet.
44524
44525 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
44526 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44527
44528 commit 60179098a95eaa972007d7ec58e4c1588029720f
44529 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
44530 Date: Fri Jun 6 16:24:13 2008 +0900
44531
44532 sh: Add support Renesas SH7763
44533
44534 Renesas SH7763 has 3 SCIF, MMC, LCDC, Ethernet and other.
44535 This patch supprts CPU register's header file.
44536
44537 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
44538 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44539
44540 commit 08c5fabe181d663eec0feba5ecd02c0b78934a52
44541 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
44542 Date: Fri Jun 6 16:16:08 2008 +0900
44543
44544 sh: SH7763 SCIF support
44545
44546 SH7763 has 3 SCIF channels. SCIF0 and 1 are same register constitution,
44547 but only SCIF2 is different. This patch work all SCIF channel.
44548
44549 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
44550 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44551
44552 commit 79b51ff8205f0354d5300570614c1d2db499679c
44553 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44554 Date: Sat Jun 7 20:51:59 2008 +0900
44555
44556 [MIPS] cpu/mips/Makefile: Split [CS]OBJS onto separate lines
44557
44558 Also get rid of some #ifdefs in *.c files.
44559
44560 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44561
44562 commit 8bde63eb3f79d68f693201528dafc8ae7aa087de
44563 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44564 Date: Sat Jun 7 20:51:56 2008 +0900
44565
44566 [MIPS] Rename Alchemy processor configs into CONFIG_SOC_*
44567
44568 CONFIG_SOC_AU1X00
44569
44570 Common Alchemy Au1x00 stuff. All Alchemy processor based machines
44571 need to have this config as a system type specifier.
44572
44573 CONFIG_SOC_AU1000, CONFIG_SOC_AU1100, CONFIG_SOC_AU1200,
44574 CONFIG_SOC_AU1500, CONFIG_SOC_AU1550
44575
44576 Machine type specifiers. Each port should have one of aboves.
44577
44578 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44579
44580 commit cc49cadeeb8bb2f0ae3fdc13af7051ae59f083bc
44581 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
44582 Date: Fri May 30 16:05:28 2008 -0400
44583
44584 env_nand.c: Added bad block management for environment variables
44585
44586 Modified to check for bad blocks and to skipping over them when
44587 CFG_ENV_RANGE has been defined.
44588 CFG_ENV_RANGE must be larger than CFG_ENV_SIZE and aligned to the NAND
44589 flash block size.
44590
44591 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
44592 Signed-off-by: Scott Wood <scottwood@freescale.com>
44593
44594 commit 279726bd00558e80263d44581c44167625b7fb9a
44595 Author: Becky Bruce <becky.bruce@freescale.com>
44596 Date: Wed May 14 13:09:58 2008 -0500
44597
44598 MPC86xx: Change traps.c to not reference non-addressable memory
44599
44600 Currently, END_OF_RAM is used by the trap code to determine if
44601 we should attempt to access the stack pointer or not. However,
44602 on systems with a lot of RAM, only a subset of the RAM is
44603 guaranteed to be mapped in and accessible. Change END_OF_RAM
44604 to use get_effective_memsize() instead of using the raw ram
44605 size out of the bd to prevent us from trying to access
44606 non-mapped memory.
44607
44608 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
44609
44610 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
44611 Author: Wolfgang Denk <wd@denx.de>
44612 Date: Fri Jun 6 14:28:14 2008 +0200
44613
44614 tools/mkimage: fix compiler warnings on some systems.
44615
44616 Signed-off-by: Wolfgang Denk <wd@denx.de>
44617
44618 commit b2815f79288d4da7a3ba18bdbd05120ce09d5622
44619 Author: Stefan Roese <sr@denx.de>
44620 Date: Fri Jun 6 16:10:41 2008 +0200
44621
44622 ppc4xx: Fix misspelled CONFIG_440SPE/440EPX/GRX config options
44623
44624 We use upper case letters for the AMCC processor defines (like
44625 CONFIG_440SPE) in U-Boot. So the 440SPe is labeled CONFIG_440SPE and
44626 not CONFIG_440SPe. This patch fixes the last misspelled config options.
44627
44628 Signed-off-by: Stefan Roese <sr@denx.de>
44629
44630 commit 72675dc6c06a48846d180106161d49dd714383cc
44631 Author: Stefan Roese <sr@denx.de>
44632 Date: Fri Jun 6 15:55:21 2008 +0200
44633
44634 ppc4xx: Unify AMCC's board config files (part 3/3)
44635
44636 This patch series unifies the AMCC eval board ports by introducing
44637 a common include header for all AMCC eval boards:
44638
44639 include/configs/amcc-common.h
44640
44641 This header now includes all common configuration options/defines which
44642 are removed from the board specific headers.
44643
44644 The reason for this is ease of maintenance and unified look and feel
44645 of all AMCC boards.
44646
44647 Signed-off-by: Stefan Roese <sr@denx.de>
44648
44649 commit 490f204096d6e2c9940f67816f154a8125bab116
44650 Author: Stefan Roese <sr@denx.de>
44651 Date: Fri Jun 6 15:55:03 2008 +0200
44652
44653 ppc4xx: Unify AMCC's board config files (part 2/3)
44654
44655 This patch series unifies the AMCC eval board ports by introducing
44656 a common include header for all AMCC eval boards:
44657
44658 include/configs/amcc-common.h
44659
44660 This header now includes all common configuration options/defines which
44661 are removed from the board specific headers.
44662
44663 The reason for this is ease of maintenance and unified look and feel
44664 of all AMCC boards.
44665
44666 Signed-off-by: Stefan Roese <sr@denx.de>
44667
44668 commit a8a11a9ed046b480a16e47a158f8f5300028dfa6
44669 Author: Stefan Roese <sr@denx.de>
44670 Date: Fri Jun 6 15:54:31 2008 +0200
44671
44672 ppc4xx: Unify AMCC's board config files (part 1/3)
44673
44674 This patch series unifies the AMCC eval board ports by introducing
44675 a common include header for all AMCC eval boards:
44676
44677 include/configs/amcc-common.h
44678
44679 This header now includes all common configuration options/defines which
44680 are removed from the board specific headers.
44681
44682 The reason for this is ease of maintenance and unified look and feel
44683 of all AMCC boards.
44684
44685 Signed-off-by: Stefan Roese <sr@denx.de>
44686
44687 commit 0e38c938ed4bcadb4f4fc1419a541431e94fc202
44688 Author: Remy Bohmer <linux@bohmer.net>
44689 Date: Thu Jun 5 13:03:36 2008 +0200
44690
44691 DM9000 fix status check fail 0x6d error for trizeps board
44692
44693 According to the Application Notes of the DM9000, only the 2 bits 0:1 of
44694 the status byte need to be checked to identify a valid packet in the fifo
44695
44696 But, The several different Application Notes do not all speak the same
44697 language on these bits. They do not disagree, but only 1 Application Note
44698 noted explicitly that only these 2 bits need to be checked.
44699 Even the datasheets do not mention anything about these 2 bits.
44700
44701 Because the old code, and the kernel check the whole byte, I left this piece
44702 untouched.
44703
44704 However, I tested all board/DM9000[A|E|EP] devices with this 2 bit check, so
44705 it should work.
44706
44707 Notice, that the 2nd iteration through this receive loop (when a 2nd packet is
44708 in the fifo) is much shorter now, compared to the older U-boot driver code,
44709 so that we can maybe run into a hardware condition now that was never seen
44710 before, or maybe was seen very unfrequently.
44711
44712 Additionaly added a cleanup of a stack variable.
44713
44714 Signed-off-by: Remy Bohmer <linux@bohmer.net>
44715 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44716
44717 commit 7daf2ebe9196dd67131a06d85049c3a8a08ca413
44718 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44719 Date: Thu Jun 5 22:29:00 2008 +0900
44720
44721 [MIPS] Update <asm/addrspace.h> header
44722
44723 - Fix traditional KSEG names
44724 - Replace PHYSADDR with CPHYSADDR
44725
44726 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44727
44728 commit f0d5a6f060d00358b85c62a921a423ea8df71184
44729 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44730 Date: Thu Jun 5 22:29:00 2008 +0900
44731
44732 [MIPS] mips_config.mk: Misc fixes
44733
44734 - Kill redundant `-pipe' (this will be added by $(TOPDIR)/config.mk)
44735 - Modify comments
44736
44737 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44738
44739 commit 5f64d21c9a2998794f255b469165b91f092dfc2d
44740 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44741 Date: Thu Jun 5 22:29:00 2008 +0900
44742
44743 [MIPS] Kill unused <version.h> inclusions
44744
44745 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44746
44747 commit a55d48174cfd1a5bc184159513f48dcbbe409c83
44748 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44749 Date: Thu Jun 5 22:29:00 2008 +0900
44750
44751 [MIPS] lib_mips/time.c: Fix CP0 count register usage and timer routines
44752
44753 MIPS port has two problems in timer routines. One is now we assume CFG_HZ
44754 equals to CP0 counter frequency, but this is wrong. CFG_HZ has to be 1000
44755 in the U-Boot system.
44756
44757 The other is we don't have a proper time management counter like timestamp
44758 other ARCHs have. We need the 32-bit millisecond clock counter.
44759
44760 This patch introduces timestamp and CYCLES_PER_JIFFY. timestamp is a
44761 32-bit non-overflowing CFG_HZ counter, and CYCLES_PER_JIFFY is the number
44762 of calculated CP0 counter cycles in a CFG_HZ.
44763
44764 STRATEGY:
44765
44766 * Fix improper CFG_HZ value to have 1000
44767
44768 * Use CFG_MIPS_TIMER_FREQ for timer counter frequency, instead.
44769
44770 * timer_init: initialize timestamp and set up the first timer expiration.
44771 Note that we don't need to initialize CP0 count/compare registers here
44772 as they have been already zeroed out on the system reset. Leave them as
44773 they are.
44774
44775 * get_timer: calculate how many timestamps have been passed, then return
44776 base-relative timestamp. Make sure we can easily count missed timestamps
44777 regardless of CP0 count/compare value.
44778
44779 * get_ticks: return the current timestamp, that is get_timer(0).
44780
44781 Most parts are from good old Linux v2.6.16 kernel.
44782
44783 v2:
44784 - Remove FIXME comments as they turned out to be trivial.
44785 - Use CP0 compare register as a global variable for expirelo.
44786 - Kill a global variable 'cycles_per_jiffy'. Use #define CYCLES_PER_JIFFY
44787 instead.
44788
44789 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44790
44791 commit 199e4f657c8af42efe3fb3ba1d1104eb6bb28c25
44792 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44793 Date: Thu Jun 5 22:29:00 2008 +0900
44794
44795 [MIPS] lib_mips/time.c: Fix udelay
44796
44797 What we have to do is just to wait for given micro-seconds. No need to
44798 take into account current time, get_timer and CFG_HZ.
44799
44800 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44801
44802 commit c7e38e413ae69120d3e51f132c7cb1d6b3514d03
44803 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44804 Date: Thu Jun 5 22:28:59 2008 +0900
44805
44806 [MIPS] lib_mips/time.c: Replace CP0 access functions with existing macros
44807
44808 We already have many pre-defined CP0 access macros in <asm/mipsregs.h>.
44809 This patch replaces mips_{compare,count}_set and mips_count_get with
44810 existing macros.
44811
44812 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44813
44814 commit 6b52cfe16cd539935e32bd8cf19146522e462a4d
44815 Author: Remy Bohmer <linux@bohmer.net>
44816 Date: Tue Jun 3 15:48:17 2008 +0200
44817
44818 Get rid of annoying/superfluous bad-checksum warning message
44819
44820 U-boot can complain a lot about 'checksum bad' when it is attached to the network.
44821 It is annoying for ordinary users who start to doubt the network connection
44822 in general when they see messages like this.
44823
44824 This is caused by the routine NetCksumOk() which cannot handle IP-headers longer
44825 than 20 bytes. Those packages can be ignored anyway by U-boot, so we trash them
44826 now before checking the checksum.
44827
44828 Signed-off-by: Remy Bohmer <linux@bohmer.net>
44829 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44830
44831 commit d6ee5fa40c26970d39990c6fc4a2f20a97822650
44832 Author: Remy Bohmer <linux@bohmer.net>
44833 Date: Wed Jun 4 10:47:25 2008 +0200
44834
44835 Fix order for reading rx-status registers in 32bit mode of DM9000
44836
44837 A last minute cleanup before submitting the DM9000A patch series yesterday introduced
44838 a bug in reading the rx-status registers in 32bit mode only.
44839 This patch repairs this.
44840
44841 Signed-off-by: Remy Bohmer <linux@bohmer.net>
44842 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44843
44844 commit 98291e2e689096420465074cce926b226d2e71b4
44845 Author: Remy Bohmer <linux@bohmer.net>
44846 Date: Tue Jun 3 15:26:26 2008 +0200
44847
44848 DM9000: Some minor code cleanups
44849
44850 Some lines of the U-boot DM9000x driver are longer than 80 characters, or
44851 need some other minor cleanup.
44852
44853 Signed-off-by: Remy Bohmer <linux@bohmer.net>
44854 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44855
44856 commit 850ba7555dbd4ca8d14fc475b864d534797adab3
44857 Author: Remy Bohmer <linux@bohmer.net>
44858 Date: Tue Jun 3 15:26:25 2008 +0200
44859
44860 DM9000: Make driver work properly for DM9000A
44861
44862 The DM9000A network controller does not work with the U-boot DM9000x driver.
44863 Analysis showed that many incoming packets are lost.
44864
44865 The DM9000A Application Notes V1.20 (section 5.6.1) recommend that the poll to
44866 check for a valid rx packet be done on the interrupt status register, not
44867 directly by performing the dummy read and the rx status check as is currently
44868 the case in the u-boot driver.
44869
44870 When the recommended poll is done as suggested the driver starts working
44871 correctly on 10Mbit/HD, but on 100MBit/FD packets come in faster so that there
44872 can be more than 1 package in the fifo at the same time.
44873
44874 The driver must perform the rx-status check in a loop and read and handle all
44875 packages until there is no more left _after_ the interrupt RX flag is set.
44876
44877 This change has been tested with DM9000A, DM9000E, DM9000EP.
44878
44879 Signed-off-by: Remy Bohmer <linux@bohmer.net>
44880 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44881
44882 commit fbcb7ece0ea1e364180f1cf963e0fa0ce7f6560d
44883 Author: Remy Bohmer <linux@bohmer.net>
44884 Date: Tue Jun 3 15:26:24 2008 +0200
44885
44886 DM9000: Improve eth_reset() routine
44887
44888 According to the application notes of the DM9000 v1.22 chapter 5.2 bullet 2, the
44889 reset procedure must be done twice to properly reset the DM9000 by means of software.
44890 This errata is not needed anymore for the DM9000A, but it does not bother it.
44891
44892 This change has been tested with DM9000A, DM9000E, DM9000EP.
44893
44894 Signed-off-by: Remy Bohmer <linux@bohmer.net>
44895 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44896
44897 commit acba31847fad9ae40708cc2c9f3a634ec35f3416
44898 Author: Remy Bohmer <linux@bohmer.net>
44899 Date: Tue Jun 3 15:26:23 2008 +0200
44900
44901 DM9000: improve eth_send() routine
44902
44903 The eth_send routine of the U-boot DM9000x driver does not match the
44904 DM9000 or DM9000A application notes/programming guides.
44905
44906 This change improves the stability of the DM9000A network controller.
44907
44908 This change has been tested with DM9000A, DM9000E, DM9000EP.
44909
44910 Signed-off-by: Remy Bohmer <linux@bohmer.net>
44911 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44912
44913 commit 134e266253c02a7832560da59d394989c4f64453
44914 Author: Remy Bohmer <linux@bohmer.net>
44915 Date: Tue Jun 3 15:26:22 2008 +0200
44916
44917 DM9000: repair debug logging
44918
44919 It seems that the debugging code of the DM9000x driver in U-boot has not been
44920 compiled for a long time, because it cannot compile...
44921
44922 Also rearranged some loglines to get more useful info while debugging.
44923
44924 Signed-off-by: Remy Bohmer <linux@bohmer.net>
44925 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44926
44927 commit a101361bfe23c120321e45d114c0603b8e0763e9
44928 Author: Remy Bohmer <linux@bohmer.net>
44929 Date: Tue Jun 3 15:26:21 2008 +0200
44930
44931 DM9000: Add data bus-width auto detection.
44932
44933 The U-boot DM9000x driver contains a compile time bus-width definition for
44934 the databus connected to the network controller.
44935
44936 This compile check makes the code unclear, inflexible and is unneccessary.
44937 It can be asked to the network controller what its bus-width is by reading bits
44938 6 and 7 of the interrupt status register.
44939
44940 The linux kernel already uses a runtime mechanism to determine this bus-width,
44941 so the implementation below looks somewhat like that implementation.
44942
44943 This change has been tested with DM9000A, DM9000E, DM9000EP.
44944
44945 Signed-off-by: Remy Bohmer <linux@bohmer.net>
44946 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44947
44948 commit 63a0afa0c32e5f4ea98a9439542870072437404d
44949 Author: Stefan Roese <sr@denx.de>
44950 Date: Wed Jun 4 19:19:20 2008 +0200
44951
44952 ppc4xx: Fix problem with SDRAM init in bamboo NAND booting port
44953
44954 This patch fixes a problem spotted by Eugene O'Brian (thanks Eugene)
44955 introduced by the commit:
44956
44957 ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
44958
44959 With this patch SDRAM will get initialized again and booting from NAND
44960 is working again.
44961
44962 Signed-off-by: Stefan Roese <sr@denx.de>
44963 Acked-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
44964
44965 commit 9ef1cbef1a649e3779298b0e663be4865cbbbfbc
44966 Author: Wolfgang Denk <wd@denx.de>
44967 Date: Tue May 27 14:19:30 2008 +0200
44968
44969 Socrates: Fix PCI bus frequency report
44970
44971 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
44972
44973 commit 8ec6e332eace0ee78c71ee5f645d12b06813b86f
44974 Author: Tor Krill <tor@excito.com>
44975 Date: Thu May 29 11:10:30 2008 +0200
44976
44977 Fix incorrect switch for IF_TYPE in part.c
44978
44979 Use correct field in block_dev_desc_t when writing interface type in
44980 dev_print. Error introduced in 574b3195.
44981
44982 Also added fix from Martin Krause
44983
44984 Signed-off-by: Tor Krill <tor@excito.com>
44985
44986 commit b64b8a0bd310935b70af69ac970952f2b364ae56
44987 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
44988 Date: Tue May 27 10:25:39 2008 +0200
44989
44990 Add size #defines for Altera Cyclone-II EP2C8 and EP2C20.
44991
44992 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
44993
44994 commit 35ef877f0a8f6232cdef748f442fed5accb2b641
44995 Author: Peter Tyser <ptyser@xes-inc.com>
44996 Date: Thu May 22 18:56:52 2008 -0500
44997
44998 Additional fix to readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
44999
45000 Removed unneeded command line history initialization. Also, the original
45001 code would access the 'initted' variable before relocation to SDRAM
45002 which resulted in erratic behavior since the bss is not initialized when
45003 executing from flash.
45004
45005 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
45006
45007 commit 22f371b63038a4ecab04068877c1089e51a01ba1
45008 Author: Grant Erickson <gerickson@nuovations.com>
45009 Date: Wed May 21 13:28:30 2008 -0700
45010
45011 PPC4xx: Simplified post_word_{load, store}
45012
45013 This patch simplifies post_word_{load,store} by using the preprocessor
45014 to eliminate redundant, copy-and-pasted code.
45015
45016 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
45017
45018 commit 9c048b523413ae5f3ff34e00cf57569c3368ab51
45019 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
45020 Date: Wed May 7 21:25:33 2008 +0400
45021
45022 cfi_flash: enable M18 flash chips family support.
45023
45024 Added new command set ID. Buffered write command processing is changed
45025 in order to support M18 flash chips family.
45026
45027 Signed-off-by: Alexey Korolev <akorolev@infradead.org>
45028 Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
45029
45030 commit 93c56f212ccdadc182018f0769cb284426b88f1d
45031 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
45032 Date: Wed May 7 21:24:44 2008 +0400
45033
45034 cfi_flash: support of long cmd in U-boot.
45035
45036 Some NOR flash chips needs support of commands with length grether than max
45037 value size of uchar. For example all M18 family chips use 0x1ff command in
45038 buffered write mode as value of program loops count.
45039
45040 Signed-off-by: Alexey Korolev <akorolev@infradead.org>
45041 Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
45042
45043 commit 4d91d1df2f16b511ab80dec50c80e050ba0d841e
45044 Author: Stefan Roese <sr@denx.de>
45045 Date: Fri May 16 11:06:06 2008 +0200
45046
45047 DTT: Issue one-shot command on AD7414 (LM75 code) to read temp
45048
45049 On AD7414 the first value upon bootup is not read correctly.
45050 This is most likely because of the 800ms update time of the
45051 temp register in normal update mode. To get current values
45052 each time we issue the "dtt" command including upon powerup
45053 we switch into one-short mode.
45054
45055 This patch fixes the problem on AD7414 equipped boards (Sequoia,
45056 Canyonlands etc), that temp value printed in the bootup log was
45057 incorrect.
45058
45059 Signed-off-by: Stefan Roese <sr@denx.de>
45060
45061 commit de5bfcf7b0425e032be12698252dbaa6b65a28c0
45062 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
45063 Date: Fri May 30 16:55:06 2008 +0200
45064
45065 ppc4xx: Cleanup CPCI405 variant's config file
45066
45067 This patch removes some dead code from CPCI405 board's
45068 config files. JFFS2 support is also removed. It's not used and
45069 CPCI4052 does not build anymore without some size reduction.
45070
45071 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
45072
45073 commit 2918eb9d42bc705fcbd18c9fcc39d15ff2843c65
45074 Author: Kenneth Johansson <kenneth@southpole.se>
45075 Date: Thu May 29 16:32:33 2008 +0200
45076
45077 Remove shell variable UNDEF_SYM.
45078
45079 UNDEF_SYM is a shell variable in the main Makefile used to force the
45080 linker to add all u-boot commands to the final image. It has no use here.
45081
45082 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
45083
45084 commit 8c66497e06bf803489c589df58ee591d71033274
45085 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45086 Date: Fri May 16 11:10:35 2008 +0200
45087
45088 Add support for environment in SPI flash
45089
45090 This is pretty incomplete...it doesn't handle reading the environment
45091 before relocation, it doesn't support redundant environment, and it
45092 doesn't support embedded environment. But apart from that, it does
45093 seem to work.
45094
45095 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45096
45097 commit b6368467e6a97f225e0a5fd7bfc5c7598ef5ddc4
45098 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45099 Date: Fri May 16 11:10:34 2008 +0200
45100
45101 SPI Flash: Add "sf" command
45102
45103 This adds a new command, "sf" which can be used to manipulate SPI
45104 flash. Currently, initialization, reading, writing and erasing is
45105 supported.
45106
45107 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45108
45109 commit d25ce7d24cc0f93881559f4009175ea305af65e8
45110 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45111 Date: Fri May 16 11:10:33 2008 +0200
45112
45113 SPI Flash subsystem
45114
45115 This adds a new SPI flash subsystem.
45116
45117 Currently, only AT45 DataFlash in non-power-of-two mode is supported,
45118 but some preliminary support for other flash types is in place as
45119 well.
45120
45121 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45122
45123 commit 60445cb5c3eb77ed1a07f2d908eef09174483698
45124 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
45125 Date: Fri May 16 11:10:32 2008 +0200
45126
45127 atmel_spi: Driver for the Atmel SPI controller
45128
45129 This adds a driver for the SPI controller found on most AT91 and AVR32
45130 chips, implementing the new SPI API.
45131
45132 Changed in v4:
45133 - Update to new API
45134 - Handle zero-length transfers appropriately. The user may send a
45135 zero-length SPI transfer with SPI_XFER_END set in order to
45136 deactivate the chip select after a series of transfers with chip
45137 select active. This is useful e.g. when polling the status
45138 register of DataFlash.
45139
45140 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
45141
45142 commit d255bb0e78d1cac5b7c8c98cb77a095f5f16de0d
45143 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
45144 Date: Fri May 16 11:10:31 2008 +0200
45145
45146 SPI API improvements
45147
45148 This patch gets rid of the spi_chipsel table and adds a handful of new
45149 functions that makes the SPI layer cleaner and more flexible.
45150
45151 Instead of the spi_chipsel table, each board that wants to use SPI
45152 gets to implement three hooks:
45153 * spi_cs_activate(): Activates the chipselect for a given slave
45154 * spi_cs_deactivate(): Deactivates the chipselect for a given slave
45155 * spi_cs_is_valid(): Determines if the given bus/chipselect
45156 combination can be activated.
45157
45158 Not all drivers may need those extra functions however. If that's the
45159 case, the board code may just leave them out (assuming they know what
45160 the driver needs) or rely on the linker to strip them out (assuming
45161 --gc-sections is being used.)
45162
45163 To set up communication parameters for a given slave, the driver needs
45164 to call spi_setup_slave(). This returns a pointer to an opaque
45165 spi_slave struct which must be passed as a parameter to subsequent SPI
45166 calls. This struct can be freed by calling spi_free_slave(), but most
45167 driver probably don't want to do this.
45168
45169 Before starting one or more SPI transfers, the driver must call
45170 spi_claim_bus() to gain exclusive access to the SPI bus and initialize
45171 the hardware. When all transfers are done, the driver must call
45172 spi_release_bus() to make the bus available to others, and possibly
45173 shut down the SPI controller hardware.
45174
45175 spi_xfer() behaves mostly the same as before, but it now takes a
45176 spi_slave parameter instead of a spi_chipsel function pointer. It also
45177 got a new parameter, flags, which is used to specify chip select
45178 behaviour. This may be extended with other flags in the future.
45179
45180 This patch has been build-tested on all powerpc and arm boards
45181 involved. I have not tested NIOS since I don't have a toolchain for it
45182 installed, so I expect some breakage there even though I've tried
45183 fixing up everything I could find by visual inspection.
45184
45185 I have run-time tested this on AVR32 ATNGW100 using the atmel_spi and
45186 DataFlash drivers posted as a follow-up. I'd like some help testing
45187 other boards that use the existing SPI API.
45188
45189 But most of all, I'd like some comments on the new API. Is this stuff
45190 usable for everyone? If not, why?
45191
45192 Changed in v4:
45193 - Build fixes for various boards, drivers and commands
45194 - Provide common struct spi_slave definition that can be extended by
45195 drivers
45196 - Pass a struct spi_slave * to spi_cs_activate and spi_cs_deactivate
45197 - Make default bus and mode build-time configurable
45198 - Override default SPI bus ID and mode on mx32ads and imx31_litekit.
45199
45200 Changed in v3:
45201 - Add opaque struct spi_slave for controller-specific data associated
45202 with a slave.
45203 - Add spi_claim_bus() and spi_release_bus()
45204 - Add spi_free_slave()
45205 - spi_setup() is now called spi_setup_slave() and returns a
45206 struct spi_slave
45207 - soft_spi now supports four SPI modes (CPOL|CPHA)
45208 - Add bus parameter to spi_setup_slave()
45209 - Convert the new i.MX32 SPI driver
45210 - Convert the new MC13783 RTC driver
45211
45212 Changed in v2:
45213 - Convert the mpc8xxx_spi driver and the mpc8349emds board to the
45214 new API.
45215
45216 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
45217 Tested-by: Guennadi Liakhovetski <lg@denx.de>
45218
45219 commit 289011207d999b2e4085150d2aa30d547ad9b800
45220 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45221 Date: Fri May 16 11:10:30 2008 +0200
45222
45223 Move definition of container_of() to common.h
45224
45225 AVR32 and AT91SAM9 both have their own identical definitions of
45226 container_of() taken from the Linux kernel. Move it to common.h so
45227 that all architectures can use it.
45228
45229 container_of() is already used by some drivers, and will be used
45230 extensively by the new and improved SPI API.
45231
45232 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45233
45234 commit 110e006fe67fb4a6e1719ae6956c79b7ffc0148b
45235 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45236 Date: Fri May 16 11:08:11 2008 +0200
45237
45238 soft_i2c: Pull SDA high before reading
45239
45240 Spotted by Dean Capindale.
45241
45242 Systems that support open-drain GPIO properly are allowed provide an
45243 empty I2C_TRISTATE define. However, this means that we need to be
45244 careful not to drive SDA low when the slave is expected to respond.
45245
45246 This patch adds a missing I2C_SDA(1) to read_byte() required to
45247 tristate the SDA line on systems that support open-drain GPIO.
45248
45249 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45250
45251 commit 3c1de1a6d36be9eee284a6c596a86e94f19cc5b2
45252 Author: Stefan Roese <sr@denx.de>
45253 Date: Mon May 19 11:34:53 2008 +0200
45254
45255 ppc4xx: Remove implementations of testdram()
45256
45257 This patch removes the used testdram() implementations of the board
45258 that are maintained by myself.
45259
45260 Signed-off-by: Stefan Roese <sr@denx.de>
45261
45262 commit bbeff30cbd1c5d551eb0ad1c2239ec01844c0b0a
45263 Author: Stefan Roese <sr@denx.de>
45264 Date: Mon Jun 2 17:37:28 2008 +0200
45265
45266 ppc4xx: Remove superfluous dram_init() call or replace it by initdram()
45267
45268 Historically the 405 U-Boot port had a dram_init() call in early init
45269 stage. This function was still called from start.S and most of the time
45270 coded in assembler. This is not needed anymore (since a long time) and
45271 boards should implement the common initdram() function in C instead.
45272
45273 This patch now removed the dram_init() call from start.S and removes the
45274 empty implementations that are scattered through most of the 405 board
45275 ports. Some older board ports really implement this dram_init() though.
45276 These are:
45277
45278 csb272
45279 csb472
45280 ERIC
45281 EXBITGEN
45282 W7OLMC
45283 W7OLMG
45284
45285 I changed those boards to call this assembler dram_init() function now
45286 from their board specific initdram() instead. This *should* work, but please
45287 test again on those platforms. And it is perhaps a good idea that those
45288 boards use some common 405 SDRAM initialization code from cpu/ppc4xx at
45289 some time. So further patches welcome here.
45290
45291 Signed-off-by: Stefan Roese <sr@denx.de>
45292
45293 commit 192f90e272b3989ee7b4a666d1fdab831f20f8d2
45294 Author: Stefan Roese <sr@denx.de>
45295 Date: Mon Jun 2 17:22:11 2008 +0200
45296
45297 ppc4xx: Use new 4xx SDRAM controller enable defines in common ECC code
45298
45299 Signed-off-by: Stefan Roese <sr@denx.de>
45300
45301 commit 39b32be18cd33b53a84065edcd4e465165cc5564
45302 Author: Stefan Roese <sr@denx.de>
45303 Date: Mon Jun 2 17:20:03 2008 +0200
45304
45305 ppc4xx: Fix common ECC generation code for 440GP style platforms
45306
45307 This patch makes the common 4xx ECC code really usable on 440GP style
45308 platforms.
45309
45310 Since the IBM DDR controller used on 440GP/GX/EP/GR is not register
45311 compatible to the IBM DDR/2 controller used on 405EX/440SP/SPe/460EX/GT
45312 we need to make some processor dependant defines used later on by the
45313 driver.
45314
45315 Signed-off-by: Stefan Roese <sr@denx.de>
45316
45317 commit ec724f883ee3f3925e6c55027e8ffa70ada83303
45318 Author: Stefan Roese <sr@denx.de>
45319 Date: Mon Jun 2 17:13:55 2008 +0200
45320
45321 ppc4xx: Change Kilauea to use the common DDR2 init function
45322
45323 This patch changes the kilauea and kilauea_nand (for NAND booting)
45324 board port to not use a board specific DDR2 init routine anymore. Now
45325 the common code from cpu/ppc4xx is used.
45326
45327 Thanks to Grant Erickson for all his basic work on this 405EX early
45328 bootup.
45329
45330 Signed-off-by: Stefan Roese <sr@denx.de>
45331
45332 commit 17ceb069b85fbb9269c4dc09b2c237f88334c5ba
45333 Author: Stefan Roese <sr@denx.de>
45334 Date: Mon Jun 2 14:59:21 2008 +0200
45335
45336 ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part2
45337
45338 This patch now adds a new header file (asm-ppc/ppc4xx-sdram.h) for all
45339 ppc4xx related SDRAM/DDR/DDR2 controller defines.
45340
45341 Signed-off-by: Stefan Roese <sr@denx.de>
45342
45343 commit 36ea16f6a066ccb046e91ebce4f326b69f4c0569
45344 Author: Stefan Roese <sr@denx.de>
45345 Date: Mon Jun 2 14:57:41 2008 +0200
45346
45347 ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part1
45348
45349 This patch removes all SDRAM related defines from the PPC4xx headers
45350 ppc405.h and ppc440.h. This is needed since now some 405 PPC's use
45351 the same SDRAM controller as 440 systems do (like 405EX and 440SP).
45352
45353 It also introduces new defines for the equipped SDRAM controller based on
45354 which PPC variant is used. There new defines are:
45355
45356 used on 405GR/CR/EP and some Xilinx Virtex boards.
45357
45358 used on 440GP/GX/EP/GR.
45359
45360 used on 440EPx/GRx.
45361
45362 used on 405EX/r/440SP/SPe/460EX/GT.
45363
45364 Signed-off-by: Stefan Roese <sr@denx.de>
45365
45366 commit 64852d09e06dd6db2b2db2a3c59bc2db176a54d6
45367 Author: Stefan Roese <sr@denx.de>
45368 Date: Mon Jun 2 14:35:44 2008 +0200
45369
45370 ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
45371
45372 This patch consolidates the 405 and 440 parts of the NAND booting code
45373 selected via CONFIG_NAND_SPL. Now common code is used to initialize the
45374 SDRAM by calling initdram() and to "copy/relocate" to SDRAM/OCM/etc.
45375 Only *after* running from this location, nand_boot() is called.
45376
45377 Please note that the initsdram() call is now moved from nand_boot.c
45378 to start.S. I experienced problems with some boards like Kilauea
45379 (405EX), which don't have internal SRAM (OCM) and relocation needs to
45380 be done to SDRAM before the NAND controller can get accessed. When
45381 initdram() is called later on in nand_boot(), this can lead to problems
45382 with variables in the bss sections like nand_ecc_pos[].
45383
45384 Signed-off-by: Stefan Roese <sr@denx.de>
45385 Acked-by: Scott Wood <scottwood@freescale.com>
45386
45387 commit 8a24c07ba5da2c72ad1f05e3eb8a463750200c98
45388 Author: Grant Erickson <gerickson@nuovations.com>
45389 Date: Thu May 22 14:44:24 2008 -0700
45390
45391 ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
45392
45393 This patch (Part 2 of 2):
45394
45395 * Rolls up a suite of changes to enable correct primordial stack and
45396 global data handling when the data cache is used for such a purpose
45397 for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
45398
45399 * Related to the first, unifies DDR2 SDRAM and ECC initialization by
45400 eliminating redundant ECC initialization implementations and moving
45401 redundant SDRAM initialization out of board code into shared 4xx
45402 code.
45403
45404 * Enables MCSR visibility on the 405EX(r).
45405
45406 * Enables the use of the data cache for initial RAM on
45407 both AMCC's Kilauea and Makalu and removes a redundant
45408 CFG_POST_MEMORY flag from each board's CONFIG_POST value.
45409
45410 - Removed, per Stefan Roese's request, defunct memory.c file for
45411 Makalu and rolled sdram_init from it into makalu.c.
45412
45413 With respect to the 4xx DDR initialization and ECC unification, there
45414 is certainly more work that can and should be done (file renaming,
45415 etc.). However, that can be handled at a later date on a second or
45416 third pass. As it stands, this patch moves things forward in an
45417 incremental yet positive way for those platforms that utilize this
45418 code and the features associated with it.
45419
45420 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
45421 Signed-off-by: Stefan Roese <sr@denx.de>
45422
45423 commit c821b5f120bedf73867513466412587c6912a8f8
45424 Author: Grant Erickson <gerickson@nuovations.com>
45425 Date: Thu May 22 14:44:14 2008 -0700
45426
45427 ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
45428
45429 This patch (Part 1 of 2):
45430
45431 * Rolls up a suite of changes to enable correct primordial stack and
45432 global data handling when the data cache is used for such a purpose
45433 for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
45434
45435 * Related to the first, unifies DDR2 SDRAM and ECC initialization by
45436 eliminating redundant ECC initialization implementations and moving
45437 redundant SDRAM initialization out of board code into shared 4xx
45438 code.
45439
45440 * Enables MCSR visibility on the 405EX(r).
45441
45442 * Enables the use of the data cache for initial RAM on
45443 both AMCC's Kilauea and Makalu and removes a redundant
45444 CFG_POST_MEMORY flag from each board's CONFIG_POST value.
45445
45446 - Removed, per Stefan Roese's request, defunct memory.c file for
45447 Makalu and rolled sdram_init from it into makalu.c.
45448
45449 With respect to the 4xx DDR initialization and ECC unification, there
45450 is certainly more work that can and should be done (file renaming,
45451 etc.). However, that can be handled at a later date on a second or
45452 third pass. As it stands, this patch moves things forward in an
45453 incremental yet positive way for those platforms that utilize this
45454 code and the features associated with it.
45455
45456 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
45457 Signed-off-by: Stefan Roese <sr@denx.de>
45458
45459 commit a439680019e06171d4a5694b7992accce87f590e
45460 Author: Grant Erickson <gerickson@nuovations.com>
45461 Date: Wed May 21 13:28:30 2008 -0700
45462
45463 PPC4xx: Simplified post_word_{load, store}
45464
45465 This patch simplifies post_word_{load,store} by using the preprocessor
45466 to eliminate redundant, copy-and-pasted code.
45467
45468 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
45469
45470 commit f979690ee337450b2030aba128f95b7a8d9881c0
45471 Author: Kumar Gala <galak@kernel.crashing.org>
45472 Date: Thu May 15 15:13:08 2008 -0500
45473
45474 Fix warnings from gcc-4.3.0 build on a ppc host
45475
45476 * The cfi_flash.c memset fix actual allows the board to boot so there is
45477 a bit more going on here than just resolving warnings associated with
45478 uninitialized variables.
45479
45480 * include/asm/bitops.h:302: warning: '__swab32p' is static but used in
45481 inline function 'ext2_find_next_zero_bit' which is not static
45482
45483 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45484
45485 commit 9b124a68346ce9605b6e1fcf79e1021541cdba9e
45486 Author: Becky Bruce <becky.bruce@freescale.com>
45487 Date: Wed May 14 13:09:51 2008 -0500
45488
45489 MPC512x: Change traps.c to not reference non-addressable memory
45490
45491 Currently, END_OF_RAM is used by the trap code to determine if
45492 we should attempt to access the stack pointer or not. However,
45493 on systems with a lot of RAM, only a subset of the RAM is
45494 guaranteed to be mapped in and accessible. Change END_OF_RAM
45495 to use get_effective_memsize() instead of using the raw ram
45496 size out of the bd.
45497
45498 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
45499
45500 commit 81673e9ae14b771cd13faf19947192599cae3959
45501 Author: Kumar Gala <galak@kernel.crashing.org>
45502 Date: Tue May 13 19:01:54 2008 -0500
45503
45504 Make sure common.h is the first include.
45505
45506 If common.h isn't first we can get CONFIG_ options defined in the
45507 board config file ignored. This can cause an issue if any of those
45508 config options impact the size of types of data structures
45509 (eg CONFIG_PHYS_64BIT).
45510
45511 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45512
45513 commit 95d449ad4de79dd32b1705b8a4d3550f1e9081e3
45514 Author: Marian Balakowicz <m8@semihalf.com>
45515 Date: Tue May 13 15:53:29 2008 +0200
45516
45517 Avoid initrd and logbuffer area overlaps
45518
45519 Add logbuffer to reserved LMB areas to prevent initrd allocation
45520 from overlaping with it.
45521
45522 Make sure to use correct logbuffer base address.
45523
45524 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45525
45526 commit 6956d53d9934862507f83f0e3255dfd4662e7482
45527 Author: Sascha Laue <sascha.laue@liebherr.com>
45528 Date: Tue May 13 13:29:54 2008 +0200
45529
45530 lwmon5: add memory-pattern-test to FPGA POST.
45531
45532 commit e34a0e911b6a1568d0ca864234fbd0ee060d9b35
45533 Author: Becky Bruce <becky.bruce@freescale.com>
45534 Date: Thu May 8 19:02:51 2008 -0500
45535
45536 PPC: 86xx Add bat registers to reginfo command
45537
45538 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
45539
45540 commit d5b9b8cdb8b6eb3a8b0f5d9909d69ccc9c703ed9
45541 Author: Becky Bruce <becky.bruce@freescale.com>
45542 Date: Fri May 9 15:41:35 2008 -0500
45543
45544 PPC: Add print_bats() to lib_ppc/bat_rw.c
45545
45546 This function prints the values of all the BAT register
45547 pairs - I needed this for debug earlier this week; adding it to
45548 lib_ppc so others can use it (and add it to reginfo commands
45549 if so desired).
45550
45551 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
45552
45553 commit c148f24c15743a02e855636e6bed013bd121f7f2
45554 Author: Becky Bruce <becky.bruce@freescale.com>
45555 Date: Thu May 15 21:29:04 2008 -0500
45556
45557 PPC: Change lib_ppc/bat_rw.c to use high bats
45558
45559 Currently, this code only deals with BATs 0-3, which makes
45560 it useless on systems that support BATs 4-7. Add the
45561 support for these registers.
45562
45563 Signed-off-by: Becky Bruce <Becky.bruce@freescale.com>
45564
45565 commit 31d826722434931e1152a09d140187dcf72f8aac
45566 Author: Becky Bruce <becky.bruce@freescale.com>
45567 Date: Thu May 8 19:02:12 2008 -0500
45568
45569 PPC: Create and use CONFIG_HIGH_BATS
45570
45571 Change all code that conditionally operates on high bat
45572 registers (that is, BATs 4-7) to look at CONFIG_HIGH_BATS
45573 instead of the myriad ways this is done now. Define the option
45574 for every config for which high bats are supported (and
45575 enabled by early boot, on parts where they're not always
45576 enabled)
45577
45578 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
45579
45580 commit aa3b8bf9c30065bb2ea852799d32db5020598495
45581 Author: Wolfgang Grandegger <wg@grandegger.com>
45582 Date: Wed May 28 19:55:19 2008 +0200
45583
45584 E1000: Add support for the 82541GI LF Intel Pro 1000 GT Desktop Adapter
45585
45586 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
45587 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
45588
45589 commit ff36fbb2e7583fb808eef773f511489c7a9c2df3
45590 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45591 Date: Wed May 28 13:06:25 2008 -0500
45592
45593 ColdFire: Add 10 base ethernet support for mcf5445x
45594
45595 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45596 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
45597
45598 commit 1a9fcc4b765599db24fa9c32293599f24c7a19ba
45599 Author: Jason McMullan <mcmullan@netapp.com>
45600 Date: Fri May 30 00:53:38 2008 +0900
45601
45602 mips: Add an 'include/asm/errno.h', like all other architectures
45603
45604 All other u-boot architectures have an include/asm/errno.h, so
45605 this change adds it to the mips include/asm-mips headers also.
45606
45607 Stolen from Linux 2.6.25.
45608
45609 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
45610
45611 commit e2ad8426624bac457acc6925b6ff408e9bf20466
45612 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45613 Date: Fri May 30 00:53:38 2008 +0900
45614
45615 [MIPS] <asm/mipsregs.h>: Update coprocessor register access macros
45616
45617 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45618
45619 commit 1a3adac81c292f2ee76e43cdeb2fbe8f915fe194
45620 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45621 Date: Fri May 30 00:53:38 2008 +0900
45622
45623 [MIPS] <asm/mipsregs.h>: Update register / bit field definitions
45624
45625 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45626
45627 commit bf462ae450a7f2eeeddc699ed345b391e3263540
45628 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45629 Date: Fri May 30 00:53:37 2008 +0900
45630
45631 [MIPS] <asm/mipsregs.h>: CodinygStyle cleanups
45632
45633 No functional changes.
45634
45635 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45636
45637 commit 89a1550ec6b74452274a7a23127936e2c7eec711
45638 Author: Jason McMullan <mcmullan@netapp.com>
45639 Date: Fri May 30 00:53:37 2008 +0900
45640
45641 mips: If CONFIG_CMD_SPI is defined, call spi_init()
45642
45643 The mips architecture currently does not call 'spi_init()' in the generic
45644 board initialization routine is CONFIG_CMD_SPI is defined.
45645
45646 This patch rectifies that problem.
45647
45648 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
45649 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45650
45651 commit e996bc339b0f39f6c0b29b1455ba7eb318b023d3
45652 Author: Jason McMullan <mcmullan@netapp.com>
45653 Date: Fri May 30 00:53:37 2008 +0900
45654
45655 [MIPS] lib_mips/board.c: Add nand_init
45656
45657 This patch adds the standard 'nand_init()' call to the mips generic
45658 'board_init_r()' call, bringing MIPS in line with the other architectures.
45659
45660 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
45661 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45662
45663 commit d6ac2ed893c2168738aee01579d6283af8d37045
45664 Author: Scott Wood <scottwood@freescale.com>
45665 Date: Thu May 22 10:49:46 2008 -0500
45666
45667 Remove prototypes of nand_init() in favor of including nand.h.
45668
45669 Likewise with onenand_init().
45670
45671 Signed-off-by: Scott Wood <scottwood@freescale.com>
45672
45673 commit 229c56f07a82eacda8c8720cb146fc9be0f6db54
45674 Author: Scott Wood <scottwood@freescale.com>
45675 Date: Thu May 22 10:49:00 2008 -0500
45676
45677 Make onenand_uboot.h self-sufficient.
45678
45679 Don't assume types are provided by previously included headers.
45680
45681 Signed-off-by: Scott Wood <scottwood@freescale.com>
45682
45683 commit 9723bbb46abb7b2ca24eead5114a3faa58060c20
45684 Author: Dirk Behme <dirk.behme@gmail.com>
45685 Date: Wed Jan 16 14:26:59 2008 +0100
45686
45687 nand: Correct NAND erase percentage output
45688
45689 For NAND erase sizes smaller than one NAND erase block, erase
45690 percentage output becomes grater than 100% e.g.
45691
45692 -- cut --
45693 > nand info
45694 Device 0: NAND 64MiB 1,8V 8-bit, sector size 16 KiB
45695 > nand erase 0x100000 0x2000
45696 NAND erase: device 0 offset 0x100000, size 0x2000
45697 Erasing at 0x100000 -- 200% complete.
45698 OK
45699 >
45700 -- cut --
45701
45702 Correct this and give user a warning that more is erased than specified:
45703
45704 -- cut --
45705 > nand erase 0x100000 0x2000
45706 NAND erase: device 0 offset 0x100000, size 0x2000
45707 Warning: Erase size 0x00002000 smaller than one erase block 0x00004000
45708 Erasing 0x00004000 instead
45709 Erasing at 0x100000 -- 100% complete.
45710 OK
45711 >
45712 -- cut --
45713
45714 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
45715
45716 commit 5922db6c0948506be91e0de44e7a6863a18a417f
45717 Author: Stelian Pop <stelian@popies.net>
45718 Date: Tue May 13 17:31:24 2008 +0200
45719
45720 Cleanup nand_info[] declaration.
45721
45722 The nand_info array is declared as extern in several .c files.
45723 Those days, nand.h contains a reference to the array, so there is
45724 no need to declare it elsewhere.
45725
45726 Signed-off-by: Stelian Pop <stelian@popies.net>
45727 Signed-off-by: Scott Wood <scottwood@freescale.com>
45728
45729 commit 135f0a7488af2947adbe4b40b79280bdfe5e9886
45730 Author: Scott Wood <scottwood@freescale.com>
45731 Date: Mon May 19 09:30:43 2008 -0500
45732
45733 NAND: Provide a sane default for NAND_MAX_CHIPS.
45734
45735 This allows the header to be included regardless of whether a board's
45736 config file provides NAND-related defininitions.
45737
45738 Signed-off-by: Scott Wood <scottwood@freescale.com>
45739
45740 commit a8092c021d27f27f4b323b7d49979ca01b3fc19d
45741 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45742 Date: Mon May 26 12:19:10 2008 +0200
45743
45744 avr32: Fix theoretical race in udelay()
45745
45746 If the specified delay is very short, the cycle counter may go past the
45747 "end" time we are waiting for before we get around to reading it.
45748
45749 Fix it by checking the different between the cycle count "now" and the
45750 cycle count at the beginning. This will work as long as the delay
45751 measured in number of cycles is below 2^31.
45752
45753 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45754
45755 commit 48ea623eae8674793372e3e7c95e72e5a44d7a95
45756 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45757 Date: Wed May 21 13:01:09 2008 +0200
45758
45759 avr32: Compile atmel_mci.o conditionally
45760
45761 Remove #ifdef CONFIG_MMC from the source file and use conditional
45762 compilation in the Makefile instead.
45763
45764 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45765
45766 commit e92a5bf8330654e33ac13f6b3058634e58f5d1c0
45767 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45768 Date: Thu May 22 12:28:25 2008 +0200
45769
45770 avr32: Fix wrong error flags in atmel_mci driver
45771
45772 Make sure we check for CRC errors when sending commands that use CRC
45773 checking.
45774
45775 Reported-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
45776 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45777
45778 commit 7a96ddadd13e6ac9a829affce9b6f8823f580e49
45779 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45780 Date: Wed May 21 11:10:59 2008 +0200
45781
45782 avr32: Fix two warnings in atmel_mci.c
45783
45784 The warnings are harmless but annoying. Let's fix them.
45785
45786 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45787
45788 commit a23e277c4a3a2bbc42d237aae29da3a8971e757f
45789 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45790 Date: Mon May 19 11:36:28 2008 +0200
45791
45792 avr32: Rework SDRAM initialization code
45793
45794 This cleans up the SDRAM initialization and related code a bit, and
45795 allows faster booting.
45796
45797 * Add definitions for EBI and internal SRAM to asm/arch/memory-map.h
45798 * Remove memory test from sdram_init() and make caller responsible
45799 for verifying the SDRAM and determining its size.
45800 * Remove base_address member from struct sdram_config (was sdram_info)
45801 * Add data_bits member to struct sdram_config and kill CFG_SDRAM_16BIT
45802 * Add support for a common STK1000 hack: 16MB SDRAM instead of 8.
45803
45804 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45805
45806 commit 95107b7c028806919630bf02c653aa8f4f867c94
45807 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45808 Date: Mon May 19 11:27:37 2008 +0200
45809
45810 avr32: Do stricter stack checking in the exception handler
45811
45812 Don't do a stack dump if the stack pointer is outside the memory area
45813 reserved for stack.
45814
45815 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45816
45817 commit caf83ea888a0220f41747d0b7748fa43b4a4bd49
45818 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45819 Date: Fri May 2 15:32:57 2008 +0200
45820
45821 avr32: Use the same entry point for reset and exception handling
45822
45823 Since the reset vector is always aligned to a very large boundary, we
45824 can save a couple of KB worth of alignment padding by placing the
45825 exception vectors at the same address.
45826
45827 Deciding which one it is is easy: If we're handling an exception, the
45828 CPU is in Exception mode. If we're starting up after reset, the CPU is
45829 in Supervisor mode. So this adds a very minimal overhead to the reset
45830 path (only executed once) and the exception handling path (normally
45831 never executed at all.)
45832
45833 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45834
45835 commit 0c16eed2189a190bd5655b33c029f809a9b31128
45836 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45837 Date: Fri May 2 15:24:22 2008 +0200
45838
45839 avr32: Put memset in its own section
45840
45841 All C code is compiled with -ffunction-sections -fdata-sections.
45842 Assembly functions should get their own sections as well so that
45843 everything looks consistent.
45844
45845 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45846
45847 commit 3ace2527ba80bd2fe1bceaab50d0b3c4fb5dd020
45848 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45849 Date: Fri May 2 15:21:40 2008 +0200
45850
45851 avr32: Rename pm_init() as clk_init() and make SoC-specific
45852
45853 pm_init() was always more about clock initialization than anything
45854 else. Dealing with PLLs, clock gating and such is also inherently
45855 SoC-specific, so move it into a SoC-specific directory.
45856
45857 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45858
45859 commit 4f5972c3b2454c22957f2842cfe64ec8118e015b
45860 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45861 Date: Wed Apr 30 16:15:57 2008 +0200
45862
45863 avr32: Use new-style Makefile for the at32ap platform
45864
45865 This makes it easier to avoid compiling certain files later.
45866
45867 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45868
45869 commit a9b2bb78a1bd8ebdb633509bdd1c8134d527b213
45870 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45871 Date: Wed Apr 30 14:36:47 2008 +0200
45872
45873 avr32: Remove unused file cpu/at32ap/pm.c
45874
45875 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45876
45877 commit 44453b25b06426eef0b7b2fa7c026fdf19ce34f2
45878 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45879 Date: Wed Apr 30 14:19:28 2008 +0200
45880
45881 avr32: Clean up the HMATRIX code
45882
45883 Rework the HMATRIX configuration interface so that it becomes easier
45884 to configure the HMATRIX for boards with special needs, and add new
45885 parts.
45886
45887 The HMATRIX header file has been split into a general,
45888 chip-independent part with register definitions, etc. and a
45889 chip-specific part with SFR bitfield definitions and master/slave
45890 identifiers.
45891
45892 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45893
45894 commit 0a2e48792dd372c90b80059f3235e67a567e16fc
45895 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45896 Date: Thu Nov 22 12:14:11 2007 +0100
45897
45898 avr32: Add support for the ATSTK1006 board
45899
45900 This is a replacement for ATSTK1002 with 64MB SDRAM and NAND flash on
45901 board. It's currently in production and will be available soon.
45902
45903 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45904
45905 commit 781eb9a1e4af4bd34c138e6126ec5cc6dd4b5440
45906 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45907 Date: Tue Apr 29 12:53:05 2008 +0200
45908
45909 avr32: Get rid of the .flashprog section
45910
45911 The .flashprog section was only needed back when we were running
45912 directly from flash, and it's even more useless on NGW100 since it
45913 uses the CFI flash driver which never used this workaround in the
45914 first place.
45915
45916 Remove it on STK1000 as well, and get rid of all the associated code and
45917 annotations.
45918
45919 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45920
45921 commit cdd42c0c7a5205fc380912d83229069a71ea3abf
45922 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45923 Date: Wed Apr 30 13:09:56 2008 +0200
45924
45925 avr32: Use correct condition around macb clock accessors
45926
45927 get_macb_pclk_rate() and get_macb_hclk_rate() should be available when
45928 the chip has a MACB controller, not when it has a USART.
45929
45930 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45931
45932 commit f793a3581901ff39c2abb94012d9bbc8573ccf02
45933 Author: David Brownell <david-b@pacbell.net>
45934 Date: Wed Apr 16 22:57:58 2008 -0700
45935
45936 avr32: Disable the AP7000 internal watchdog on startup
45937
45938 This patch forces the watchdog off in all cases. That will at least
45939 get rid of the constant reboot cycle, though it won't let the watchdog
45940 actually run in the new kernels: its probe() comes up with a polite
45941 warning.
45942
45943 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45944
45945 commit 55ac7a7490b55da56659f95d82a0c83b9756df27
45946 Author: David Brownell <david-b@pacbell.net>
45947 Date: Fri Feb 22 12:54:39 2008 -0800
45948
45949 avr32: stk1002 and ngw100 convergence
45950
45951 Make STK1002 and NGW100 boards act more alike:
45952 - STK boards can use as many arguments as NGW
45953 - STK boards don't need to manage FPGAs either
45954 - NGW commands should match STK ones
45955
45956 Also spell U-Boot right in prompts for STK1002 and NGW100.
45957
45958 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
45959 [haavard.skinnemoen@atmel.com: update STK100[34] as well]
45960 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45961
45962 commit 5e1882df6a3efc7de5524d28cea4ecde7d163d54
45963 Author: Sergei Poselenov <sposelenov@emcraft.com>
45964 Date: Tue May 27 13:47:00 2008 +0200
45965
45966 Socrates: Fix PCI bus frequency report
45967
45968 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
45969
45970 commit 791e1dba8de76ad8e762a7badb869f224a1f8b82
45971 Author: Sergei Poselenov <sposelenov@emcraft.com>
45972 Date: Tue May 27 11:49:13 2008 +0200
45973
45974 Socrates: Added USB support.
45975
45976 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
45977
45978 commit 5a904e5637cff1d708dc67098004f83ba9e84c54
45979 Author: Sergei Poselenov <sposelenov@emcraft.com>
45980 Date: Tue May 27 11:35:02 2008 +0200
45981
45982 USB: add new configuration variable CONFIG_PCI_OHCI_DEVNO
45983
45984 In case of several PCI USB controllers on a board this variable
45985 specifys which controller to use.
45986 See doc/README.generic_usb_ohci for details.
45987
45988 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
45989
45990 commit 2f7468aeba60e1288030a8d007c4e63bd3f13221
45991 Author: Sergei Poselenov <sposelenov@emcraft.com>
45992 Date: Tue May 27 10:36:07 2008 +0200
45993
45994 Socrates: add support for DS75 Digital Thermo Sensor on I2C bus.
45995
45996 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
45997
45998 commit 83e9d7a2614d4006b92690afa3390c291734267e
45999 Author: Sergei Poselenov <sposelenov@emcraft.com>
46000 Date: Mon May 26 18:16:04 2008 +0200
46001
46002 Socrates: Config file cleanup.
46003
46004 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
46005
46006 commit 602cac1389b755b223272f2328a47e6f8c240848
46007 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46008 Date: Sat May 24 12:47:46 2008 +0200
46009
46010 MAKEALL: add at91 list
46011
46012 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46013
46014 commit 290ef6436838b1cc013bd67e0e0495c9eb3e23c0
46015 Author: Ron Madrid <ron_madrid@sbcglobal.net>
46016 Date: Fri May 23 15:37:05 2008 -0700
46017
46018 Add Marvell 88E1118 support for TSEC
46019
46020 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
46021 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
46022
46023 commit 557b377d8bfc8b833b6e749457bcdfa298331a24
46024 Author: Jens Gehrlein <sew_s@tqs.de>
46025 Date: Mon May 5 14:06:11 2008 +0200
46026
46027 smc911x: add 16 bit support
46028
46029 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
46030 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
46031
46032 commit 6324e5bec8825f7fee3026ffbd394454ae8b53fb
46033 Author: Christian Eggers <ceggers@gmx.de>
46034 Date: Wed May 21 21:29:10 2008 +0200
46035
46036 Fix endianess conversion in usb_ohci.c
46037
46038 Sorry, I forgot this line:
46039
46040 Signed-off-by: Christian Eggers <ceggers@gmx.de>
46041
46042 I think this must be swapped (result may be equal).
46043
46044 commit c918261c6d9f265f88baf70f8a73dfe6f0cb9596
46045 Author: Christian Eggers <ceggers@gmx.de>
46046 Date: Wed May 21 22:12:00 2008 +0200
46047
46048 USB: replace old swap_ with proper endianess conversion macros
46049
46050 Signed-off-by: Christian Eggers <ceggers@gmx.de>
46051 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
46052
46053 commit fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c
46054 Author: Christian Eggers <ceggers@gmx.de>
46055 Date: Wed May 21 21:29:10 2008 +0200
46056
46057 Fix endianess conversion in usb_ohci.c
46058
46059 Signed-off-by: Christian Eggers <ceggers@gmx.de>
46060 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
46061
46062 commit 477434c63c2ea5baa5c6c4e43500786f436511ff
46063 Author: Sergei Poselenov <sposelenov@emcraft.com>
46064 Date: Thu May 22 01:15:53 2008 +0200
46065
46066 USB: add support for multiple PCI OHCI controllers
46067
46068 Add new configuration variable CONFIG_PCI_OHCI_DEVNO.
46069 In case of several PCI USB controllers on a board this variable
46070 specifys which controller to use.
46071
46072 Also add USB support for sokrates board.
46073
46074 See doc/README.generic_usb_ohci for details.
46075
46076 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
46077 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
46078
46079 commit ce6754df61cbe23b5b73d095a00ac9a8504b3d77
46080 Author: Wolfgang Denk <wd@denx.de>
46081 Date: Wed May 21 16:56:08 2008 +0200
46082
46083 Fix some whitespace issues
46084
46085 introduced by 53677ef18 "Big white-space cleanup."
46086
46087 Signed-off-by: Wolfgang Denk <wd@denx.de>
46088
46089 commit 4416603aeb06861b468b06a981e52c3ff805db7b
46090 Author: York Sun <yorksun@freescale.com>
46091 Date: Mon May 12 14:36:39 2008 -0500
46092
46093 Make ads5121 out-of-tree compiling safe
46094
46095 Reuse the existing DIU driver in board/freescale/common.
46096
46097 Signed-off-by: York Sun <yorksun@freescale.com>
46098
46099 commit 0e1bad47cd345c76c91a64caf41011e431b62599
46100 Author: York Sun <yorksun@freescale.com>
46101 Date: Mon May 5 10:20:01 2008 -0500
46102
46103 Adding DIU support for Freescale 5121ADS
46104
46105 Add DIU and cfb console support to FSL 5121ADS board.
46106
46107 Use #define CONFIG_VIDEO in config file to enable fb console.
46108
46109 Signed-off-by: York Sun <yorksun@freescale.com>
46110
46111 commit a48ff68d235e671176f6b496c44246dbe5e0a93f
46112 Author: York Sun <yorksun@freescale.com>
46113 Date: Mon May 5 10:20:00 2008 -0500
46114
46115 Replace DPRINTF with debug
46116
46117 Remove DPRINTF macro and replace it with generic debug macro.
46118
46119 Signed-off-by: York Sun <yorksun@freescale.com>
46120
46121 commit 3b80c5f574ad7f6e1c55a68f42752b427fdf778d
46122 Author: York Sun <yorksun@freescale.com>
46123 Date: Mon May 5 10:19:59 2008 -0500
46124
46125 Move pixel clock setting to board file
46126
46127 The clock divider has different format in 5121 and 8610. This patch moves it to
46128 board specific code.
46129
46130 Signed-off-by: York Sun <yorksun@freescale.com>
46131
46132 commit 53677ef18e25c97ac613349087c5cb33ae5a2741
46133 Author: Wolfgang Denk <wd@denx.de>
46134 Date: Tue May 20 16:00:29 2008 +0200
46135
46136 Big white-space cleanup.
46137
46138 This commit gets rid of a huge amount of silly white-space issues.
46139 Especially, all sequences of SPACEs followed by TAB characters get
46140 removed (unless they appear in print statements).
46141
46142 Also remove all embedded "vim:" and "vi:" statements which hide
46143 indentation problems.
46144
46145 Signed-off-by: Wolfgang Denk <wd@denx.de>
46146
46147 commit 2f845dc2bdf461bfee9fa25823f769f5db9eba0b
46148 Author: Sergei Poselenov <sposelenov@emcraft.com>
46149 Date: Thu May 8 17:46:23 2008 +0200
46150
46151 socrates: fix second TSEC configuration (it is actually TSEC3)
46152
46153 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
46154
46155 commit 793670c3c0f0f72caead62f0be9fc3d9fbc6060f
46156 Author: Sergei Poselenov <sposelenov@emcraft.com>
46157 Date: Thu May 8 14:17:08 2008 +0200
46158
46159 Fixed reset for socrates
46160
46161 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
46162
46163 commit e18575d5f589a62e19c70d471d4b4e27cad3af56
46164 Author: Sergei Poselenov <sposelenov@emcraft.com>
46165 Date: Wed May 7 15:10:49 2008 +0200
46166
46167 socrates: changes to support FDT
46168
46169 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
46170 Signed-off-by: Wolfgang Denk <wd@denx.de>
46171
46172 commit 5d108ac8f435924c624cd6aaacd44f35f5cf94c0
46173 Author: Sergei Poselenov <sposelenov@emcraft.com>
46174 Date: Wed Apr 30 11:42:50 2008 +0200
46175
46176 Initial support for "Socrates" board
46177
46178 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
46179
46180 commit 0e15ddd11f1a84c465e434eb051d2ef08ef02b9b
46181 Author: Yuri Tikhonov <yur@emcraft.com>
46182 Date: Thu May 8 15:46:42 2008 +0200
46183
46184 POST: replace the LOGBUFF_INITIALIZED flag in gd->post_log_word (1 << 31) with the GD_FLG_LOGINIT flag in gd->flags.
46185
46186 This way we become able to utilize the full post_log_word for POST
46187 activities (overwise, POST ECC, which has 0x8000 ID, could be
46188 erroneously treated as started in post_output_backlog() even if there
46189 was actually no POST ECC run (because of OCM POST failure, for
46190 example).
46191
46192 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
46193
46194 commit 7845d49094c81321021b50a4dbb8864d2f3777e4
46195 Author: Yuri Tikhonov <yur@emcraft.com>
46196 Date: Thu May 8 15:46:02 2008 +0200
46197
46198 POST: mark OCM test as POST_STOP
46199
46200 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
46201
46202 commit 28a385065882d6cb6ac5f443311ff87887ed7c13
46203 Author: Yuri Tikhonov <yur@emcraft.com>
46204 Date: Thu May 8 15:45:26 2008 +0200
46205
46206 POST: add POST_STOP flag
46207
46208 Don't run futher tests in case of a test fails that is marked as
46209 POST_STOP.
46210
46211 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
46212 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
46213
46214 commit a525145d8110d15b4389d23c3ea8a78f22509d3f
46215 Author: Yuri Tikhonov <yur@emcraft.com>
46216 Date: Thu May 8 15:44:16 2008 +0200
46217
46218 POST: switch CFG_POST_OCM with CFG_POST_CODEC (workaround)
46219
46220 Switch the OCM testid with the codec one. The reason is that current
46221 implementation requires the POST_ROM testid to fit into lower 16
46222 bits, and the codec test will never run with POST_ROM hopefully.
46223
46224 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
46225
46226 commit 8b96c788d58f7cb85a89ee3f19c9b335d22443cd
46227 Author: Yuri Tikhonov <yur@emcraft.com>
46228 Date: Thu May 8 15:43:28 2008 +0200
46229
46230 lwmon5: enable OCM post test on lwmon5 board
46231
46232 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
46233
46234 commit 6e8ec682268493b8d098f99e17b1ce71b4448977
46235 Author: Yuri Tikhonov <yur@emcraft.com>
46236 Date: Thu May 8 15:42:47 2008 +0200
46237
46238 POST: OCM test added.
46239
46240 Added OCM test to POST layer. This version runs before all other tests
46241 but doesn't yet interrupt post sequence on failure.
46242
46243 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
46244 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
46245
46246 commit 6891260bdd935a382c95d9fa333922b0dfded68a
46247 Author: Yuri Tikhonov <yur@emcraft.com>
46248 Date: Thu May 8 15:40:39 2008 +0200
46249
46250 POST: typo fix
46251
46252 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
46253
46254 commit 727f63334676e760877d43bfb8f0e9331ac8b101
46255 Author: Hebbar <gururajakr@sanyo.co.in>
46256 Date: Tue May 20 02:16:36 2008 -0700
46257
46258 common/usb.c: fix incorrect escape sequence
46259
46260 Signed off by: Gururaja Hebbar <gururajakr@sanyo.co.in>
46261
46262 commit 4ce1e23b5e12283579828b3d23e8fd6e1328a7aa
46263 Author: York Sun <yorksun@freescale.com>
46264 Date: Thu May 15 15:26:27 2008 -0500
46265
46266 Fix 8313ERDB board configuration
46267
46268 Change LCRR clock ratio from 2 to 4 to commodate VSC7385.
46269 Correct TSEC1 vs TSEC2 assignment.
46270 Define ETHADDR and ETH1ADDR always.
46271
46272 Signed-off-by: York Sun <yorksun@freescale.com>
46273 Signed-off-by: Timur Tabi <timur@freescale.com>
46274
46275 commit 2c289e320dcfb3760e99cf1d765cb067194a1202
46276 Author: Jon Loeliger <jdl@freescale.com>
46277 Date: Mon May 19 09:47:25 2008 -0500
46278
46279 mpc86xx: Removed unused and unconfigured memory test code.
46280
46281 Besides, other common code exists.
46282
46283 Signed-off-by: Jon Loeliger <jdl@freescale.com>
46284
46285 commit 180a90abdae72587c0f679edf8991455e559440d
46286 Author: Wolfgang Denk <wd@denx.de>
46287 Date: Mon May 19 12:47:11 2008 +0200
46288
46289 Release v1.3.3
46290
46291 Update CHANGELOG for release.
46292
46293 Signed-off-by: Wolfgang Denk <wd@denx.de>
46294
46295 commit 16bedc661de0dae767b1377d8413373a3fbcfa79
46296 Author: Stefan Roese <sr@denx.de>
46297 Date: Mon May 19 07:14:38 2008 +0200
46298
46299 ppc4xx: Canyonlands: Disable PCIe0/SATA in dev-tree depending on selection
46300
46301 When SATA is selected (via jumper J6) we need to disable the first PCIe
46302 node in the device tree, so that Linux doesn't initialize it. Otherwise
46303 the Linux SATA driver will fail to detect the devices.
46304
46305 The same goes the other way around too. So if PCIe is selected we need
46306 to disable the SATA node in the device tree.
46307
46308 This is because PCIe port 0 and SATA on 460EX share the same pins
46309 (multiplexed) and we have to configure in U-Boot which peripheral is
46310 enabled.
46311
46312 Signed-off-by: Stefan Roese <sr@denx.de>
46313
46314 commit 3cc27b426aeefe2930f911692e9df3143fb2565f
46315 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46316 Date: Sun May 18 19:09:58 2008 +0200
46317
46318 i386: Fix multiple definitions of __show_boot_progress
46319
46320 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46321
46322 commit 311f3446930c1e64c12026c1cfd00500b05be52d
46323 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46324 Date: Sun May 18 19:09:57 2008 +0200
46325
46326 sc530_spunk: add missing SOBJS entry
46327
46328 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46329
46330 commit a559317143b4f95927b08cd388707e6f077e95fa
46331 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46332 Date: Sun May 18 19:09:56 2008 +0200
46333
46334 sc520_spunk: Fix flash
46335
46336 flash.c:593: warning: dereferencing type-punned pointer will break strict-aliasing rules
46337 flash.c:398: error: label at end of compound statement
46338
46339 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46340
46341 commit 91f221317af64191ee8caf303ea9305943158691
46342 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46343 Date: Sun May 18 19:09:49 2008 +0200
46344
46345 drivers/pcmcia: add missing i82365
46346
46347 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46348
46349 commit dd223944132f97ffa52977ea95e5a52428f5cc2f
46350 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46351 Date: Sun May 18 19:09:47 2008 +0200
46352
46353 i386/bootm: remove unused var
46354
46355 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46356
46357 commit a9da341df19b32ad2ecb58ce529f7e4fada7814e
46358 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46359 Date: Sun May 18 19:09:45 2008 +0200
46360
46361 example/gitignore: update with all generated examples
46362
46363 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46364
46365 commit a38dc3ea8614f8b0c41e432b445a9959b9711295
46366 Author: Wolfgang Denk <wd@denx.de>
46367 Date: Thu May 15 00:42:45 2008 +0200
46368
46369 TQM8272: fix out-of-tree building
46370
46371 ...and add to MAKEALL script
46372
46373 Signed-off-by: Wolfgang Denk <wd@denx.de>
46374
46375 commit 4f805c1e3a60b9263da8ec3bcd1f45edcefa7dcf
46376 Author: Wolfgang Denk <wd@denx.de>
46377 Date: Wed May 14 23:34:53 2008 +0200
46378
46379 environment: fix bug introduced by commit a8409f4f1ac8
46380
46381 env_get_char is not a function, but a pointer to one.
46382
46383 Signed-off-by: Wolfgang Denk <wd@denx.de>
46384
46385 commit 0c11935cd62ca1f65eeb228ff4c848440d4553bf
46386 Author: Gary Jennejohn <garyj@denx.de>
46387 Date: Wed May 14 13:39:22 2008 +0200
46388
46389 ppc4xx: QUAD100HD: Allow the environment to be put into flash.
46390
46391 After moving TEXT_BASE the value for CFG_ENV_ADDR was incorrect. Also
46392 use a redundant environment.
46393
46394 Signed-off-by: Gary Jennejohn <garyj@denx.de>
46395
46396 commit cda2a4a9961fd4341b7db305cb22fc05957e8b77
46397 Author: Wolfgang Denk <wd@denx.de>
46398 Date: Wed May 14 13:55:30 2008 +0200
46399
46400 Fix config files for out-of-tree building
46401
46402 Several board/<...>/config.mk files include dynamically built (by
46403 the Makefile) config files but used the wrong file name of
46404 $(TOPDIR)/board/$(BOARDDIR)/config.tmp
46405 instead if the correct
46406 $(OBJTREE)/board/$(BOARDDIR)/config.tmp
46407
46408 The bug is nasty because the build result is correct for the (normal)
46409 in-tree builds, and because 'sinclude' is used no errors get raised
46410 even for out-of-tree build tests. But out-of-tree builds use an
46411 incomplete and thus usually incorrect configuration...
46412
46413 Signed-off-by: Wolfgang Denk <wd@denx.de>
46414
46415 commit 2dd7082e06d580404010b06fe4e0e8b7038a00c8
46416 Author: Stefan Roese <sr@denx.de>
46417 Date: Wed May 14 13:40:03 2008 +0200
46418
46419 ppc4xx: Fix bogus Canyonlands config.mk
46420
46421 This patch fixes the canyonlands config.mk file to enable correct
46422 out-of-tree builds. Thanks to Wolfgang Denk for spotting this.
46423
46424 Signed-off-by: Stefan Roese <sr@denx.de>
46425
46426 commit fdd1247a66d788a3446244f6fde9955a93c26322
46427 Author: Stefan Roese <sr@denx.de>
46428 Date: Wed May 14 10:32:32 2008 +0200
46429
46430 ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
46431
46432 Canyonlands has a file ddr2_fixed.c which needs special treatment when
46433 building in separate directory. It has to be linked to build directory
46434 otherwise it is not seen.
46435
46436 Signed-off-by: Stefan Roese <sr@denx.de>
46437
46438 commit a8409f4f1ac84c36273c1a1e341189662521bcfb
46439 Author: Wolfgang Denk <wd@denx.de>
46440 Date: Wed May 14 12:22:49 2008 +0200
46441
46442 environment: cleanup prototype declarations of env functions.
46443
46444 Signed-off-by: Wolfgang Denk <wd@denx.de>
46445
46446 commit cf39b07948015c480b72a6e732cf7d839aa93a9e
46447 Author: Wolfgang Denk <wd@denx.de>
46448 Date: Wed May 14 12:21:48 2008 +0200
46449
46450 linkstation_HGLAN: Fix out of tree building.
46451
46452 Signed-off-by: Wolfgang Denk <wd@denx.de>
46453
46454 commit 085551c05ca09e6c491ea11a1c6727a36776a545
46455 Author: Stefan Roese <sr@denx.de>
46456 Date: Wed May 14 10:32:32 2008 +0200
46457
46458 ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
46459
46460 Canyonlands has a file ddr2_fixed.c which needs special treatment when
46461 building in separate directory. It has to be linked to build directory
46462 otherwise it is not seen.
46463
46464 Signed-off-by: Stefan Roese <sr@denx.de>
46465
46466 commit 1510b82d50615f344e89d42533e8224cce067dc0
46467 Author: Wolfgang Denk <wd@denx.de>
46468 Date: Tue May 13 23:15:52 2008 +0200
46469
46470 Makefile: fix "error: version_autogenerated.h: No such file or directory"
46471
46472 Signed-off-by: Wolfgang Denk <wd@denx.de>
46473
46474 commit 54694a91428f6c3280fe1ee0923488a1e7e8dbc4
46475 Author: Stelian Pop <stelian@popies.net>
46476 Date: Tue May 13 17:31:24 2008 +0200
46477
46478 Cleanup nand_info[] declaration.
46479
46480 The nand_info array is declared as extern in several .c files.
46481 Those days, nand.h contains a reference to the array, so there is
46482 no need to declare it elsewhere.
46483
46484 Signed-off-by: Stelian Pop <stelian@popies.net>
46485 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46486
46487 commit 70fab1908fc1734a403711eaabbef546bc4b77dc
46488 Author: Stefan Roese <sr@denx.de>
46489 Date: Tue May 13 20:22:01 2008 +0200
46490
46491 ppc4xx: Add 405EX(r) revision C PVR definitions and detection code
46492
46493 Signed-off-by: Stefan Roese <sr@denx.de>
46494
46495 commit 65dcfa79204f4750b905a173a5365e0b2eb6c2f6
46496 Author: Wolfgang Denk <wd@denx.de>
46497 Date: Mon May 12 01:11:21 2008 +0200
46498
46499 Revert "pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option"
46500
46501 This reverts commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
46502 which broke many PowerPC boards.
46503
46504 commit ee0cfa70803a3e629ea581a9b216f8ecef402bfc
46505 Author: Wolfgang Denk <wd@denx.de>
46506 Date: Mon May 12 00:56:28 2008 +0200
46507
46508 Revert "Avoid initrd and logbuffer area overlaps"
46509
46510 This reverts commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
46511 which breaks building on all PPC boards that don't use a log buffer.
46512
46513 commit 02b9b22446e3d7ad6a6382be17a1ce79a7de589b
46514 Author: Nick Spence <nick.spence@freescale.com>
46515 Date: Sat May 10 14:02:04 2008 -0700
46516
46517 Fix offset calculation for multi-type legacy images.
46518
46519 Calculation of tail was incorrect when size % 4 == 0.
46520
46521 New code removes the conditional and does the same thing but with arithmetic
46522
46523 Signed-off-by: Nick Spence <nick.spence@freescale.com>
46524
46525 commit c9dca3c3f37d2647aec4509b24b16d15882ae3e4
46526 Author: Wolfgang Denk <wd@denx.de>
46527 Date: Mon May 12 00:40:58 2008 +0200
46528
46529 Revert "Change env_get_char from a global function ptr to a function."
46530
46531 This reverts commit c0559be371b2a64b1a817088c3308688e2182f93
46532 which is known to break booting from dataflash and NAND.
46533
46534 commit 20e5ed137483823aaea5178169f3b144c7a4d9e0
46535 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46536 Date: Sun May 11 23:13:57 2008 +0200
46537
46538 API: remove duplicate syscall check
46539
46540 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46541
46542 commit 67e3beb52c320b0a31cf030716c99392cde2d532
46543 Author: Stelian Pop <stelian@popies.net>
46544 Date: Fri May 9 21:46:51 2008 +0200
46545
46546 AT91: Cleanup unused config header file definitions.
46547
46548 CONFIG_ENV_OVERWRITE is commented out in the config header files,
46549 so let's cleanup the files by removing the whole definition.
46550
46551 Signed-off-by: Stelian Pop <stelian@popies.net>
46552 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46553
46554 commit 19883aede2ac0a522493bfb2b35a7dbb200071b1
46555 Author: Stelian Pop <stelian@popies.net>
46556 Date: Thu May 8 14:52:34 2008 +0200
46557
46558 Support AT91CAP9 revC CPUs
46559
46560 The AT91CAP9 revC CPU has a few differences over the previous,
46561 revB CPU which was distributed in small quantities only (revA was
46562 an internal Atmel product only).
46563
46564 The revC silicon needs a special initialisation sequence to
46565 switch from the internal (imprecise) RC oscillator to the
46566 external 32k clock.
46567
46568 Signed-off-by: Stelian Pop <stelian@popies.net>
46569 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46570
46571 commit 098b7b4b441b12c2a64dd517930f43c793542759
46572 Author: Stelian Pop <stelian@popies.net>
46573 Date: Thu May 8 14:52:33 2008 +0200
46574
46575 Use custom logo for Atmel boards
46576
46577 This patch adds a custom vendor logo for the Atmel AT91 boards.
46578
46579 Signed-off-by: Stelian Pop <stelian@popies.net>
46580 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46581
46582 commit 761c70b80cdd3bead40146b96a8e713d6ae01632
46583 Author: Stelian Pop <stelian@popies.net>
46584 Date: Thu May 8 14:52:32 2008 +0200
46585
46586 AT91SAM9RLEK: hook up the ATMEL LCD driver
46587
46588 This patch makes the necessary adaptations (PIO configurations and
46589 defines in config header file) to hook up the Atmel LCD driver to the
46590 AT91SAM9RLEK board.
46591
46592 Signed-off-by: Stelian Pop <stelian@popies.net>
46593 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46594
46595 commit 56a2479cd7fecabdd91348a775b2801dd2e65c7f
46596 Author: Stelian Pop <stelian@popies.net>
46597 Date: Thu May 8 14:52:31 2008 +0200
46598
46599 AT91SAM9263EK: hook up the ATMEL LCD driver
46600
46601 This patch makes the necessary adaptations (PIO configurations and
46602 defines in config header file) to hook up the Atmel LCD driver to the
46603 AT91SAM9263EK board.
46604
46605 Signed-off-by: Stelian Pop <stelian@popies.net>
46606 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46607
46608 commit 820f2a958325061a446115f3035e48e4726b3390
46609 Author: Stelian Pop <stelian@popies.net>
46610 Date: Thu May 8 14:52:30 2008 +0200
46611
46612 AT91SAM9261EK: hook up the ATMEL LCD driver
46613
46614 This patch makes the necessary adaptations (PIO configurations and
46615 defines in config header file) to hook up the Atmel LCD driver to the
46616 AT91SAM9261EK board.
46617
46618 Signed-off-by: Stelian Pop <stelian@popies.net>
46619 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46620
46621 commit c139b17d20c8371c1e0a8d7fb27c11050cf86304
46622 Author: Stelian Pop <stelian@popies.net>
46623 Date: Thu May 8 14:52:29 2008 +0200
46624
46625 AT91CAP9ADK: hook up the ATMEL LCD driver
46626
46627 This patch makes the necessary adaptations (PIO configurations and
46628 defines in config header file) to hook up the Atmel LCD driver to the
46629 AT91CAP9ADK board.
46630
46631 Signed-off-by: Stelian Pop <stelian@popies.net>
46632 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46633
46634 commit 39cf480484fcce5c04a590ee1c30be0c17b02c34
46635 Author: Stelian Pop <stelian@popies.net>
46636 Date: Fri May 9 21:57:18 2008 +0200
46637
46638 Add ATMEL LCD driver
46639
46640 This patch adds support for the ATMEL LCDC driver which is used on some
46641 AT91 and AVR platforms.
46642
46643 Is has been tested with the AT91CAP9ADK, AT91SAM9261EK, AT91SAM9263EK and
46644 AT91SAM9RLEK boards. Adaptation for AVR32 should probably be easy.
46645
46646 Signed-off-by: Stelian Pop <stelian@popies.net>
46647 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46648
46649 commit 2118ebb44dc40f8117c94950fd95799a9ef821b2
46650 Author: Stelian Pop <stelian@popies.net>
46651 Date: Thu May 8 18:52:25 2008 +0200
46652
46653 AT91SAM9RLEK support
46654
46655 This patch adds support for the AT91SAM9RL chip and the AT91SAM9RLEK
46656 board.
46657
46658 Signed-off-by: Stelian Pop <stelian@popies.net>
46659 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46660
46661 commit 8e429b3eee23927c1222679f6b6f53667b21595c
46662 Author: Stelian Pop <stelian@popies.net>
46663 Date: Thu May 8 18:52:23 2008 +0200
46664
46665 AT91SAM9263EK support
46666
46667 This patch adds support for the AT91SAM9263 chip and the AT91SAM9263EK
46668 board.
46669
46670 Signed-off-by: Stelian Pop <stelian@popies.net>
46671 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46672
46673 commit d99a8ff66d8ae87e5c87590ed2e4ead629540607
46674 Author: Stelian Pop <stelian@popies.net>
46675 Date: Thu May 8 20:52:22 2008 +0200
46676
46677 AT91SAM9261EK support
46678
46679 This patch adds support for the AT91SAM9261 chip and the AT91SAM9261EK
46680 board.
46681
46682 Signed-off-by: Stelian Pop <stelian@popies.net>
46683 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46684
46685 commit 86c8c8a414988c50104a3b02c29f50af2be738c0
46686 Author: Stelian Pop <stelian@popies.net>
46687 Date: Thu May 8 20:52:21 2008 +0200
46688
46689 AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
46690
46691 This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
46692 in order to cope with the changes in DataFlash partitionning scheme
46693 (cset c3a60cb3).
46694
46695 Signed-off-by: Stelian Pop <stelian@popies.net>
46696 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46697
46698 commit 96996ac25d5222611a8888968db6e53a6d3726da
46699 Author: Stelian Pop <stelian@popies.net>
46700 Date: Thu May 8 20:52:20 2008 +0200
46701
46702 AT91SAM9260EK: Normalize BOOTARGS
46703
46704 This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
46705 DataFlash or from NAND), and gives to Linux a fully specified mtdparts
46706 variable.
46707
46708 Signed-off-by: Stelian Pop <stelian@popies.net>
46709 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46710
46711 commit 79f0cb6e9c54d31a1d9e3f5e226a9bebc3c3a47a
46712 Author: Stelian Pop <stelian@popies.net>
46713 Date: Thu May 8 20:52:19 2008 +0200
46714
46715 AT91SAM9260EK: Normalize SPI timings
46716
46717 This patch changes the SPI timings to closely match the ones
46718 used by the Linux kernel and the Atmel's own bootstrap project.
46719
46720 Signed-off-by: Stelian Pop <stelian@popies.net>
46721 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46722
46723 commit c1212b2f5c5ed440bf8e9ebc8e4fd7488858b935
46724 Author: Stelian Pop <stelian@popies.net>
46725 Date: Thu May 8 20:52:18 2008 +0200
46726
46727 AT91SAM9260EK: Handle 8 or 16 bit NAND
46728
46729 The Atmel boards can handle 8 or 16 bit NAND memories. This patch
46730 makes the support configurable in the board config header file
46731 (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
46732
46733 Signed-off-by: Stelian Pop <stelian@popies.net>
46734 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46735
46736 commit ab52640fc01624e208424e527af0b7b3a5a65a12
46737 Author: Stelian Pop <stelian@popies.net>
46738 Date: Thu May 8 20:52:17 2008 +0200
46739
46740 AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
46741
46742 This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
46743 in order to cope with the changes in DataFlash partitionning scheme
46744 (cset c3a60cb3).
46745
46746 Signed-off-by: Stelian Pop <stelian@popies.net>
46747 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46748
46749 commit 3267508ec4c9e74c39ee41c9ae6951ad185fe270
46750 Author: Stelian Pop <stelian@popies.net>
46751 Date: Thu May 8 20:52:16 2008 +0200
46752
46753 AT91CAP9ADK: Normalize BOOTARGS
46754
46755 This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
46756 DataFlash or from NAND), and gives to Linux a fully specified mtdparts
46757 variable.
46758
46759 Signed-off-by: Stelian Pop <stelian@popies.net>
46760 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46761
46762 commit 93da48b910511911ce110656e17ed733c8ac4c45
46763 Author: Stelian Pop <stelian@popies.net>
46764 Date: Thu May 8 20:52:15 2008 +0200
46765
46766 AT91CAP9ADK: Normalize SPI timings
46767
46768 This patch changes the SPI timings to closely match the ones
46769 used by the Linux kernel and the Atmel's own bootstrap project.
46770
46771 Signed-off-by: Stelian Pop <stelian@popies.net>
46772 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46773
46774 commit 1c90df3e148ce0a3e2c86c63b38b19d47772f2a0
46775 Author: Stelian Pop <stelian@popies.net>
46776 Date: Thu May 8 20:52:14 2008 +0200
46777
46778 AT91CAP9ADK: Handle 8 or 16 bit NAND
46779
46780 The Atmel boards can handle 8 or 16 bit NAND memories. This patch
46781 makes the support configurable in the board config header file
46782 (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
46783
46784 Signed-off-by: Stelian Pop <stelian@popies.net>
46785 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46786
46787 commit 11b162bae058e96c7929e358d4adff2bee6c2cc4
46788 Author: Stelian Pop <stelian@popies.net>
46789 Date: Thu May 8 20:52:13 2008 +0200
46790
46791 Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms
46792
46793 All the AT91CAP9/AT91SAM9 boards have the same linker script. The patch
46794 below avoids the duplication of u-boot.lds by putting the file in the
46795 cpu directory instead of the board one.
46796
46797 Signed-off-by: Stelian Pop <stelian@popies.net>
46798 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46799
46800 commit d48abea4b89adaf5e45ea75b5e38c0d8de179ece
46801 Author: Stelian Pop <stelian@popies.net>
46802 Date: Thu May 8 20:52:12 2008 +0200
46803
46804 Add proper copyright notices in Atmel boards Makefiles
46805
46806 The Makefiles for the AT91CAP9/AT91SAM9 boards have an incomplete
46807 copyright notice. This patch adds the missing pieces.
46808
46809 Signed-off-by: Stelian Pop <stelian@popies.net>
46810 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46811
46812 commit e817a042cef6164bf26fee86f90326f2ec9e6745
46813 Author: Stelian Pop <stelian@popies.net>
46814 Date: Thu May 8 20:52:11 2008 +0200
46815
46816 Add copyright information in Atmel boards partition.c
46817
46818 When Ulf did the dataflash.c cleanup, he didn't add his copyright on
46819 the new created files. This patch fixes the problem.
46820
46821 Signed-off-by: Stelian Pop <stelian@popies.net>
46822 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46823
46824 commit 4f6c810106f4f76d83cfc57d98f4540cd45f9a19
46825 Author: Stelian Pop <stelian@popies.net>
46826 Date: Thu May 8 20:52:10 2008 +0200
46827
46828 Update origin and copyright information in arch-at91sam9 header files
46829
46830 When doing the AT91CAP9/AT91SAM9 port, a number of header files were
46831 copied from the Linux kernel sources. This patch explicitly specifies
46832 this origin for all the copied headers, and for those missing copyright
46833 information, adds it.
46834
46835 Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
46836 in the latest kernel sources by 'at91sam9_smc.h'.
46837
46838 The copyright information has been confirmed by the AT91 Linux kernel
46839 maintainer, Andrew Victor <avictor.za@gmail.com>.
46840
46841 Signed-off-by: Stelian Pop <stelian@popies.net>
46842 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46843
46844 commit 79dd1712689d6a5031d7cbff54957049680751c7
46845 Author: Markus Klotzbücher <mk@denx.de>
46846 Date: Thu May 8 16:00:55 2008 +0200
46847
46848 ppc4xx: Kilauea: Add CONFIG_BOOTP_SUBNETMASK to Kilauea board config
46849
46850 When using dhcp/bootp the "netmask" environment variable is not set
46851 because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
46852 desireable, so the following patch adds this this option to the board
46853 config.
46854
46855 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
46856 Signed-off-by: Stefan Roese <sr@denx.de>
46857
46858 commit 869d14b4cc2e47de2ddcb117bad0407a44436684
46859 Author: Stefan Roese <sr@denx.de>
46860 Date: Sat May 10 10:30:36 2008 +0200
46861
46862 ppc4xx: Update Makalu defconfig to use device-tree booting as default
46863
46864 This patch reworks the default environment on Makalu. Now "net_nfs" for
46865 example uses the device-tree style booting formerly know as "net_nfs_fdt".
46866 Also the addresses in RAM were changed because of the new image booting
46867 support, which check for image overwriting. So the addresses needed to
46868 get adjusted.
46869
46870 Signed-off-by: Stefan Roese <sr@denx.de>
46871
46872 commit f3612a7b199cab3942f60d9c1392eb39d58cc699
46873 Author: Becky Bruce <bgill@freescale.com>
46874 Date: Wed May 7 13:28:16 2008 -0500
46875
46876 PPC: fix map_physmem build warning
46877
46878 map_physmem currently generates a warning when CONFIG_PHYS_64BIT is
46879 enabled. This quiets the warning.
46880
46881 Signed-off-by: Becky Bruce <Becky.Bruce@freescale.com>
46882
46883 commit 36f32675f40292002ee1fed252c180a43022d2d4
46884 Author: Becky Bruce <bgill@freescale.com>
46885 Date: Wed May 7 13:24:57 2008 -0500
46886
46887 Update pci code to use phys_addr_t
46888
46889 Physical addrs need to be represented by phys_addr_t, not
46890 unsigned long. Otherwise, systems that use CONFIG_PHYS_64BIT
46891 are going to fail mightily.
46892
46893 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
46894
46895 commit 91a616741fc128cdb88f39bddcd4d72fe17466d0
46896 Author: Nick Spence <nick.spence@freescale.com>
46897 Date: Thu May 8 22:32:22 2008 -0700
46898
46899 Support legacy multi-type images without FDT section.
46900
46901 This patch enables legacy multi-type images containing only a Linux kernel
46902 and root file system to be loaded, maintaining compatibility with previous
46903 versions of u-boot.
46904
46905 This is required when using old image files such as a Linux 2.4 kernel /
46906 filesystem.
46907
46908 Signed-off-by: Nick Spence <nick.spence@freescale.com>
46909 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
46910
46911 commit 881031d9732783b7aeae2198fc7eb480ae8974a6
46912 Author: Wolfgang Denk <wd@denx.de>
46913 Date: Sat May 10 00:38:02 2008 +0200
46914
46915 Update CHANGELOG.
46916
46917 Signed-off-by: Wolfgang Denk <wd@denx.de>
46918
46919 commit e5e9d6c9c08160be7e5a36e04d125ccce99b8774
46920 Author: Wolfgang Denk <wd@denx.de>
46921 Date: Sat May 10 00:36:09 2008 +0200
46922
46923 post/cpu/ppc4xx/Makefile: line length cleanup
46924
46925 Signed-off-by: Wolfgang Denk <wd@denx.de>
46926
46927 commit cce9cfdabcf416ecd2aacc3681c91e5378c75a3d
46928 Author: Stelian Pop <stelian@popies.net>
46929 Date: Thu May 8 22:52:09 2008 +0200
46930
46931 Fix @ -> <at> substitution
46932
46933 When applying the AT91CAP9 patches upstream, something transformed
46934 the '@' character into the ' <at> ' sequence.
46935
46936 The patch below restores the original form in all the places where
46937 it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
46938 were copied from AT91CAP9, and a couple of other files where the
46939 ' <at> ' sequence was present).
46940
46941 Signed-off-by: Stelian Pop <stelian@popies.net>
46942
46943 commit 9606b3c81b3c47a1d58514e9a232c6f461a17597
46944 Author: Stelian Pop <stelian@popies.net>
46945 Date: Thu May 8 22:52:10 2008 +0200
46946
46947 Update origin and copyright information in arch-at91sam9 header files
46948
46949 When doing the AT91CAP9/AT91SAM9 port, a number of header files were
46950 copied from the Linux kernel sources. This patch explicitly specifies
46951 this origin for all the copied headers, and for those missing copyright
46952 information, adds it.
46953
46954 Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
46955 in the latest kernel sources by 'at91sam9_smc.h'.
46956
46957 The copyright information has been confirmed by the AT91 Linux kernel
46958 maintainer, Andrew Victor <avictor.za@gmail.com>.
46959
46960 Signed-off-by: Stelian Pop <stelian@popies.net>
46961
46962 commit ceb6b4fbe1dcc40bb672ef8133ddf4813e97cbb1
46963 Author: Stelian Pop <stelian@popies.net>
46964 Date: Thu May 8 22:52:11 2008 +0200
46965
46966 Add copyright information in Atmel boards partition.c
46967
46968 When Ulf did the dataflash.c cleanup, he didn't add his copyright on
46969 the new created files. This patch fixes the problem.
46970
46971 Signed-off-by: Stelian Pop <stelian@popies.net>
46972
46973 commit 2ab02fd456d8ef92ae9f5439618d1fa7ca16e5f3
46974 Author: Guennadi Liakhovetski <lg@denx.de>
46975 Date: Thu May 8 10:09:27 2008 +0200
46976
46977 mx31ads: fix 32kHz clock handling
46978
46979 According to schematics and to RedBoot sources, the MX31ADS uses a 32768Hz
46980 oscillator as a SKIL source. Fix previously wrongly assumed 32000Hz value.
46981 Also fix a typo when verifying a jumper configuration. While at it, make
46982 two needlessly global functions static.
46983
46984 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
46985
46986 commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
46987 Author: Marian Balakowicz <m8@semihalf.com>
46988 Date: Wed May 7 13:10:04 2008 +0200
46989
46990 Avoid initrd and logbuffer area overlaps
46991
46992 Add logbuffer to reserved LMB areas to prevent initrd allocation
46993 from overlaping with it.
46994
46995 Make sure to use correct logbuffer base address.
46996
46997 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
46998
46999 commit c59518e15949b3403df5c5b0c2c48ea0e5bea24b
47000 Author: Marian Balakowicz <m8@semihalf.com>
47001 Date: Wed May 7 13:08:54 2008 +0200
47002
47003 ppc: Cleanup get_effective_memsize() use
47004
47005 Removed duplicated effective memory size calculation code.
47006
47007 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
47008
47009 commit 273c37d843d5b581090378016cd12dd9c586907b
47010 Author: Marian Balakowicz <m8@semihalf.com>
47011 Date: Wed May 7 09:03:53 2008 +0200
47012
47013 Fix build errors when CONFIG_LOGBUFFER and CONFIG_FIT are enabled
47014
47015 Recent modifcations to LOGBUFFER handling code were incorrecly
47016 introduced to fit_check_kernel() routine during
47017 "Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing",
47018 commit 27f33e9f45ef7f9685cbdc65066a1828e85dde4f.
47019
47020 This patch cleans up this merge issue.
47021
47022 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
47023
47024 commit bc11756daff89a3de09ca80adac962b88cf06e6e
47025 Author: Grant Erickson <gerickson@nuovations.com>
47026 Date: Tue May 6 20:16:15 2008 -0700
47027
47028 Propagate Error Status to the Shell on fw_printenv Errors
47029
47030 Changed implementation such that fw_printenv returns failure status
47031 when one or more specified variables do not exist or when incorrect
47032 command syntax is used.
47033
47034 This aids scripting fw_printenv such that the script can key of the
47035 return status rather than relying on standard error "scraping".
47036
47037 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
47038 Signed-off-by: Wolfgang Denk <wd@denx.de>
47039
47040 commit f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6
47041 Author: Grant Erickson <gerickson@nuovations.com>
47042 Date: Tue May 6 16:18:00 2008 -0700
47043
47044 Fix Compilation Errors with 'tools/env/fw_printenv'
47045
47046 In the current top-of-tree, 1.3.3.-rc2, the optional tool
47047 'tools/env/fw_printenv' fails to compile for two reasons:
47048
47049 1) The header watchdog.h cannot be found.
47050 2) The header zlib.h is picked up from the tool chain rather than the
47051 project causing a prototype conflict for crc32.
47052
47053 This patch addresses both of these issues.
47054
47055 Platforms Tested On:
47056 - AMCC "Kilauea"
47057
47058 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
47059
47060 commit 597f6c26a18b389903a64692bacbf9a1ca69355b
47061 Author: James Yang <James.Yang@freescale.com>
47062 Date: Mon May 5 10:22:53 2008 -0500
47063
47064 Fix readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
47065
47066 When CONFIG_CMDLINE_EDITING is enabled, readline_into_buffer() doesn't
47067 work before relocating to RAM because command history is written into
47068 a global array that is not writable before relocation. This patch
47069 defers to the no-editing and no-history code in readline_into_buffer()
47070 if it is called before relocation.
47071
47072 Signed-off-by: James Yang <James.Yang@freescale.com>
47073 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47074
47075 commit 726c0f1e5f108dccea052965123b95837d2bd402
47076 Author: Detlev Zundel <dzu@denx.de>
47077 Date: Mon May 5 16:11:22 2008 +0200
47078
47079 cosmetic: Adjust coding style for switch statements to be consistent
47080
47081 Signed-off-by: Detlev Zundel <dzu@denx.de>
47082
47083 commit 574b319512b13e10800f0045e39b993f4ca25e42
47084 Author: Detlev Zundel <dzu@denx.de>
47085 Date: Mon May 5 16:11:21 2008 +0200
47086
47087 Fix disk type output in disk/part.c
47088
47089 Signed-off-by: Detlev Zundel <dzu@denx.de>
47090
47091 commit 045b4d2d7168ef09c7349dcf6ecebe7432b74171
47092 Author: Vlad Lungu <vlad.lungu@windriver.com>
47093 Date: Mon May 5 14:20:03 2008 +0300
47094
47095 Mail address change, documentation modified
47096
47097 Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
47098
47099 commit 4d49b28038e2819088e8356a77212fc95a89ce5a
47100 Author: Michal Simek <monstr@monstr.eu>
47101 Date: Sun May 4 15:42:41 2008 +0200
47102
47103 microblaze: Repare intc handling
47104
47105 Signed-off-by: Michal Simek <monstr@monstr.eu>
47106
47107 commit 878b3b1e193e570caf3e96ad8e31e561f68d0287
47108 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47109 Date: Sun May 4 15:17:52 2008 +0200
47110
47111 include/gitignore: update to all architectures
47112
47113 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47114
47115 commit 1df368aed3b8bc240fe1595d290b0e91b22961da
47116 Author: Marcel Ziswiler <marcel@ziswiler.com>
47117 Date: Mon May 5 02:12:06 2008 +0200
47118
47119 ide: Remove spurious second include of io.h
47120
47121 Removed the second include, with all the #ifdef around as suggested by Wolfgang.
47122
47123 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
47124
47125 commit 8fbc985bdad09b23b7eb4df1d2ea589619d8db4c
47126 Author: Adrian Filipi <adrian.filipi@eurotech.com>
47127 Date: Tue May 6 16:46:37 2008 -0400
47128
47129 Fix some typos
47130
47131 This patch fixes three typos.
47132 The first is a repetition of CONFIG_CMD_BSP.
47133 The second makes the #endif comment match its #if.
47134 The third is a spelling error.
47135
47136 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
47137
47138 commit e419e12d04ae3b280c99a87a2ea4ad7a40628bcb
47139 Author: Grant Erickson <gerickson@nuovations.com>
47140 Date: Sun May 4 16:45:01 2008 -0700
47141
47142 Recognize 'powerpc' As an Alias for IH_ARCH_PPC
47143
47144 Add support for the recognition of 'powerpc' as an alias for the PowerPC
47145 architecture type since Linux is already trending in that direction,
47146 preferring 'powerpc' to 'ppc'.
47147
47148 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
47149
47150 commit f5a24259190c388c2527bdc49fee34577d862cc7
47151 Author: Wheatley Travis <Travis.Wheatley@freescale.com>
47152 Date: Fri May 2 13:35:15 2008 -0700
47153
47154 7450 and 86xx L2 cache invalidate bug corrections
47155
47156 The 7610 and related parts have an L2IP bit in the L2CR that is
47157 monitored to signal when the L2 cache invalidate is complete whereas the
47158 7450 and related parts utilize L2I for this purpose. However, the
47159 current code does not account for this difference. Additionally the 86xx
47160 L2 cache invalidate code used an "andi" instruction where an "andis"
47161 instruction should have been used.
47162
47163 This patch addresses both of these bugs.
47164
47165 Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
47166 Acked-By: Jon Loeliger <jdl@freescale.com>
47167
47168 commit 4d31cdc45d3592a5545a649fb5a24b458a4e4b72
47169 Author: Wolfgang Denk <wd@denx.de>
47170 Date: Fri May 9 10:16:13 2008 +0200
47171
47172 Avoid infinite loop "Generating include/autoconf.mk"
47173
47174 Fix a bogus circular dependency that caused an infinite loop of
47175 "Generating include/autoconf.mk" again and again.
47176
47177 Signed-off-by: Wolfgang Denk <wd@denx.de>
47178
47179 commit 567fb852178dbf59529d7301620a3f3732a4b02d
47180 Author: Stelian Pop <stelian@popies.net>
47181 Date: Thu May 8 22:52:09 2008 +0200
47182
47183 Fix @ -> <at> substitution
47184
47185 When applying the AT91CAP9 patches upstream, something transformed
47186 the '@' character into the ' <at> ' sequence.
47187
47188 The patch below restores the original form in all the places where
47189 it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
47190 were copied from AT91CAP9, and a couple of other files where the
47191 ' <at> ' sequence was present).
47192
47193 Signed-off-by: Stelian Pop <stelian@popies.net>
47194 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47195
47196 commit 73ccb3410a0785593cda7aee455dfc51f790e281
47197 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
47198 Date: Mon Apr 28 14:04:32 2008 +0200
47199
47200 ppc4xx: Add the Harris QUAD100HD AMCC 405EP-based board
47201
47202 Signed-off-by: Gary Jennejohn <garyj@denx.de>
47203 Signed-off-by: Stefan Roese <sr@denx.de>
47204
47205 commit ef2642625cbfb1c3695e3478d08ae515052a4950
47206 Author: Stefan Roese <sr@denx.de>
47207 Date: Thu May 8 11:10:46 2008 +0200
47208
47209 ppc4xx: Kilauea: Fix incorrect FPGA FIFO address
47210
47211 Signed-off-by: Stefan Roese <sr@denx.de>
47212
47213 commit a00eccfebc954ad9485161efeca7d9aaf626d530
47214 Author: Stefan Roese <sr@denx.de>
47215 Date: Thu May 8 11:05:15 2008 +0200
47216
47217 ppc4xx: Add fdt support to all remaining AMCC PPC4xx eval boards
47218
47219 This patch adds fdt (flattened device tree) support to all remaining AMCC
47220 eval boards. Most newer boards already support device tree. With this patch,
47221 all AMCC boards now enable device tree passing from U-Boot to Linux
47222 arch/powerpc kernels.
47223
47224 Signed-off-by: Stefan Roese <sr@denx.de>
47225
47226 commit cb5d88b9611e0c35c53543ad3b4ab99fa82203e3
47227 Author: Stefan Roese <sr@denx.de>
47228 Date: Thu May 8 11:01:09 2008 +0200
47229
47230 ppc4xx: Add weak default ft_board_setup() routine
47231
47232 This patch adds a default ft_board_setup() routine to the 4xx fdt code.
47233 This routine is defined as weak and can be overwritten by a board specific
47234 one if needed.
47235
47236 Signed-off-by: Stefan Roese <sr@denx.de>
47237
47238 commit d1c1ba85c7915053adf6a8d14a08ac6fcb750d01
47239 Author: Stefan Roese <sr@denx.de>
47240 Date: Thu May 8 10:48:58 2008 +0200
47241
47242 ppc4xx: acadia: Add fdt support and fix section overlap problem
47243
47244 This patch adds fdt (flattened device tree) support to the AMCC
47245 Acadia eval board. This increases the image size and it doesn't
47246 fit anymore into 256kByte. Since we didn't want to remove features
47247 from the configuration, we decided to increase the U-Boot image size
47248 (add one flash sector).
47249
47250 Also changed the default environment definition to make it
47251 independent of such changes.
47252
47253 Signed-off-by: Stefan Roese <sr@denx.de>
47254
47255 commit 4adb3023de75bc150f088c8935db340930ad38c8
47256 Author: Ira Snyder <iws@ovro.caltech.edu>
47257 Date: Tue Apr 29 11:18:54 2008 -0700
47258
47259 ppc4xx: Add device tree support to AMCC Yosemite
47260
47261 Add support for booting with a device tree blob. This is needed to boot
47262 ARCH=powerpc kernels. Also add support for setting the eth0 mac address
47263 via the ethaddr variable.
47264
47265 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
47266 Signed-off-by: Stefan Roese <sr@denx.de>
47267
47268 commit b9bbefce1a653ea35f74a66ec117cdda2e043a4b
47269 Author: Dave Mitchell <dmitchell@amcc.com>
47270 Date: Wed May 7 09:00:23 2008 -0700
47271
47272 ppc4xx: Fix typos in 460GT/EX FBDV array
47273
47274 Corrected two typos in the 460GT/EX FBDV array.
47275
47276 Signed-off-by: Dave Mitchell <dmitchell@amcc.com>
47277 Signed-off-by: Stefan Roese <sr@denx.de>
47278
47279 commit 66f5fa9263629271edc86178b1f224e3c9aab2b3
47280 Author: Andy Fleming <afleming@freescale.com>
47281 Date: Wed May 7 16:54:31 2008 -0500
47282
47283 85xx: Limit CPU2 workaround to parts that have the errata
47284
47285 Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
47286 Signed-off-by: Andy Fleming <afleming@freescale.com>
47287
47288 commit a5fe514e8ace564300d2c1d73846ddff49654243
47289 Author: Lee Nipper <lee.nipper@freescale.com>
47290 Date: Fri Apr 25 15:44:45 2008 -0500
47291
47292 mpc83xx: system performance settings for MPC8349EMDS.
47293
47294 These same settings are used on MPC8349ITX, and
47295 improve performance on MPC8349EMDS.
47296
47297 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
47298 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47299
47300 commit 49387dba910e485640b575e920ee463b7e611dc3
47301 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47302 Date: Tue May 6 13:22:52 2008 +0900
47303
47304 [MIPS] cpu/mips/cache.S: Fix build warning
47305
47306 Some old GNU assemblers, such as v2.14 (ELDK 3.1.1), v2.16 (ELDK 4.1.0),
47307 warns illegal global symbol references by bal (and jal also) instruction.
47308 This does not happen with the latest binutils v2.18.
47309
47310 Here's an example on gth2_config:
47311
47312 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
47313 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
47314 c -EB -c -o cache.o cache.S
47315 cache.S: Assembler messages:
47316 cache.S:243: Warning: Pretending global symbol used as branch target is local.
47317 cache.S:250: Warning: Pretending global symbol used as branch target is local.
47318
47319 In principle, gas might be sensitive to global symbol references in PIC
47320 code because they should be processed through GOT (global offset table).
47321 But if `bal' instruction is used, it results in PC-based offset jump.
47322 This is the cause of this warning.
47323
47324 In practice, we know it doesn't matter whether PC-based reference or GOT-
47325 based. As for this case, both will work before/after relocation. But let's
47326 fix the code.
47327
47328 This patch explicitly sets up a target address, then jump there.
47329 Here's an example of disassembled code with/without this patch.
47330
47331 90000668: 1485ffef bne a0,a1,90000628 <mips_cache_reset+0x20>
47332 9000066c: ac80fffc sw zero,-4(a0)
47333 90000670: 01402821 move a1,t2
47334 -90000674: 0411ffba bal 90000560 <mips_init_icache>
47335 -90000678: 01803021 move a2,t4
47336 -9000067c: 01602821 move a1,t3
47337 -90000680: 0411ffcc bal 900005b4 <mips_init_dcache>
47338 -90000684: 01a03021 move a2,t5
47339 -90000688: 03000008 jr t8
47340 -9000068c: 00000000 nop
47341 +90000674: 01803021 move a2,t4
47342 +90000678: 8f8f83ec lw t7,-31764(gp)
47343 +9000067c: 01e0f809 jalr t7
47344 +90000680: 00000000 nop
47345 +90000684: 01602821 move a1,t3
47346 +90000688: 01a03021 move a2,t5
47347 +9000068c: 8f8f81e0 lw t7,-32288(gp)
47348 +90000690: 01e0f809 jalr t7
47349 +90000694: 00000000 nop
47350 +90000698: 03000008 jr t8
47351 +9000069c: 00000000 nop
47352
47353 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47354
47355 commit 0f8c62a14b523c56874ebcb67c1a16c99aad48b3
47356 Author: Vlad Lungu <vlad.lungu@windriver.com>
47357 Date: Mon May 5 14:04:00 2008 +0300
47358
47359 Allow building mips versions with ELDK 3.1.1
47360
47361 .gpword works only with local symbols on certain binutils versions
47362
47363 Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
47364
47365 commit 12a67a9e51f6b3ec26cb0f077fb5685a447c359d
47366 Author: Wolfgang Denk <wd@denx.de>
47367 Date: Mon May 5 12:52:36 2008 +0200
47368
47369 MAKEALL: add inka4x0 board
47370
47371 Signed-off-by: Wolfgang Denk <wd@denx.de>
47372
47373 commit b83dcc13ae7b2dab394bfef6f699750d11490ee2
47374 Author: Wolfgang Denk <wd@denx.de>
47375 Date: Sun May 4 21:34:23 2008 +0200
47376
47377 kb9202 board: fix build problem.
47378
47379 Signed-off-by: Wolfgang Denk <wd@denx.de>
47380
47381 commit 6adf61dc4cb5c53a2df990cbc8df2bceacbfd869
47382 Author: Wolfgang Denk <wd@denx.de>
47383 Date: Sun May 4 12:10:33 2008 +0200
47384
47385 Prepare for v1.3.3-rc3
47386
47387 Update ChNAGELOG, minor white space cleanup.
47388
47389 Signed-off-by: Wolfgang Denk <wd@denx.de>
47390
47391 commit 7c0773fde6100b61be2558cb5d8c442a3194aecb
47392 Author: Wolfgang Denk <wd@denx.de>
47393 Date: Sun May 4 00:35:15 2008 +0200
47394
47395 drivers/net/tsec.c: Fix typo.
47396
47397 Signed-off-by: Wolfgang Denk <wd@denx.de>
47398
47399 commit aa737945e6f37a5de5dbad550a7694e0cb2a8120
47400 Author: Mike Frysinger <vapier@gentoo.org>
47401 Date: Fri May 2 21:45:12 2008 -0400
47402
47403 version_autogenerated.h: use printf rather than echo -n
47404
47405 Some systems are dumb and do not implement the -n flag to echo (like OS X).
47406 Convert the Makefile to use printf as this should work everywhere.
47407
47408 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47409 Signed-off-by: Wolfgang Denk <wd@denx.de>
47410
47411 commit 4acc2a108ad0a669165924704a6cb083f9138242
47412 Author: Mike Frysinger <vapier@gentoo.org>
47413 Date: Fri May 2 18:17:50 2008 -0400
47414
47415 fix building when saveenv is disabled in some setups
47416
47417 If you enable environment in the flash, but disable the embedded
47418 option, and you disable the saveenv command, then the #if nested
47419 logic will trigger a compile failure:
47420 env_flash.c: In function 'env_relocate_spec':
47421 env_flash.c:399: error: 'flash_addr' undeclared (first use in this function)
47422 The fix is to add CMD_SAVEENV ifdef protection like everywhere else.
47423
47424 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47425
47426 commit ccf1ad535ae1c0dc2d466235c668adbdfe3a55b7
47427 Author: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
47428 Date: Fri May 2 16:10:04 2008 -0400
47429
47430 SBC8548: fix address mask to allow 64M flash
47431
47432 Fix incorrect mask to enable all 64MB of onboard flash.
47433 Previously U-Boot incorrectly mapped only 8MB of flash, this
47434 patch correctly maps all the available flash.
47435
47436 Signed-off-by: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
47437
47438 commit 3648085c464c8c22ef76fab006ca4344d3796124
47439 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47440 Date: Fri May 2 19:48:56 2008 +0200
47441
47442 qemu_mips: add README
47443
47444 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47445
47446 commit 6fdd002689190a0022c7b3dbab37fcba724580ce
47447 Author: Marcel Ziswiler <marcel@ziswiler.com>
47448 Date: Fri May 2 02:35:59 2008 +0200
47449
47450 Fix misspelled comment
47451
47452 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
47453
47454 commit fa956fde60b7ec4dd66bd62f9910fd341b5049a1
47455 Author: Mike Frysinger <vapier@gentoo.org>
47456 Date: Thu May 1 04:13:05 2008 -0400
47457
47458 mkimage: make mmap() checks consistent
47459
47460 The mmap() related code is full of inconsistent casts/constants when
47461 it comes to error checking, and may break when building on some
47462 systems (like ones that do not implicitly define the caddr_t type).
47463 Let's just avoid the whole mess by writing the code nice and clean in
47464 the first place.
47465
47466 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47467
47468 commit 8e90cd0447a0f0ccf529ef86f0e6b56187d3b82a
47469 Author: Marcel Ziswiler <marcel@ziswiler.com>
47470 Date: Thu May 1 09:05:34 2008 +0200
47471
47472 Fix defined but not used build warning
47473
47474 - warning: 'srom' defined but not used
47475
47476 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
47477
47478 commit b71190f3250aaffcc81c35f6cfd3498cb7c48013
47479 Author: Marcel Ziswiler <marcel@ziswiler.com>
47480 Date: Thu May 1 09:05:26 2008 +0200
47481
47482 Fix implicit declaration build warnings
47483
47484 - warning: implicit declaration of function ‘serial_initialize’
47485
47486 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
47487
47488 commit 9acde129cc3f9c1b3bc11a821480dd446774d618
47489 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
47490 Date: Tue Apr 29 19:18:32 2008 +0200
47491
47492 TSEC: add config options for VSC8601 RGMII PHY
47493
47494 The Vitesse VSC8601 RGMII PHY has internal delay for both Rx
47495 and Tx clock lines. They are configured using 2 bits in extended
47496 register 0x17.
47497 Therefore CFG_VSC8601_SKEW_TX and CFG_VSC8601_SKEW_RX have
47498 been introduced with valid values 0-3 giving 0.0, 1.4,1.7 and 2.0ns delay.
47499
47500 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
47501 Acked-by: Andy Fleming <afleming@freescale.com>
47502 Acked-by: Ben Warren <biggerbadderben@gmail.com>
47503 --
47504
47505 drivers/net/tsec.c | 6 ++++++
47506 drivers/net/tsec.h | 3 +++
47507 2 files changed, 9 insertions(+), 0 deletions(-)
47508
47509 commit bd98ee60df43ee6dd6f5ebe32c67d03e90513ff8
47510 Author: Wolfgang Denk <wd@denx.de>
47511 Date: Sat May 3 23:07:15 2008 +0200
47512
47513 Revert "ColdFire: Get information from the correct GCC"
47514
47515 This reverts commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
47516 (replaced by commit c4e5f52a58d278eebb87f476e353972c5dacea40).
47517
47518 commit c4e5f52a58d278eebb87f476e353972c5dacea40
47519 Author: Wolfgang Denk <wd@denx.de>
47520 Date: Sat May 3 22:25:00 2008 +0200
47521
47522 config.mk: use correct (cross) compiler
47523
47524 Some config.mk files reference $(CC) to test for specific tool chain
47525 features, so make sure $(CC) gets set before including any such
47526 config files.
47527
47528 This patch replaces commit b7166e05a5 ("ColdFire: Get information from
47529 the correct GCC").
47530
47531 Signed-off-by: Wolfgang Denk <wd@denx.de>
47532
47533 commit 27c38689d0cfde0e444239345f97b5eecc9f4067
47534 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47535 Date: Thu May 1 02:13:44 2008 +0200
47536
47537 pxa: fix previous definition on cpu init
47538
47539 start.S:183:1: warning: "ICMR" redefined
47540 In file included from start.S:33:
47541 include/asm/arch/pxa-regs.h:935:1: warning: this is the location of the previous definition
47542 start.S:187:1: warning: "RCSR" redefined
47543 ...
47544
47545 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47546
47547 commit 6d12e697de794d700767f22f950e3026ccf4daf6
47548 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47549 Date: Thu May 1 02:13:43 2008 +0200
47550
47551 pxa: fix pcmcia operation on 'i' may be undefined
47552
47553 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47554 Signed-off-by: Wolfgang Denk <wd@denx.de>
47555
47556 commit 4d77f5102dfeaa36cd58d9a9f083bd2cc491526f
47557 Author: Kumar Gala <galak@kernel.crashing.org>
47558 Date: Wed Apr 30 16:24:35 2008 -0500
47559
47560 MPC8610HPCD: Drop -O2 from the build flags
47561
47562 Make the flags use -Os like all other boards
47563
47564 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47565
47566 commit 0072b78be2b41e5a0ca3ddc39335574dc2e855bd
47567 Author: Stefan Roese <sr@denx.de>
47568 Date: Wed Apr 30 15:50:39 2008 +0200
47569
47570 RTC: Fix month offset by one problem in M41T62 RTC driver
47571
47572 This patch fixes a problem with the month being read and written
47573 incorrectly (offset by one). This only gets visible by also using
47574 the Linux driver (rtc-m41t80).
47575
47576 Tested on AMCC Canyonlands.
47577
47578 Signed-off-by: Stefan Roese <sr@denx.de>
47579
47580 commit 141ba1cad8e6598a2466e7e2976c6a12285df619
47581 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47582 Date: Sat May 3 13:51:44 2008 +0900
47583
47584 [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
47585
47586 Current trick to pick up GNU assembler minor version uses a dot(.) as a
47587 delimiter, and take the second field to obtain minor version number. But
47588 as can be expected, this doesn't work with a version string which has
47589 dots more than needs.
47590
47591 Here's an example:
47592
47593 $ mips-linux-gnu-as --version | grep 'GNU assembler'
47594 GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215
47595 $ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2
47596 2-129) 2
47597 $
47598
47599 This patch restricts the version format to 2.XX.XX... This will work
47600 in most cases.
47601
47602 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+'
47603 2.18.50.20080215
47604 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2
47605 18
47606 $
47607
47608 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47609
47610 commit ea638951acead7f1086c908c0b9f086beab82a22
47611 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47612 Date: Sat May 3 13:51:28 2008 +0900
47613
47614 [MIPS] cpu/mips/cache.S: Add dcache_enable
47615
47616 Recent bootelf command fixes (017e9b7925f74878d0e9475388cca9bda5ef9482,
47617 "allow ports to override bootelf behavior") requires ports to have this
47618 function.
47619
47620 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47621 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47622
47623 commit d2c6fbec4397c936b18cd42482b6973cd6781bdf
47624 Author: Wolfgang Denk <wd@denx.de>
47625 Date: Thu May 1 21:30:16 2008 +0200
47626
47627 onenand: rename 16 bit memory copy into memcpy_16() to avoid conflicts
47628
47629 Onenand needs a version of memcpy() which performs 16 bit accesses
47630 only; make sure the name does not conflict with the standard
47631 function.
47632
47633 Signed-off-by: Wolfgang Denk <wd@denx.de>
47634
47635 commit 12bc4e94251c369c529ffa505cf58b148c372f7f
47636 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47637 Date: Wed Apr 30 22:38:17 2008 +0200
47638
47639 cmd_nand: fix warning: str2long ncompatible pointer type
47640
47641 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47642
47643 commit 1b9ed2574a38c93cb03dad41885fc06be4bfc9dd
47644 Author: Timur Tabi <timur@freescale.com>
47645 Date: Fri Apr 4 11:16:11 2008 -0500
47646
47647 Fix calculation of I2C clock for some 86xx chips
47648
47649 Some 86xx chips use CCB as the base clock for the I2C, and others used CCB/2.
47650 There is no pattern that can be used to determine which chips use which
47651 frequency, so the only way to determine is to look up the actual SOC
47652 designation and use the right value for that SOC.
47653
47654 Signed-off-by: Timur Tabi <timur@freescale.com>
47655
47656 commit f32f7fe7bd3a5bda3a476520f00e1aca7c2103a9
47657 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
47658 Date: Wed Apr 30 12:11:19 2008 -0500
47659
47660 ColdFire: Fix ethernet hang issue for mcf547x_8x
47661
47662 The ethernet hang is caused by receiving buffer in DRAM is not
47663 yet ready due to access cycles require longer time in DRAM.
47664 Relocate DMA buffer descriptors from DRAM to internal SRAM.
47665
47666 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
47667
47668 commit 886d90176fc257e0ab4d0db05d11d0749bbed3ca
47669 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
47670 Date: Wed Apr 30 12:10:47 2008 -0500
47671
47672 ColdFire: Fix compilation issue caused by new changes in fsl_i2c.c
47673
47674 Signed-off-by: Luigi Comio Mantellini <luigi.mantellini@idf-hit.com>
47675 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
47676
47677 commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
47678 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
47679 Date: Wed Apr 30 12:10:23 2008 -0500
47680
47681 ColdFire: Get information from the correct GCC
47682
47683 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
47684 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
47685
47686 commit 378e7ec95da4751ec8fe461baacab2bf7d2512a9
47687 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
47688 Date: Wed Apr 30 18:02:59 2008 +0200
47689
47690 Fix warning in env_nand.c if compiled for DaVinci Schmoogie
47691
47692 Fix warnings
47693
47694 nv_nand.c: In function 'saveenv':
47695 env_nand.c:200: warning: passing argument 3 of 'nand_write' from incompatible pointer type
47696 env_nand.c: In function 'env_relocate_spec':
47697 env_nand.c:275: warning: passing argument 3 of 'nand_read' from incompatible pointer type
47698
47699 if compiled for davinci_schmoogie_config.
47700
47701 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
47702 Ack by: Sergey Kubushyn <ksi@koi8.net>
47703
47704 commit 33a4a70d48d622cc4950c60a84fec23b9421f23e
47705 Author: Anatolij Gustschin <agust@denx.de>
47706 Date: Wed Apr 30 13:34:40 2008 +0200
47707
47708 Fix warnings while compiling net/net.c for MPC8610HPCD board
47709
47710 MPC8610HPCD board adds -O2 gcc option to PLATFORM_CPPFLAGS
47711 causing overriding default -Os option. New gcc (ver. 4.2.2)
47712 produces warnings while compiling net/net.c file with -O2
47713 option. The patch is an attempt to fix this.
47714
47715 Signed-off-by: Anatolij Gustschin <agust@denx.de>
47716
47717 commit 58b575e575c25fdf8c88141e145db201f3092149
47718 Author: Sascha Laue <Sascha.Laue@gmx.biz>
47719 Date: Wed Apr 30 15:23:38 2008 +0200
47720
47721 lwmon5: fix offset error in sysmon0 POST
47722
47723 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
47724 Signed-off-by: Wolfgang Denk <wd@denx.de>
47725
47726 commit e7419b243a373de4ee042f7d4f45f66de787240d
47727 Author: Sascha Laue <Sascha.Laue@gmx.biz>
47728 Date: Wed Apr 30 15:16:35 2008 +0200
47729
47730 lwmon5: fix manual merge error in POST
47731
47732 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
47733
47734 commit 42ffcec3f9eba010a662d5b42981812b6bebfb9a
47735 Author: Wolfgang Denk <wd@denx.de>
47736 Date: Wed Apr 30 17:46:26 2008 +0200
47737
47738 cmd_nand.c: fix another 'incompatible pointer type' warning.
47739
47740 Signed-off-by: Wolfgang Denk <wd@denx.de>
47741
47742 commit de109d909707e2dfe806be5efc3cdb103b47c8ad
47743 Author: Wolfgang Denk <wd@denx.de>
47744 Date: Wed Apr 30 17:25:07 2008 +0200
47745
47746 Makefile: fix parallel builds
47747
47748 This problem shows up with parallel builds only; it results in
47749 somewhat cryptic error messages like
47750
47751 $ JOBS=-j6 MAKEALL netstar
47752 Configuring for netstar board...
47753 arm-linux-ld: cannot find -lgeneric
47754 make[1]: *** [eeprom.srec] Error 1
47755
47756 A few boards (like netstar and voiceblue) need some libraries for
47757 building; however, the board Makefile does not contain any such
47758 dependencies which may cause problems with parallel builds. Adding
47759 such dependencies is difficult as we would also have to provide build
47760 rules, which already exist in the respective library Makefiles.
47761
47762 To solve this, we make sure that all libraries get built before the
47763 board code.
47764
47765 Signed-off-by: Wolfgang Denk <wd@denx.de>
47766
47767 commit 4f27098e5b0736989b13cd61d7bca94b3574cf5f
47768 Author: Stefan Roese <sr@denx.de>
47769 Date: Wed Apr 30 14:51:36 2008 +0200
47770
47771 ppc4xx: Adapt Canyonlands fixed DDR2 setup to new DIMM module
47772
47773 This patch changes the Canyonlands/Glacier fixed DDR2 controller setup
47774 used for NAND booting to match the values needed for the new 512MB
47775 DIMM modules shipped with the productions boards:
47776
47777 Crucial: CT6464AC667.8FB
47778
47779 Signed-off-by: Stefan Roese <sr@denx.de>
47780
47781 commit ea9202a659dc75996facf1475f1866a19a9d3129
47782 Author: Stefan Roese <sr@denx.de>
47783 Date: Wed Apr 30 10:49:43 2008 +0200
47784
47785 ppc4xx: Fix problem with DIMMs with 8 banks in 44x_spd_ddr2.c
47786
47787 This patch fixes a problem with DIMMs that have 8 banks. Now the
47788 MCIF0_MBxCF register will be setup correctly for this setup too.
47789
47790 This was noticed with the 512MB DIMM on Canyonlands/Glacier.
47791
47792 Signed-off-by: Stefan Roese <sr@denx.de>
47793
47794 commit 76617299358ebba260ecc02d33e8e75d8d13dd3b
47795 Author: Wolfgang Denk <wd@denx.de>
47796 Date: Tue Apr 29 23:41:06 2008 +0200
47797
47798 Prepare v1.3.3-rc2, again.
47799
47800 Signed-off-by: Wolfgang Denk <wd@denx.de>
47801
47802 commit b7fcc4c13993782342cf5cd20d237a6281648a0b
47803 Author: Wolfgang Denk <wd@denx.de>
47804 Date: Tue Apr 29 23:35:24 2008 +0200
47805
47806 Prepare v1.3.3-rc2
47807
47808 Signed-off-by: Wolfgang Denk <wd@denx.de>
47809
47810 commit f7b16a0a4d571dd33b2b5185a54f7ddc311f89d4
47811 Author: Wolfgang Denk <wd@denx.de>
47812 Date: Tue Apr 29 23:32:20 2008 +0200
47813
47814 common/env_nand.c: fix one more incompatible pointer type issue
47815
47816 Signed-off-by: Wolfgang Denk <wd@denx.de>
47817
47818 commit ea6f66894f952229eebfc4ad03cd21fe5c8b3f0f
47819 Author: Wolfgang Denk <wd@denx.de>
47820 Date: Tue Apr 29 21:33:08 2008 +0200
47821
47822 post/board/lwmon5/sysmon.c: fix manual merge error.
47823
47824 Signed-off-by: Wolfgang Denk <wd@denx.de>
47825
47826 commit 70a0f81412b0b18a6fd0bea960451bc6c2cca49a
47827 Author: Kumar Gala <galak@kernel.crashing.org>
47828 Date: Tue Apr 29 12:54:59 2008 -0500
47829
47830 85xx: Add -mno-spe to e500/85xx builds
47831
47832 Newer gcc's might be configured to enable autovectorization by default.
47833 If we happen to build with one of those compilers we will get SPE
47834 instructions in random code.
47835
47836 -mno-spe disables the compiler for automatically generating SPE
47837 instructions without our knowledge.
47838
47839 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47840
47841 commit 8ea08e5be69436abcc95d3da114de4a2ff8a6ab5
47842 Author: Kumar Gala <galak@kernel.crashing.org>
47843 Date: Tue Apr 29 10:18:34 2008 -0500
47844
47845 Update .gitignore for zlib.h
47846
47847 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47848
47849 commit 45239cf4152109caa925145ccd433529902df887
47850 Author: Kumar Gala <galak@kernel.crashing.org>
47851 Date: Tue Apr 29 10:27:08 2008 -0500
47852
47853 85xx/86xx: Rename ext_refrec to timing_cfg_3 to match docs
47854
47855 All the 85xx and 86xx UM describe the register as timing_cfg_3
47856 not as ext_refrec.
47857
47858 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47859
47860 commit ef7d30b14394e4c4a153118f5845760cadada02a
47861 Author: Kumar Gala <galak@kernel.crashing.org>
47862 Date: Tue Apr 29 10:28:34 2008 -0500
47863
47864 85xx/86xx: Rename DDR init address and init extended address register
47865
47866 Rename init_addr and init_ext_addr to match the docs between
47867 85xx and 86xx. Both now use 'init_addr' and 'init_ext_addr'.
47868
47869 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47870
47871 commit cf6cc014270549684873a5972d2595052c468cb6
47872 Author: Kumar Gala <galak@kernel.crashing.org>
47873 Date: Mon Apr 28 02:24:04 2008 -0500
47874
47875 85xx: Additional fixes and cleanup of MP code
47876
47877 * adjust __spin_table alignment to match ePAPR v0.94 spec
47878 * loop over all cpus when determing who is up. This fixes an issue if
47879 the "boot cpu" isn't core0. The "boot cpu" will already be in the
47880 cpu_up_mask so there is no harm
47881 * Added some protection in the code to ensure proper behavior. These
47882 changes are explicitly needed but don't hurt:
47883 - Added eieio to ensure the "hot word" of the table is written after
47884 all other table updates have occurred.
47885 - Added isync to ensure we don't prefetch loading of table entries
47886 until we a released
47887
47888 These issues we raised by Dave Liu.
47889
47890 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47891
47892 commit b2d527a8b9fb50afccbaf79b5540952585cdc760
47893 Author: Yuri Tikhonov <yur@emcraft.com>
47894 Date: Tue Apr 29 15:06:41 2008 +0200
47895
47896 lwmon5: minor clean-up to include/configs/lwmon5.h
47897
47898 LWMON5 DSPIC POST uses the watch-dog scratch register. So, make
47899 the CFG_DSPIC_TEST_ADDR definition more readable.
47900
47901 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
47902
47903 commit f4c4d21a885ccc222fd0acdf653b683249e85117
47904 Author: Stefan Roese <sr@denx.de>
47905 Date: Tue Apr 29 16:08:05 2008 +0200
47906
47907 ppc4xx: Fix CFG_MONITOR_LEN on Katmai failsave this time
47908
47909 Signed-off-by: Stefan Roese <sr@denx.de>
47910
47911 commit 138105efe1d2b1a40a3a97b4c1f85c2111bea2d8
47912 Author: Yuri Tikhonov <yur@emcraft.com>
47913 Date: Tue Apr 29 13:32:45 2008 +0200
47914
47915 ppc flush_cache: add watch-dog triggering into the loops.
47916
47917 Some boards (e.g. lwmon5) need rather a frequent watch-dog
47918 kicking. Since the time it takes for the flush_cache() function
47919 to complete its job depends on the size of data being flushed, one
47920 may encounter watch-dog resets on such boards when, for example,
47921 download big files over ethernet.
47922
47923 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
47924
47925 commit cab99d6f3281ab6784feccf98b9b425daa58418a
47926 Author: Stefan Roese <sr@denx.de>
47927 Date: Tue Apr 29 14:44:54 2008 +0200
47928
47929 ppc4xx: Fix compilation warning in denali_spd_ddr2.c
47930
47931 Signed-off-by: Stefan Roese <sr@denx.de>
47932
47933 commit 4ec9d78fe5cd585d2868731fa108ca1e62730e70
47934 Author: Stefan Roese <sr@denx.de>
47935 Date: Tue Apr 29 14:12:07 2008 +0200
47936
47937 ppc4xx: Fix Katmai CFG_MONITOR_LEN
47938
47939 Signed-off-by: Stefan Roese <sr@denx.de>
47940
47941 commit 85ad184b3b2b0f8af9228477303c55dca1b52ed7
47942 Author: Stefan Roese <sr@denx.de>
47943 Date: Tue Apr 29 13:57:07 2008 +0200
47944
47945 ppc4xx: Complete remove bogus dflush()
47946
47947 Since the current dflush() implementation is know to have some problems
47948 (as seem on lwmon5 ECC init) this patch removes it completely and replaces
47949 it by using clean_dcache_range().
47950
47951 Tested on Katmai with ECC DIMM.
47952
47953 Signed-off-by: Stefan Roese <sr@denx.de>
47954
47955 commit 135846d6ecaad255ad28d93ebbb78b3d5da68cdc
47956 Author: Stefan Roese <sr@denx.de>
47957 Date: Tue Apr 29 13:36:51 2008 +0200
47958
47959 ppc4xx: Change ECC initialization on lwmon5 to use clean_dcache_range()
47960
47961 As it seems the "old" ECC initialization routine by using dflush() didn't
47962 write all lines in the dcache back to memory on lwmon5. This could lead
47963 to ECC error upon Linux booting. This patch changes the program_ecc()
47964 routine to now use clean_dcache_range() instead of dflush().
47965 clean_dcache_range() uses dcbst which is exactly what we want in this
47966 case.
47967
47968 Since dflush() is known is cause problems, this routine will be
47969 removed completely and replaced by clean_dcache_range() with an
47970 additional patch.
47971
47972 Signed-off-by: Stefan Roese <sr@denx.de>
47973
47974 commit 18ec19e4aa1a045dfbf2c7c2e33963488e92d757
47975 Author: Yuri Tikhonov <yur@emcraft.com>
47976 Date: Mon Apr 28 18:19:34 2008 +0200
47977
47978 POST: fix Makefiles for mpc8xx, lwmon, and netta POSTs.
47979
47980 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
47981
47982 commit eea5a743a2193ef2a05b9bc6dc447ba241416f35
47983 Author: Markus Brunner <super.firetwister@googlemail.com>
47984 Date: Mon Apr 28 08:47:47 2008 +0200
47985
47986 ppc4xx: Fixup ebc clock in FDT for 405GP/EP
47987
47988 On ppc405EP and ppc405GP (at least) the ebc is directly attached to the plb
47989 and not to the opb. This patch will try to fixup /plb/ebc if /plb/opb/ebc
47990 doesn't exist.
47991
47992 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
47993
47994 commit 2ef7503a593c77a80c2a054011970227c4b62774
47995 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47996 Date: Thu Apr 24 07:57:17 2008 +0200
47997
47998 NE2000: Fix regresssion introduced by e710185aae90 on non AX88796
47999
48000 Move non-inlied functions into specific drivers file
48001 Set get_prom as weak
48002
48003 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48004 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
48005 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48006
48007 commit 40cb90ee2b97db1f697e1b54f19a548ffc96d71b
48008 Author: Guennadi Liakhovetski <lg@denx.de>
48009 Date: Thu Apr 3 17:04:19 2008 +0200
48010
48011 net: make ARP timeout configurable
48012
48013 Currently the timeout waiting for an ARP reply is hard set to 5 seconds.
48014 On i.MX31ADS due to a hardware "strangeness" up to four first IP packets
48015 to the boards get lost, which typically are ARP replies. By configuring
48016 the timeout to a lower value we significantly improve the first network
48017 transfer time on this board. The timeout is specified in milliseconds,
48018 later internally it is converted to deciseconds, because it has to be
48019 converted to hardware ticks, and CFG_HZ ranges from 900 to 27000000 on
48020 different boards.
48021
48022 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
48023 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48024
48025 commit 13e0b8f7ca9d29267bf01d7a01e521a0517adce1
48026 Author: Guennadi Liakhovetski <lg@denx.de>
48027 Date: Thu Apr 3 13:36:18 2008 +0200
48028
48029 minor cs8900 driver clean up
48030
48031 Remove a redundant register definition, clean up some coding style
48032 violations.
48033
48034 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
48035 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48036
48037 commit 707fa917cca24c0f22776f48ac4a6fa5e5189b10
48038 Author: Wolfgang Denk <wd@denx.de>
48039 Date: Mon Apr 28 22:01:04 2008 +0200
48040
48041 jffs2_1pass.c: fix incompatible pointer type warning
48042
48043 Signed-off-by: Wolfgang Denk <wd@denx.de>
48044
48045 commit 6aee00f5e6a1cf29d8fe8fdc9b7252fbd31115d9
48046 Author: Sascha Laue <Sascha.Laue@gmx.biz>
48047 Date: Tue Apr 1 10:10:18 2008 +0200
48048
48049 lwmon5: update dsPIC POST spezification
48050
48051 The specification for the lwmon5 board dsPIC POST got changed.
48052 Also add defines for the temperatures and voltages.
48053
48054 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
48055
48056 commit 3e4615ab7ff38781a5dd80d0f49b9af55b4fe0b7
48057 Author: Sascha Laue <Sascha.Laue@gmx.biz>
48058 Date: Tue Apr 1 15:13:03 2008 +0200
48059
48060 Fix watchdog POST for lwmon5
48061
48062 If the hardware watchdog detects a voltage error, the watchdog sets
48063 GPIO62 to low. The watchdog POST has to detect this low level.
48064
48065 Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
48066 Signed-off-by: Wolfgang Denk <wd@denx.de>
48067
48068 commit dd5748bcd669f46aeb6686c1b341323843738ccc
48069 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
48070 Date: Mon Apr 28 14:37:14 2008 +0200
48071
48072 rtl8169: fix compiler warnings
48073
48074 Fix multiple compiler warnings related to argument type mismatch.
48075
48076 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
48077
48078 commit 413bf586266f86c6bdbc6c6d140f67a15af4c4f1
48079 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
48080 Date: Mon Apr 28 14:36:06 2008 +0200
48081
48082 IDE: fix compiler warnings
48083
48084 The IDE driver can use 32-bit addresses in LBA mode, in which case it
48085 spits multiple warnings during compilation. Fix them.
48086
48087 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
48088
48089 commit db9084de28c46ac81c8f681722cb0d7411be4d7f
48090 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
48091 Date: Mon Apr 28 14:35:57 2008 +0200
48092
48093 LinkStation: fix compiler warning, add a maintainer
48094
48095 out_8 wants a pointer to an unsigned as the first argument. Add a
48096 maintainer for Linkstation boards.
48097
48098 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
48099
48100 commit c71abba3cb67b063f789f17abf6c7447727c0cd5
48101 Author: Wolfgang Denk <wd@denx.de>
48102 Date: Mon Apr 28 14:55:12 2008 +0200
48103
48104 cmd_nand.c: fix "differ in signedness" problem
48105
48106 Signed-off-by: Wolfgang Denk <wd@denx.de>
48107
48108 commit f2c288a35341ad02ac03b1563d786763c9c8f159
48109 Author: Wolfgang Denk <wd@denx.de>
48110 Date: Mon Apr 28 12:48:47 2008 +0200
48111
48112 pcnet.c: fix a merge issue
48113
48114 Signed-off-by: Wolfgang Denk <wd@denx.de>
48115
48116 commit 4ca79f477ebd25a6872e6196d80e2f5eff441376
48117 Author: Wolfgang Denk <wd@denx.de>
48118 Date: Mon Apr 28 12:08:18 2008 +0200
48119
48120 NAND: fix some strict-aliasing compiler warnings
48121
48122 Signed-off-by: Wolfgang Denk <wd@denx.de>
48123
48124 commit 5cd0130ecc79d6dcde1b1ac253abc457ca8c3115
48125 Author: Stefan Roese <sr@denx.de>
48126 Date: Mon Apr 28 11:37:14 2008 +0200
48127
48128 ppc4xx: Fix compile warning of hcu4 board
48129
48130 Signed-off-by: Stefan Roese <sr@denx.de>
48131
48132 commit 5379cd15dd6c74ac51499bce3455bf6e0cdbe9f1
48133 Author: Wolfgang Denk <wd@denx.de>
48134 Date: Mon Apr 28 11:31:23 2008 +0200
48135
48136 MPC8323ERDB: fix implicit declaration of function 'mac_read_from_eeprom'
48137
48138 Signed-off-by: Wolfgang Denk <wd@denx.de>
48139
48140 commit 7602ed50a2f0ef3dc8d7da93f116de50288f5b59
48141 Author: Guennadi Liakhovetski <lg@denx.de>
48142 Date: Mon Apr 28 00:25:32 2008 +0200
48143
48144 mx31ads: fix loadaddr environment variable define
48145
48146 Arithmetic expressions do not get evaluated under stringification. Remove
48147 default network configuration, add DHCP command support. Thanks to Felix
48148 Radensky for reporting.
48149
48150 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
48151
48152 commit 144eec777ac07bcb12bd38245a5a289f694a7f98
48153 Author: Wolfgang Denk <wd@denx.de>
48154 Date: Mon Apr 28 10:55:24 2008 +0200
48155
48156 katmai: fix section overlap problem
48157
48158 Since we didn't want to remove features from the configuration, we
48159 decided to increase the U-Boot image size (add one flash sector).
48160
48161 Also changed the default environment definition to make it
48162 independent of such changes.
48163
48164 Signed-off-by: Wolfgang Denk <wd@denx.de>
48165 Acked-by: Stefan Roese <sr@denx.de>
48166
48167 commit 941d696d25624e3cc65ebf924199541acf52d74e
48168 Author: Wolfgang Denk <wd@denx.de>
48169 Date: Mon Apr 28 10:55:24 2008 +0200
48170
48171 katmai: fix section overlap problem
48172
48173 Since we didn't want to remove features from the configuration, we
48174 decided to increase the U-Boot image size (add one flash sector).
48175
48176 Also changed the default environment definition to make it
48177 independent of such changes.
48178
48179 Signed-off-by: Wolfgang Denk <wd@denx.de>
48180 Acked-by: Stefan Roese <sr@denx.de>
48181
48182 commit 03c6cd39f9184143fd8c537872b3d4b2e03f1466
48183 Author: Kumar Gala <galak@kernel.crashing.org>
48184 Date: Sat Apr 26 11:44:44 2008 -0500
48185
48186 post: Fix building with O=
48187
48188 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48189
48190 commit fd7531c1e9d56b9e5e06d2c0e02b798dab72f70c
48191 Author: Wolfgang Denk <wd@denx.de>
48192 Date: Sat Apr 26 01:55:00 2008 +0200
48193
48194 Prepare v1.3.3-rc1
48195
48196 Signed-off-by: Wolfgang Denk <wd@denx.de>
48197
48198 commit 19cf2ec90d8ce52da60c1693693c4048cb810967
48199 Author: Wolfgang Denk <wd@denx.de>
48200 Date: Sat Apr 26 01:25:39 2008 +0200
48201
48202 post/Makefile: make sure to use the correct flags
48203
48204 ARFLAGS was not set, which caused "ppc_8xx-ar: creating libgenpost.a"
48205 messages to be printed.
48206
48207 Signed-off-by: Wolfgang Denk <wd@denx.de>
48208
48209 commit 7ed4011733e7dca8f64d21291e4294662f7dc3e2
48210 Author: Wolfgang Denk <wd@denx.de>
48211 Date: Sat Apr 26 00:34:42 2008 +0200
48212
48213 Coding Style cleanup, update CHANGELOG
48214
48215 Signed-off-by: Wolfgang Denk <wd@denx.de>
48216
48217 commit f9204e15173834ff8d123e36279ce49c3c6c74fc
48218 Author: Magnus Lilja <lilja.magnus@gmail.com>
48219 Date: Sun Apr 20 10:38:12 2008 +0200
48220
48221 i.MX31: Enable SPI and MC13783/RTC support for the Litekit board
48222
48223 This patch enables SPI and MC13783/RTC support for the Litekit board.
48224
48225 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
48226
48227 commit f97abbfb47d9e407354e157cae3f6369e460cd37
48228 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
48229 Date: Fri Apr 25 01:08:32 2008 -0500
48230
48231 MPC8544DS: decode pcie3 end-point configuration correctly.
48232
48233 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
48234 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48235
48236 commit 292188e15523c165c4269403fdcd33c26d89176e
48237 Author: Roy Zang <tie-fei.zang@freescale.com>
48238 Date: Fri Apr 25 00:55:09 2008 -0500
48239
48240 MPC8544DS: Removes the unknown flash message information
48241
48242 This patch removes the unknown flash message information:
48243 '## Unknown FLASH on Bank 1 - Size = 0xdeadbeef = -286261248 MB'
48244 This unknown flash message is caused by PromJet.
48245 Some of the board user is unhappy with this information.
48246
48247 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
48248 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48249
48250 commit b2115757403beef0ac6bc2c6c3b24f31256a75d2
48251 Author: Kim Phillips <kim.phillips@freescale.com>
48252 Date: Thu Apr 24 14:07:38 2008 -0500
48253
48254 mpc83xx: bump loadaddr over fdtaddr to 0x500000
48255
48256 this seems as a good compromise between human memory, typing,
48257 and last but not least, to accommodate for current and future kernel bloat.
48258
48259 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48260 Acked-by: Dave Liu <daveliu@freescale.com>
48261
48262 commit be5a7190265a34d968578ff266549c60f6f57654
48263 Author: Dave Liu <r63238@freescale.com>
48264 Date: Tue Apr 15 13:12:23 2008 +0800
48265
48266 mpc83xx: clean up the readme for 83xx boards
48267
48268 1. correct the typo
48269 2. correct the memory map for 837xerdb board
48270
48271 Signed-off-by: Dave Liu <daveliu@freescale.com>
48272
48273 commit bcae52a6819ee9dad5d0d96cd7daeb20108d45ff
48274 Author: Dave Liu <r63238@freescale.com>
48275 Date: Tue Apr 15 13:11:11 2008 +0800
48276
48277 mpc83xx: remove the unused CPM's stuff
48278
48279 The MPC83xx family never have CPM block, so remove it from 83xx.
48280
48281 Signed-off-by: Dave Liu <daveliu@freescale.com>
48282
48283 commit c63ad6325a8ac0097a54b418a3288926b0484b18
48284 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48285 Date: Fri Apr 18 16:29:40 2008 +0200
48286
48287 cfi-flash: Add CFG_FLASH_AUTOPROTECT_LIST
48288
48289 This patch adds a configurable flash auto protection list that can be used
48290 to make U-Boot protect flash regions in flash_init().
48291
48292 The idea has been discussed on the u-boot mailing list starting
48293 on Nov 18th, 2007.
48294
48295 Even this patch brings a new feature it is used as a bugfix for 4xx
48296 platforms where flash_init() does not completely protect the
48297 monitor's flash range in all situations.
48298
48299 U-Boot protects the flash range from CFG_MONITOR_BASE to
48300 (CFG_MONITOR_BASE + monitor_flash_len - 1) by default. This does not
48301 include the reset vector at 0xfffffffc.
48302
48303 Example:
48304 #define CFG_FLASH_AUTOPROTECT_LIST {{0xfff80000, 0x80000}}
48305
48306 This config option will auto protect the last 512k of flash that
48307 contains the bootloader on board like APC405 and PMC405.
48308
48309 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48310
48311 commit d0d91ae3acb4f29d1a2a3a766747478ed54e2848
48312 Author: Stefan Roese <sr@denx.de>
48313 Date: Fri Apr 25 13:59:03 2008 +0200
48314
48315 ppc4xx: Remove double defines in lwmon5.h
48316
48317 introduced with latest lwmon5/POST merge
48318
48319 Signed-off-by: Stefan Roese <sr@denx.de>
48320
48321 commit 7590378fb9c686709492ceb142825cd058255956
48322 Author: Bartlomiej Sieka <tur@semihalf.com>
48323 Date: Fri Apr 25 13:54:02 2008 +0200
48324
48325 Use watchdog-aware functions when calculating hashes of images - take two
48326
48327 Some files didn't get updated properly with the "Use watchdog-aware
48328 functions when calculating hashes of images" commit, this commit
48329 fixes this.
48330
48331 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
48332 Signed-off-by: Wolfgang Denk <wd@denx.de>
48333
48334 commit 8e048c438e20ec89b49da5f085f8f756eba6e587
48335 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48336 Date: Fri Apr 25 12:01:39 2008 +0200
48337
48338 ppc4xx: Add bootcount limit handling for APC405 boards
48339
48340 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48341
48342 commit 1de6b28be5d107ae90ad7a8a43653c49966e8afe
48343 Author: Bartlomiej Sieka <tur@semihalf.com>
48344 Date: Fri Apr 25 12:10:09 2008 +0200
48345
48346 Use watchdog-aware functions when calculating hashes of images
48347
48348 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
48349
48350 commit d00ce09040d3100e2c7998ef56db62c2d20d9ee3
48351 Author: Wolfgang Denk <wd@denx.de>
48352 Date: Fri Apr 25 12:44:08 2008 +0200
48353
48354 USB: fix more GCC 4.2.x aliasing warnings
48355
48356 Signed-off-by: Wolfgang Denk <wd@denx.de>
48357 Acked-by: Markus Klotzbuecher <mk@denx.de>
48358
48359 commit aff4f86448f6586930f0a3be7fc4b0ddcf450980
48360 Author: Wolfgang Denk <wd@denx.de>
48361 Date: Fri Apr 25 12:41:53 2008 +0200
48362
48363 lib_generic/crc32.c: add missing #include <watchdog.h>
48364
48365 Signed-off-by: Wolfgang Denk <wd@denx.de>
48366
48367 commit 03ccdbcd5602610cea4bd0db7e48e1ef881a51ef
48368 Author: Wolfgang Denk <wd@denx.de>
48369 Date: Fri Apr 25 11:52:21 2008 +0200
48370
48371 lib_generic/crc32.c: fix compile problem
48372
48373 Signed-off-by: Wolfgang Denk <wd@denx.de>
48374
48375 commit 24bfedbd0be4dcaa94861407820d6a70fea7e03b
48376 Author: Stefan Roese <sr@denx.de>
48377 Date: Tue Apr 22 12:20:32 2008 +0200
48378
48379 ppc4xx: Pass PCIe root-complex/endpoint configuration to Linux via the fdt
48380
48381 The PCIe root-complex/endpoint setup as configured via the "pcie_mode"
48382 environment variable will now get passed to the Linux kernel by setting
48383 the device_type property of the PCIe device tree node. For normal root-
48384 complex configuration it will keep its defaults value of "pci" and for
48385 endpoint configuration it will get changed to "pci-endpoint".
48386
48387 Signed-off-by: Stefan Roese <sr@denx.de>
48388
48389 commit eb0615bf600d2caf5aa2958f47f5ba364c52d5e7
48390 Author: Yuri Tikhonov <yur@emcraft.com>
48391 Date: Thu Apr 24 10:30:53 2008 +0200
48392
48393 lwmon5: watchdog POST fix
48394
48395 Use the GPT0_MASKx registers as the temporary storage for watch-dog
48396 timer POST test instead of GPT0_COMPx. The latter
48397 (GPT0_COMP1..GPT0_COMP5) are used for the log-buffer header.
48398
48399 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
48400 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
48401
48402 commit 78e488298824bc150b5f3ebf7958cd71fa2af1b9
48403 Author: Kim Phillips <kim.phillips@freescale.com>
48404 Date: Mon Apr 21 18:10:14 2008 -0500
48405
48406 lib_ppc: Revert "Make MPC83xx one step closer to full relocation."
48407
48408 This reverts commit 70431e8a7393b6b793f77957f95b999fc9a269b8 which has
48409 proven problematic getting right from the start at least on 83xx and
48410 4xx.
48411
48412 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48413
48414 commit a99715b8ebfc500f3f40e01b36b64d473938443d
48415 Author: Detlev Zundel <dzu@denx.de>
48416 Date: Fri Apr 18 14:50:01 2008 +0200
48417
48418 Realining some header definitions.
48419
48420 Signed-off-by: Detlev Zundel <dzu@denx.de>
48421
48422 commit 4acbc6c7f993cae409c424615415a3e76820f13d
48423 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48424 Date: Thu Apr 24 07:57:16 2008 +0200
48425
48426 NE2000: coding style cleanup
48427
48428 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48429
48430 commit b4aff1ffaf7120032c653357c007faa14f74d29d
48431 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48432 Date: Wed Apr 23 00:11:47 2008 +0900
48433
48434 qemu-mips.h: Add CFI support
48435
48436 CONFIG_ENV_OVERWRITE is also added.
48437
48438 This patch is originally created by Jean-Christophe PLAGNIOL-VILLARD.
48439
48440 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48441 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
48442
48443 commit 4a1f11b45a82908e5b0df602d703082413a6b7ed
48444 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
48445 Date: Tue Apr 22 22:47:27 2008 +0900
48446
48447 doc/README.mips: Add MIPS notes
48448
48449 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
48450
48451 commit 215b01bba8bc662d35f72b084700b192d367dfb4
48452 Author: Bartlomiej Sieka <tur@semihalf.com>
48453 Date: Tue Apr 22 12:27:56 2008 +0200
48454
48455 Add support for calculating hashes with watchdog triggering
48456
48457 Implement watchodg-aware variants of hash calculation functions:
48458 - crc32_wd()
48459 - md5_wd()
48460 - sha1_csum_wd()
48461 The above functions calculate the hash of the input buffer in chunks,
48462 triggering the watchdog after processing each chunk. The chunk size
48463 is given as a function call parameter.
48464
48465 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
48466
48467 commit 8875e3abab986df930167ce5c1ac4f95dcacc81c
48468 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
48469 Date: Wed Apr 23 11:02:12 2008 +0900
48470
48471 qemu-mips: Cleanup whitespace, indentation, etc.
48472
48473 No functional change.
48474
48475 This patch was originally submitted by Jean-Christophe PLAGNIOL-VILLARD.
48476 Then I re-created from scratch, and changed more lines than the original.
48477
48478 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48479 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
48480
48481 commit 386563197e3a50b0e97ad9aae87f57d9aab909ab
48482 Author: Vlad Lungu <vlad@comsys.ro>
48483 Date: Wed Oct 10 23:02:09 2007 +0300
48484
48485 Fixed pcnet io_base
48486
48487 Bus and phys address are not always the same
48488
48489 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
48490
48491 commit 11ea26fd1cb63c91403fe04a6eea975cd418603f
48492 Author: Wolfgang Denk <wd@denx.de>
48493 Date: Thu Apr 24 23:44:26 2008 +0200
48494
48495 drivers/net/pcnet.c: Coding Style cleanup.
48496
48497 Signed-off-by: Wolfgang Denk <wd@denx.de>
48498
48499 commit 899ef7b84578b7cafadfd78488c2fd2aac93f636
48500 Author: Vlad Lungu <vlad@comsys.ro>
48501 Date: Wed Oct 10 23:04:23 2007 +0300
48502
48503 Added Am79C970A chip id to pcnet
48504
48505 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
48506
48507 commit 17c9de6bb33f676eb776dcbfc46fc1b14c3871a5
48508 Author: Magnus Lilja <lilja.magnus@gmail.com>
48509 Date: Sun Apr 20 10:35:03 2008 +0200
48510
48511 i.MX31: Fix architecture numbers for ADS and Litekit boards
48512
48513 Correct the Linux architecture number for i.MX31 Litekit and ADS boards.
48514
48515 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
48516
48517 commit e7ae84d6c7288790e88639f57cb60daf89c11369
48518 Author: Magnus Lilja <lilja.magnus@gmail.com>
48519 Date: Sun Apr 20 10:36:36 2008 +0200
48520
48521 i.MX31: Use symbolic names for Litekit membases.
48522
48523 Use symbolic names instead of hard coded addresses for Litekit membases.
48524
48525 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
48526
48527 commit 2ef1d9b6030d02f576b1bcd9fec948e602522012
48528 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48529 Date: Sat Apr 19 17:59:20 2008 +0200
48530
48531 Fix show_boot_progress prototype
48532
48533 in commit fad634071 "make show_boot_progress () weak."
48534 show_boot_progress is supposed to be declared as weak but declared as
48535 inline instead.
48536
48537 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48538
48539 commit edbed247a14d70b94958010f736621212285de91
48540 Author: Bartlomiej Sieka <tur@semihalf.com>
48541 Date: Fri Apr 18 12:39:23 2008 +0200
48542
48543 Memory footprint optimizations
48544
48545 As suggested by Wolfgang Denk:
48546 - image printing functions:
48547 - remove wrappers
48548 - remove indentation prefix from functions' signatures
48549 - merge getenv_verify and getenv_autostart into one parametrized function
48550
48551 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
48552
48553 commit 0a0b606faaec4afb3f750b09aa4df1e40a39dcb8
48554 Author: Guennadi Liakhovetski <lg@denx.de>
48555 Date: Tue Apr 15 13:33:11 2008 +0200
48556
48557 MX31ADS environment variable update, spi and rtc support
48558
48559 Update MX31ADS default environment to better match the flash layout and
48560 the memory map, support SPI and RTC.
48561
48562 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
48563
48564 commit 022f12163595b9a55380c6d77c3119b93d6a9a4b
48565 Author: Kumar Gala <galak@kernel.crashing.org>
48566 Date: Mon Apr 21 09:28:36 2008 -0500
48567
48568 85xx: Round up frequency calculations to get reasonable output
48569
48570 eg. because of rounding error we can get 799Mhz instead of 800Mhz.
48571
48572 Introduced DIV_ROUND_UP and roundup taken from linux kernel.
48573
48574 Signed-off-by: Dejan Minic <minic@freescale.com>
48575 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
48576 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48577 Acked-by: Andy Fleming <afleming@freescale.com>
48578
48579 commit 876b8f978982216ab4a22dcd9efddfcd9b0e04e6
48580 Author: Kumar Gala <galak@kernel.crashing.org>
48581 Date: Wed Apr 23 16:58:04 2008 -0500
48582
48583 fsl_pci: Only modify registers if we have them
48584
48585 pme_msg_det exists only on PCIe controllers only set it if we are a "bridge".
48586
48587 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48588
48589 commit 83fe32334337def160b302aa9d152d808bfcc68e
48590 Author: Markus Klotzbücher <mk@denx.de>
48591 Date: Wed Apr 23 10:57:33 2008 +0200
48592
48593 USB: remove a cpu bug workaround for an unsupported architecture.
48594
48595 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
48596
48597 commit f957576cb53e6cfab412709cfc8db1afd39d21c3
48598 Author: Markus Klotzbücher <mk@denx.de>
48599 Date: Wed Apr 23 10:53:23 2008 +0200
48600
48601 USB: fix those pesky aliasing warnings issued by gcc-4.2
48602
48603 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
48604 Signed-off-by: Detlev Zundel <dzu@denx.de>
48605
48606 commit 89cdab788f3716b335fefb60b836ebcf975aceab
48607 Author: Mike Frysinger <vapier@gentoo.org>
48608 Date: Mon Mar 31 11:02:01 2008 -0400
48609
48610 crc32: use uint32_t rather than unsigned long
48611
48612 The envcrc.c does sizeof(unsigned long) when calculating the crc, but
48613 this is done with the build toolchain instead of the target tool
48614 chain, so if the build is a 64bit system but the target is 32bits,
48615 the size will obviously be wrong. This converts all unsigned long
48616 stuff related to crc32 to uint32_t types. Compile tested only: output
48617 of ./tools/envcrc when run on a 32bit build system matches that of a
48618 64bit build system.
48619
48620 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48621 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48622
48623 commit 80c40b765b3642ddb9f3392b7898715aab44a29c
48624 Author: Dirk Behme <dirk.behme@googlemail.com>
48625 Date: Wed Mar 26 09:53:29 2008 +0100
48626
48627 ARM: Davinci: Fix DM644x timer overflow handling and cleanup
48628
48629 Fix ARM based DaVinci DM644x timer overflow handling and cleanup timer code.
48630
48631 Changes:
48632
48633 - Remove *_masked() functions as noted by Wolfgang
48634
48635 - Adapt register naming to recent TI spec (sprue26, March 2007)
48636
48637 - Fix reset_timer() handling
48638
48639 - 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.
48640
48641 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
48642
48643 - Remove software division of timer count value (DIV(x) macro) and do it in hardware (TIM_CLK_DIV).
48644
48645 Many thanks to Troy Kisky <troy.kisky@boundarydevices.com> and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for the hints & testing!
48646
48647 Patch is compile tested with davinci_dvevm & sonata & schmoogie configuration and tested by Pieter on DaVinci EVM hardware.
48648
48649 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
48650 Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
48651
48652 commit a6e6fc610e39dec41b79680413d4ed38145bd3c8
48653 Author: Sergei Poselenov <sposelenov@emcraft.com>
48654 Date: Wed Apr 9 16:09:41 2008 +0200
48655
48656 Added watchdog triggering calls in the "mtest" test function.
48657
48658 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
48659
48660 commit d32a874b9b4c1e949ee38be7790f6bf6d6143451
48661 Author: Yuri Tikhonov <yur@emcraft.com>
48662 Date: Sun Apr 6 19:19:14 2008 +0200
48663
48664 lwmon5 watchdog: limit trigger rate
48665
48666 Limit the rate of h/w watch-dog triggering on the LWMON5 board by
48667 the CONFIG_WD_MAX_RATE value.
48668
48669 Note that an earlier version of this patch which used microseconds
48670 instead of ticks dis not work. The problem was that we used
48671 usec2ticks() to convert microseconds into ticks. usec2ticks() uses
48672 get_tbclk(), which in turn calls get_sys_info(). It turns out that
48673 this function does a lot of prolonged operations (like divisions)
48674 which take too much time so we do not trigger the watchdog in time,
48675 and it resets the system.
48676
48677 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
48678
48679 commit 2d2b994a30bb100774dc747ae9865b7f95285a88
48680 Author: Yuri Tikhonov <yur@emcraft.com>
48681 Date: Mon Mar 31 10:51:37 2008 +0200
48682
48683 POST: move CONFIG_POST to Makefiles
48684
48685 Introduce the new logical option CONFIG_HAS_POST which is set when the
48686 platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles
48687 to determine should the POST libs be compiled for the selected target
48688 platform, or not.
48689
48690 To avoid breaking u-boot linking process, the empty post/libpost.a file is
48691 created for platforms which do not have POSTs.
48692
48693 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
48694 Signed-off-by: Wolfgang Denk <wd@denx.de>
48695
48696 commit 0a51e9248e2d27e0a02ef1e740c576ce90a39ee1
48697 Author: Yuri Tikhonov <yur@emcraft.com>
48698 Date: Mon Mar 31 10:49:34 2008 +0200
48699
48700 POST: preparations for moving CONFIG_POST to Makefiles
48701
48702 Remove CONFIG_POST ifdefs from the post/ source files.
48703
48704 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
48705 Signed-off-by: Wolfgang Denk <wd@denx.de>
48706
48707 commit 5d40d4430d9ebc8434c6f0798594836e1efa7a1e
48708 Author: Stefan Roese <sr@denx.de>
48709 Date: Tue Apr 22 14:14:20 2008 +0200
48710
48711 ppc4xx: Fix Canyonlands and Glacier default environment for fdt usage
48712
48713 This patch fixes the Canyonlands and Glacier default environment to better
48714 fit to the arch/powerpc device-tree kernels. The variables dealing with
48715 arch/ppc booting are removed, since these boards are supported only in
48716 arch/powerpc. Glacier uses the same config file as Canyonlands.
48717
48718 Also, the Glacier now uses non-FPU rootpath, since 460GT has no FPU.
48719
48720 Signed-off-by: Stefan Roese <sr@denx.de>
48721
48722 commit b789cb4a4c0c1deff82053539cfe29a9c6e23f8b
48723 Author: Stefan Roese <sr@denx.de>
48724 Date: Tue Apr 22 14:06:42 2008 +0200
48725
48726 ppc4xx: Small coding style cleanup for the latest esd patches
48727
48728 Signed-off-by: Stefan Roese <sr@denx.de>
48729
48730 commit 79941d63bc03aed8c48d7602f18217cc200ee931
48731 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48732 Date: Mon Apr 21 18:01:07 2008 +0200
48733
48734 ppc4xx: Update CPU strapping for PMC440 boards
48735
48736 This patch removes the temporary 'test' strapping option
48737 of the sbe command. The '667' strapping option now uses
48738 a PLB/PCI divider of 3.
48739
48740 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48741
48742 commit f00cf3193a6635355b121e90debb2f54e777e7da
48743 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48744 Date: Mon Apr 21 14:42:21 2008 +0200
48745
48746 ppc4xx: Remove unused APC405 strataflash driver
48747
48748 The APC405 board support has been migrated to use the common
48749 CFI flash driver.
48750
48751 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48752
48753 commit 1c686676a86473bbd92151f0544e109413f6ed06
48754 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48755 Date: Mon Apr 21 14:42:17 2008 +0200
48756
48757 ppc4xx: Update APC405 configuration
48758
48759 - enable esd's auto_update mechanism
48760 - support alternative flash layout on rev. 1.8 boards
48761 - update default environment
48762 - use common CFI flash driver
48763 - coding style cleanup
48764
48765 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48766
48767 commit 0b9872515a521bf7866dc24b85ddce708e60d702
48768 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48769 Date: Mon Apr 21 14:42:11 2008 +0200
48770
48771 ppc4xx: Update APC405 board support
48772
48773 - enable esd's auto_update mechanism
48774 - fix LCD support on latest hardware revision (uses other LCD controller)
48775 - support alternative flash layout on rev. 1.8 boards
48776 - coding style cleanup
48777
48778 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48779
48780 commit 83975d02e225e231960784972e7820a8b303756b
48781 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48782 Date: Mon Apr 21 14:42:06 2008 +0200
48783
48784 ppc4xx: update esd's common auto_update code for 405 boards
48785
48786 - Coding style cleanup (long lines)
48787 - improve handling of protected flash regions
48788 - remove dead code
48789
48790 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48791
48792 commit b9233fe5d59cb25d975071616bd1035d6f4c2285
48793 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48794 Date: Mon Apr 21 14:41:59 2008 +0200
48795
48796 ppc4xx: Update esd's common LCD code for 405 boards
48797
48798 - Coding style cleanup (long lines)
48799 - Add s1d13505 support
48800 - Make some functions return a result code instead of void
48801
48802 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48803
48804 commit dea68189424c3f1242427a8146a3861bf093173c
48805 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48806 Date: Mon Apr 21 11:36:55 2008 +0200
48807
48808 ppc4xx: Update FPGA image for APC405 boards
48809
48810 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48811
48812 commit 2a05b152924acfcec3b037693329e517e6d3578f
48813 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48814 Date: Mon Apr 21 11:36:08 2008 +0200
48815
48816 ppc4xx: Update bootlogo for APC405 boards
48817
48818 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48819
48820 commit 8deafdc6ad368368cf03b58cab4bd39f45d64b5c
48821 Author: Stefan Roese <sr@denx.de>
48822 Date: Fri Apr 18 16:41:31 2008 +0200
48823
48824 ppc4xx: Add dcache_enable() for 440
48825
48826 dcache_enable() was missing for 440 and the patch
48827 017e9b7925f74878d0e9475388cca9bda5ef9482 ["allow ports to override bootelf
48828 "] behavior uses this function.
48829
48830 Note: Currently the cache handling functions like
48831 d/icache_disable/enable() are NOP's on 440. This may be changed in the
48832 future.
48833
48834 Signed-off-by: Stefan Roese <sr@denx.de>
48835
48836 commit a49e0d177a0749614b316ec847fb623f09c82c07
48837 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48838 Date: Mon Apr 21 11:19:04 2008 +0200
48839
48840 video: Add missing free for logo memory
48841
48842 This patch adds two missing free()s.
48843
48844 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48845
48846 commit 84c01d3a05ae3aca5f7c0c13a31ca72ba1199a42
48847 Author: Troy Kisky <troy.kisky@boundarydevices.com>
48848 Date: Mon Sep 24 16:41:43 2007 -0700
48849
48850 PATCH - Fix oob data copied into supplied buffer
48851
48852 This patch correctly sets the oobavail variable
48853 and fixes a bug where the oob data was not valid when
48854 there where multiple groups in oobfree.
48855
48856 First segment fixes a typo
48857 Second segment fixes a bug where oob data may be copied incorrectly.
48858 Third segment adds an error message when exiting due to write protect.
48859 Forth segment fixes a bug where oobavail may be set incorrectly.
48860
48861 Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
48862
48863 commit e1d09680f64b452adde89ed9fe28a77c56bedc9a
48864 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48865 Date: Fri Apr 18 17:24:32 2008 +0200
48866
48867 ppc4xx: Fix sys_get_info() for 405GP(r)
48868
48869 This patch assigns the correct EBC clock for 405GP(r) CPUs
48870 to PPC4xx_SYS_INFO structure. Without this patch U-Boot
48871 uses an uninitialized EBC clock in its startup message.
48872
48873 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48874
48875 commit dc7746d86d2a3dfe01ab9a70cb427f92adc303c7
48876 Author: Wolfgang Denk <wd@denx.de>
48877 Date: Sun Apr 20 15:39:38 2008 -0700
48878
48879 Makefile: remove nand_spl/System.map when cleaning up.
48880
48881 commit d9a42c0ace4d4f9cb061d62a7265d1780f90447b
48882 Author: Wolfgang Denk <wd@denx.de>
48883 Date: Sun Apr 20 15:35:52 2008 -0700
48884
48885 MAKEALL: sort entries / lists.
48886
48887 Signed-off-by: Wolfgang Denk <wd@denx.de>
48888
48889 commit 0878af169b181868a105b5c33f3a6423e2c9fd60
48890 Author: Kumar Gala <galak@kernel.crashing.org>
48891 Date: Fri Apr 18 11:29:01 2008 -0500
48892
48893 85xx: Fix size of cpu-release-addr property
48894
48895 The cpu-release-addr is defined as always being a 64-bit quanity regardless
48896 if we are running on a 32-bit or 64-bit machine.
48897
48898 commit 88353a985109562a639b2f8a0c90d77011bfe374
48899 Author: Timur Tabi <timur@freescale.com>
48900 Date: Fri Apr 4 11:15:58 2008 -0500
48901
48902 Fix calculation of I2C clock for some 85xx chips
48903
48904 Some 85xx chips use CCB as the base clock for the I2C. Some use CCB/2, and
48905 some use CCB/3. There is no pattern that can be used to determine which
48906 chips use which frequency, so the only way to determine is to look up the
48907 actual SOC designation and use the right value for that SOC.
48908
48909 Update immap_85xx.h to include the GUTS PORDEVSR2 register.
48910
48911 Signed-off-by: Timur Tabi <timur@freescale.com>
48912
48913 commit 1e01477aeaf409ddb97e2633aab9cf8c9c60612e
48914 Author: Wolfgang Denk <wd@denx.de>
48915 Date: Fri Apr 18 11:44:27 2008 -0700
48916
48917 Fix build breakage casued by commit c0559be371b2
48918
48919 Change env_get_char from a global function ptr to a function.
48920
48921 Signed-off-by: Wolfgang Denk <wd@denx.de>
48922
48923 commit 268a804d7e2fa07b64211fd2f9a9615db4539f23
48924 Author: Wolfgang Denk <wd@denx.de>
48925 Date: Fri Apr 18 10:53:41 2008 -0700
48926
48927 Coding Style cleanup, update CHANGELOG.
48928
48929 Signed-off-by: Wolfgang Denk <wd@denx.de>
48930
48931 commit 92bad20ad74b70adf3839df9a0a47cce000ac3d7
48932 Author: Mike Frysinger <vapier@gentoo.org>
48933 Date: Tue Apr 8 14:00:57 2008 -0400
48934
48935 Add support for u-boot in svn and localversion-* files
48936
48937 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48938
48939 commit d23ff6827decf121461fbc5622612fd7effe207e
48940 Author: Guennadi Liakhovetski <lg@denx.de>
48941 Date: Thu Apr 3 17:04:22 2008 +0200
48942
48943 MX31ADS network and flash updates
48944
48945 This patch allows U-Boot to use buffered writes to the Spansion NOR
48946 flash installed on this board, and eliminates long delays in network
48947 transfers after the board startup.
48948
48949 Also modify flash layout to embed main and redundant environment
48950 blocks in the U-Boot image.
48951
48952 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
48953
48954 commit b5dc9b304d289831f291843ff88a45cbdf1a6290
48955 Author: Guennadi Liakhovetski <lg@denx.de>
48956 Date: Mon Apr 14 10:53:12 2008 +0200
48957
48958 Support for the MX31ADS evaluation board from Freescale
48959
48960 This patch adds support for the MX31ADS evaluation board from Freescale,
48961 initialization code is copied from RedBoot sources, also provided by
48962 Freescale.
48963
48964 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
48965
48966 commit 499e7831e1baaac6bfb959213f1950c216fbc5ba
48967 Author: Stefan Roese <sr@denx.de>
48968 Date: Tue Apr 8 10:33:29 2008 +0200
48969
48970 ppc4xx: Change Canyonlands to support booting from 2k page NAND devices
48971
48972 Signed-off-by: Stefan Roese <sr@denx.de>
48973
48974 commit 5e182dce04d68cc94407a1b1fa09307f2bb96719
48975 Author: Stefan Roese <sr@denx.de>
48976 Date: Tue Apr 8 10:33:28 2008 +0200
48977
48978 ppc4xx: Adjust Canyonlands fixed DDR2 setup (NAND booting) to 512MB SODIMM
48979
48980 Signed-off-by: Stefan Roese <sr@denx.de>
48981
48982 commit fe7c0db6b2a9004f96c2a2d4fff2849e19c2d825
48983 Author: Stefan Roese <sr@denx.de>
48984 Date: Tue Apr 8 10:33:27 2008 +0200
48985
48986 ppc4xx: Add Glacier NAND booting target
48987
48988 Signed-off-by: Stefan Roese <sr@denx.de>
48989
48990 commit 46f373838e384a4c23d13581b1dfa5acb66b5810
48991 Author: Stefan Roese <sr@denx.de>
48992 Date: Tue Apr 8 10:31:00 2008 +0200
48993
48994 nand_spl: Update nand_spl to support 2k page size NAND devices
48995
48996 This patch adds support for booting from 2k page sized NAND device
48997 (e.g. Micron 29F2G08AAC).
48998
48999 Tested on AMCC Canyonlands.
49000
49001 Signed-off-by: Stefan Roese <sr@denx.de>
49002
49003 commit 5e3dca577b7c1bf58bd2b48449b18b7e7dcd8e04
49004 Author: Anatolij Gustschin <agust@denx.de>
49005 Date: Thu Apr 17 18:18:00 2008 +0200
49006
49007 Fix crash on sequoia in ppc_4xx_eth_init
49008
49009 Currently U-Boot crashes in ppc_4xx_eth_init on sequoia
49010 with cache enabled (TLB Parity exeption). This patch
49011 fixes the problem.
49012
49013 Signed-off-by: Anatolij Gustschin <agust@denx.de>
49014
49015 commit accf7355767dc7f6b85d88bb1c75c9d95e84ba5b
49016 Author: Anatolij Gustschin <agust@denx.de>
49017 Date: Thu Apr 17 18:15:27 2008 +0200
49018
49019 ppc4xx: Fix crash on sequoia with cache enabled
49020
49021 Currently U-Boot crashes on sequoia board in CPU POST if
49022 cache is enabled (CONFIG_4xx_DCACHE defined). The cache
49023 won't be disabled by change_tlb before CPU POST because
49024 there is an insufficient adress range check since
49025 CFG_MEM_TOP_HIDE was introduced. This patch tries to fix
49026 this problem.
49027
49028 Signed-off-by: Anatolij Gustschin <agust@denx.de>
49029
49030 commit 43c509254fab375c49936498da944658117ed07c
49031 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
49032 Date: Thu Apr 17 23:35:13 2008 +0900
49033
49034 Use jr as register jump instruction
49035
49036 Current assembler codes are inconsistent in the way of register jump
49037 instruction usage; some use jr, some use j. Of course GNU as allows both
49038 usages, but as can be expected from `Jump Register' the mnemonic `jr' is
49039 more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage
49040 at all.
49041
49042 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
49043
49044 commit 7ce63709828d37b08866e537339a169bd0db2bd3
49045 Author: Guennadi Liakhovetski <lg@denx.de>
49046 Date: Tue Apr 15 14:15:30 2008 +0200
49047
49048 RTC driver for MC13783
49049
49050 MC13783 is a multifunction IS with an SPI interface to the host. This
49051 driver handles the RTC controller in this chip.
49052
49053 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49054
49055 commit 38254f45b0b412332726c90d3184ad47479fcffb
49056 Author: Guennadi Liakhovetski <lg@denx.de>
49057 Date: Tue Apr 15 14:14:25 2008 +0200
49058
49059 New i.MX31 SPI driver
49060
49061 This is an SPI driver for i.MX and MXC based SoCs from Freescale. So far
49062 only implemented and tested on i.MX31, can with a modified register layout
49063 and definitions be used for i.MX27, I think, MXC CPUs have similar SPI
49064 controllers too.
49065
49066 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49067
49068 commit 7064122c2eef92f02a03ef37a1a1c07e70cd4e38
49069 Author: Magnus Lilja <lilja.magnus@gmail.com>
49070 Date: Tue Apr 15 19:09:10 2008 +0200
49071
49072 Fix name of i.MX31 boards in config file header
49073
49074 Correct the name of the i.MX31 Litekit and phyCORE boards in config files.
49075
49076 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
49077
49078 commit a49864593e083a5d0779fb9ca98e5a0f2053183d
49079 Author: Mike Frysinger <vapier@gentoo.org>
49080 Date: Sun Apr 13 19:42:19 2008 -0400
49081
49082 allow ports to override go behavior
49083
49084 Split the arch-specific logic out of the common go code and into a dedicated
49085 weak function called do_go_exec() that lives in cpu directories. This will
49086 need review from i386/nios people to make sure I didn't break them.
49087
49088 commit 017e9b7925f74878d0e9475388cca9bda5ef9482
49089 Author: Mike Frysinger <vapier@gentoo.org>
49090 Date: Sun Apr 13 19:42:18 2008 -0400
49091
49092 allow ports to override bootelf behavior
49093
49094 Change the bootelf setup function into a dedicated weak function called
49095 do_bootelf_exec. This way ports can control the behavior however they
49096 like before/after calling the ELF entry point.
49097
49098 commit a4b46ed6b3502335c3f3a5d672abe0bcb44f20b7
49099 Author: Ulf Samuelsson <ulf@atmel.com>
49100 Date: Sat Apr 12 20:56:03 2008 +0200
49101
49102 Reorder ARM boards in Makefile
49103
49104 Rearrange ARM boards in Makefile so that ARM926EJ-S boards
49105 are no longer under ARM92xT header.
49106
49107 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
49108 Ack-By Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49109
49110 commit c3a60cb3bd67e120fc99b6ba88d9295c3c07f688
49111 Author: Ulf Samuelsson <ulf@atmel.com>
49112 Date: Sat Apr 12 20:29:44 2008 +0200
49113
49114 Clean up dataflash partitioning
49115
49116 This patch removes the board dependent parts from
49117 "drivers/mtd/dataflash.c".
49118 Each board relying on this, will have the appropriate
49119 code in a new file, "partition.c" in the board directory.
49120 board Makefiles updated to use the file.
49121
49122 The dataflash partitions are aligned on sector/page boundaries.
49123
49124 The CONFIG_NEW_DF_PARTITION was used to create named partitions
49125 This is now the default operation, and the CONFIG variable is removed.
49126
49127 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
49128
49129 commit 51ecde946fec511a16346e498204ca10ad71080d
49130 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49131 Date: Sat Apr 12 14:08:45 2008 +0200
49132
49133 gitignore: udpate stgit generated and .patch file
49134
49135 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49136
49137 commit 66e39818e95f51ee1c1dd2094407a8929543fa6d
49138 Author: Wolfgang Denk <wd@denx.de>
49139 Date: Fri Apr 18 00:15:36 2008 -0700
49140
49141 Get rid of redundant copy of renamed header file.
49142
49143 Signed-off-by: Wolfgang Denk <wd@denx.de>
49144
49145 commit c3aafd8cf814e33a77de81c2f22b8c772216a3cc
49146 Author: Vlad Lungu <vlad@comsys.ro>
49147 Date: Fri Apr 11 21:20:14 2008 +0300
49148
49149 Fix dependency generation for older gcc versions
49150
49151 With gcc 3.3.3 at least, compilation fails with
49152
49153 Generating include/autoconf.mk
49154 gcc: compilation of header file requested
49155 make: *** [include/autoconf.mk] Error 1
49156
49157 since commit 16fe77752eee099b9fb61ed73460e51cc94b37ba.
49158
49159 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
49160
49161 commit cb1c4896905ab22fcd982e6a8a539f0031942e71
49162 Author: Marian Balakowicz <m8@semihalf.com>
49163 Date: Fri Apr 11 11:07:49 2008 +0200
49164
49165 Restore the ability to continue booting after legacy image overwrite
49166
49167 Before new uImage code was merged, bootm code allowed for the kernel image to
49168 get overwritten during decompresion. new uImage introduced a check for image
49169 overwrites and refused to boot the image that got overwritten. This patch
49170 restores the old behavior. It also adds a warning when the image overwriten is
49171 a multi-image file, because in such case accessing componentes other than the
49172 first one will fail.
49173
49174 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
49175
49176 commit de2b3216e6b4f3b2fe93759c05b17504f9dfe036
49177 Author: Marian Balakowicz <m8@semihalf.com>
49178 Date: Fri Apr 11 11:07:43 2008 +0200
49179
49180 ppc: Fix ftd_blob variable init when processing raw blob
49181
49182 Set fdt_blob variable before its value is printed out.
49183
49184 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
49185
49186 commit 3d36be030043cd841a2551d00a395135e363a64b
49187 Author: Jason Wessel <jason.wessel@windriver.com>
49188 Date: Thu Apr 10 14:30:16 2008 -0500
49189
49190 Remove all the search paths from the .lds files.
49191
49192 The cross compiler is responsible for providing the correct libraries
49193 and the logic to find the linking libraries.
49194
49195 Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
49196
49197 commit 7d721e34ae6be7d7db63e8d060a246278bb7ae58
49198 Author: Bartlomiej Sieka <tur@semihalf.com>
49199 Date: Mon Apr 14 15:44:16 2008 +0200
49200
49201 Boot-related documentation update
49202
49203 - document 'bootm_low' and 'bootm_size' environment variables
49204 - update inaccurate CFG_BOOTMAPSZ entry
49205
49206 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
49207
49208 commit a6f0bd9f2b1971e2a61ac0fd1fc2c96cb7a4b67a
49209 Author: Guennadi Liakhovetski <lg@denx.de>
49210 Date: Wed Apr 9 17:34:08 2008 +0200
49211
49212 Fix regression introduced by a typo in "Tidied other cpu/arm920t/start.S code"
49213
49214 Restore logic reverted by commit
49215
49216 commit 80767a6cead9990d9e77e62be947843c2c72f469
49217 Author: Peter Pearse <peter.pearse@arm.com>
49218 Date: Wed Sep 5 16:04:41 2007 +0100
49219
49220 Changed API name to coloured_led.h
49221 Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
49222 Tidied other cpu/arm920t/start.S code
49223
49224 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49225
49226 commit e25cb8d3f4fcc265a9cdf8e9d577b59bdb64bbaf
49227 Author: Mike Frysinger <vapier@gentoo.org>
49228 Date: Tue Apr 8 10:24:24 2008 -0400
49229
49230 Remove conflicting NAND ID
49231
49232 There are two NAND entries with ID 0xDC and this obviously causes problems.
49233 In the kernel, they punted the first entry, so we should do the same.
49234
49235 See this upstream e-mail for more info:
49236 http://lists.infradead.org/pipermail/linux-mtd/2007-July/018795.html
49237
49238 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
49239 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
49240
49241 commit 188e94c370621708d13547d58dbc6ed3c5602aa8
49242 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
49243 Date: Tue Apr 8 16:20:35 2008 +0900
49244
49245 cpu/mips/cpu.c: Fix flush_cache bug
49246
49247 Cache operations have to take line address (addr), not start_addr.
49248 I noticed this bug when debugging ping failure.
49249
49250 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
49251
49252 commit 8f2a68a07c058fca1d413e54f71c2e7e78a74ed4
49253 Author: Martin Krause <martin.krause@tqs.de>
49254 Date: Thu Apr 3 14:29:01 2008 +0200
49255
49256 TQM5200: fix default IDE reset level
49257
49258 Before the first call of ide_reset(), the level of the IDE reset
49259 signal on the TQM5200 is low (reset asserted). This patch sets the
49260 default value to high (reset not asserted).
49261
49262 Currently this patch fixes no real problem, but it is cleaner to
49263 assert the reset signal only on demand, and not permanently.
49264
49265 Signed-off-by: Martin Krause <martin.krause@tqs.de>
49266
49267 commit c61e033d6e8abb7b4060ee36060961e1399f6079
49268 Author: Detlev Zundel <dzu@denx.de>
49269 Date: Thu Apr 3 14:18:48 2008 +0200
49270
49271 mgcoge, mgsuv: realign CONFIG_EXTRA_ENV_SETTING
49272
49273 Signed-off-by: Detlev Zundel <dzu@denx.de>
49274
49275 commit f308572e19eb7fe63aa3d41f214cde4c23c9800f
49276 Author: Detlev Zundel <dzu@denx.de>
49277 Date: Thu Apr 3 14:18:47 2008 +0200
49278
49279 mgcoge, mgsuv: rename 'addcon' to 'addcons'
49280
49281 The latter name with 13 users is already established, so we will use
49282 that.
49283
49284 Signed-off-by: Detlev Zundel <dzu@denx.de>
49285
49286 commit e175eacc87c3a9e4dad0799fee0e95732520afc7
49287 Author: Martin Krause <martin.krause@tqs.de>
49288 Date: Thu Apr 3 13:37:56 2008 +0200
49289
49290 IDE: fix bug in reset sequence
49291
49292 According to the ata (ata5) specification the RESET- signal
49293 shall be asserted for at least 25 us. Without this patch,
49294 the RESET- signal is asserted on some boards for only < 1 us
49295 (e. g. on the TQM5200). This patch adds a general delay of
49296 25 us to the RESET- signal.
49297
49298 Without this patch a Platinum 4 GiB CF card is not recognised
49299 properly on boards with a TQM5200 (STK52xx, TB5200).
49300
49301 Signed-off-by: Martin Krause <martin.krause@tqs.de>
49302
49303 commit 813bea96a960916c72b4a3a7df840151529c26ce
49304 Author: Sascha Laue <Sascha.Laue@gmx.biz>
49305 Date: Thu Apr 3 14:43:11 2008 +0200
49306
49307 lwmon5: disable CONFIG_ZERO_BOOTDELAY
49308
49309 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
49310
49311 commit 53eec6f1d25932e76d63ccb14082792b0b96bf41
49312 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49313 Date: Wed Apr 2 08:03:58 2008 +0200
49314
49315 ds174x: Fix warning on return in rtc_get and rtc_set functions
49316
49317 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49318
49319 commit a253b38bf50c85227c33ca0febc870ee49d1588e
49320 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49321 Date: Wed Apr 2 08:03:57 2008 +0200
49322
49323 cmd_log.c: Fix assignment differ in signedness
49324
49325 In function 'logbuff_init_ptrs':
49326 cmd_log.c:79: warning: pointer targets in assignment differ in signedness
49327
49328 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49329
49330 commit 6c0e9a8f1cc090fbfbc6f86b6b4fd17a1628f3df
49331 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
49332 Date: Wed Apr 2 11:04:43 2008 +0530
49333
49334 Remove duplicate #undef SHOW_INFO in drivers/usb/usb_ohci.c
49335
49336 Signed-off-by: gururaja hebbar <gururajakr@sanyo.co.in>
49337
49338 commit 478d5ec9ae3cbcc6040241d2d73dbbc61fe9b49d
49339 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49340 Date: Tue Apr 1 14:07:10 2008 +0200
49341
49342 s3c4510b_eth: fix 'packed' attribute ignored for fields of MACFrame
49343
49344 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49345
49346 commit c08fb3ea36d19b1640b7906264581e9105534399
49347 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
49348 Date: Tue Apr 15 10:24:14 2008 +0200
49349
49350 Additional PCI IDs for IDE and network controllers
49351
49352 These PCI IDs are required by the Linkstation platforms.
49353
49354 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
49355
49356 commit c0559be371b2a64b1a817088c3308688e2182f93
49357 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
49358 Date: Mon Apr 14 23:01:50 2008 +0200
49359
49360 Change env_get_char from a global function ptr to a function.
49361
49362 This avoids an early global data reference.
49363
49364 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
49365
49366 commit 3e0f331c05d72f140715c1e9fca991927e44d422
49367 Author: Guennadi Liakhovetski <lg@denx.de>
49368 Date: Tue Apr 29 12:35:08 2008 +0000
49369
49370 Clean up smsc911x driver
49371
49372 Replace direct register address derefencing with accessor functions.
49373 Restrict explicitly 32-bit bus-width, extend affected configurations
49374 respectively.
49375
49376 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49377 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49378
49379 commit de1b686b763aa8b87a86f6748ce9169e7fc0e4cd
49380 Author: Sascha Hauer <s.hauer@pengutronix.de>
49381 Date: Tue Apr 15 00:08:20 2008 -0400
49382
49383 This patch adds a driver for the following smsc network controllers:
49384 LAN9115
49385 LAN9116
49386 LAN9117
49387 LAN9215
49388 LAN9216
49389 LAN9217
49390
49391 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
49392 Signed-off-by: Guennadi Liakhovetski<lg@denx.de>
49393 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49394
49395 commit 3dfd4aab929cccddb63d9ea509967861e1333b52
49396 Author: Sascha Laue <Sascha.Laue@gmx.biz>
49397 Date: Tue Apr 1 15:13:03 2008 +0200
49398
49399 Fix watchdog POST for lwmon5
49400
49401 If the hardware watchdog detects a voltage error, the watchdog sets
49402 GPIO62 to low. The watchdog POST has to detect this low level.
49403
49404 Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
49405
49406 commit 24b448448a917e52806f82660a5c9d47608894fb
49407 Author: Dave Liu <r63238@freescale.com>
49408 Date: Tue Apr 1 15:22:11 2008 +0800
49409
49410 ata: update the libata.h from ata.h of linux kernel
49411
49412 Current libata.h of u-boot is out of sync from linux kernel,
49413 this patch make it be consistent with linux kernel.
49414
49415 Signed-off-by: Dave Liu <daveliu@freescale.com>
49416 Signed-off-by: Tor Krill <tor@excito.com>
49417
49418 commit f8f9dc98883f66f59eb0601da65808e6b139c87c
49419 Author: Kumar Gala <galak@kernel.crashing.org>
49420 Date: Mon Mar 31 11:59:27 2008 -0500
49421
49422 Allow use of ARCH=powerpc when building
49423
49424 The linux kernel is now mostly ARCH=powerpc, so to make life easier
49425 allow use to use ARCH=powerpc and convert it to ARCH=ppc.
49426
49427 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49428
49429 commit 8af657d2c6d1ca4f2f76973531394d4578ba2ef0
49430 Author: Kyungmin Park <kmpark@infradead.org>
49431 Date: Mon Mar 31 10:40:54 2008 +0900
49432
49433 Add apollon board MAINTAINERS entry
49434
49435 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
49436
49437 commit 77e475cc0ed1832160017d364be32a0be9ff02a9
49438 Author: Kyungmin Park <kmpark@infradead.org>
49439 Date: Mon Mar 31 10:40:36 2008 +0900
49440
49441 Fix OneNAND read
49442
49443 It should access with 16-bit instead of 8-bit
49444
49445 Now it uses the generic memcpy with 8-bit access. It means it reads wrong data from OneNAND.
49446
49447 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
49448
49449 commit a9da2b41079d230db3a5641625311983f85ce1fb
49450 Author: Kyungmin Park <kmpark@infradead.org>
49451 Date: Mon Mar 31 10:40:19 2008 +0900
49452
49453 Fix OneNAND erase command
49454
49455 It mis-calculates the block address.
49456 Also fix DECLARE_GLOBAL_DATA_PTR in env_onenand.
49457
49458 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
49459
49460 commit 61525f2ffa156665a66908fda47dbf29d65ea579
49461 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
49462 Date: Mon Mar 31 01:32:15 2008 +0200
49463
49464 Support for LinkStation / KuroBox HD and HG PPC models
49465
49466 This patch is based on the port by Mihai Georgian (see linkstation.c for
49467 Copyright information) and implements support for LinkStation / KuroBox HD
49468 and HG PPC models from Buffalo Technology, whereby HD is deactivated at
49469 the moment, pending network driver fixing.
49470
49471 Notice to users: this is pretty much a barebone port. Support for network
49472 on HG models is already in the U-Boot mainline, but you might also want
49473 patches to switch fan / phy modes depending on the negotiated ethernet
49474 parameters. This patch also doesn't support console switching, booting EM
49475 mode, Buffalo specific ext2 magic number. So, if you want to use any of
49476 those, you need additional patches. Otherwise this patche provides a fully
49477 functional u-boot with a network console on your system.
49478
49479 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49480
49481 commit 0f3ba7e9783f352318f197a3148f6d5cc3d75bea
49482 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
49483 Date: Sun Mar 30 01:22:13 2008 -0500
49484
49485 Add CONFIG_MII_INIT support to related boards
49486
49487 Replace CONFIG_8xx and CONFIG_MCF532x to CONFIG_MII_INIT in
49488 cmd_init.c. Add CONFIG_MII_INIT to board configuration files
49489 that use mii_init() in cmd_init.c.
49490
49491 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
49492 Acked-by: Ben Warren <biggerbadderben@gmail.com>
49493
49494 commit f33fca22e76f20e4e4793810ca7a06a4805a6cf4
49495 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
49496 Date: Sun Mar 30 01:19:06 2008 -0500
49497
49498 Update CONFIG_PCIAUTO_SKIP_HOST_BRIDGE to related boards
49499
49500 Remove test for CONFIG_MPC5200 in drivers/pci/pci_auto.c and define
49501 CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in related board configuration files.
49502
49503 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
49504
49505 commit e99ccb488181d012248c6be30b2093e950319fc5
49506 Author: Kumar Gala <galak@kernel.crashing.org>
49507 Date: Thu Mar 27 11:46:38 2008 -0500
49508
49509 Introduce phys_size_t and move phys_addr_t into asm/types.h
49510
49511 Also add CONFIG_PHYS_64BIT on powerpc to deal with 32-bit ppc's
49512 that have larger physical addresses like 44x, 85xx, and 86xx.
49513
49514 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49515
49516 commit 20a14a42a25f72e379f38460b8a8484667536795
49517 Author: Andy Fleming <afleming@freescale.com>
49518 Date: Wed Apr 2 16:19:07 2008 -0500
49519
49520 Rename include/md5.h to include/u-boot/md5.h
49521
49522 Some systems have md5.h installed in /usr/include/. This isn't the
49523 desired file (we want the one in include/md5.h). This will avoid the
49524 conflict. This fixes the host tools building problem by creating a new
49525 directory for U-Boot specific header files.
49526
49527 [Patch by Andy Fleming, modified to use separate directory by Wolfgang
49528 Denk]
49529
49530 Signed-off-by: Wolfgang Denk <wd@denx.de>
49531 Signed-off-by: Andy Fleming <afleming@freescale.com>
49532 Acked-by: Timur Tabi <timur@freescale.com>
49533
49534 commit f297b7a1ec87433f66320d89d993e1bc738c66b8
49535 Author: Dave Liu <r63238@freescale.com>
49536 Date: Thu Mar 27 18:51:17 2008 +0800
49537
49538 drivers: code clean up
49539
49540 Signed-off-by: Dave Liu <daveliu@freescale.com>
49541
49542 commit 0ff7cba4a2e51c90827f6d21a0b28b4d67109597
49543 Author: Dave Liu <r63238@freescale.com>
49544 Date: Thu Mar 27 18:50:41 2008 +0800
49545
49546 drivers: clean up the ata_piix.h
49547
49548 Signed-off-by: Dave Liu <daveliu@freescale.com>
49549
49550 commit e8f7ba404f1409606962815ecc955a06984b08b3
49551 Author: Dave Liu <r63238@freescale.com>
49552 Date: Thu Mar 27 18:49:56 2008 +0800
49553
49554 doc: english polishing for README.sata
49555
49556 according to gvb's suggestion, polishing for the doc.
49557
49558 Signed-off-by: Jerry Van Baren <gerald.vanbaren@ge.com>
49559 Signed-off-by: Dave Liu <daveliu@freescale.com>
49560
49561 commit 3e3f766a5274d204780460e1879723b565296d34
49562 Author: Kumar Gala <galak@kernel.crashing.org>
49563 Date: Wed Mar 26 18:53:28 2008 -0500
49564
49565 Fix warnings introduced by I2C bus speed setting patch
49566
49567 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49568
49569 commit 3c735e7437150e8615f26930c7819db85634276d
49570 Author: eran liberty <eran.liberty@gmail.com>
49571 Date: Thu Mar 27 00:50:49 2008 +0100
49572
49573 Altera Stratix II support
49574
49575 Adds Support for Altera's Stratix II.
49576
49577 Within your board specific init file you will have to call
49578
49579 1. fpga_init (/* relocated code offset. usually => */ gd->reloc_off);
49580 2. fpga_add (fpga_altera, (Altera_desc*)&altera_desc);
49581
49582 Altera_desc* contines (for example):
49583 {
49584 Altera_StratixII, /* part type */
49585 passive_serial, /* interface type */
49586 1, /* bytes of data part can accept */
49587 (void *)(&funcs), /* interface function table */
49588 0L, /* base interface address */
49589 0 /* implementation specific cookie */
49590 }
49591
49592 funcs is the interface. It is of type altera_board_specific_func.
49593 It looks like this:
49594 altera_board_specific_func func = {
49595 pre_fn,
49596 config_fn,
49597 status_fn,
49598 done_fn,
49599 clk_fn,
49600 data_fn,
49601 abort_fn,
49602 post_fn,
49603 };
49604
49605 you will have to implement these functions, which is usually bit
49606 banging some gpio.
49607
49608 Signed-off-by: Eran Liberty <liberty@extricom.com>
49609
49610 commit 5ece9ec9f6cd52950ab848e2fe422dacf1d3a335
49611 Author: Wolfgang Denk <wd@denx.de>
49612 Date: Sun Apr 13 14:32:54 2008 -0700
49613
49614 Update CHANGELOG
49615
49616 Signed-off-by: Wolfgang Denk <wd@denx.de>
49617
49618 commit 5ad862166aa24d62a69aa9c708f6b2f5c0d28fb7
49619 Author: Sascha Hauer <s.hauer@pengutronix.de>
49620 Date: Wed Mar 26 20:41:17 2008 +0100
49621
49622 Phytec Phycore-i.MX31 support
49623
49624 This patch adds support for the Phytec Phycore-i.MX31 board
49625
49626 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
49627 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49628
49629 commit caebc95be3b42e5147b5fac7672ac4b2693ef7e1
49630 Author: Sascha Hauer <s.hauer@pengutronix.de>
49631 Date: Wed Mar 26 20:41:09 2008 +0100
49632
49633 mx31 litekit support
49634
49635 This patch adds support for the mx31 litekit board
49636
49637 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
49638 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49639
49640 commit cdace0661208754a53019ea0dc7b803a040e0939
49641 Author: Sascha Hauer <s.hauer@pengutronix.de>
49642 Date: Wed Mar 26 20:40:49 2008 +0100
49643
49644 add an i2c driver for mx31
49645
49646 This patch adds an i2c driver for Freescale i.MX processors
49647
49648 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
49649 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49650
49651 commit 9b56f4f0306f3940b0aafd823ed6ecfc2d75d6c6
49652 Author: Sascha Hauer <s.hauer@pengutronix.de>
49653 Date: Wed Mar 26 20:40:42 2008 +0100
49654
49655 core support for Freescale mx31
49656
49657 This patch adds the core support for Freescale mx31
49658
49659 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
49660 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49661
49662 commit 7ec68862a27c8f6f6d566228de8f6724d964a939
49663 Author: Wolfgang Denk <wd@denx.de>
49664 Date: Sun Apr 13 14:19:23 2008 -0700
49665
49666 Fix compile error
49667
49668 ...as suggested by Peter Pearse
49669
49670 Signed-off-by: Wolfgang Denk <wd@denx.de>
49671
49672 commit 5252ed95204bdf55bec5a90ea69860bf2f78c643
49673 Author: Sascha Hauer <s.hauer@pengutronix.de>
49674 Date: Wed Mar 26 20:40:36 2008 +0100
49675
49676 Separate omap24xx specific code from arm1136
49677
49678 Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136
49679 to cpu/arm1136/omap24xx.
49680
49681 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
49682 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49683
49684 commit 1f1d88dd40815332df32982e739f2ddd2da6fe1a
49685 Author: Mike Frysinger <vapier@gentoo.org>
49686 Date: Tue Jan 29 18:21:05 2008 -0500
49687
49688 disable caches before booting an app for Blackfin apps
49689
49690 It isn't generally save to execute applications outside of U-Boot with caches
49691 enabled due to the way the Blackfin processor handles caches (requires
49692 software assistance). This patch disables caches before booting an ELF or
49693 just booting raw code. The previous discussion on the patch was that we
49694 wanted to use weaks instead, but that proved to not be feasible when multiple
49695 symbols are involved, which puts us back at the ifdef solution. I've
49696 minimized the ugliness by moving the setup step outside of the main function.
49697
49698 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
49699
49700 commit e6dfed705efa44ebf00d21bb1588c6ccc8f3ad32
49701 Author: Wolfgang Denk <wd@denx.de>
49702 Date: Sun Apr 13 10:03:54 2008 -0700
49703
49704 ppc: Get rid of unused machine type definitions
49705
49706 Signed-off-by: Wolfgang Denk <wd@denx.de>
49707
49708 commit 1aeed8d71acb3290cf2446f316d6ba437e7881c4
49709 Author: Wolfgang Denk <wd@denx.de>
49710 Date: Sun Apr 13 09:59:26 2008 -0700
49711
49712 Coding Style cleanup; update CHANGELOG
49713
49714 Signed-off-by: Wolfgang Denk <wd@denx.de>
49715
49716 commit 7754f33c6fb7a2c050388d20bf3847038558bdcf
49717 Author: Larry Johnson <lrj@acm.org>
49718 Date: Thu Feb 21 13:58:11 2008 -0500
49719
49720 LM73 bug fix for negative temperatures and cleanup
49721
49722 When the LM73 temperature sensor measures a temperature below 0 C, the
49723 current driver does not perform sign extension, so the result returned is
49724 512 C too high. This patch fixes the problem, and does general cleanup
49725 of the code.
49726
49727 Signed-off-by: Larry Johnson <lrj@acm.org>
49728
49729 commit 96ef831f713289afba19da0c8f905e99da2b23e0
49730 Author: Guennadi Liakhovetski <lg@denx.de>
49731 Date: Thu Apr 3 13:36:02 2008 +0200
49732
49733 cfi_flash: Support buffered writes on non-standard Spansion NOR flash
49734
49735 Some NOR flash chip from Spansion, for example, the s29ws-n MirrorBit
49736 series require different addresses for buffered write commands. Define a
49737 configuration option to support buffered writes on those chips. A more
49738 elegant solution would be to automatically detect those chips by parsing
49739 their CFI records, but that would require introduction of a fixup table
49740 into the cfi_flash driver.
49741
49742 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49743
49744 commit 3f9c542d3d69b1a10a5e193e779133a0454d1f44
49745 Author: Lee Nipper <lee.nipper@freescale.com>
49746 Date: Thu Apr 10 09:35:06 2008 -0500
49747
49748 mpc83xx: Update DIMM data bus width test to support 40-bit width
49749
49750 32-bit wide ECC memory modules report 40-bit width.
49751 Changed the DIMM data bus width test to 'less than 64' instead of 'equal 32'.
49752
49753 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
49754 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49755
49756 commit 5fb5a689d822ca61e814bd523fc930af335242fa
49757 Author: Dave Liu <r63238@freescale.com>
49758 Date: Mon Mar 31 17:05:12 2008 +0800
49759
49760 mpc83xx: Fix the bug of serdes initialization
49761
49762 Currently the serdes will not be initializated due to the
49763 partid's error.
49764
49765 Signed-off-by: Dave Liu <daveliu@freescale.com>
49766 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49767
49768 commit 2000784818f043db7ca60e2846a72d097766b894
49769 Author: Dave Liu <r63238@freescale.com>
49770 Date: Thu Apr 3 16:28:29 2008 +0800
49771
49772 mpc83xx: Fix the SATA clock setting of 837x targets
49773
49774 Currently the SATA controller clock is configured as CSB clock,
49775 usually the CSB clock is 400/333/266MHz.
49776
49777 However, The SATA IP block is only guaranteed to operate up to
49778 200 MHz as stated in the HW spec.
49779
49780 The bug is reported by Joe D'Abbraccio <ljd015@freescale.com>
49781
49782 This patch makes the SATA clock as half of CSB clock.
49783
49784 Signed-off-by: Dave Liu <daveliu@freescale.com>
49785 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49786
49787 commit 1ac4f320bf0b593aa0a741f2d649a8ece8838672
49788 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49789 Date: Wed Apr 2 13:41:21 2008 +0200
49790
49791 mpc837xerdb: Fix warning: implicit declaration of function 'fdt_fixup_dr_usb'
49792
49793 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49794 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49795
49796 commit 97b3ecb575a92fa34c1765229dbc06f2b662f139
49797 Author: Kumar Gala <galak@kernel.crashing.org>
49798 Date: Wed Apr 9 04:20:57 2008 -0500
49799
49800 85xx: Fix detection of MP cpu spin up
49801
49802 We were looking at the wrong memory offset to determine of a secondary
49803 cpu had been spun up or not. Also added a warning message if the
49804 all the secondary cpus we expect don't spin up.
49805
49806 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49807
49808 commit f3e04bdc3f360c66801a9048956e61e41a16edba
49809 Author: Kumar Gala <galak@kernel.crashing.org>
49810 Date: Tue Apr 8 10:45:50 2008 -0500
49811
49812 85xx: Use SVR_SOC_VER instead of SVR_VER
49813
49814 The recent change introduced by 'Update SVR numbers to expand support'
49815 now requires that we use SVR_SOC_VER instead of SVR_VER if we want
49816 to compare against a particular processor id.
49817
49818 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49819
49820 commit 5b2052e5f5fcce5dbd4d2750a29c0e45bce806e7
49821 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
49822 Date: Fri Apr 11 10:00:35 2008 -0400
49823
49824 ppc4xx: Fix power mgt definitions for PPC440
49825
49826 Corrected DCR addresses of PPC440EP power management registers.
49827
49828 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
49829
49830 commit 950a392464e616b4590bc4501be46e2d7d162dea
49831 Author: Wolfgang Denk <wd@denx.de>
49832 Date: Fri Apr 11 15:11:26 2008 +0200
49833
49834 Revert merge of git://www.denx.de/git/u-boot-arm, commit 62479b18:
49835
49836 Reverting became necessary after it turned out that the patches in
49837 the u-boot-arm repo were modified, and in some cases corrupted.
49838
49839 This reverts the following commits:
49840
49841 066bebd6353e33af3adefc3404560871699e9961
49842 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
49843 c88ae20580b2b01487b4cdcc8b2a113f551aee36
49844 a147e56f03871bba4f05058d5e04ce7deb010b04
49845 d6674e0e2a6a1f033945f78838566210d3f28c95
49846 8c8463cce44d849e37744749b32d38e1dfb12e50
49847 c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
49848 8bf69d81782619187933a605f1a95ee1d069478d
49849 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
49850 a574a73852a527779234e73e17e7597fd8128882
49851 1377b5583a48021d983e1fd565f7d40c89e84d63
49852 1704dc20917b4f71e373e2c888497ee666d40380
49853
49854 Signed-off-by: Wolfgang Denk <wd@denx.de>
49855
49856 commit 64e541f4c1b413dd84c7e409f5c2bf328db2ac13
49857 Author: Stefan Roese <sr@denx.de>
49858 Date: Fri Apr 11 07:02:29 2008 +0200
49859
49860 ppc4xx: Update Kilauea defconfig to use device-tree booting as default
49861
49862 This patch reworks the default environment on Kilauea/Haleakala. Now
49863 "net_nfs" for exmaple uses the device-tree style booting formerly know
49864 as "net_nfs_fdt". Also the addresses in RAM were changed because of the
49865 new image booting support, which check for image overwriting. So the
49866 addresses needed togeet adjusted.
49867
49868 Signed-off-by: Stefan Roese <sr@denx.de>
49869
49870 commit 756f5dacda3810b094b94bcceffd3ce6c7ff9a28
49871 Author: Stefan Roese <sr@denx.de>
49872 Date: Wed Apr 9 11:58:02 2008 +0200
49873
49874 ppc4xx: Fix Canyonlands default environment to work with new image support
49875
49876 Since the new image support checks for image overwriting, the default
49877 environment needs to get adjusted to use correct addresses.
49878
49879 Signed-off-by: Stefan Roese <sr@denx.de>
49880
49881 commit dfc6c7b647dba7ab86749616f0e9e5740deed422
49882 Author: Stefan Roese <sr@denx.de>
49883 Date: Wed Apr 9 11:54:11 2008 +0200
49884
49885 ppc: Revert patch 70431e8a that used _start instead of CFG_MONITOR_BASE
49886
49887 The patch 70431e8a7393b6b793f77957f95b999fc9a269b8 (Make MPC83xx one step
49888 closer to full relocation.) doesn't use CFG_MONITOR_BASE anymore. But
49889 on 4xx systems _start currently cannot be used for this calculation.
49890 So revert back to the original version for now.
49891
49892 Signed-off-by: Stefan Roese <sr@denx.de>
49893
49894 commit f91374f65eae8b42cac329e06ba1c54728278efb
49895 Author: Michal Simek <monstr@monstr.eu>
49896 Date: Fri Mar 28 12:49:52 2008 +0100
49897
49898 microblaze: Sort microblaze boards in MAKEALL script
49899
49900 commit 62032deb7214c6d9b4396297e2aaa559bc2f8495
49901 Author: Michal Simek <monstr@monstr.eu>
49902 Date: Fri Mar 28 11:58:45 2008 +0100
49903
49904 microblaze: clean microblaze_config.mk
49905
49906 FLAGS are generated by U-BOOT generator.
49907 Board specific FLAGS are in board directory
49908
49909 Signed-off-by: Michal Simek <monstr@monstr.eu>
49910
49911 commit cf5c679ca04a6b54bf53a55b8b9c29335b387287
49912 Author: Michal Simek <monstr@monstr.eu>
49913 Date: Fri Mar 28 12:47:19 2008 +0100
49914
49915 microblaze: xupv2p fix config file for supporting FDT
49916
49917 commit 188dc16b189143573b1ed90e584bf866d75cdd12
49918 Author: Michal Simek <monstr@monstr.eu>
49919 Date: Fri Mar 28 11:53:02 2008 +0100
49920
49921 microblaze: ml401 fix config file for supporting FDT
49922
49923 Signed-off-by: Michal Simek <monstr@monstr.eu>
49924
49925 commit 4c6a6f02e239236261333759997eeaf86b30b54c
49926 Author: Michal Simek <monstr@monstr.eu>
49927 Date: Fri Mar 28 11:22:48 2008 +0100
49928
49929 microblaze: ml401 - add ifdef for GPIO
49930
49931 Signed-off-by: Michal Simek <monstr@monstr.eu>
49932
49933 commit af7ae1a411c67ee9d17a66d17ce50b374f3dd4e7
49934 Author: Michal Simek <monstr@monstr.eu>
49935 Date: Fri Mar 28 12:13:03 2008 +0100
49936
49937 microblaze: clean uart16550 and uartlite handling
49938
49939 Signed-off-by: Michal Simek <monstr@monstr.eu>
49940
49941 commit 0b20f250877441460fb79d72192954abe8498834
49942 Author: Michal Simek <monstr@monstr.eu>
49943 Date: Fri Mar 28 11:08:31 2008 +0100
49944
49945 microblaze: Add Emaclite driver to Makefile
49946
49947 Signed-off-by: Michal Simek <monstr@monstr.eu>
49948
49949 commit 868cde5310f88234b774878e4f06e79df10a88b3
49950 Author: Michal Simek <monstr@monstr.eu>
49951 Date: Fri Mar 28 11:08:01 2008 +0100
49952
49953 microblaze: Add Emac driver to Makefile
49954
49955 Signed-off-by: Michal Simek <monstr@monstr.eu>
49956
49957 commit 6f961b4f461f6cbb83a467d468a02e6078c2b327
49958 Author: Michal Simek <monstr@monstr.eu>
49959 Date: Fri Mar 28 12:42:29 2008 +0100
49960
49961 microblaze: add Emac ethernet driver
49962
49963 commit 89c53891b18cbafd29ab8931b40e27ad231b6085
49964 Author: Michal Simek <monstr@monstr.eu>
49965 Date: Fri Mar 28 12:41:56 2008 +0100
49966
49967 microblaze: add Emaclite ethernet driver
49968
49969 commit e5845e21224dbe2fe47b11f1cdf95de7f84be7cb
49970 Author: Michal Simek <monstr@monstr.eu>
49971 Date: Fri Mar 28 11:04:01 2008 +0100
49972
49973 microblaze: ML401 and XUPV2P remove emac and emaclite reference
49974
49975 Signed-off-by: Michal Simek <monstr@monstr.eu>
49976
49977 commit 6bf3e982aefdb1daf9f5462d482c8f9d1cc90a57
49978 Author: Michal Simek <monstr@monstr.eu>
49979 Date: Fri Mar 28 10:59:32 2008 +0100
49980
49981 microblaze: remove old setting for emac driver
49982
49983 Signed-off-by: Michal Simek <monstr@monstr.eu>
49984
49985 commit cd2b75efb9cc037c74ecee9b3586f9bf9e1d4e57
49986 Author: Michal Simek <monstr@monstr.eu>
49987 Date: Fri Mar 28 10:58:15 2008 +0100
49988
49989 microblaze: Clean Makefile from ancient emac driver
49990
49991 Signed-off-by: Michal Simek <monstr@monstr.eu>
49992
49993 commit ab68f921d9c741830f721c3d879c13a0c5597183
49994 Author: Daniel Hellstrom <daniel@gaisler.com>
49995 Date: Fri Mar 28 10:20:43 2008 +0100
49996
49997 SPARC/LEON2: added support for Gaisler simulator GRSIM/TSIM for SPARC/LEON2 targets. See www.gaisler.com for information.
49998
49999 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50000
50001 commit 6ed8a43a19bb0275501bc286007daafa923552cf
50002 Author: Daniel Hellstrom <daniel@gaisler.com>
50003 Date: Wed Mar 26 23:38:48 2008 +0100
50004
50005 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.
50006
50007 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50008
50009 commit 6940383d9ec1bfe2f13e339e6f723e8d34af2b12
50010 Author: Daniel Hellstrom <daniel@gaisler.com>
50011 Date: Wed Mar 26 23:34:47 2008 +0100
50012
50013 SPARC/LEON3: added support for Altera NIOS Development kit (STRATIX II Edition) with GRLIB template design. See www.gaisler.com for information.
50014
50015 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50016
50017 commit 823edd8a66ed50af5aaba0c79567f67061e4d79a
50018 Author: Daniel Hellstrom <daniel@gaisler.com>
50019 Date: Fri Mar 28 10:06:52 2008 +0100
50020
50021 SPARC/LEON3: added support for Gaisler GRSIM/TSIM2 SPARC/LEON3 simulatorn. See www.gaisler.com for information.
50022
50023 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50024
50025 commit 71d7e4c0489e5ed8fc69382236aaa2a1e510c135
50026 Author: Daniel Hellstrom <daniel@gaisler.com>
50027 Date: Wed Mar 26 23:26:48 2008 +0100
50028
50029 SPARC/LEON3: added support for GR-XC3S-1500 board with GRLIB template design. See www.gaisler.com for board information.
50030
50031 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50032
50033 commit b330990c2f36ee4a8bb318360e1c8ba965269ab6
50034 Author: Daniel Hellstrom <daniel@gaisler.com>
50035 Date: Fri Mar 28 10:00:33 2008 +0100
50036
50037 SPARC: Added support for SPARC LEON2 SOC Processor.
50038
50039 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50040
50041 commit 2a2fa797e63b1e3cd4d570318ca5fbf8723ef53a
50042 Author: Daniel Hellstrom <daniel@gaisler.com>
50043 Date: Wed Mar 26 23:00:38 2008 +0100
50044
50045 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.
50046
50047 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50048
50049 commit 1e9a164e22976933002c5e4b0b79b09fcede9cd4
50050 Author: Daniel Hellstrom <daniel@gaisler.com>
50051 Date: Wed Mar 26 22:51:29 2008 +0100
50052
50053 SPARC: Added support for SPARC LEON3 SOC processor.
50054
50055 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50056
50057 commit bf3d8b31169546fcddb4737391e1893fb12d033a
50058 Author: Daniel Hellstrom <daniel@gaisler.com>
50059 Date: Fri Mar 28 08:29:26 2008 +0100
50060
50061 SPARC: added SPARC support for new uimage in common code.
50062
50063 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50064
50065 commit 00ab32c85405a4fe65fd4128243086210fc90a21
50066 Author: Daniel Hellstrom <daniel@gaisler.com>
50067 Date: Wed Mar 26 22:36:03 2008 +0100
50068
50069 SPARC: added SPARC board information to the command bdinfo.
50070
50071 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50072
50073 commit c2f02da21a3f37f0878554eebc785e04fdc4e128
50074 Author: Daniel Hellstrom <daniel@gaisler.com>
50075 Date: Fri Mar 28 09:47:00 2008 +0100
50076
50077 SPARC: Added generic support for SPARC architecture.
50078
50079 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50080
50081 commit e54ec0f016803e4d9524ff71f7971bda0c51b287
50082 Author: Stefan Roese <sr@denx.de>
50083 Date: Thu Apr 3 14:50:34 2008 +0200
50084
50085 ppc4xx: Fix 4xx enet driver to support 460GT EMAC2+3
50086
50087 This patch fixes a problem with the RGMII setup of the 460GT. The 460GT
50088 has 2 RGMII instances and we need to configure the 2nd RGMII instance
50089 for the EMAC2+3 channels.
50090
50091 Signed-off-by: Stefan Roese <sr@denx.de>
50092
50093 commit c2a545ce33b26d80337f80b533828839249fb1c9
50094 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50095 Date: Wed Apr 2 08:03:56 2008 +0200
50096
50097 MPC8xx: Fix libfdt support introduced in commit 77ff7b74
50098
50099 fdt.c: In function 'ft_cpu_setup':
50100 fdt.c:33: warning: implicit declaration of function 'do_fixup_by_prop_u32'
50101 fdt.c:39: warning: implicit declaration of function 'do_fixup_by_compat_u32'
50102 fdt.c:43: warning: implicit declaration of function 'fdt_fixup_ethernet'
50103 fdt.c:45: warning: implicit declaration of function 'fdt_fixup_memory'
50104
50105 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50106
50107 commit 4abd844d8eb108736e1cf8fbf3dbf61f2d5fc11b
50108 Author: Andy Fleming <afleming@freescale.com>
50109 Date: Mon Mar 31 20:45:56 2008 -0500
50110
50111 Fix fdt set command to conform to dts spec
50112
50113 The fdt set command was treating properties specified as <00> and <0011>
50114 as byte streams, rather than as an array of cells. As we already have
50115 syntax for expressing the desire for a stream of bytes ([ xx xx ...]),
50116 we should use the <> syntax to describe arrays of cells, which are always
50117 32-bits per element. If we imagine this likely (IMHO) scenario:
50118
50119 > fdt set /ethernet-phy@1 reg <1>
50120
50121 With the old code, this would create a bad fdt, since the reg cell would be
50122 made to be one byte in length. But the cell must be 4 bytes, so this would
50123 break mysteriously.
50124
50125 Also, the dts spec calls for constants inside the angle brackets (<>)
50126 to conform to C constant standards as they pertain to base.
50127 Take this scenario:
50128
50129 > fdt set /ethernet@f00 reg <0xe250000\ 0x1000>
50130
50131 The old fdt command would complain that it couldn't parse that. Or, if you
50132 wanted to specify that a certain clock ran at 33 MHz, you'd be required to
50133 do this:
50134
50135 > fdt set /mydev clock <1f78a40>
50136
50137 Whereas the new code will accept decimal numbers.
50138
50139 While I was in there, I extended the fdt command parser to handle property
50140 strings which are split across multiple arguments:
50141
50142 > fdt set /ethernet@f00 interrupts < 33 2 34 2 36 2 >
50143 > fdt p /ethernet@f00
50144 ethernet@f00 {
50145 interrupts = <0x21 0x2 0x22 0x2 0x24 0x2>;
50146 };
50147
50148 Lastly, the fdt print code was rearranged slightly to print arrays of cells
50149 if the length of the property is a multiple of 4 bytes, and to not print
50150 leading zeros.
50151
50152 Signed-off-by: Andy Fleming <afleming@freescale.com>
50153
50154 commit 1c2926abdd7db89296a8cc7f224dd9d5d4e37a56
50155 Author: Stefan Roese <sr@denx.de>
50156 Date: Wed Apr 2 08:39:33 2008 +0200
50157
50158 ppc4xx: Canyonlands: Init SATA/PCIe port correctly
50159
50160 Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
50161 interface. This usage can be configured with the jumper J6. This patch
50162 correctly configures the SATA/PCIe PHY for SATA usage when this jumper
50163 is installed.
50164
50165 Signed-off-by: Stefan Roese <sr@denx.de>
50166
50167 commit 6fe2946f198481254a6ee9600d7456b8316a4083
50168 Author: Kim Phillips <kim.phillips@freescale.com>
50169 Date: Fri Mar 28 17:37:49 2008 -0500
50170
50171 remove remaining CONFIG_OF_HAS_{UBOOT_ENV,BD_T} code
50172
50173 finish off what commit 43ddd9c820fec44816188f53346b464e20b3142d,
50174 "Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T"
50175 started.
50176
50177 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50178
50179 commit b5873f1732b92a25690e1513b90dfb0d644f6697
50180 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50181 Date: Tue Apr 1 07:30:51 2008 +0200
50182
50183 dataflash: Move CONFIG_HAS_DATAFLASH to Makefile
50184
50185 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50186
50187 commit 2d934ea51f276522b532f870a820e844ff480b5b
50188 Author: Tor Krill <tor@excito.com>
50189 Date: Fri Mar 28 15:29:45 2008 +0100
50190
50191 Add Vitesse 8601 support to TSEC driver
50192
50193 Add phy_info for Vitesse VSC8601.
50194 Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing compensation.
50195
50196 Signed-off-by: Tor Krill <tor@excito.com>
50197 Reviewed-by: Kim Phillips <kim.phillips@freescale.com>
50198 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50199
50200 commit 3eac6402a508b0f68a21cc9cbc2cc49347de0c31
50201 Author: Daniel Hellstrom <daniel@gaisler.com>
50202 Date: Mon Mar 31 14:25:00 2008 +0000
50203
50204 SPARC: added SMC91111 driver in and out macros for LEON processors.
50205
50206 This patch makes SPARC/LEON processors able to read and write
50207 to the SMC91111 chip using the chip external I/O bus of the memory
50208 controller. This patchs defines the standard in and out macros
50209 expected by the SMC9111 driver.
50210
50211 To access that I/O bus one must set up the memory controller
50212 (MCTRL or FTMCTRL) correctly. It is assumed that the user sets
50213 up this correctly when the other MCTRL parameters are set up. It
50214 can be set up from the board configuration header file.
50215
50216 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50217 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50218
50219 commit 3ca7c558eba36332556bc470d45e2f5d42bd0ca6
50220 Author: Stelian Pop <stelian@popies.net>
50221 Date: Wed Mar 26 18:52:34 2008 +0100
50222
50223 Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards
50224
50225 Signed-off-by: Stelian Pop <stelian@popies.net>
50226
50227 commit 4e03dde84dd2c91e327cdc23ae119d432559a7a3
50228 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50229 Date: Mon Mar 31 21:31:04 2008 +0200
50230
50231 AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile
50232
50233 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50234
50235 commit 0176d43e759a6e00cacc85eff26fd60f74b4f6b7
50236 Author: Stelian Pop <stelian@popies.net>
50237 Date: Wed Mar 26 18:52:33 2008 +0100
50238
50239 Add support for AT91SAM9260EK
50240
50241 Support for booting from internal DataFlash, external DataFlash card
50242 or NAND flash is available.
50243
50244 Signed-off-by: Stelian Pop <stelian@popies.net>
50245
50246 commit 1762f13b4aab88b685b1722f17dada247945624b
50247 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50248 Date: Mon Mar 31 21:20:49 2008 +0200
50249
50250 AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile
50251
50252 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50253
50254 commit 761712188b353494defb2b644491ff73d0daaa6f
50255 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50256 Date: Mon Mar 31 21:12:17 2008 +0200
50257
50258 AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile
50259
50260 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50261
50262 commit 983c1db04c1dd0f92e02f06d29f0c65a3d9a2687
50263 Author: Stelian Pop <stelian@popies.net>
50264 Date: Wed Mar 26 20:52:32 2008 +0100
50265
50266 Port AT91CAP9 to the new headers
50267
50268 Adapt the existing AT91CAP9 code to the new headers and APIs.
50269
50270 Signed-off-by: Stelian Pop <stelian@popies.net>
50271
50272 commit 177e8a5ac81bbc531a1d54abdb47f2860266c3aa
50273 Author: Stelian Pop <stelian@popies.net>
50274 Date: Wed Mar 26 19:52:31 2008 +0100
50275
50276 Finish header files reworking
50277
50278 Replace AT91CAP9.h file with several splitted header files coming
50279 from the Linux kernel.
50280
50281 This is part 2 of the replacement: more header imports and edits.
50282
50283 Signed-off-by: Stelian Pop <stelian@popies.net>
50284
50285 commit 6d1dbbbf9fdf727384002e553e615c15d8b967f4
50286 Author: Stelian Pop <stelian@popies.net>
50287 Date: Wed Mar 26 19:52:30 2008 +0100
50288
50289 Import several header files from Linux
50290
50291 Replace AT91CAP9.h file with several splitted header files coming
50292 from the Linux kernel.
50293
50294 This is part 1 of the replacement: pristine header files import.
50295
50296 Signed-off-by: Stelian Pop <stelian@popies.net>
50297
50298 commit a8a78f2d99dc1bd30dc3595da118539b506c6118
50299 Author: Stelian Pop <stelian@popies.net>
50300 Date: Wed Mar 26 20:52:28 2008 +0100
50301
50302 Move at91cap9 specific files to at91sam9 directory
50303
50304 AT91CAP9 and AT91SAM9 SoCs are very close hardware wise, so a
50305 common infrastructure can be used. Let this infrastructure be
50306 named after the AT91SAM9 family, and move the existing AT91CAP9
50307 files to the new place.
50308
50309 Signed-off-by: Stelian Pop <stelian@popies.net>
50310
50311 commit 61106a565870ff503f92b251b94bd7afef889a04
50312 Author: Stelian Pop <stelian@popies.net>
50313 Date: Wed Mar 26 21:52:27 2008 +0100
50314
50315 Use timer_init() instead of board supplied interrupt_init()
50316
50317 The timer on AT91CAP9/AT91SAM9 is supplied by the SoC, and not by
50318 the board, so use timer_init() instead of interrupt_init().
50319
50320 Signed-off-by: Stelian Pop <stelian@popies.net>
50321
50322 commit 5604e2178c5218fbfdba2e4293ca7652e829ac25
50323 Author: Stelian Pop <stelian@popies.net>
50324 Date: Wed Mar 26 21:52:36 2008 +0100
50325
50326 Cleanup DataFlash partition handling
50327
50328 DataFlash partition information has become a mess. This patch
50329 defines a single partition scheme for Atmel DataFlashes. This partition
50330 scheme will be used by all AT91CAP9 and AT91SAM9 boards.
50331
50332 Signed-off-by: Stelian Pop <stelian@popies.net>
50333
50334 commit 9b46432fc65ce0f0826b32e4f15c15b33ccb8d42
50335 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50336 Date: Fri Mar 28 08:47:45 2008 -0500
50337
50338 ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S
50339
50340 When the version_string function in start.S is not 4-byte align,
50341 it will cause the compiler generates "unaligned opcodes detected
50342 in executable segment". This issue affects all ColdFire CPUs.
50343 By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if
50344 it is not aligned.
50345
50346 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50347 Acked-by: John Rigby <jrigby@freescale.com>
50348
50349 commit bae61eefe15b4d454060a7140e49ae58322be803
50350 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50351 Date: Tue Mar 25 15:41:15 2008 -0500
50352
50353 ColdFire: Add dspi and serial flash support for MCF5445x
50354
50355 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50356 Acked-by: John Rigby <jrigby@freescale.com>
50357
50358 commit 48ead7a7a922fceaf494e352abfab8216a41b417
50359 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50360 Date: Tue Mar 18 17:37:01 2008 -0500
50361
50362 ColdFire: Remove R5200 board
50363
50364 This board never went into production
50365
50366 Signed-off-by: Zachary P. Landau <zachary.landau@labxtechnologies.com>
50367 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50368 Acked-by: John Rigby <jrigby@freescale.com>
50369
50370 commit 545c8e0a7cd3ca9d3846668f69b0d201250abea8
50371 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
50372 Date: Thu Jan 24 14:02:32 2008 -0600
50373
50374 ColdFire: Added M5275EVB support.
50375
50376 Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
50377 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50378 Acked-by: John Rigby <jrigby@freescale.com>
50379
50380 commit f71d9d91a2cd9c30b2b6369f15c1a46c11537c2b
50381 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
50382 Date: Mon Feb 4 15:38:20 2008 -0600
50383
50384 ColdFire: Added MCF5275 cpu support.
50385
50386 Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
50387 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50388 Acked-by: John Rigby <jrigby@freescale.com>
50389
50390 commit 44e5b9edab077aba6e9b849afa4b7fbd8fd7b02b
50391 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50392 Date: Mon Mar 17 12:14:11 2008 -0500
50393
50394 ColdFire: Define bootdelay in configuration file for M52277EVB
50395
50396 Signed-off-by: Matt Wadel <Matt.Waddel@freescale.com>
50397 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50398 Acked-by: John Rigby <jrigby@freescale.com>
50399
50400 commit 77878f16cedee17161ff2336990970fffc6cea35
50401 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50402 Date: Mon Mar 17 12:09:07 2008 -0500
50403
50404 ColdFire: Fix second memory Chipselect for M5475EVB
50405
50406 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50407 Acked-by: John Rigby <jrigby@freescale.com>
50408
50409 commit 43d60642395a550956cb21d287c8cfa563913d28
50410 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50411 Date: Thu Mar 13 14:26:32 2008 -0500
50412
50413 ColdFire: Update correct FLASHBAR and RAMBAR1 for MCF5282
50414
50415 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50416 Acked-by: John Rigby <jrigby@freescale.com>
50417
50418 commit eb14ebe813a0cb5d47905228da446a5ad692473b
50419 Author: Larry Johnson <lrj@acm.org>
50420 Date: Sun Mar 30 20:33:04 2008 -0500
50421
50422 ppc4xx: Add CFG_MEM_TOP_HIDE to Denali SPD-based SDRAM setup
50423
50424 Signed-off-by: Larry Johnson <lrj@acm.org>
50425
50426 commit 02e3892021112f21067d9ed1d04ae4182725ba52
50427 Author: Stefan Roese <sr@denx.de>
50428 Date: Mon Mar 31 12:20:48 2008 +0200
50429
50430 ppc4xx: Small whitespace fix of esd patches
50431
50432 Signed-off-by: Stefan Roese <sr@denx.de>
50433
50434 commit 034394abb524785047c815f00dde8cdbdc1593c5
50435 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50436 Date: Sun Mar 30 18:52:44 2008 +0200
50437
50438 ppc4xx: Cleanup PMC440 board support
50439
50440 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50441
50442 commit a6cc6c37188d85c25d167a4515da86f48d9a583e
50443 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50444 Date: Sun Mar 30 18:52:06 2008 +0200
50445
50446 ppc4xx: Add ptm configuration variables for PMC440
50447
50448 Add support for the ptm1la, ptm1ms, ptm2la and ptm2ms
50449 environment variables.
50450
50451 Cleanup pci_target_init.
50452
50453 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50454
50455 commit 7c91f51a2fe296909147f1646a1412729dd10b1d
50456 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50457 Date: Sun Mar 30 18:01:15 2008 +0200
50458
50459 ppc4xx: Minor updates for DU440 boards
50460
50461 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50462
50463 commit d5bffeb868d6b4d462f558dac43011027b6644b7
50464 Author: Mike Frysinger <vapier@gentoo.org>
50465 Date: Tue Feb 19 00:54:20 2008 -0500
50466
50467 Blackfin: cleanup and overhaul common board init functions
50468
50469 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
50470
50471 commit b86b3416f874358acaf07519e7620cdb2145f75b
50472 Author: Mike Frysinger <vapier@gentoo.org>
50473 Date: Tue Feb 19 00:50:58 2008 -0500
50474
50475 Blackfin: cleanup lib_blackfin/cache.c
50476
50477 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
50478
50479 commit 9171fc81722c20fdb5a829a58b17c9eaadd5fb44
50480 Author: Mike Frysinger <vapier@gentoo.org>
50481 Date: Sun Mar 30 15:46:13 2008 -0400
50482
50483 Blackfin: unify cpu and boot modes
50484
50485 All of the duplicated code for Blackfin processors and boot modes have been
50486 unified. After all, the core is the same for all processors, just the
50487 peripheral set differs (which gets handled in the drivers).
50488
50489 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
50490
50491 commit 880cc4381ea8360248cddcdf87a64566745a5724
50492 Author: Stelian Pop <stelian@popies.net>
50493 Date: Wed Mar 26 22:52:35 2008 +0100
50494
50495 Fix CFG_NO_FLASH compilation.
50496
50497 Many Atmel boards have no "real" (NOR) flash on board, and rely only
50498 on DataFlash and NAND memories. This patch enables CFG_NO_FLASH to
50499 be present in a board configuration file, while still enabling flash
50500 commands like 'flinfo', 'protect', etc.
50501
50502 Signed-off-by: Stelian Pop <stelian@popies.net>
50503
50504 commit 9ce7e53abd039decea1af67aec81bbd5df7a2593
50505 Author: Mike Frysinger <vapier@gentoo.org>
50506 Date: Tue Feb 19 00:58:13 2008 -0500
50507
50508 Blackfin: BF537-stamp: cleanup spi flash driver
50509
50510 This punts the old spi flash driver for a new/generalized one until the
50511 common one can be integrated.
50512
50513 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
50514
50515 commit bb8e3cf25bc0b04936c0c1a075985dd8700a244b
50516 Author: Ben Warren <biggerbadderben@gmail.com>
50517 Date: Sun Mar 30 11:34:34 2008 -0400
50518
50519 Fix macro typo in common/cmd_mii.c
50520
50521 This typo was introduced in commit 233a8bcd94997f3f345833a3b82e836222f2a206. I
50522 actually applied the wrong patch.
50523
50524 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50525
50526 commit f1b985f2d724ccaa4d3def07917f0caaf18fa77d
50527 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50528 Date: Sun Mar 30 16:39:53 2008 +0200
50529
50530 use correct at91rm9200 register name in m501sk board
50531
50532 This fixes a naming bug for at91rm9200 lowlevel init code:
50533 NOR boot flash is on chipselect 0, not chipselect 2. This
50534 makes code use the register name from chip datasheets.
50535
50536 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50537
50538 commit 480ed1dea103a1c8f4591afc77d2de3c7868d983
50539 Author: David Brownell <david-b@pacbell.net>
50540 Date: Fri Jan 18 12:55:00 2008 -0800
50541
50542 use correct at91rm9200 register name
50543
50544 This fixes a naming bug for at91rm9200 lowlevel init code:
50545 NOR boot flash is on chipselect 0, not chipselect 2. This
50546 makes code use the register name from chip datasheets.
50547
50548 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
50549
50550 commit a3543d6dc52b0ba9c64016687cf32d600b31a476
50551 Author: David Brownell <david-b@pacbell.net>
50552 Date: Fri Jan 18 12:45:45 2008 -0800
50553
50554 add missing ARM boards to MAKEALL
50555
50556 Add some missing ARM boards to MAKEALL. These build correctly,
50557 unlike several of the boards already listed.
50558
50559 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
50560
50561 commit 066bebd6353e33af3adefc3404560871699e9961
50562 Author: Peter Pearse <peter.pearse@arm.com>
50563 Date: Sun Mar 30 11:34:09 2008 +0100
50564
50565 Bracket READ_TIMER macro in cpu/arm1136/omap24xx/interrupts.c
50566 to prevent compilation error.
50567
50568 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
50569
50570 commit 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
50571 Author: Guennadi Liakhovetski <[lg@denx.de]>
50572 Date: Sun Mar 30 11:32:30 2008 +0100
50573
50574 Support for the MX31ADS evaluation board from Freescale
50575
50576 This patch adds support for the MX31ADS evaluation board from Freescale,
50577 initialization code is copied from RedBoot sources, also provided by Freescale.
50578
50579 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
50580
50581 commit c88ae20580b2b01487b4cdcc8b2a113f551aee36
50582 Author: Sascha Hauer <s.hauer@pengutronix.de>
50583 Date: Sun Mar 30 11:32:27 2008 +0100
50584
50585 Phytec Phycore-i.MX31 support
50586
50587 This patch adds support for the Phytec Phycore-i.MX31 board
50588
50589 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
50590 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
50591
50592 commit a147e56f03871bba4f05058d5e04ce7deb010b04
50593 Author: Sascha Hauer <s.hauer@pengutronix.de>
50594 Date: Sun Mar 30 11:32:24 2008 +0100
50595
50596 mx31 litekit support
50597
50598 This patch adds support for the mx31 litekit board
50599
50600 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
50601 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
50602
50603 commit d6674e0e2a6a1f033945f78838566210d3f28c95
50604 Author: Sascha Hauer <s.hauer@pengutronix.de>
50605 Date: Sun Mar 30 11:32:21 2008 +0100
50606
50607 add SMSC LAN9x1x Network driver
50608
50609 This patch adds a driver for the following smsc network controllers:
50610 LAN9115
50611 LAN9116
50612 LAN9117
50613 LAN9215
50614 LAN9216
50615 LAN9217
50616
50617 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
50618 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
50619
50620 commit 8c8463cce44d849e37744749b32d38e1dfb12e50
50621 Author: Sascha Hauer <s.hauer@pengutronix.de>
50622 Date: Sun Mar 30 11:32:16 2008 +0100
50623
50624 add an i2c driver for mx31
50625
50626 This patch adds an i2c driver for Freescale i.MX processors
50627
50628 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
50629 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
50630
50631 commit c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
50632 Author: Sascha Hauer <s.hauer@pengutronix.de>
50633 Date: Sun Mar 30 11:30:43 2008 +0100
50634
50635 core support for Freescale mx31
50636
50637 This patch adds the core support for Freescale mx31
50638
50639 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
50640 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
50641
50642 commit 8bf69d81782619187933a605f1a95ee1d069478d
50643 Author: Sascha Hauer <s.hauer@pengutronix.de>
50644 Date: Sun Mar 30 11:28:46 2008 +0100
50645
50646 Separate omap24xx specific code from arm1136
50647
50648 Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136 to cpu/arm1136/omap24xx.
50649
50650 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
50651 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
50652
50653 commit 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
50654 Author: Peter Pearse <peter.pearse@arm.com>
50655 Date: Sun Mar 30 11:23:05 2008 +0100
50656
50657 Add pmdra into MAKEALL
50658
50659 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
50660
50661 commit a574a73852a527779234e73e17e7597fd8128882
50662 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
50663 Date: Sun Mar 30 11:21:58 2008 +0100
50664
50665 Adds support for the Prodrive PMDRA board, based on a DM6441
50666
50667 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
50668
50669 commit 1377b5583a48021d983e1fd565f7d40c89e84d63
50670 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
50671 Date: Sun Mar 30 11:11:34 2008 +0100
50672
50673 Removes all board specific code from the arch. part for DM644x (DaVinci) boards
50674
50675 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
50676
50677 commit 1704dc20917b4f71e373e2c888497ee666d40380
50678 Author: Dirk Behme <dirk.behme@gmail.com>
50679 Date: Sun Mar 30 11:09:01 2008 +0100
50680
50681 - Remove *_masked() functions as noted by Wolfgang
50682 - Adapt register naming to recent TI spec (sprue26, March 2007)
50683 - Fix reset_timer() handling
50684 - As reported by Pieter [1] the overflow fix introduced a
50685 delay of factor 16 (e.g 2 seconds became 32). While the
50686 overflow fix is basically okay, it missed to divide udelay by
50687 16, too. Fix this.
50688 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
50689 - Remove software division of timer count value (DIV(x)
50690 macro) and do it in hardware (TIM_CLK_DIV).
50691 Many thanks to Troy Kisky <troy.kisky@boundarydevices.com>
50692 and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for
50693 the hints & testing!
50694
50695 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
50696
50697 Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
50698
50699 commit ac3315c26e143c31680750c9c13f027efbcc887e
50700 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
50701 Date: Thu Mar 6 16:45:44 2008 +0100
50702
50703 new PHY @ e1000 - 2nd try
50704
50705 Add 82541ER device with latest integrated IGP2 PHY.
50706 Introduced CONFIG_E1000_FALLBACK_MAC for NIC bring-up with empty eeprom.
50707
50708 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
50709 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50710
50711 commit c2b7da552293b50c9c9e46ed71267b02c2de9ea8
50712 Author: Daniel Hellstrom <daniel@gaisler.com>
50713 Date: Fri Mar 28 20:22:53 2008 +0100
50714
50715 SPARC/LEON3: Added GRETH Ethernet 10/100/1000 driver.
50716
50717 GRETH is an Ethernet 10/100 or 10/100/1000 MAC with out without
50718 a debug link (EDCL). The GRETH core is documented in GRIP.pdf
50719 available at www.gaisler.com.
50720
50721 If the GRETH has GigaBit support (GBIT, Scatter gather, checksum
50722 offloading etc.) can be determined by a bit in the control register.
50723 The GBIT MAC is supported by operating in GRTEH 10/100 legacy mode.
50724
50725 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50726 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50727
50728 commit 233a8bcd94997f3f345833a3b82e836222f2a206
50729 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
50730 Date: Mon Mar 17 17:08:22 2008 -0500
50731
50732 Add CONFIG_MII_INIT in cmd_mii.c
50733
50734 Provide common configuration in do_mii() to execute mii_init()
50735 for all cpu architectures
50736
50737 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50738 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50739
50740 commit f605479de2deb11e834f31dfdb0af107c86aced6
50741 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
50742 Date: Mon Mar 17 17:08:16 2008 -0500
50743
50744 ColdFire: Fix FEC transmit issue for MCF5275
50745
50746 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50747 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50748
50749 commit d9a2f416d6ac6058cd7845033ae4dc32ef1c0746
50750 Author: Aras Vaichas <arasv@magtech.com.au>
50751 Date: Wed Mar 26 09:43:57 2008 +1100
50752
50753 DHCP request fix for Windows Server 2003
50754
50755 Added option CONFIG_BOOTP_DHCP_REQUEST_DELAY. This provides an optional
50756 delay before sending "DHCP Request" in net/bootp.c. Required to overcome
50757 interoperability problems with Windows Server 200x DHCP server when U-Boot
50758 client responds too fast for server to handle.
50759
50760 Signed-off-by: Aras Vaichas <arasv@magtech.com.au>
50761 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50762
50763 commit 97bf85d784fbed485e652eb907589ad0d5cb7262
50764 Author: Daniel Hellstrom <daniel@gaisler.com>
50765 Date: Fri Mar 28 20:40:19 2008 +0100
50766
50767 MTD/CFI: flash_read64 is defined a weak function (for SPARC)
50768
50769 SPARC has implemented __raw_readq, it reads 64-bit from any 32-bit address.
50770 SPARC CPUs implement flash_read64 which calls __raw_readq.
50771
50772 For current SPARC architectures (LEON2 and LEON3) each read from the
50773 FLASH must lead to a cache miss. This is because FLASH can not be set
50774 non-cacheable since program code resides there, and alternatively disabling
50775 cache is poor from performance view, or doing a cache flush between each
50776 read is even poorer.
50777
50778 Forcing a cache miss on a SPARC is done by a special instruction "lda" -
50779 load alternative space, the alternative space number (ASI) is processor
50780 implementation spcific and can be found by including <asm/processor.h>.
50781
50782 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50783
50784 commit 70431e8a7393b6b793f77957f95b999fc9a269b8
50785 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
50786 Date: Fri Mar 28 15:41:25 2008 +0100
50787
50788 Make MPC83xx one step closer to full relocation.
50789
50790 Remove a few absolute references to CFG_MONITOR_BASE for ppc/mpc83xx
50791 and use GOT relative reference.
50792
50793 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
50794 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50795
50796 commit 5b2793a3f3de34d439232b05acc8af67a028fd35
50797 Author: Michael Barkowski <michael.barkowski@freescale.com>
50798 Date: Thu Mar 27 14:34:43 2008 -0400
50799
50800 mpc8323erdb: fix EEPROM page size and get MAC from EEPROM
50801
50802 This patch fixes eeprom page size so that you can now write more than
50803 64 bytes at a time.
50804
50805 It also makes the board take MAC addresses, if found, from EEPROM.
50806
50807 User should place up to 4 addresses at offset 0x7f00, for
50808 eth{,1,2,3}addr. Any unused addresses should be zero. This group of
50809 four six-byte values should have it's CRC at the end. crc32 and
50810 eeprom commands can be used to accomplish this.
50811
50812 If CRC fails, MAC addresses come from the environment. If CRC
50813 succeeds, the environment is overwritten at startup.
50814
50815 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
50816 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50817
50818 commit 8f325cff31f6e745e6540014b131b9a97f61944c
50819 Author: Michael Barkowski <michael.barkowski@freescale.com>
50820 Date: Fri Mar 28 15:15:38 2008 -0400
50821
50822 mpc8323erdb: define CONFIG_PCI_SKIP_HOST_BRIDGE
50823
50824 Commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2 broke the onboard USB
50825 controller on the PCI bus in Linux on the MPC8323ERDB.
50826
50827 This fixes it by defining CONFIG_PCI_SKIP_HOST_BRIDGE in the board's
50828 config file.
50829
50830 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
50831 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50832
50833 commit e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9
50834 Author: Kim Phillips <kim.phillips@freescale.com>
50835 Date: Fri Mar 28 10:19:07 2008 -0500
50836
50837 mpc83xx: cleanup System Part and Revision ID Register (SPRIDR) code
50838
50839 in the spirit of commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6,
50840 85xx's "Update SVR numbers to expand support", simplify SPRIDR processing
50841 and processor ID display. Add REVID_{MAJ,MIN}OR macros to make
50842 REVID dependent code simpler. Also added PARTID_NO_E and IS_E_PROCESSOR
50843 convenience macros.
50844
50845 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50846
50847 commit 81fd52c6c8fd19f0b7856b98217ce37c46c521af
50848 Author: Kim Phillips <kim.phillips@freescale.com>
50849 Date: Fri Mar 28 10:18:53 2008 -0500
50850
50851 mpc83xx: display ddr frequency in board_add_ram_info banner
50852
50853 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50854
50855 commit 35cf155c5ec1ceab2849fa5b6aa3d9a3e9e6f482
50856 Author: Kim Phillips <kim.phillips@freescale.com>
50857 Date: Fri Mar 28 10:18:40 2008 -0500
50858
50859 mpc83xx: unreinvent mem_clk
50860
50861 delete ddr_clk and use mem_clk instead. Rename other ddr_*_clk to
50862 mem_*_clk for consistency's sake.
50863
50864 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50865
50866 commit 730e792926ca3fe4dd1b734a3bf44e55afa6f536
50867 Author: Kim Phillips <kim.phillips@freescale.com>
50868 Date: Fri Mar 28 14:31:23 2008 -0500
50869
50870 mpc83xx: enable the SATA interface on mpc8315 rdb and mpc837x rdb boards
50871
50872 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50873
50874 commit 2eeb3e4fc54ef2f5d574dafd42c6ce93afa30393
50875 Author: Dave Liu <r63238@freescale.com>
50876 Date: Wed Mar 26 22:57:19 2008 +0800
50877
50878 mpc83xx: enable the SATA interface on mpc837xemds board
50879
50880 Enable the first two SATA interfaces on MPC837xEMDS board,
50881 The two SATA ports are on LYNX1. (SATA0/1 on J4/5)
50882
50883 Signed-off-by: Dave Liu <daveliu@freescale.com>
50884 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50885
50886 commit 6f8c85e8d1865730c158d9ef5a06c70c3a10600a
50887 Author: Dave Liu <r63238@freescale.com>
50888 Date: Wed Mar 26 22:56:36 2008 +0800
50889
50890 mpc83xx: initialize serdes for MPC837xEMDS boards
50891
50892 This patch is stolen from Anton Vorontsov's patch
50893 for mpc837xerdb boards.
50894
50895 The reference clk and xcorevdd voltage of serdes1/2
50896 is same between mpc837xemds and mpc837xerdb.
50897
50898 8377E: LYNX1- 2 SATA LYNX2- 2 PCIE
50899 8378E: LYNX1- 2 SGMII LYNX2- 2 PCIE
50900 8379E: LYNX1- 2 SATA LYNX2- 2 SATA
50901
50902 Signed-off-by: Dave Liu <daveliu@freescale.com>
50903 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50904
50905 commit cc8e839abc80887ae832767b5930d40edd6d7eb7
50906 Author: Stefan Roese <sr@denx.de>
50907 Date: Fri Mar 28 14:09:04 2008 +0100
50908
50909 ppc4xx: Canyonlands: Print SATA/PCIe configuration and board revision
50910
50911 Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
50912 interface. This usage can be configured with the jumper J6. This patch
50913 displays the current configuration upon bootup and changes the PCIe
50914 init loop, to only initialize the availabel PCIe slots.
50915
50916 Signed-off-by: Stefan Roese <sr@denx.de>
50917
50918 commit 90447ecbbac8572457b6d8903073ac3f120995ba
50919 Author: Tor Krill <tor@excito.com>
50920 Date: Fri Mar 28 11:29:10 2008 +0100
50921
50922 MTD/CFI: Add support for 16bit legacy AMD flash
50923
50924 Add entry for 512Kx16 AMD flash to jedec_table.
50925 Read out 16bit device id if chipwidth is 16bit.
50926 Fixed coding style after Stefans feedback
50927
50928 Signed-off-by: Tor Krill <tor@excito.com>
50929
50930 commit 5e12e75d17c4b15a310a45cd78fe71b7698a8a8e
50931 Author: Stefan Roese <sr@denx.de>
50932 Date: Fri Mar 28 11:02:53 2008 +0100
50933
50934 ppc: Small change to CFG_MEM_TOP_HIDE description
50935
50936 Signed-off-by: Stefan Roese <sr@denx.de>
50937
50938 commit 280df59a8d62c6e74c281b1cb7e2052df4d6cb00
50939 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50940 Date: Thu Mar 27 15:44:12 2008 +0900
50941
50942 sh: Add support stat structure and stat.h
50943
50944 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50945
50946 commit 4be9eb789e72b845d6693cc36b70a0b3529b3f09
50947 Author: Mark Jonas <toertel@gmail.com>
50948 Date: Sat Mar 22 19:27:52 2008 +0100
50949
50950 sh: Removed warning when compiling drivers/serial/serial_sh.c.
50951
50952 Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
50953 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50954
50955 commit f309fa38929ffba71230c02330ffa42f4bba6333
50956 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50957 Date: Wed Mar 12 18:02:57 2008 +0900
50958
50959 sh: Remove disable_ctrlc function from R7780MP
50960
50961 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50962
50963 commit 6f4b266ff2a4fcc2bff985d6a217852469afddb3
50964 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50965 Date: Wed Mar 12 17:55:15 2008 +0900
50966
50967 sh: Add maintainer of R7780MP to MAINTAINER file
50968
50969 Update MAINTAINER entry for R7780MP. And fix maintainer's name.
50970
50971 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50972
50973 commit f5e2466f7baa887a7df0c536333eea8231333497
50974 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50975 Date: Tue Mar 25 17:11:24 2008 +0900
50976
50977 sh: Add support Renesas Solutions R2D plus board
50978
50979 R2D plus is SH reference board used with SH7751R.
50980 This board has 266Mhz CPU, 64MB SDRAM, Cardbus, CF interface,
50981 one PCI bus, VGA, and two Ethernet controller.
50982
50983 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50984
50985 commit e92c95180bb5bc5fd4051598a9d60beaba48988d
50986 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50987 Date: Wed Mar 12 12:15:29 2008 +0900
50988
50989 sh: Add support SH4 cache control
50990
50991 Add support SH4 cache control and flash_cache function
50992
50993 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50994
50995 commit 28e5efde4d925fcb34901d0030d0648de2da7e89
50996 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
50997 Date: Mon Mar 24 01:53:01 2008 +0900
50998
50999 sh: Add support PCI host driver for SH7751/SH7751R
51000
51001 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51002
51003 commit ab8f4d40d069cd3cbe7563ddfe3e5f03b0c7c721
51004 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51005 Date: Mon Mar 24 02:11:26 2008 +0900
51006
51007 sh: Move SuperH PCI driver from cpu/sh4 to drivers/pci
51008
51009 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51010
51011 commit 566933278101c144d75361ea682678a326c1290d
51012 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51013 Date: Wed Mar 12 12:10:28 2008 +0900
51014
51015 sh: Add support SuperH SH7751/SH7751R
51016
51017 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51018
51019 commit 3313e0e26224fc9a0c445124f3455058c696df84
51020 Author: Mark Jonas <toertel@gmail.com>
51021 Date: Mon Mar 10 11:37:10 2008 +0100
51022
51023 sh: Added support for SH7720 based board MPR2.
51024
51025 Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
51026 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51027
51028 commit 3ecff1d70ae93e628fe65b3fe1fc7c9c76cdf99f
51029 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51030 Date: Thu Mar 6 14:05:53 2008 +0900
51031
51032 sh: Fix receive FIFO level register of SH4A
51033
51034 Receive FIFO level register is different in SH4A.
51035 Because register is different, cannot occasionally receive data.
51036
51037 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51038
51039 commit c133c1fb0b590662206b0eba70f4478ee0300a9a
51040 Author: Yusuke Goda <goda.yusuke@renesas.com>
51041 Date: Tue Mar 11 12:55:12 2008 +0900
51042
51043 sh: Add support Renesas Solutions R7780MP
51044
51045 Renesas Solutions R7780MP is a reference board on SH7780.
51046 This board has serial, 10/100 base Ethernet deivice, CF slot
51047 and VGA devices. This board can set extension board.
51048 Extension board has 10/100/1000 base Ethernet device, PCI slot,
51049 S-ATA, iDVR slot.
51050
51051 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
51052 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51053
51054 commit 1a2334a4eb6386d7cd35d9de5fa39af2c764ad28
51055 Author: Yusuke Goda <goda.yusuke@renesas.com>
51056 Date: Wed Mar 5 14:30:02 2008 +0900
51057
51058 sh: Add support PCI of SuperH and SH7780
51059
51060 This patch add support PCI of SuperH base code and SH7780 specific code.
51061
51062 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
51063 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51064
51065 commit b55523efff2ae11f0b9ae3cc405893c32eb78156
51066 Author: Yusuke Goda <goda.yusuke@renesas.com>
51067 Date: Wed Mar 5 14:23:26 2008 +0900
51068
51069 sh: Add support SH7780
51070
51071 SH7780 is CPU of Renesas Technology.
51072 This CPU has
51073 - CPU clock 400MHz
51074 - PCI support
51075 - DDR-SDRAM controller
51076 - etc ...
51077
51078 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
51079 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51080
51081 commit c2042f5952a686c414031309b8f244513bf578f0
51082 Author: goda.yusuke <goda.yusuke@renesas.com>
51083 Date: Fri Jan 25 20:46:36 2008 +0900
51084
51085 sh: Add support Renesas Solutions Migo-R board
51086
51087 Migo-R is a board based on SH7722 and has may devices.
51088 In this patch, supported SCIF, NOR flash and Ethernet.
51089
51090 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
51091 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51092
51093 commit 74d1e66d22dac91388bc538b2fe19f735edc5b82
51094 Author: Bartlomiej Sieka <tur@semihalf.com>
51095 Date: Thu Mar 27 15:06:40 2008 +0100
51096
51097 Fix host tool build breakage, take two
51098
51099 Revert commit 87c8431f and fix build breakage so that the build continues
51100 to work on FC systems.
51101
51102 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
51103
51104 commit 7e4a0d25ed18f6437bdf59ebfa49bb0edc2f24e6
51105 Author: Stefan Roese <sr@denx.de>
51106 Date: Wed Mar 19 09:36:47 2008 +0100
51107
51108 ppc4xx: Enable ECC on LWMON5
51109
51110 Since all ECC related problems seem to be resolved on LWMON5, this patch
51111 now enables ECC support.
51112
51113 We have to write the ECC bytes by zeroing and flushing in smaller
51114 steps, since the whole 256MByte takes too long for the external
51115 watchdog.
51116
51117 Signed-off-by: Stefan Roese <sr@denx.de>
51118
51119 commit 6433fa202a91a6594dd48f06807ac38ba27fa0bb
51120 Author: Larry Johnson <lrj@acm.org>
51121 Date: Mon Mar 17 11:10:35 2008 -0500
51122
51123 ppc4xx: Updates to Korat-specific code
51124
51125 This patch contains updates for changes for the Korat PPC440EPx board.
51126 These changes include:
51127
51128 (1) Support for "permanent" and "upgradable" copies of U-Boot, as
51129 described in the new "doc/README.korat" file;
51130
51131 (2) a new memory map for the registers in the board's CPLD;
51132
51133 (3) a revised format for manufacturer's data in serial EEPROM; and
51134
51135 (4) changes to track updates to U-Boot for the Sequoia board.
51136
51137 Signed-off-by: Larry Johnson <lrj@acm.org>
51138
51139 commit f766cdf89b3a2a7634b8c5869f606150e332036c
51140 Author: Markus Brunner <super.firetwister@gmail.com>
51141 Date: Thu Mar 27 10:46:25 2008 +0100
51142
51143 ppc4xx: PPC405EP Set EMAC noise filter bits
51144
51145 This bug was introduced with commit aee747f19b460a0e9da20ff21e90fdaac1cec359
51146 which enabled CFG_4xx_GPIO_TABLE for PPC405 and unintentionally
51147 disabled the setting of the emac noise filter bits for PPC405EP when CFG_4xx_GPIO_TABLE is set.
51148
51149 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
51150 Signed-off-by: Stefan Roese <sr@denx.de>
51151
51152 commit f66e2c8b25c04b79e5fb385bc8989c2de7f63991
51153 Author: Mike Nuss <mike@terascala.com>
51154 Date: Wed Feb 20 11:54:20 2008 -0500
51155
51156 ppc4xx: Reconfigure PLL for 667MHz processor for PPC440EPx
51157
51158 On PPC440EPx without a bootstrap I2C EEPROM, the PLL can be reconfigured
51159 after startup to change the speed of the clocks. This patch adds the
51160 option CFG_PLL_RECONFIG. If this option is set to 667, the CPU
51161 initialization code will reconfigure the PLL to run the system with a CPU
51162 frequency of 667MHz and PLB frequency of 166MHz, without the need for an
51163 external EEPROM.
51164
51165 Signed-off-by: Mike Nuss <mike@terascala.com>
51166 Acked-by: Stefan Roese <sr@denx.de>
51167
51168 commit 87c8431fe24d48121f053fe67cff4ccfe097d4d1
51169 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51170 Date: Thu Mar 27 09:12:40 2008 +0100
51171
51172 new-image: Fix host tool build breakage
51173
51174 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51175
51176 commit 6fb4b640562a10daff0dbe537638d511b5b48650
51177 Author: Stefan Roese <sr@denx.de>
51178 Date: Thu Mar 27 10:24:03 2008 +0100
51179
51180 ppc: Set CFG_MEM_TOP_HIDE to 0 if not already defined
51181
51182 Signed-off-by: Stefan Roese <sr@denx.de>
51183
51184 commit 9462732a3ec551c11862450902cd8ee1bedea6d9
51185 Author: Stefan Roese <sr@denx.de>
51186 Date: Wed Mar 19 10:23:43 2008 +0100
51187
51188 ppc4xx: Add fdt support to Prodrive alpr
51189
51190 Since this board will probably be ported to arch/powerpc in the
51191 near future, we add device tree support now. This way we are
51192 "ready" for arch/powerpc from now on.
51193
51194 Signed-off-by: Stefan Roese <sr@denx.de>
51195
51196 commit 511e4f9e7f7b6719e4d91d7f0fc89412b13b5150
51197 Author: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
51198 Date: Mon Mar 17 09:27:56 2008 +0100
51199
51200 ppc4xx: Enable cache support on the ALPR board
51201
51202 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
51203
51204 commit 14f73ca679f6fdb44cff0b7304d419db41a0ab69
51205 Author: Stefan Roese <sr@denx.de>
51206 Date: Wed Mar 26 10:14:11 2008 +0100
51207
51208 ppc: Add CFG_MEM_TOP_HIDE option to hide memory area that doesn't get "touched"
51209
51210 If CFG_MEM_TOP_HIDE is defined in the board config header, this specified
51211 memory area will get subtracted from the top (end) of ram and won't get
51212 "touched" at all by U-Boot. By fixing up gd->ram_size the Linux kernel
51213 should gets passed the now "corrected" memory size and won't touch it
51214 either. This should work for arch/ppc and arch/powerpc. Only Linux board
51215 ports in arch/powerpc with bootwrapper support, which recalculate the
51216 memory size from the SDRAM controller setup, will have to get fixed
51217 in Linux additionally.
51218
51219 This patch enables this config option on some PPC440EPx boards as a workaround
51220 for the CHIP 11 errata. Here the description from the AMCC documentation:
51221
51222 CHIP_11: End of memory range area restricted access.
51223 Category: 3
51224
51225 Overview:
51226 The 440EPx DDR controller does not acknowledge any
51227 transaction which is determined to be crossing over the
51228 end-of-memory-range boundary, even if the starting address is
51229 within valid memory space. Any such transaction from any PLB4
51230 master will result in a PLB time-out on PLB4 bus.
51231
51232 Impact:
51233 In case of such misaligned bursts, PLB4 masters will not
51234 retrieve any data at all, just the available data up to the
51235 end of memory, especially the 440 CPU. For example, if a CPU
51236 instruction required an operand located in memory within the
51237 last 7 words of memory, the DCU master would burst read 8
51238 words to update the data cache and cross over the
51239 end-of-memory-range boundary. Such a DCU read would not be
51240 answered by the DDR controller, resulting in a PLB4 time-out
51241 and ultimately in a Machine Check interrupt. The data would
51242 be inaccessible to the CPU.
51243
51244 Workaround:
51245 Forbid any application to access the last 256 bytes of DDR
51246 memory. For example, make your operating system believe that
51247 the last 256 bytes of DDR memory are absent. AMCC has a patch
51248 that does this, available for Linux.
51249
51250 This patch sets CFG_MEM_TOP_HIDE for the following 440EPx boards:
51251 lwmon5, korat, sequoia
51252
51253 The other remaining 440EPx board were intentionally not included
51254 since it is not clear to me, if they use the end of ram for some
51255 other purpose. This is unclear, since these boards have CONFIG_PRAM
51256 defined and even comments like this:
51257
51258 PMC440.h:
51259 /* esd expects pram at end of physical memory.
51260 * So no logbuffer at the moment.
51261 */
51262
51263 It is strongly recommended to not use the last 256 bytes on those
51264 boards too. Patches from the board maintainers are welcome.
51265
51266 Signed-off-by: Stefan Roese <sr@denx.de>
51267
51268 commit c664bf8c3c9bb9e236891f0d8dfda883e86d159b
51269 Author: Stefan Roese <sr@denx.de>
51270 Date: Thu Mar 27 10:09:05 2008 +0100
51271
51272 ppc4xx: Fix Canyonlands linker script (remove bogus ASSERT)
51273
51274 Signed-off-by: Stefan Roese <sr@denx.de>
51275
51276 commit d56a3ce179688cde61073a3690e21703d68fafd7
51277 Author: Stefan Roese <sr@denx.de>
51278 Date: Tue Mar 25 17:51:13 2008 +0100
51279
51280 ppc4xx: Correctly pass phyiscal FLASH base address into dtb
51281
51282 The routine ft_board_setup() configures the EBC NOR mappings for the
51283 Linux physmap_of driver. Since on 460EX/GT we remap the FLASH from
51284 0x4.fc00.0000 to 0x4.cc00.0000 because of the max. 16MByte boot-CS
51285 problem, we need to pass the corrected address here too.
51286
51287 Signed-off-by: Stefan Roese <sr@denx.de>
51288
51289 commit 9ad31989de12ce5c67b07c4867ead47465655c4b
51290 Author: Stefan Roese <sr@denx.de>
51291 Date: Wed Mar 19 16:35:12 2008 +0100
51292
51293 ppc4xx: Fix compilation warning in 4xx_enet.c
51294
51295 Signed-off-by: Stefan Roese <sr@denx.de>
51296
51297 commit 4c9e855734c523900322a7c3cdd9099b4f51b51d
51298 Author: Stefan Roese <sr@denx.de>
51299 Date: Wed Mar 19 16:20:49 2008 +0100
51300
51301 ppc4xx: Add AMCC Glacier 406GT eval board support
51302
51303 This patch adds support for the AMCC Glacier 460GT eval board.
51304 The main difference to the Canyonlands board are listed here:
51305
51306 - 4 ethernet ports instead of 2
51307 - no SATA port
51308 - no USB port
51309
51310 Currently EMAC2+3 are not working. This will be fixed in a later
51311 release.
51312
51313 Signed-off-by: Stefan Roese <sr@denx.de>
51314
51315 commit d8bd643141af4710d7f1b69bbab6b760de0af0a1
51316 Author: Stefan Roese <sr@denx.de>
51317 Date: Thu Mar 27 08:47:26 2008 +0100
51318
51319 ppc4xx: Mask 'vec' with 0x1f in uic_interrupt() for bit set/clear
51320
51321 Signed-off-by: Stefan Roese <sr@denx.de>
51322
51323 commit b9670dd85be6e0496ef2e231043c23cad9b1d903
51324 Author: Anatolij Gustschin <agust@denx.de>
51325 Date: Wed Mar 26 21:05:43 2008 +0100
51326
51327 Fix out of tree building issue
51328
51329 Currently U-Boot building in some external directory
51330 doesn't work. This patch tries to fix the problem.
51331
51332 Signed-off-by: Anatolij Gustschin <agust@denx.de>
51333
51334 commit d4ee711d8a5c366ee3f857c26b927d12e66614ff
51335 Author: Anatolij Gustschin <agust@denx.de>
51336 Date: Wed Mar 26 18:13:33 2008 +0100
51337
51338 README: update documentation (availability, links, etc.)
51339
51340 Fix typo in README
51341
51342 Signed-off-by: Anatolij Gustschin <agust@denx.de>
51343
51344 commit e813eae3bfeba9c0bda9d1bf9fc3d081f790972f
51345 Author: Anatolij Gustschin <agust@denx.de>
51346 Date: Wed Mar 26 17:47:44 2008 +0100
51347
51348 Fix compilation error in cmd_usb.c
51349
51350 This patch fixes compilation error
51351 cmd_usb.c: In function 'do_usb':
51352 cmd_usb.c:552: error: void value not ignored as it ought to be
51353
51354 Signed-off-by: Anatolij Gustschin <agust@denx.de>
51355
51356 commit d8c82db482d6b535d12b419d6440b88bf7091c9b
51357 Author: Timur Tabi <timur@freescale.com>
51358 Date: Fri Mar 14 17:45:29 2008 -0500
51359
51360 Add support for setting the I2C bus speed in fsl_i2c.c
51361
51362 Add support to the Freescale I2C driver (fsl_i2c.c) for setting and querying
51363 the I2C bus speed. Current 8[356]xx boards define the CFG_I2C_SPEED macro,
51364 but fsl_i2c.c ignores it and uses conservative value when programming the
51365 I2C bus speed.
51366
51367 Signed-off-by: Timur Tabi <timur@freescale.com>
51368 Acked-by: Andy Fleming <afleming@freescale.com>
51369
51370 commit d049cc7f71c0d875e8f5099d1ed23666a82b8f8e
51371 Author: Wolfgang Denk <wd@denx.de>
51372 Date: Thu Mar 27 00:03:57 2008 +0100
51373
51374 Coding style cleanup, update CHANGELOG
51375
51376 Signed-off-by: Wolfgang Denk <wd@denx.de>
51377
51378 commit fd0b1fe3c388a77e8fe00cdd930ca317a91198d4
51379 Author: Dave Liu <r63238@freescale.com>
51380 Date: Wed Mar 26 22:55:32 2008 +0800
51381
51382 drivers: add the support for Freescale SATA controller
51383
51384 Add the Freescale on-chip SATA controller driver to u-boot,
51385 The SATA controller is used on the 837x and 8315 targets,
51386 The driver can be used to load kernel, fs and dtb.
51387
51388 The features list:
51389 - 1.5/3 Gbps link speed
51390 - LBA48, LBA28 support
51391 - DMA and FPDMA support
51392 - Two ports support
51393
51394 Signed-off-by: Dave Liu <daveliu@freescale.com>
51395
51396 commit bede87f4c87c3ccd868cc60ebf792e0560c6d024
51397 Author: Dave Liu <r63238@freescale.com>
51398 Date: Wed Mar 26 22:54:44 2008 +0800
51399
51400 ata: add the readme for SATA command line
51401
51402 Signed-off-by: Dave Liu <daveliu@freescale.com>
51403
51404 commit cd54081cd479e542fc399b8a40651ff11a1ad849
51405 Author: Dave Liu <r63238@freescale.com>
51406 Date: Wed Mar 26 22:53:24 2008 +0800
51407
51408 ata: enable the sata initialize on boot up
51409
51410 Signed-off-by: Dave Liu <daveliu@freescale.com>
51411
51412 commit 69386383c5c2b323c66495b0b0cef6a9714d83bf
51413 Author: Dave Liu <r63238@freescale.com>
51414 Date: Wed Mar 26 22:52:36 2008 +0800
51415
51416 ata: add the fis struct for SATA
51417
51418 Signed-off-by: Dave Liu <daveliu@freescale.com>
51419
51420 commit ffc664e80dfb2e17de0df5ad39e91a02e9c361bc
51421 Author: Dave Liu <r63238@freescale.com>
51422 Date: Wed Mar 26 22:51:44 2008 +0800
51423
51424 ata: add the libata support
51425
51426 add simple libata support in u-boot
51427
51428 Signed-off-by: Dave Liu <daveliu@freescale.com>
51429
51430 commit 8e9bb43429e50df55fa41932cbe65841ff579220
51431 Author: Dave Liu <r63238@freescale.com>
51432 Date: Wed Mar 26 22:50:45 2008 +0800
51433
51434 ata: make the ata_piix driver using new SATA framework
51435
51436 original ata_piix driver is using IDE framework, not real
51437 SATA framework. For now, the ata_piix driver is only used
51438 by x86 sc520_cdp board. This patch makes the ata_piix driver
51439 use the new SATA framework, so
51440
51441 - remove the duplicated command stuff
51442 - remove the CONFIG_CMD_IDE define in the sc520_cdp.h
51443 - add the CONFIG_CMD_SATA define to sc520_cdp.h
51444
51445 Signed-off-by: Dave Liu <daveliu@freescale.com>
51446
51447 commit c7057b529c3c3cb9c0ac9060686a4068f1491bbe
51448 Author: Dave Liu <r63238@freescale.com>
51449 Date: Wed Mar 26 22:49:44 2008 +0800
51450
51451 ata: add the support for SATA framework
51452
51453 - add the SATA framework
51454 - add the SATA command line
51455
51456 Signed-off-by: Dave Liu <daveliu@freescale.com>
51457
51458 commit 83c7f470a4ce94f33600f11ae85ce4dcf00aa90c
51459 Author: Dave Liu <r63238@freescale.com>
51460 Date: Wed Mar 26 22:48:18 2008 +0800
51461
51462 ata: merge the header of ata_piix driver
51463
51464 move the sata.h from include/ to drivers/block/ata_piix.h
51465
51466 Signed-off-by: Dave Liu <daveliu@freescale.com>
51467
51468 commit 9eef62804d9695425b24c87b46a61a7fa74afee0
51469 Author: Dave Liu <r63238@freescale.com>
51470 Date: Wed Mar 26 22:47:06 2008 +0800
51471
51472 ata: merge the ata_piix driver
51473
51474 move the cmd_sata.c from common/ to drivers/ata_piix.c,
51475 the cmd_sata.c have some part of ata_piix controller drivers.
51476 consolidate the driver to have better framework.
51477
51478 Signed-off-by: Dave Liu <daveliu@freescale.com>
51479
51480 commit b9e749e95354f33eb5dc6653c6db7d502adb95fe
51481 Author: Markus Klotzbuecher <mk@denx.de>
51482 Date: Wed Mar 26 18:26:43 2008 +0100
51483
51484 USB, Storage: fix a bug introduced in commit
51485 f6b44e0e4d18fe507833a0f76d24a9aa72c123f1 that will cause usb_stor_info
51486 to only print only information on one storage device, but not for
51487 multiple.
51488
51489 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
51490
51491 commit 841e5edd1623f3fecb6bffc5c2f938ed7a947360
51492 Author: Anatolij Gustschin <agust@denx.de>
51493 Date: Wed Mar 26 17:47:44 2008 +0100
51494
51495 Fix compilation error in cmd_usb.c
51496
51497 This patch fixes compilation error
51498 cmd_usb.c: In function 'do_usb':
51499 cmd_usb.c:552: error: void value not ignored as it ought to be
51500
51501 Signed-off-by: Anatolij Gustschin <agust@denx.de>
51502 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
51503
51504 commit dd6c910aadf27c822f17b87eae1a9bd0b2e3aa15
51505 Author: Kumar Gala <galak@kernel.crashing.org>
51506 Date: Wed Mar 26 08:53:53 2008 -0500
51507
51508 85xx: Add cpu_mp_lmb_reserve helper to reserve boot page
51509
51510 Provide a board_lmb_reserve helper function to ensure we reserve
51511 the page of memory we are using for the boot page translation code.
51512
51513 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51514
51515 commit 79679d80021ab095e639e250ca472fe526da02e2
51516 Author: Kumar Gala <galak@kernel.crashing.org>
51517 Date: Wed Mar 26 08:34:25 2008 -0500
51518
51519 85xx: Update multicore boot mechanism to ePAPR v0.81 spec
51520
51521 The following changes are needed to be inline with ePAPR v0.81:
51522
51523 * r4, r5 and now always set to 0 on boot release
51524 * r7 is used to pass the size of the initial map area (IMA)
51525 * EPAPR_MAGIC value changed for book-e processors
51526 * changes in the spin table layout
51527 * spin table supports a 64-bit physical release address
51528
51529 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51530
51531 commit 25eedb2c1958a13110c7de1fc809b624053cc69c
51532 Author: Jon Loeliger <jdl@freescale.com>
51533 Date: Wed Mar 19 15:02:07 2008 -0500
51534
51535 FSL: Clean up board/freescale/common/Makefile
51536
51537 Each file that can be built here now follows some
51538 CONFIG_ option so that they are appropriately built
51539 or not, as needed. And CONFIG_ defines were added
51540 to various board config files to make sure that happens.
51541
51542 The other board/freescale/*/Makefiles no longer need
51543 to reach up and over into ../common to build their
51544 individually needed files any more.
51545
51546 Boards that are CDS specific were renamed with cds_ prefix.
51547
51548 Signed-off-by: Jon Loeliger <jdl@freescale.com>
51549
51550 commit a5af4b358a7caa9c0aa374d4d894bf762ec37669
51551 Author: Kumar Gala <galak@kernel.crashing.org>
51552 Date: Wed Feb 27 22:00:27 2008 -0600
51553
51554 85xx: Fix merge duplication
51555
51556 ft_fixup_cpu() got duplicated in some merge snafu. Remove the duplicate.
51557
51558 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51559
51560 commit 5893b3d0a4084f87a06a5d3dc03db91206818941
51561 Author: James Yang <James.Yang@freescale.com>
51562 Date: Tue Feb 12 16:35:07 2008 -0600
51563
51564 85xx: Expand CCSR space with more DDR controller registers.
51565
51566 Signed-off-by: James Yang <James.Yang@freescale.com>
51567 Signed-off-by: Jon Loeliger <jdl@freescale.com>
51568 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51569
51570 commit a3e77fa5359b3f9f59e4e946b46d57a53057cc85
51571 Author: James Yang <James.Yang@freescale.com>
51572 Date: Fri Feb 8 18:05:08 2008 -0600
51573
51574 85xx: Speed up get_ddr_freq() and get_bus_freq()
51575
51576 get_ddr_freq() and get_bus_freq() used get_sys_info() each time they were
51577 called. However, get_sys_info() recalculates extraneous information when
51578 called each time. Have get_ddr_freq() and get_bus_freq() return memoized
51579 values from global_data instead.
51580
51581 Signed-off-by: James Yang <James.Yang@freescale.com>
51582 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51583
51584 commit e9ea679918fbc9a53fa2f2a904aac874ea736036
51585 Author: James Yang <James.Yang@freescale.com>
51586 Date: Fri Feb 8 16:46:27 2008 -0600
51587
51588 85xx: Show DDR memory data rate in addition to the memory clock frequency.
51589
51590 Show the DDR memory data rate in addition to the memory clock
51591 frequency. For DDR/DDR2 memories the memory data rate is 2x the
51592 memory clock.
51593
51594 Signed-off-by: James Yang <James.Yang@freescale.com>
51595 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51596
51597 commit 591933ca6eabc440e6ed6967233aaf56fce464a3
51598 Author: James Yang <James.Yang@freescale.com>
51599 Date: Fri Feb 8 16:44:53 2008 -0600
51600
51601 85xx: get_tbclk() speed up and rounding fix
51602
51603 Speed up get_tbclk() by referencing pre-computed bus clock
51604 frequency value from global data instead of sys_info_t. Fix
51605 rounding of result to nearest; previously it was rounding
51606 upwards.
51607
51608 Signed-off-by: James Yang <James.Yang@freescale.com>
51609 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51610
51611 commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6
51612 Author: Andy Fleming <afleming@freescale.com>
51613 Date: Wed Feb 6 01:19:40 2008 -0600
51614
51615 Update SVR numbers to expand support
51616
51617 FSL has taken to using SVR[16:23] as an SOC sub-version field. This
51618 is used to distinguish certain variants within an SOC family. To
51619 account for this, we add the SVR_SOC_VER() macro, and update the SVR_*
51620 constants to reflect the larger value. We also add SVR numbers for all
51621 of the current variants. Finally, to make things neater, rather than
51622 use an enormous switch statement to print out the CPU type, we create
51623 and array of SVR/name pairs (using a macro), and print out the CPU name
51624 that matches the SVR SOC version.
51625
51626 Signed-off-by: Andy Fleming <afleming@freescale.com>
51627
51628 commit b83eef440cf3cef816172ccbb5897ccd8e403cf3
51629 Author: Andy Fleming <afleming@freescale.com>
51630 Date: Wed Feb 6 01:12:57 2008 -0600
51631
51632 Add the Freescale PCI device IDs
51633
51634 Signed-off-by: Andy Fleming <afleming@freescale.com>
51635
51636 commit 7aff0c051ad0613171cf2b9941ee48675c62e7cd
51637 Author: Kumar Gala <galak@kernel.crashing.org>
51638 Date: Thu Feb 14 11:04:23 2008 -0600
51639
51640 85xx: Added support for multicore boot mechanism
51641
51642 Added the cpu command that provides a generic mechanism to get status,
51643 reset, and release secondary cores in multicore processors.
51644
51645 Added support for using the ePAPR defined spin-table mechanism on 85xx.
51646
51647 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51648 Signed-off-by: Andy Fleming <afleming@freescale.com>
51649
51650 commit ec2b74ffd36f02c6123725e7c2533dd2deaf4b64
51651 Author: Kumar Gala <galak@kernel.crashing.org>
51652 Date: Thu Jan 17 16:48:33 2008 -0600
51653
51654 85xx: Added support for multicore boot mechanism
51655
51656 Added the cpu command that provides a generic mechanism to get status,
51657 reset, and release secondary cores in multicore processors.
51658
51659 Added support for using the ePAPR defined spin-table mechanism on 85xx.
51660
51661 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51662
51663 commit f69766e4b5d47ecd3aa58677a8da875694f364f2
51664 Author: Kumar Gala <galak@kernel.crashing.org>
51665 Date: Wed Jan 30 14:55:14 2008 -0600
51666
51667 85xx: Add the concept of CFG_CCSRBAR_PHYS
51668
51669 When we go to 36-bit physical addresses we need to keep the concept of
51670 the physical CCSRBAR address seperate from the virtual one.
51671
51672 For the majority of boards CFG_CCSBAR_PHYS == CFG_CCSRBAR
51673
51674 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51675
51676 commit 5b5eb9ca5b778f763bcf332697b35cc1e747626e
51677 Author: Wolfgang Denk <wd@denx.de>
51678 Date: Wed Mar 26 15:38:47 2008 +0100
51679
51680 Coding style cleanup.
51681
51682 Signed-off-by: Wolfgang Denk <wd@denx.de>
51683
51684 commit da8808df7a9cef5a3d2ee286ef9ebf9de1780660
51685 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
51686 Date: Wed Mar 26 13:02:13 2008 +0100
51687
51688 Add CFG_RTC_DS1337_NOOSC to turn off OSC output
51689
51690 The default settings for RTC DS1337 keeps the OSC
51691 output, 32,768 Hz, on. This add CFG_RTC_DS1337_NOOSC to
51692 turn it off.
51693
51694 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
51695
51696 commit 438a4c11260b4ea9805039b0b4f92f9df5306b02
51697 Author: Wolfgang Denk <wd@denx.de>
51698 Date: Wed Mar 26 11:48:46 2008 +0100
51699
51700 Cleanup coding style, update CHANGELOG
51701
51702 Signed-off-by: Wolfgang Denk <wd@denx.de>
51703
51704 commit 218ca724c08ca8a649f0917cf201cf23d4b33f39
51705 Author: Wolfgang Denk <wd@denx.de>
51706 Date: Wed Mar 26 10:40:12 2008 +0100
51707
51708 README: update documentation (availability, links, etc.)
51709
51710 Signed-off-by: Wolfgang Denk <wd@denx.de>
51711
51712 commit f6b44e0e4d18fe507833a0f76d24a9aa72c123f1
51713 Author: Aras Vaichas <arasv@magtech.com.au>
51714 Date: Tue Mar 25 12:09:07 2008 +1100
51715
51716 USB Storage, add meaningful return value
51717
51718 This patch changes the "usb storage" command to return success if it
51719 finds a USB storage device, otherwise it returns error.
51720
51721 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
51722
51723 commit 18e69a35efbb078403db0c0063986470dad7d082
51724 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51725 Date: Fri Mar 14 23:20:18 2008 +0300
51726
51727 83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role
51728
51729 Linux understands "host" (default), "peripheral" and "otg" (broken).
51730 Though, U-Boot doesn't restrict dr_mode variable to these values (think
51731 of renames in future).
51732
51733 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51734 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51735
51736 commit c7604783b236e368f225efb7b3efb418fe20b404
51737 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51738 Date: Fri Mar 14 23:20:30 2008 +0300
51739
51740 tsec: fix link detection for the RTL8211B PHY
51741
51742 RTL8211B sets link state register after autonegotiation complete,
51743 so with bootdelay=0 RTL8211B will report lack of the link.
51744
51745 To fix this, we should wait for aneg to complete, even if the
51746 link is currently down.
51747
51748 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51749 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51750
51751 commit 7fa9cbb00dc83fcf175042b6f20c2c9bce9a15f4
51752 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51753 Date: Mon Mar 24 20:47:09 2008 +0300
51754
51755 mpc83xx: add "fsl,soc" and "fsl,immr" compatible fixups
51756
51757 device_type = "soc" is being deprecated, newer device trees will use
51758 "fsl,soc" and/or "fsl,immr" for the soc nodes.
51759
51760 This patch also adds clock-frequency property for soc nodes (the same
51761 value as bus-frequency).
51762
51763 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51764
51765 commit 507e2d79c91441a0bb2cd3d0c31c8bfe3f8cec07
51766 Author: Joe D'Abbraccio <ljd015@freescale.com>
51767 Date: Mon Mar 24 13:00:59 2008 -0400
51768
51769 Modified the DDR SDRAM clock control register to delay MCK/MCK_B 3/4 clock
51770
51771 With the original value of 1/2 clock cycle delay, the system ran relatively
51772 stable except when we run benchmarks that are intensive users of memory.
51773 When I run samba connected disk with a HDBENCH test, the system locks-up
51774 or reboots sporadically.
51775
51776 Signed-off by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
51777
51778 commit a7ba32d480a86db5db8dcd8ca66b21b4cadda923
51779 Author: Scott Wood <scottwood@freescale.com>
51780 Date: Mon Mar 24 12:44:13 2008 -0500
51781
51782 mpc83xx: Set PCI I/O bus-address base to zero.
51783
51784 The device trees for these boards describe PCI I/O as starting from
51785 address zero from the device's perspective.
51786
51787 Placing I/O elsewhere may cause problems with certain PCI boards, and may
51788 cause problems with Linux.
51789
51790 Signed-off-by: Scott Wood <scottwood@freescale.com>
51791
51792 commit f700e7df7fecf2d3765ae568ce77ce788cde4f3e
51793 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51794 Date: Mon Mar 24 20:47:05 2008 +0300
51795
51796 mpc83xx: MPC8360E-RDK: use 33.3(3)MHz CLKIN/SYS_CLK
51797
51798 At least on the "33MHz Pilot" board crystal is actually 33.3MHz.
51799 This patch fixes "system time drifting" problem.
51800
51801 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51802
51803 commit 3a0cfdd576dc9b16d1468d37339182607c697fb7
51804 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51805 Date: Mon Mar 24 20:47:02 2008 +0300
51806
51807 mpc83xx: MPC8360E-RDK: define CONFIG_OF_STDOUT_VIA_ALIAS
51808
51809 This is needed to update /choosen/linux,stdout-path properly.
51810
51811 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51812
51813 commit 3419eb62f088d7a22f1d2a3cebf76b77e408b5b9
51814 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51815 Date: Mon Mar 24 20:47:00 2008 +0300
51816
51817 mpc83xx: MPC8360E-RDK: add dhcp command
51818
51819 Plus modify environment to use it and remove bootfile env variable,
51820 it is internal and CONFIG_BOOTFILE is used for these purposes.
51821
51822 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51823
51824 commit d892b2dbb4087a26778bfd42470c3ea7d0e2b6aa
51825 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51826 Date: Mon Mar 24 20:46:57 2008 +0300
51827
51828 mpc83xx: MPC8360E-RDK: rework ddr setup, enable ecc
51829
51830 Current DDR setup easily causes memory corruption, this patch fixes it.
51831
51832 Also fix TIMING_CFG0_MRS_CYC definition.
51833
51834 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51835
51836 commit d47d49cc37a38f2719a3e1b9bbe08ac810cf2d9a
51837 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51838 Date: Mon Mar 24 20:46:53 2008 +0300
51839
51840 mpc83xx: MPC8360E-RDK: configure pario pins for AD7843 and FHCI
51841
51842 This patch adds qe pario pins configuration for AD7843 ADC/Touchscreen
51843 controller and FHCI (QE USB).
51844
51845 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51846
51847 commit 7ad959490962e6842648d87d4bd795ea6cdcce67
51848 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51849 Date: Mon Mar 24 20:46:51 2008 +0300
51850
51851 mpc83xx: MPC8360E-RDK: add support for NAND
51852
51853 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51854
51855 commit 9a3e832aeb491861d029991241572ebdf4b5b61b
51856 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51857 Date: Mon Mar 24 20:46:46 2008 +0300
51858
51859 mpc83xx: MPC8360E-RDK: use RGMII_RXID interface mode
51860
51861 This is needed for BCM PHYs to work on this board.
51862
51863 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51864
51865 commit 300615dc5d9b0a2022fbc6af0c13159e33fd752e
51866 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51867 Date: Mon Mar 24 20:46:34 2008 +0300
51868
51869 uec: add support for Broadcom BCM5481 Gigabit PHY
51870
51871 This patch adds basic support for Broadcom BCM5481 PHY.
51872
51873 RXD-RXC delay quirk comes from MPC8360E-RDK BSP source, author is
51874 Peter Barada <peterb@logicpd.com>.
51875
51876 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51877
51878 commit 6a600c3a1876bc203445df4f0fd6b12648259666
51879 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51880 Date: Mon Mar 24 20:46:28 2008 +0300
51881
51882 uec: add support for RGMII_RXID interface mode
51883
51884 PHY drivers will use it to setup software delay between RXD and RXC
51885 signals.
51886
51887 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51888
51889 commit 91cdaa3a9d7562b869d96774e9c9ddf142c0848d
51890 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51891 Date: Mon Mar 24 20:46:24 2008 +0300
51892
51893 uec: add support for gbit mii status readings
51894
51895 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51896
51897 commit aabce7fb505ffe55ebf3bf4dcafdae97a581558d
51898 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51899 Date: Mon Mar 24 17:40:47 2008 +0300
51900
51901 83xx: define CONFIG_OF_STDOUT_VIA_ALIAS for the MPC837XERDB boards
51902
51903 This is primarily for the early console support.
51904
51905 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51906
51907 commit 2bd7460e9283ec98565189b3cdbcfb2bcdcdd635
51908 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51909 Date: Mon Mar 24 17:40:43 2008 +0300
51910
51911 83xx: initialize serdes for MPC837XRDB boards
51912
51913 On the MPC8377ERDB: 2 SATA and 2 PCI-E.
51914 On the MPC8378ERDB: 2 PCI-E
51915 On the MPC8379ERDB: 4 SATA
51916
51917 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51918
51919 commit 453316a2a19642d8afcbca7452e40a6b44a197b1
51920 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51921 Date: Mon Mar 24 17:40:32 2008 +0300
51922
51923 83xx: serdes setup routines
51924
51925 This patch adds few routines to configure serdes on 837x targets.
51926
51927 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51928
51929 commit a796cdf9c377cb4e5d61d1079a296608f8fbd903
51930 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51931 Date: Mon Mar 24 17:40:27 2008 +0300
51932
51933 83xx: split COBJS onto separate lines
51934
51935 ..plus get rid of some #ifdefs in the .c files.
51936
51937 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51938
51939 commit 46a3aeea73c13ab04ebf7a8739afb87ac5da94a3
51940 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51941 Date: Mon Mar 24 17:40:23 2008 +0300
51942
51943 83xx: nand support for MPC837XRDB boards
51944
51945 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51946
51947 commit 82e45a204190593e8613145a928f998fb8c909c4
51948 Author: Jerry Van Baren <gvb.uboot@gmail.com>
51949 Date: Tue Mar 18 21:44:41 2008 -0400
51950
51951 Enable CONFIG_FLASH_SHOW_PROGRESS on the MPC8360EMDS.
51952
51953 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
51954 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51955
51956 commit 0fa7a1b4719e325fce332689fb8754ec166191ff
51957 Author: Michael Barkowski <michael.barkowski@freescale.com>
51958 Date: Thu Mar 20 13:15:39 2008 -0400
51959
51960 mpc8323erdb: remove RTC and add EEPROM
51961
51962 There's no on-board RTC on the MPC8323ERDB, but there is an EEPROM.
51963
51964 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
51965 Acked-by: Kim Phillips <kim.phillips@freescale.com>
51966
51967 commit 5bbeea86eb6afb872374cd23217cb3c1018443ed
51968 Author: Michael Barkowski <michael.barkowski@freescale.com>
51969 Date: Thu Mar 20 13:15:34 2008 -0400
51970
51971 mpc8323erdb: Improve the system performance
51972
51973 The following changes are based on kernel UCC ethernet performance:
51974
51975 1. Make the CSB bus pipeline depth as 4, and enable the repeat mode
51976 2. Optimize transactions between QE and CSB. Added CFG_SPCR_OPT
51977 switch to enable this setting.
51978
51979 The following changes are based on the App Note AN3369 and
51980 verified to improve memory latency using LMbench:
51981
51982 3. CS0_CONFIG[AP_n_EN] is changed from 1 to 0
51983 4. CS0_CONFIG[ODT_WR_CONFIG] set to 1. Was a reserved setting
51984 previously.
51985 5. TIMING_CFG_1[WRREC] is changed from 3clks to 2clks (based on
51986 Twr=15ns, and this was already the setting in DDR_MODE)
51987 6. TIMING_CFG_1[PRETOACT] is changed from 3clks to 2clks. (based on
51988 Trp=15ns)
51989 7. TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 6clks. (based on
51990 Tras=40ns)
51991 8. TIMING_CFG_1[ACTTORW] is changed from 3clks to 2clks. (based on
51992 Trcd=15ns)
51993 9. TIMING_CFG_1[REFREC] changed from 21 clks to 11clks. (based on
51994 Trfc=75ns)
51995 10. TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 7clks. (based
51996 on Tfaw=50ns)
51997 11. TIMING_CFG_2[ADD_LAT] and DDR_MODE[AL] changed from 0 to 1 (based
51998 on CL=3 and WL=2).
51999
52000 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
52001 Acked-by: Kim Phillips <kim.phillips@freescale.com>
52002
52003 commit fc549c871f43933396a5b3e21d897023d4b31b8d
52004 Author: Michael Barkowski <michael.barkowski@freescale.com>
52005 Date: Thu Mar 20 13:15:28 2008 -0400
52006
52007 mpc8323erdb: use readable DDR config macros
52008
52009 Use available shift/mask macros to define DDR configuration.
52010
52011 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
52012 Acked-by: Kim Phillips <kim.phillips@freescale.com>
52013
52014 commit 89c7784ed90ba50301eec521144f95111e472906
52015 Author: Timur Tabi <timur@freescale.com>
52016 Date: Fri Feb 8 13:15:55 2008 -0600
52017
52018 83xx: Add Vitesse VSC7385 firmware uploading
52019
52020 Update the MPC8349E-mITX, MPC8313E-RDB, and MPC837XE-RDB board files to upload
52021 the Vitesse VSC7385 firmware. Changed CONFIG_VSC7385 to CONFIG_VSC7385_ENET.
52022 Cleaned up the board header files to make selecting the VSC7385 easier to
52023 control.
52024
52025 Signed-off-by: Timur Tabi <timur@freescale.com>
52026 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
52027
52028 commit b55d98c6d5b8694e560a0e727b14cb6921d7cfcc
52029 Author: Timur Tabi <timur@freescale.com>
52030 Date: Fri Feb 8 13:15:54 2008 -0600
52031
52032 NET: Add Vitesse VSC7385 firmware uploading
52033
52034 The Vitesse VSC7385 is a 5-port switch found on the Freescale MPC8349E-mITX
52035 and other boards. A small firwmare must be uploaded to its on-board memory
52036 before it can be enabled. This patch adds the code which uploads firmware
52037 (but not the firmware itself).
52038
52039 Previously, this feature was provided by a U-Boot application that was
52040 made available only on Freescale BSPs. The VSC7385 firmware must still
52041 be obtained separately, but at least there is no longer a need for a separate
52042 application.
52043
52044 Signed-off-by: Timur Tabi <timur@freescale.com>
52045 Acked-by: Ben Warren <biggerbadderben@gmail.com>
52046
52047 commit aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855
52048 Author: Wolfgang Denk <wd@denx.de>
52049 Date: Wed Mar 26 00:52:10 2008 +0100
52050
52051 Coding Style cleanyp; update CHANGELOG
52052
52053 Signed-off-by: Wolfgang Denk <wd@denx.de>
52054
52055 commit 43ddd9c820fec44816188f53346b464e20b3142d
52056 Author: Jerry Van Baren <gvb.uboot@gmail.com>
52057 Date: Sat Mar 22 14:23:49 2008 -0400
52058
52059 Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T
52060
52061 These defines embedded the u-boot env variables and/or the bd_t structure
52062 in the fdt blob. The conclusion of discussion on the u-boot email list
52063 was that embedding these in the fdt blob is not useful: there are better
52064 ways of passing the data (in fact, the fdt blob itself replaces the
52065 bd_t struct).
52066
52067 The only board that enables these is the stxxtc and they don't appear
52068 to be used by linux.
52069
52070 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
52071 Acked-by: Kim Phillips <kim.phillips@freescale.com>
52072
52073 commit 22ed2285743359fd1fe73e411dff914b2256e68f
52074 Author: Stefan Roese <sr@denx.de>
52075 Date: Mon Mar 17 10:49:25 2008 +0100
52076
52077 rtc: Remove 2nd reference to max6900.o in drivers/rtc/Makefile
52078
52079 Signed-off-by: Stefan Roese <sr@denx.de>
52080
52081 commit 1bb707c39a0833e91d9f797dd862aaaaf4af264d
52082 Author: Kyungmin Park <kmpark@infradead.org>
52083 Date: Mon Mar 17 08:54:06 2008 +0900
52084
52085 Add Flex-OneNAND booting support
52086
52087 Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array
52088 using a NOR Flash interface. This on-chip integration enables system designers
52089 to reduce external system logic and use high-density NAND Flash
52090 in applications that would otherwise have to use more NOR components.
52091
52092 Flex-OneNAND enables users to configure to partition it into SLC and MLC areas
52093 in more flexible way. While MLC area of Flex-OneNAND can be used to store data
52094 that require low reliability and high density, SLC area of Flex-OneNAND
52095 to store data that need high reliability and high performance. Flex-OneNAND
52096 can let users take advantage of storing these two different types of data
52097 into one chip, which is making Flex-OneNAND more cost- and space-effective.
52098
52099 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
52100
52101 commit c512389cc4a10253249271ff6c887c6dab1f0db2
52102 Author: André Schwarz <andre.schwarz@matrix-vision.de>
52103 Date: Thu Mar 13 13:50:52 2008 +0100
52104
52105 MPC5200: support setup without FEC
52106
52107 Include FEC specific nodes in ft_cpu_setup only if CONFIG_MPC5xxx_FEC is
52108 defined. Systems without FEC, i.e. no FEC node in DTB, should be possible.
52109
52110 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
52111 Acked-by: Grant Likely <grant.likely@secretlab.ca>
52112
52113 commit aa3511e422946041ef626f80a05ae5e8bfc700e6
52114 Author: Jon Loeliger <jdl@freescale.com>
52115 Date: Wed Mar 5 18:05:46 2008 -0600
52116
52117 FSL: Move board/mpc8266ads under board/freescale
52118
52119 Signed-off-by: Jon Loeliger <jdl@freescale.com>
52120
52121 commit 7f1d846e5c5754449c286587d099d85246062772
52122 Author: Jon Loeliger <jdl@freescale.com>
52123 Date: Wed Mar 5 18:05:47 2008 -0600
52124
52125 FSL: Move board/mpc7448hpc2 under board/freescale
52126
52127 Signed-off-by: Jon Loeliger <jdl@freescale.com>
52128
52129 commit b7e24d283e34727c2a6cdfdac2e09a426c579b73
52130 Author: Jon Loeliger <jdl@freescale.com>
52131 Date: Wed Mar 5 18:05:45 2008 -0600
52132
52133 FSL: Move board/mpc8260ads under board/freescale
52134
52135 Signed-off-by: Jon Loeliger <jdl@freescale.com>
52136
52137 commit 6a8a5dc4759867c45aa95580deb8bf26669a5d97
52138 Author: goda.yusuke <goda.yusuke@renesas.com>
52139 Date: Wed Mar 5 17:08:33 2008 +0900
52140
52141 net: Add support AX88796L ethernet device
52142
52143 AX88796L is device of NE2000 compatible.
52144 This patch support AX88796L ethernet device.
52145
52146 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
52147 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52148
52149 commit e0a6140dd381e1eed1ada2291166ef2616d8822b
52150 Author: Wolfgang Denk <wd@denx.de>
52151 Date: Tue Mar 25 22:50:41 2008 +0100
52152
52153 ne2000 driver: change #ifdef to Makefile conditional compilation
52154
52155 Signed-off-by: Wolfgang Denk <wd@denx.de>
52156
52157 commit e710185aae90c64d39c2d453e40e58ceefe4f250
52158 Author: goda.yusuke <goda.yusuke@renesas.com>
52159 Date: Wed Mar 5 17:08:20 2008 +0900
52160
52161 net: Divided code of NE2000 ethernet driver
52162
52163 There are more devices of the NE2000 base.
52164 A present code is difficult for us to support more devices.
52165 To support more NE2000 clone devices, separated the function.
52166
52167 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
52168 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52169
52170 commit 395bce4f59a507a60a475f7ee46bed47de9482df
52171 Author: Mike Frysinger <vapier@gentoo.org>
52172 Date: Sun Feb 24 23:58:13 2008 -0500
52173
52174 net/Blackfin: move on-chip MAC driver into drivers/net/
52175
52176 The Blackfin on-chip MAC driver was being managed in the BF537-STAMP board
52177 directory, but it is not board specific, so relocate it to the drivers dir
52178 so that other Blackfin ports can utilize it.
52179
52180 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
52181
52182 commit 8a30b4700942f37495d2e67f5998cdffb6e3ba8a
52183 Author: Mike Frysinger <vapier@gentoo.org>
52184 Date: Sun Feb 24 23:52:35 2008 -0500
52185
52186 smc91111: use SSYNC() rather than asm(ssync) for Blackfin
52187
52188 Since the "ssync" instruction may have hardware anomalies associated with
52189 it, have the smc91111 driver use the SSYNC macro rather than invoking it
52190 directly. We workaround all the anomalies via this macro.
52191
52192 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
52193
52194 commit 77ff7b7444ceb8022b46114f3d0b6d18e2fd1138
52195 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
52196 Date: Sun Feb 17 22:57:47 2008 +0000
52197
52198 8xx: Update OF support on 8xx
52199
52200 This patch does some shifting around of OF support on 8xx.
52201
52202 Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
52203
52204 commit 9c666a7db0b2285a270c68810889ce7d5dba304b
52205 Author: Kumar Gala <galak@kernel.crashing.org>
52206 Date: Fri Feb 15 15:16:18 2008 -0600
52207
52208 ppc: Allow boards to specify how much memory they can map
52209
52210 For historical reasons we limited the stack to 256M because some boards
52211 could only map that much via BATS. However newer boards are capable of
52212 mapping more memory (for example 85xx is capble of doing up to 2G).
52213
52214 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52215
52216 commit a6f5f317cd074bbbfa2aab4fca05904c811c19fb
52217 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
52218 Date: Fri Feb 15 01:05:58 2008 +0000
52219
52220 8xx : Add OF support to Adder875 board port - resubmit
52221
52222 Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
52223
52224 commit d058698fd2d9f769ff38ac53c8708b3fdd314f2d
52225 Author: Kumar Gala <galak@kernel.crashing.org>
52226 Date: Thu Feb 14 20:44:42 2008 -0600
52227
52228 Add setexpr command
52229
52230 Add a simple expr style command that will set an env variable as the result
52231 of the command. This allows us to do simple math in shell. The following
52232 operations are supported: &, |, ^, +, -, *, /.
52233
52234 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52235
52236 commit 3f105faa64b9826e088711fdfcaa70cb1230397a
52237 Author: Jon Loeliger <jdl@freescale.com>
52238 Date: Wed Mar 5 17:27:48 2008 -0600
52239
52240 FSL: Move board/mpc7448hpc2 under board/freescale
52241
52242 Signed-off-by: Jon Loeliger <jdl@freescale.com>
52243
52244 commit 449c703374a8868453425e15da7e2f76221b72e4
52245 Author: Jon Loeliger <jdl@freescale.com>
52246 Date: Wed Mar 5 17:21:43 2008 -0600
52247
52248 FSL: Move board/mpc8266ads under board/freescale
52249
52250 Signed-off-by: Jon Loeliger <jdl@freescale.com>
52251
52252 commit 5863577989ad689427bb750107e9a75f1c1645d2
52253 Author: Jon Loeliger <jdl@freescale.com>
52254 Date: Wed Mar 5 16:41:41 2008 -0600
52255
52256 FSL: Move board/mpc8260ads under board/freescale
52257
52258 Signed-off-by: Jon Loeliger <jdl@freescale.com>
52259
52260 commit 8a773983957ee6c4aa344469b742f29c7d26afbd
52261 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52262 Date: Tue Mar 25 21:30:08 2008 +0900
52263
52264 [MIPS] Move gth2_config from ARM section to MIPS
52265
52266 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52267
52268 commit 373b16fc0c5ae34d28b9027f809ae3cbf45cdd15
52269 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52270 Date: Tue Mar 25 21:30:07 2008 +0900
52271
52272 [MIPS] Extend MIPS_MAX_CACHE_SIZE upto 64kB
52273
52274 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52275
52276 commit d98e348e2ed5aab8f7a6471ff628ab0688b8a459
52277 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52278 Date: Tue Mar 25 21:30:07 2008 +0900
52279
52280 [MIPS] Fix dcache_status()
52281
52282 You can't judge UNCACHED by Config.K0 LSB.
52283
52284 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52285
52286 commit b0c66af53ec9385ac2d1cc2e5d7d1ecdc81caf34
52287 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52288 Date: Tue Mar 25 21:30:07 2008 +0900
52289
52290 [MIPS] Introduce _machine_restart
52291
52292 Handles machine specific functions by using weak functions.
52293
52294 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52295
52296 commit decaba6f5cf386d569ac3997bebb871b966c6b18
52297 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52298 Date: Tue Mar 25 21:30:07 2008 +0900
52299
52300 [MIPS] Cleanup CP0 Status initialization
52301
52302 Add setup_c0_status from Linux. For the moment we disable interrupts, set
52303 CU0, mark the kernel mode, and clear ERL and EXL. This is good enough for
52304 reset-time configuration and will work well across most processors.
52305
52306 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52307
52308 commit d43d43ef2845af309c25a64bb9c2c5fb3261bc23
52309 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52310 Date: Tue Mar 25 21:30:07 2008 +0900
52311
52312 [MIPS] Initialize CP0 Cause before setting up CP0 Status register
52313
52314 Without this change, we'll be suffering from deffered WATCH exception
52315 once Status.EXL is cleared. Make sure Cause.WP is cleared.
52316
52317 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52318
52319 commit 26138623230ca2bad3c78e05a65527ea70c8b688
52320 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52321 Date: Tue Mar 25 21:30:07 2008 +0900
52322
52323 [MIPS] INCA-IP: Move watchdog init code from start.S to lowlevel_init()
52324
52325 Move things to appropriate place.
52326
52327 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52328
52329 commit ccf8f824ef67df028dedb29f8ea5d71a5a88d895
52330 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52331 Date: Tue Mar 25 21:30:06 2008 +0900
52332
52333 [MIPS] Implement flush_cache()
52334
52335 We do Hit_Writeback_Inv_D and Hit_Invalidate_I. You might think that you
52336 don't need to do Hit_Invalidate_I, but flush_cache() needs it since this
52337 function is used not only in U-Boot specfic programs but also at loading
52338 target binaries.
52339
52340 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52341
52342 commit 2e0e5271aac917812a76c72030a2b2c6f1d3387d
52343 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52344 Date: Tue Mar 25 21:30:06 2008 +0900
52345
52346 [MIPS] Fix I-/D-cache initialization loops
52347
52348 Currently we do 1) Index_Store_Tag_I, 2) Fill and 3) Index_Store_Tag_I
52349 again per a loop for I-cache initialization. But according to 'See MIPS
52350 Run', we're encouraged to use three separate loops rather than combining
52351 them *for both I- and D-cache*. This patch tries to fix this.
52352
52353 In accordance with fixing above, mips_init_[id]cache are separated from
52354 mips_cache_reset(), and rewrite cache loops are completely rewritten with
52355 useful macros.
52356
52357 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52358
52359 commit 1898840797c7f50799377bd5b285a8a93a82c419
52360 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52361 Date: Tue Mar 25 21:30:06 2008 +0900
52362
52363 [MIPS] Replace memory clearance code with f_fill64
52364
52365 This routine fills memory with zero by 64 bytes, and is 64-bit capable.
52366
52367 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52368
52369 commit 2f5d414ccb4024dd0992ff6b22561732dbc73590
52370 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52371 Date: Tue Mar 25 21:30:06 2008 +0900
52372
52373 [MIPS] cpu/mips/cache.S: Introduce NESTED/LEAF/END macros
52374
52375 This patch replaces the current function definitions with NESTED, LEAF
52376 and END macro. They specify some more additional information about the
52377 function; an alignment of symbol, type of symbol, stack frame usage, etc.
52378 These information explicitly tells the assembler and the debugger about
52379 the types of code we want to generate.
52380
52381 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52382
52383 commit 282223a607c611425fa33f5428f8eae6636972bb
52384 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52385 Date: Tue Mar 25 11:43:17 2008 +0900
52386
52387 [MIPS] asm headers' updates
52388
52389 Make some asm headers adjusted to the latest Linux kernel.
52390
52391 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52392
52393 commit e1390801a3c1a2b6d12fa90be368efc19f5b9bfd
52394 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52395 Date: Tue Mar 25 11:39:29 2008 +0900
52396
52397 [MIPS] Request for the 'mips_cache_lock()' removal
52398
52399 The initial intension of having mips_cache_lock() was to use the cache
52400 as memory for temporary stack use so that a C environment can be set up
52401 as early as possible.
52402
52403 But now mips_cache_lock() follow lowlevel_init(). We've already have the
52404 real memory initilaized at this point, therefore we could/should use it.
52405 No reason to lock at all.
52406
52407 Other problems:
52408
52409 Cache locking is not consistent across MIPS implementaions. Some imple-
52410 mentations don't support locking at all. The style of locking varies -
52411 some support per line locking, others per way, etc. Some parts use bits
52412 in status registers instead of cache ops. Current mips_cache_lock() is
52413 not necessarily general-purpose.
52414
52415 And this is worthy of special mention; once U-Boot/MIPS locks the lines,
52416 they are never get unlocked, so the code relies on whatever gets loaded
52417 after U-Boot to re-initialize the cache and clear the locks. We're sup-
52418 posed to have CFG_INIT_RAM_LOCK and unlock_ram_in_cache() implemented,
52419 but leave the situation as it is for a long time.
52420
52421 For these reasons, I proposed the removal of mips_cache_lock() from the
52422 global start-up code.
52423
52424 This patch adds CFG_INIT_RAM_LOCK_MIPS to make existing users aware that
52425 *things have changed*. If he wants the same behavior as before, he needs
52426 to have CFG_INIT_RAM_LOCK_MIPS in his config file.
52427
52428 If we don't have any regression report through several releases, then
52429 we'll remove codes entirely.
52430
52431 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52432 Acked-by: Andrew Dyer <amdyer@gmail.com>
52433
52434 commit 0d48926c87ec96f974a6ac4034f4a2f2eab3255f
52435 Author: Yuri Tikhonov <yur@emcraft.com>
52436 Date: Mon Mar 24 11:30:54 2008 +0100
52437
52438 lwmon5 SYSMON POST: fix backlight control
52439
52440 If the LWMON5 config has SYSMON POST among CONFIG_POSTs which may be
52441 run on the board, then the SYSMON POST controls the display backlight
52442 (doesn't switch backlight ON if POST FAILED, and does switch the
52443 backlight ON if PASSED).
52444
52445 If not, then the video driver controls the display backlight (just
52446 switch ON the backlight upon initialization).
52447
52448 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52449
52450 commit ff2bdfb2c1e073f65c065011f1e18d0a130bd3d8
52451 Author: Yuri Tikhonov <yur@emcraft.com>
52452 Date: Mon Mar 24 11:29:14 2008 +0100
52453
52454 lwmon5 SYSMON POST: fix handling of negative temperatures
52455
52456 Fix errors in the LWMON5 Sysmon POST for negative temperatures.
52457
52458 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52459
52460 commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
52461 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52462 Date: Fri Mar 7 16:04:25 2008 +0900
52463
52464 pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option
52465
52466 In current source code, when the device number of PCI is 0, process PCI
52467 bridge without fail. However, when the device number is 0, it is not PCI
52468 always bridge. There are times when device of PCI allocates.
52469
52470 When CONFIG_PCI_SKIP_HOST_BRIDGE is enable, this problem is solved when
52471 use this patch.
52472
52473 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52474 Acked-by: Stefan Roese <sr@denx.de>
52475
52476 commit 86aea3eaefa248ffb9328e2b50c64720489cdbeb
52477 Author: Yuri Tikhonov <yur@emcraft.com>
52478 Date: Fri Mar 21 09:18:40 2008 +0100
52479
52480 LWMON5: fix dsPIC POST
52481
52482 Add test for DPIC_SYS_ERROR_REG to be zero in the LWMON5 dsPIC POST.
52483
52484 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> ---
52485
52486 commit 388b82fddc7c05596f3f615f190da0448227dc82
52487 Author: Bartlomiej Sieka <tur@semihalf.com>
52488 Date: Thu Mar 20 23:23:13 2008 +0100
52489
52490 [new uImage] Enable new uImage support for the pcs440ep board.
52491
52492 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
52493
52494 commit 95f4ec2b9c910c7261e6f060ea530d58b039692d
52495 Author: Bartlomiej Sieka <tur@semihalf.com>
52496 Date: Thu Mar 20 23:23:13 2008 +0100
52497
52498 [new uImage] Do not compile new uImage format support by default
52499
52500 Disable default building of new uImage format support in preparation
52501 for merge with the master. Support for new format can be enabled on
52502 a per-board basis, by defining the following in the board's config file:
52503
52504 #define CONFIG_FIT 1
52505 #define CONFIG_OF_LIBFDT 1
52506
52507 This can be optionally defined to give more verbose output:
52508
52509 #define CONFIG_FIT_VERBOSE 1 /* enable fit_format_{error,warning}() */
52510
52511 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
52512
52513 commit dafaede8a46c7159310239e036c93e31c6374487
52514 Author: Bartlomiej Sieka <tur@semihalf.com>
52515 Date: Thu Mar 20 23:20:31 2008 +0100
52516
52517 [new uImage] Disable debuging output in preparation for merge with master
52518
52519 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
52520
52521 commit fbe7a155027beacebaee9b32e1ada781fe924bca
52522 Author: Bartlomiej Sieka <tur@semihalf.com>
52523 Date: Thu Mar 20 19:38:45 2008 +0100
52524
52525 [new uImage] Compilation and new uImage handling fixes for imxtract
52526
52527 Fix imxtract command not being compiled-in despite CONFIG_CMD_XIMG being in
52528 include/config_cmd_default.h. Fix few warnings and handling of new format
52529 images.
52530
52531 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
52532
52533 commit 36cc8cbb3379d5166f882641123521735c469f92
52534 Author: Bartlomiej Sieka <tur@semihalf.com>
52535 Date: Thu Mar 20 23:10:19 2008 +0100
52536
52537 [new uImage] Fix autoscr command used with new uImage format
52538
52539 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
52540
52541 commit 43142e817f0597be412e7cbe19413f5532eafa5d
52542 Author: Bartlomiej Sieka <tur@semihalf.com>
52543 Date: Thu Mar 20 23:10:19 2008 +0100
52544
52545 [new uImage] Fix *.its files location in documentation
52546
52547 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
52548
52549 commit 81a0ac62ea29f8252d0a714709d0ecfdbba2a15e
52550 Author: Wolfgang Denk <wd@denx.de>
52551 Date: Thu Mar 20 22:01:38 2008 +0100
52552
52553 lwmon5 POST: remove unreachable code
52554
52555 plus some coding style cleanup
52556
52557 Signed-off-by: Wolfgang Denk <wd@denx.de>
52558
52559 commit b73a19e1609d0f705cbab8014ca17aefe89e4c76
52560 Author: Yuri Tikhonov <yur@emcraft.com>
52561 Date: Thu Mar 20 17:56:04 2008 +0300
52562
52563 LWMON5: POST RTC fix
52564
52565 Modify the RTC API to provide one a status for the time reported by
52566 the rtc_get() function:
52567 0 - a reliable time is guaranteed,
52568 < 0 - a reliable time isn't guaranteed (power fault, clock issues,
52569 and so on).
52570
52571 The RTC chip drivers are responsible for providing this info if the
52572 corresponding chip supports such functionality. If not - always
52573 report that the time is reliable.
52574
52575 The POST RTC test was modified to detect the RTC faults utilizing
52576 this new rtc_get() feature.
52577
52578 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52579
52580 commit a5cc5555ccee596908a7d8cf22a104f6b993bfd5
52581 Author: Martin Krause <martin.krause@tqs.de>
52582 Date: Wed Mar 19 14:25:14 2008 +0100
52583
52584 TQM5200B: update MTD partition layout
52585
52586 - insert partition for dtb blob to TQM5200B MTD layout
52587 - set env variables dependent on the configured board
52588 (TQM5200 or TQM5200B)
52589
52590 Signed-off-by: Martin Krause <martin.krause@tqs.de>
52591
52592 commit f0105727d132f56a21fa3ed8b162309cca6cac44
52593 Author: Stefan Roese <sr@denx.de>
52594 Date: Wed Mar 19 07:09:26 2008 +0100
52595
52596 CFI: Small cleanup for FLASH_SHOW_PROGRESS
52597
52598 With this patch we don't need that many #ifdef's in the code. It moves
52599 the subtraction into the macro and defines a NOP-macro when
52600 CONFIG_FLASH_SHOW_PROGRESS is not defined.
52601
52602 Signed-off-by: Stefan Roese <sr@denx.de>
52603 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
52604
52605 commit 9a042e9ca512beaaa2cb450274313fc477141241
52606 Author: Jerry Van Baren <gvb.uboot@gmail.com>
52607 Date: Sat Mar 8 13:48:01 2008 -0500
52608
52609 Flash programming progress countdown.
52610
52611 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
52612
52613 commit 5e339fd9ed539a7d7fec59cfc88f0857ab26a53f
52614 Author: Bartlomiej Sieka <tur@semihalf.com>
52615 Date: Wed Mar 19 10:00:06 2008 +0100
52616
52617 [new uImage] Fix style issue spotted by Wolfgang Denk <wd@denx.org>
52618
52619 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
52620
52621 commit 11abe45c48ec3485a6c1a5168ce8d79c3288adc1
52622 Author: David Gibson <david@gibson.dropbear.id.au>
52623 Date: Mon Feb 18 18:09:04 2008 +1100
52624
52625 libfdt: Remove no longer used code from fdt_node_offset_by_compatible()
52626
52627 Since fdt_node_offset_by_compatible() was converted to the new
52628 fdt_next_node() iterator, a chunk of initialization code became
52629 redundant, but was not removed by oversight. This patch cleans it up.
52630
52631 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
52632
52633 commit d0ccb9b140b472039732de102fc14597eedb14df
52634 Author: David Gibson <david@gibson.dropbear.id.au>
52635 Date: Mon Feb 18 18:06:31 2008 +1100
52636
52637 libfdt: Trivial cleanup for CHECK_HEADER)
52638
52639 Currently the CHECK_HEADER() macro is defined local to fdt_ro.c.
52640 However, there are a handful of functions (fdt_move, rw_check_header,
52641 fdt_open_into) from other files which could also use it (currently
52642 they open-code something more-or-less identical). Therefore, this
52643 patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those
52644 places.
52645
52646 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
52647
52648 commit fe30a354cdbb808b5f15366a935b151a4ccee74f
52649 Author: Kumar Gala <galak@kernel.crashing.org>
52650 Date: Wed Feb 20 14:32:36 2008 -0600
52651
52652 Fix fdt boardsetup command parsing
52653
52654 The introduciton of the 'fdt bootcpu' broke parsing for 'fdt boardsetup'.
52655
52656 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52657
52658 commit 804887e6001e2f00bea11431bf34d6d472512cda
52659 Author: Kumar Gala <galak@kernel.crashing.org>
52660 Date: Fri Feb 15 03:34:36 2008 -0600
52661
52662 Add sub-commands to fdt
52663
52664 fdt header - Display header info
52665 fdt bootcpu <id> - Set boot cpuid
52666 fdt memory <addr> <size> - Add/Update memory node
52667 fdt rsvmem print - Show current mem reserves
52668 fdt rsvmem add <addr> <size> - Add a mem reserve
52669 fdt rsvmem delete <index> - Delete a mem reserves
52670
52671 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52672
52673 commit f84d65f9b085ffbed464d1d58e8aaa8f5a2efc07
52674 Author: David Gibson <david@gibson.dropbear.id.au>
52675 Date: Thu Feb 14 16:50:34 2008 +1100
52676
52677 libfdt: Fix NOP handling bug in fdt_add_subnode_namelen()
52678
52679 fdt_add_subnode_namelen() has a bug if asked to add a subnode to a
52680 node which has NOP tags interspersed with its properties. In this
52681 case fdt_add_subnode_namelen() will put the new subnode before the
52682 first NOP tag, even if there are properties after it, which will
52683 result in an invalid blob.
52684
52685 This patch fixes the bug, and adds a testcase for it.
52686
52687 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
52688
52689 commit ae0b5908de3b9855f8931bc9b32c9fc4962df5a9
52690 Author: David Gibson <david@gibson.dropbear.id.au>
52691 Date: Tue Feb 12 11:58:31 2008 +1100
52692
52693 libfdt: Add and use a node iteration helper function.
52694
52695 This patch adds an fdt_next_node() function which can be used to
52696 iterate through nodes of the tree while keeping track of depth. This
52697 function is used to simplify the iteration code in a lot of other
52698 functions, and is also exported for use by library users.
52699
52700 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
52701
52702 commit 9eaeb07a7185d852c7aa10735ecd4e9edf24fb5d
52703 Author: David Gibson <david@gibson.dropbear.id.au>
52704 Date: Fri Jan 11 14:55:05 2008 +1100
52705
52706 libfdt: Add fdt_set_name() function
52707
52708 This patch adds an fdt_set_name() function to libfdt, mirroring
52709 fdt_get_name(). This is a r/w function which alters the name of a
52710 given device tree node.
52711
52712 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
52713
52714 commit 23e20aa6488e6c0622496549861bfdc74108debe
52715 Author: Yuri Tikhonov <yur@pollux.denx.de>
52716 Date: Tue Mar 18 13:33:30 2008 +0100
52717
52718 lwmon5: Fix register test logic to match the specific GDC h/w.
52719
52720 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52721 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52722
52723 commit 46bc0a938779aa1d664b847d36b08aa00f22e539
52724 Author: Yuri Tikhonov <yur@pollux.denx.de>
52725 Date: Tue Mar 18 13:27:57 2008 +0100
52726
52727 Fix backlight in the lwmon5 POST.
52728
52729 Backlight was switched on even when temperature was too low.
52730
52731 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52732 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52733
52734 commit 3d61018643a2cd38c145aa6dde53f3f5f1a0e9cf
52735 Author: Yuri Tikhonov <yur@pollux.denx.de>
52736 Date: Wed Feb 6 18:48:36 2008 +0100
52737
52738 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).
52739
52740 To enable this, alternative, configuration the U-Boot board configuration
52741 file for lwmon5 includes the definitions of alternative addresses for header
52742 (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
52743
52744 The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
52745 and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
52746 lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
52747
52748 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52749
52750 commit 0f009f781b5b88f25769e154ea4d42db13baf0c6
52751 Author: Yuri Tikhonov <yur@pollux.denx.de>
52752 Date: Mon Feb 4 17:11:53 2008 +0100
52753
52754 Add support for the lwmon5 board reset via GPIO58.
52755
52756 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52757 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52758
52759 commit f694e32f93565ec1fa8d0226c584d6b89e931ed9
52760 Author: Yuri Tikhonov <yur@pollux.denx.de>
52761 Date: Mon Feb 4 17:09:55 2008 +0100
52762
52763 Some fixes to dspic, fpga, and gdc post tests for lwmon5. Disable external watch-dog for now.
52764
52765 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52766 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52767
52768 commit b428f6a8c65c5303e5f96db8d24f2f699d94a98c
52769 Author: Yuri Tikhonov <yur@pollux.denx.de>
52770 Date: Mon Feb 4 14:11:03 2008 +0100
52771
52772 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.
52773
52774 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52775 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52776
52777 commit 8f15d4addd49c956412e1e3bfc764a0c8b1f3184
52778 Author: Yuri Tikhonov <yur@pollux.denx.de>
52779 Date: Mon Feb 4 14:10:42 2008 +0100
52780
52781 The patch adds new POST tests for the Lwmon5 board. These are:
52782
52783 * External Watchdog test;
52784 * dsPIC tests;
52785 * FPGA test;
52786 * GDC test;
52787 * Sysmon tests.
52788
52789 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52790 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52791
52792 commit c2ed33efbfff5767bca236828e021c55fd547b6c
52793 Author: Yuri Tikhonov <yur@pollux.denx.de>
52794 Date: Mon Feb 4 14:10:01 2008 +0100
52795
52796 Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
52797
52798 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52799
52800 commit 3a5d1e7f1309998791702b2a559e3126781746b9
52801 Author: Yuri Tikhonov <yur@pollux.denx.de>
52802 Date: Tue Mar 18 13:33:30 2008 +0100
52803
52804 lwmon5: Fix register test logic to match the specific GDC h/w.
52805
52806 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52807 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52808
52809 commit 0f855a1f056a8c22116a2103a3900cbfb669df0b
52810 Author: Yuri Tikhonov <yur@pollux.denx.de>
52811 Date: Tue Mar 18 13:27:57 2008 +0100
52812
52813 Fix backlight in the lwmon5 POST.
52814
52815 Backlight was switcehd on even when temperature was too low.
52816
52817 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52818 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52819
52820 commit 2d991958b1e420fbfe17b128bd26ade74be5efcc
52821 Author: Yuri Tikhonov <yur@pollux.denx.de>
52822 Date: Wed Feb 6 18:48:36 2008 +0100
52823
52824 The patch introduces the alternative configuration of the log buffer for
52825 the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory),
52826 the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ...,
52827 PPC440EPX_GPT0_COMP5).
52828
52829 To enable this, alternative, configuration the U-Boot board configuration
52830 file for lwmon5 includes the definitions of alternative addresses for header
52831 (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
52832
52833 The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
52834 and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
52835 lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
52836
52837 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52838
52839 commit ff818b21b069f4bc9cb73373cc5a16014be101b7
52840 Author: Yuri Tikhonov <yur@pollux.denx.de>
52841 Date: Mon Feb 4 17:11:53 2008 +0100
52842
52843 Add support for the lwmon5 board reset via GPIO58.
52844
52845 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52846 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52847
52848 commit 603f194e5ad81bb2ef42d6d8aaa74de175bcb411
52849 Author: Yuri Tikhonov <yur@pollux.denx.de>
52850 Date: Mon Feb 4 17:09:55 2008 +0100
52851
52852 Some fixes to dspic, fpga, and gdc post tests for lwmon5.
52853 Disable external watch-dog for now.
52854
52855 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52856 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52857
52858 commit e262efe35742c1ad4b0966ff501efc26f34a0aec
52859 Author: Yuri Tikhonov <yur@pollux.denx.de>
52860 Date: Mon Feb 4 14:11:03 2008 +0100
52861
52862 The patch introduces the CRITICAL feature of POST tests. If the test
52863 marked as POST_CRITICAL fails then the alternative, post_critical,
52864 boot-command is used. If this command is not defined then U-Boot
52865 enters into interactive mode.
52866
52867 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52868 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52869
52870 commit 65b20dcefc89618193fa51947968dada91e4c778
52871 Author: Yuri Tikhonov <yur@pollux.denx.de>
52872 Date: Mon Feb 4 14:10:42 2008 +0100
52873
52874 The patch adds new POST tests for the Lwmon5 board.
52875 These are:
52876
52877 * External Watchdog test;
52878 * dsPIC tests;
52879 * FPGA test;
52880 * GDC test;
52881 * Sysmon tests.
52882
52883 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52884 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52885
52886 commit 8dc3b2303d2b57c774b609ca0e7043ed8f9b88c1
52887 Author: Yuri Tikhonov <yur@pollux.denx.de>
52888 Date: Mon Feb 4 14:10:01 2008 +0100
52889
52890 Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
52891
52892 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52893
52894 commit 3515fd18d4e8e44f863ac7142b55e22b109e9af2
52895 Author: Wolfgang Denk <wd@denx.de>
52896 Date: Tue Mar 18 17:35:51 2008 +0100
52897
52898 HMI1001: fix compile problem.
52899
52900 Signed-off-by: Wolfgang Denk <wd@denx.de>
52901
52902 commit 1f2a9970109cebf7446e0503b10b71f8673045ee
52903 Author: Mike Frysinger <vapier@gentoo.org>
52904 Date: Mon Feb 18 05:32:30 2008 -0500
52905
52906 Blackfin: BF537-stamp: drop board-specific flash driver for CFI
52907
52908 The parallel flash on the BF537-STAMP is CFI compliant, so there is no need
52909 for the board specific driver at all. Just use the common CFI driver.
52910
52911 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
52912
52913 commit 5b22163fef865af2b6bfb6b75f1b7bf443ce170c
52914 Author: Mike Frysinger <vapier@gentoo.org>
52915 Date: Tue Feb 19 00:36:14 2008 -0500
52916
52917 Blackfin: add proper ELF markings to some assembly functions
52918
52919 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
52920
52921 commit cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf
52922 Author: Mike Frysinger <vapier@gentoo.org>
52923 Date: Tue Feb 19 00:35:17 2008 -0500
52924
52925 Blackfin: new cplbinfo command for viewing cplb tables
52926
52927 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
52928
52929 commit aadb72503cd1602349a5fe53356d5f55ecc1b900
52930 Author: Mike Frysinger <vapier@gentoo.org>
52931 Date: Mon Feb 18 05:37:51 2008 -0500
52932
52933 Blackfin: update MAINTAINERS list
52934
52935 Add maintainer information for the Blackfin boards.
52936
52937 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
52938
52939 commit f7ce12cb65a30c6e152eecf26f0304b7d78cf39d
52940 Author: Mike Frysinger <vapier@gentoo.org>
52941 Date: Mon Feb 18 05:26:48 2008 -0500
52942
52943 Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU
52944
52945 Stop tying things to the processor that should be tied to other defines and
52946 change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build
52947 system to select the -mcpu option.
52948
52949 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
52950
52951 commit 86a20fb920bd198105acf7b1191117f566d637ed
52952 Author: Mike Frysinger <vapier@gentoo.org>
52953 Date: Sat Feb 16 07:40:36 2008 -0500
52954
52955 Blackfin: move bootldr command to common code
52956
52957 This moves the Blackfin-common bootldr command out of the BF537-STAMP
52958 specific board directory and into the common directory so that all Blackfin
52959 boards may utilize it.
52960
52961 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
52962
52963 commit decbe029b2a9d3333d02c433389b1c821eea96d7
52964 Author: Heiko Schocher <hs@denx.de>
52965 Date: Fri Mar 14 11:05:20 2008 +0100
52966
52967 mgcoge: update configuration
52968
52969 Fix configuration for mgcoge board
52970
52971 Signed-off-by: Heiko Schocher <hs@denx.de>
52972
52973 commit c136724cda0219c49f1d4b346f00da29b14fdf14
52974 Author: Wolfgang Denk <wd@denx.de>
52975 Date: Sun Mar 16 01:22:59 2008 +0100
52976
52977 drivers/rtc/Makefile: keep list sorted
52978
52979 Signed-off-by: Wolfgang Denk <wd@denx.de>
52980
52981 commit 9536dfcce03e7be4ccbceb47a08d9ba07ada362f
52982 Author: Tor Krill <tor@excito.com>
52983 Date: Sat Mar 15 15:40:26 2008 +0100
52984
52985 Add support for Intersil isl1208 RTC
52986
52987 Signed-off-by: Tor Krill <tor@excito.com>
52988
52989 commit 0210cff3d079d97b2156b13685ee8de368e68a1a
52990 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52991 Date: Sat Mar 15 17:36:41 2008 +0100
52992
52993 cramfs: Fix ifdef
52994
52995 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
52996
52997 commit 0b8f2a27861a9fd06eb55a34f855ec9c5102aab4
52998 Author: Wolfgang Denk <wd@denx.de>
52999 Date: Sun Mar 16 01:12:58 2008 +0100
53000
53001 Conding style cleanup
53002
53003 Signed-off-by: Wolfgang Denk <wd@denx.de>
53004
53005 commit 41712b4e8c95dff23354bcd620e1f9477160c190
53006 Author: Stefan Roese <sr@denx.de>
53007 Date: Wed Mar 5 12:31:53 2008 +0100
53008
53009 ppc4xx: Add USB OHCI support to AMCC Canyonlands 460EX eval board
53010
53011 This patch adds USB OHCI support to the Canyonlands board port. It also
53012 enables EXT2 support.
53013
53014 Signed-off-by: Stefan Roese <sr@denx.de>
53015
53016 commit 2596f5b9d353ff3e4387a3325d05740f16958038
53017 Author: Stefan Roese <sr@denx.de>
53018 Date: Wed Mar 5 12:29:32 2008 +0100
53019
53020 usb: Add CFG_OHCI_USE_NPS to common USB-OHCI driver
53021
53022 This patch adds CFG_OHCI_USE_NPS to the common USB-OHCI driver. This
53023 way a board just needs to define this new option to enable the "force
53024 NoPowerSwitching mode" instead of adding new CPU/architecture defines
53025 to the USB source itself.
53026
53027 This new option will be used first with the new AMCC 460EX Canyonlands
53028 board port, which will be posted in a few days.
53029
53030 This patch also fixes a small compilation problem when DEBUG is enabled.
53031
53032 Signed-off-by: Stefan Roese <sr@denx.de>
53033
53034 commit 71665ebf88408ff2acb762af47989fd4365b321a
53035 Author: Stefan Roese <sr@denx.de>
53036 Date: Mon Mar 3 17:27:02 2008 +0100
53037
53038 ppc4xx: Add Canyonlands NAND booting support
53039
53040 460EX doesn't support a fixed bootstrap option to boot from 512 byte page
53041 NAND devices. The only bootstrap option for NAND booting is option F for
53042 2k page devices. So to boot from a 512 bype page device, the I2C bootstrap
53043 EEPROM needs to be programmed accordingly.
53044
53045 This patch adds basic NAND booting support for the AMCC Canyonlands aval
53046 board and also adds support to the "bootstrap" command, to enable NAND
53047 booting I2C setting.
53048
53049 Tested with 512 byte page NAND device (32MByte) on Canyonlands.
53050
53051 Signed-off-by: Stefan Roese <sr@denx.de>
53052
53053 commit c813f1f835a7edfdb929f2843b09db72cd5cd2f2
53054 Author: Stefan Roese <sr@denx.de>
53055 Date: Tue Mar 11 16:53:00 2008 +0100
53056
53057 ppc4xx: Add AMCC Canyonlands support (460EX) (3/3)
53058
53059 This patch adds support for the AMCC Canyonlands 460EX evaluation
53060 board.
53061
53062 Signed-off-by: Stefan Roese <sr@denx.de>
53063
53064 commit 6983fe21f774a924d3adb263a270bc2f301f2aa2
53065 Author: Stefan Roese <sr@denx.de>
53066 Date: Tue Mar 11 16:52:24 2008 +0100
53067
53068 ppc4xx: Add AMCC Canyonlands support (460EX) (2/3)
53069
53070 This patch adds support for the AMCC Canyonlands 460EX evaluation
53071 board.
53072
53073 Signed-off-by: Stefan Roese <sr@denx.de>
53074
53075 commit 8e1a3fe545bbcfceafe183344ebc9f1ad03819c1
53076 Author: Stefan Roese <sr@denx.de>
53077 Date: Tue Mar 11 16:51:17 2008 +0100
53078
53079 ppc4xx: Add AMCC Canyonlands support (460EX) (1/3)
53080
53081 This patch adds support for the AMCC Canyonlands 460EX evaluation
53082 board.
53083
53084 Signed-off-by: Stefan Roese <sr@denx.de>
53085
53086 commit 43c60992cdf72496e7eaaa3fbd37ebbe75835f69
53087 Author: Stefan Roese <sr@denx.de>
53088 Date: Tue Mar 11 15:11:43 2008 +0100
53089
53090 ppc4xx: Add basic support for AMCC 460EX/460GT (5/5)
53091
53092 This patch adds basic support for the AMCC 460EX/460GT PPC's.
53093
53094 Signed-off-by: Stefan Roese <sr@denx.de>
53095
53096 commit 6f2eb3f3d8ea2dbb224d0da5a12038693bab9945
53097 Author: Stefan Roese <sr@denx.de>
53098 Date: Tue Mar 11 15:11:18 2008 +0100
53099
53100 ppc4xx: Add basic support for AMCC 460EX/460GT (4/5)
53101
53102 This patch adds basic support for the AMCC 460EX/460GT PPC's.
53103
53104 Signed-off-by: Stefan Roese <sr@denx.de>
53105
53106 commit 999ecd5aca381984d8ebbeb207ece82a1c275577
53107 Author: Stefan Roese <sr@denx.de>
53108 Date: Tue Mar 11 15:07:10 2008 +0100
53109
53110 ppc4xx: Add basic support for AMCC 460EX/460GT (3/5)
53111
53112 This patch adds basic support for the AMCC 460EX/460GT PPC's.
53113
53114 Signed-off-by: Stefan Roese <sr@denx.de>
53115
53116 commit 2801b2d2a9906f206ab9ee8d0b6e746d2b7fe05a
53117 Author: Stefan Roese <sr@denx.de>
53118 Date: Tue Mar 11 15:05:50 2008 +0100
53119
53120 ppc4xx: Add basic support for AMCC 460EX/460GT (2/5)
53121
53122 This patch adds basic support for the AMCC 460EX/460GT PPC's.
53123
53124 Signed-off-by: Stefan Roese <sr@denx.de>
53125
53126 commit 8ac41e3e37c3080c6b1d9461d654161cfe2aa492
53127 Author: Stefan Roese <sr@denx.de>
53128 Date: Tue Mar 11 15:05:26 2008 +0100
53129
53130 ppc4xx: Add basic support for AMCC 460EX/460GT (1/5)
53131
53132 This patch adds basic support for the AMCC 460EX/460GT PPC's.
53133
53134 Signed-off-by: Stefan Roese <sr@denx.de>
53135
53136 commit 56e410178375d9f20be25fb24e180974f0ae120b
53137 Author: Stefan Roese <sr@denx.de>
53138 Date: Tue Feb 19 22:07:57 2008 +0100
53139
53140 ppc4xx: interrupt.c reworked
53141
53142 This patch is a rework of the 4xx interrupt handling done while
53143 adding the 460EX/GT support. Interrupts are needed on 4xx for the
53144 EMAC driver.
53145
53146 Signed-off-by: Stefan Roese <sr@denx.de>
53147
53148 commit 84a999b6cdd0b02dc7de2cacc306eaa84afe2b46
53149 Author: Stefan Roese <sr@denx.de>
53150 Date: Tue Feb 19 22:01:57 2008 +0100
53151
53152 ppc4xx: program_tlb now uses 64bit physical addess
53153
53154 This patch changes the physical addess parameter from 32bit to 64bit.
53155 This is needed for 36bit 4xx platforms to access areas located
53156 beyond the 4GB border, like SoC peripherals (EBC etc.).
53157
53158 Signed-off-by: Stefan Roese <sr@denx.de>
53159
53160 commit c3307fa186af85771924c434997089b8104c0a46
53161 Author: Stefan Roese <sr@denx.de>
53162 Date: Tue Feb 19 21:58:25 2008 +0100
53163
53164 ppc4xx: miiphy.c reworked
53165
53166 While adding the 460EX/GT support I reworked the 4xx miiphy code. It
53167 badly neede some cleanup.
53168
53169 Signed-off-by: Stefan Roese <sr@denx.de>
53170
53171 commit 88aff62df39c0756241ea9f9b5a7b3ade26cb82b
53172 Author: Stefan Roese <sr@denx.de>
53173 Date: Tue Feb 19 16:21:49 2008 +0100
53174
53175 rtc: Add M41T62 support
53176
53177 This patch add support for the STM M41T62 RTC. It is used and tested
53178 on the AMCC Canyonlands 406EX platform.
53179
53180 Signed-off-by: Stefan Roese <sr@denx.de>
53181
53182 commit 217d383e201adc7f2271145ae345ea5eae2b7170
53183 Author: Niklaus Giger <niklaus.giger@netstal.com>
53184 Date: Mon Feb 25 18:46:43 2008 +0100
53185
53186 ppc4xx: Add 405GPr based MCU25 board specific files
53187
53188 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
53189
53190 commit 75a66dcdb383863ad33f0534cfc27b7a86947dad
53191 Author: Niklaus Giger <niklaus.giger@netstal.com>
53192 Date: Mon Feb 25 18:46:42 2008 +0100
53193
53194 ppc4xx: Add 405GPr based MCU25 board config file
53195
53196 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
53197
53198 commit b05f35436b733a240559e77e46bed8439665ecc5
53199 Author: Niklaus Giger <niklaus.giger@netstal.com>
53200 Date: Mon Feb 25 18:46:41 2008 +0100
53201
53202 ppc4xx: Add 405GPr based MCU25 board. Global files
53203
53204 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
53205
53206 commit 14c27b35ac812a71abce6e3e2f4129d5e9313660
53207 Author: Niklaus Giger <niklaus.giger@netstal.com>
53208 Date: Mon Feb 25 18:37:02 2008 +0100
53209
53210 ppc4xx: HCU4/5. remove obsolete hcu_flash.c
53211
53212 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
53213
53214 commit a079494853cc2bfeddb26673219db0b4b2b31566
53215 Author: Niklaus Giger <niklaus.giger@netstal.com>
53216 Date: Mon Feb 25 18:37:01 2008 +0100
53217
53218 ppc4xx: HCU4/5. Use FLASH_CFI_LEGACY
53219
53220 Cleanup: Remove custom flash driver for 8 bit boot-eprom and replace it with
53221 the FLASH_CFI_LEGACY et al. config options.
53222
53223 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
53224
53225 commit e4170e5a50c8110f792bc37472833ae669d69951
53226 Author: Stefan Roese <sr@denx.de>
53227 Date: Tue Mar 11 13:52:25 2008 +0100
53228
53229 ppc4xx: Fix comment in 405EX DDR2 init code
53230
53231 Signed-off-by: Stefan Roese <sr@denx.de>
53232
53233 commit 766529fccc860ecb9e955b4239dff69cd9e4ea09
53234 Author: Bartlomiej Sieka <tur@semihalf.com>
53235 Date: Fri Mar 14 16:22:34 2008 +0100
53236
53237 Add MD5 support to the new uImage format
53238
53239 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
53240
53241 commit 0ede0c383530a418cf98be9122371a86573cd0db
53242 Author: Bartlomiej Sieka <tur@semihalf.com>
53243 Date: Fri Mar 14 16:22:34 2008 +0100
53244
53245 Add the MD5 algorithm
53246
53247 MD5 supoprt is turned on by defining CONFIG_MD5, the digest can be then
53248 calculated using the md5() function -- see include/md5.h for details.
53249
53250 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
53251
53252 commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0
53253 Author: Wolfgang Denk <wd@denx.de>
53254 Date: Fri Mar 14 16:04:54 2008 +0100
53255
53256 tools/setlocalversion: use a git-describe-ish format
53257
53258 Change the automatic local version to have the form -nnnnn-gSHA1SUMID,
53259 where 'nnnnn' is the number of commits since the last tag (i.e.,
53260 1.3.2-rc3). This makes it much easier to recognize "newer" versions
53261 and to see how much has been changed since the referenced tag.
53262
53263 Stolen from Linux kernel's scripts/setlocalversio, see commit d882421f.
53264
53265 Signed-off-by: Wolfgang Denk <wd@denx.de>
53266
53267 commit c6dc21c84de0f159a1752c5ebd33cff843f63609
53268 Author: Wolfgang Denk <wd@denx.de>
53269 Date: Thu Mar 13 14:32:03 2008 +0100
53270
53271 HMI1001: add support for MPC5200 Rev. B processors.
53272
53273 Signed-off-by: Wolfgang Denk <wd@denx.de>
53274
53275 commit 90f13dce7a7a9a84d5730576c9a24d0dbb07cb3a
53276 Author: Wolfgang Denk <wd@denx.de>
53277 Date: Thu Mar 13 14:29:49 2008 +0100
53278
53279 TQM5200: remove dead code
53280
53281 This board never used a MGT5100 processor.
53282
53283 Signed-off-by: Wolfgang Denk <wd@denx.de>
53284
53285 commit afe45c87e3c5d77bad76b1a57dccd20764d45b5d
53286 Author: Marian Balakowicz <m8@semihalf.com>
53287 Date: Wed Mar 12 12:14:15 2008 +0100
53288
53289 [new uImage] Fix build issue on ARM
53290
53291 ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead.
53292
53293 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53294
53295 commit 3310c549a73a949430bfda90876df7552a1dab0c
53296 Author: Marian Balakowicz <m8@semihalf.com>
53297 Date: Wed Mar 12 12:13:13 2008 +0100
53298
53299 [new uImage] Add new uImage format documentation and examples
53300
53301 Create doc/uImage.FIT documentation directory with the following files:
53302 - command_syntax_extensions.txt : extended command syntax description
53303 - howto.txt : short usage howto
53304 - source_file_format.txt : internal new uImage format description
53305
53306 Add example image source files:
53307 - kernel.its
53308 - kernel_fdt.its
53309 - multi.its
53310
53311 Update README appropriately.
53312
53313 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53314 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
53315
53316 commit 1ec73761d2e247078f4520a265d463e8b73391a2
53317 Author: Marian Balakowicz <m8@semihalf.com>
53318 Date: Wed Mar 12 10:35:52 2008 +0100
53319
53320 [new uImage] Fix definition of common bootm_headers_t fields
53321
53322 verify, autostart and lmb fields are used regardless of CONFIG_FIT
53323 setting, move their definitions to common section.
53324
53325 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53326
53327 commit 1d1cb4270edc6a99276834064069717f9782c491
53328 Author: Marian Balakowicz <m8@semihalf.com>
53329 Date: Wed Mar 12 10:35:51 2008 +0100
53330
53331 [new uImage] Fix build problems on trab board
53332
53333 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53334
53335 commit f773bea8e11f4a11c388dcee956b2444203e6b65
53336 Author: Marian Balakowicz <m8@semihalf.com>
53337 Date: Wed Mar 12 10:35:46 2008 +0100
53338
53339 [new uImage] Add proper ramdisk/FDT handling when FIT configuration is used
53340
53341 Save FIT configuration provied in the first bootm argument and use it
53342 when to get ramdisk/FDT subimages when second and third (ramdisk/FDT)
53343 arguments are not specified.
53344
53345 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53346
53347 commit 2682ce8a4225f23d72bb7fed069e928dd39d34ae
53348 Author: Marian Balakowicz <m8@semihalf.com>
53349 Date: Wed Mar 12 10:33:01 2008 +0100
53350
53351 [new uImage] More verbose kernel image uncompress error message
53352
53353 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53354
53355 commit 1372cce2b9040fb640e5032b84e3a033a22d6ff0
53356 Author: Marian Balakowicz <m8@semihalf.com>
53357 Date: Wed Mar 12 10:33:01 2008 +0100
53358
53359 [new uImage] Use show_boot_progress() for new uImage format
53360
53361 This patch allocates a set of show_boot_progress() IDs for new uImage format
53362 and adds show_boot_progress() calls in new uImage format handling code.
53363
53364 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53365
53366 commit c28c4d193dbfb20b2dd3a5447640fd6de7fd0720
53367 Author: Marian Balakowicz <m8@semihalf.com>
53368 Date: Wed Mar 12 10:33:01 2008 +0100
53369
53370 [new uImage] Add new uImage fromat support to fpga command
53371
53372 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53373
53374 commit 09475f7527460e426c0e0628fc5b8f3754fbaa23
53375 Author: Marian Balakowicz <m8@semihalf.com>
53376 Date: Wed Mar 12 10:33:01 2008 +0100
53377
53378 [new uImage] Add new uImage format handling to other bootm related commands
53379
53380 Updated commands:
53381
53382 docboot - cmd_doc.c
53383 fdcboot - cmd_fdc.c
53384 diskboot - cmd_ide.c
53385 nboot - cmd_nand.c
53386 scsiboot - cmd_scsi.c
53387 usbboot - cmd_usb.c
53388
53389 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53390
53391 commit 1b7897f28d49a80d78d760ec6f6f11dc0f914338
53392 Author: Marian Balakowicz <m8@semihalf.com>
53393 Date: Wed Mar 12 10:33:00 2008 +0100
53394
53395 [new uImage] Add new uImage format support to imgextract command
53396
53397 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53398
53399 commit 424c4abdd175d2c470510df8ce0e32d3f463ec16
53400 Author: Marian Balakowicz <m8@semihalf.com>
53401 Date: Wed Mar 12 10:33:00 2008 +0100
53402
53403 [new uImage] Add new uImage format support to autoscript routine
53404
53405 autoscript() routine is updated to accept second argument, which
53406 is only used for FIT images and provides a FIT subimage unit name.
53407
53408 autoscript() routine callers must now pass two arguments. For
53409 non-interactive use (like in cmd_load.c, cmd_net.c), new environment
53410 variable 'autoscript_uname' is introduced and used as a FIT
53411 subimage unit name source.
53412
53413 autoscript command accepts extended syntax of the addr argument:
53414 addr:<subimg_uname>
53415
53416 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53417
53418 commit cd7c596e9f561dbbc17b717277438aee78cde14f
53419 Author: Marian Balakowicz <m8@semihalf.com>
53420 Date: Wed Mar 12 10:33:00 2008 +0100
53421
53422 [new uImage] Add new uImage format support to arch specific do_bootm_linux() routines
53423
53424 This patch updates architecture specific implementations of
53425 do_bootm_linux() adding new uImage format handling for
53426 operations like get kernel entry point address, get kernel
53427 image data start address.
53428
53429 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53430
53431 commit 3dfe110149311425919e6d6a14b561b4207498f1
53432 Author: Marian Balakowicz <m8@semihalf.com>
53433 Date: Wed Mar 12 10:32:59 2008 +0100
53434
53435 [new uImage] Add node offsets for FIT images listed in struct bootm_headers
53436
53437 This patch adds new node offset fields to struct bootm_headers
53438 and updates bootm_headers processing code to make use of them.
53439 Saved node offsets allow to avoid repeating fit_image_get_node() calls.
53440
53441 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53442
53443 commit bc8ed486b125452ba3bd8344f052f437329150c5
53444 Author: Marian Balakowicz <m8@semihalf.com>
53445 Date: Wed Mar 12 10:32:53 2008 +0100
53446
53447 [new uImage] ppc: Add new uImage format support to FDT handling routines
53448
53449 Support for new (FIT) format uImages is added to powerpc specific
53450 boot_get_fdt() routine which now recognizes, sanity checks FIT image
53451 and is able to access data sections of the requested component image.
53452
53453 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53454
53455 commit a44a269a905f924b420020506a4d7d7eedcc0eaf
53456 Author: Marian Balakowicz <m8@semihalf.com>
53457 Date: Wed Mar 12 10:14:57 2008 +0100
53458
53459 [new uImage] Re-enable interrupts for non automatic booting
53460
53461 Re-enable interrupts if we return from do_bootm_<os> and 'autostart'
53462 environment variable is not set to 'yes'.
53463
53464 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53465
53466 commit d985c8498c4e47095820da97aa722381d39172c5
53467 Author: Marian Balakowicz <m8@semihalf.com>
53468 Date: Wed Mar 12 10:14:38 2008 +0100
53469
53470 [new uImage] Remove unnecessary arguments passed to ramdisk routines
53471
53472 boot_get_ramdisk() and image_get_ramdisk() do not need all
53473 cmdtp, flag, argc and argv arguments. Simplify routines definition.
53474
53475 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53476
53477 commit c87796483bc7c2900470dc747c367f602577608d
53478 Author: Marian Balakowicz <m8@semihalf.com>
53479 Date: Wed Mar 12 10:12:37 2008 +0100
53480
53481 [new uImage] Add new uImage format support for ramdisk handling
53482
53483 This patch updates boot_get_ramdisk() routine adding format
53484 verification and handling for new (FIT) uImages.
53485
53486 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53487
53488 commit 6986a385671749ecb3f60cf99e9cbae8e47bb50e
53489 Author: Marian Balakowicz <m8@semihalf.com>
53490 Date: Wed Mar 12 10:01:05 2008 +0100
53491
53492 [new uImage] Add new uImage format support for kernel booting
53493
53494 New format uImages are recognized by the bootm command,
53495 validity of specified kernel component image is checked and
53496 its data section located and used for further processing
53497 (uncompress, load, etc.)
53498
53499 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53500
53501 commit e32fea6adb620ecf2bd70acf2dd37e53df9d1547
53502 Author: Marian Balakowicz <m8@semihalf.com>
53503 Date: Tue Mar 11 12:35:20 2008 +0100
53504
53505 [new uImage] Add new uImage format support for imls and iminfo commands
53506
53507 imls and iminfo can now recognize nad print out contents of the new (FIT)
53508 format uImages.
53509
53510 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53511
53512 commit 9d25438fe7d70cf35a8a293ea5e392fefc672613
53513 Author: Bartlomiej Sieka <tur@semihalf.com>
53514 Date: Tue Mar 11 12:34:47 2008 +0100
53515
53516 [new uImage] Add support for new uImage format to mkimage tool
53517
53518 Support for the new uImage format (FIT) is added to mkimage tool.
53519 Commandline syntax is appropriately extended:
53520
53521 mkimage [-D dtc_options] -f fit-image.its fit-image
53522
53523 mkimage (together with dtc) takes fit-image.its and referenced therein
53524 binaries (like vmlinux.bin.gz) as inputs, and produces fit-image file -- the
53525 final image that can be transferred to the target (e.g., via tftp) and then
53526 booted using the bootm command in U-Boot.
53527
53528 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
53529
53530 commit eb6175edd6c120d8b89678243e5a2be362ee8e40
53531 Author: Marian Balakowicz <m8@semihalf.com>
53532 Date: Mon Mar 10 17:53:49 2008 +0100
53533
53534 [new uImage] Make node unit names const in struct bootm_headers
53535
53536 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53537
53538 commit 5dfb52138688ccbf0146f62683fe6217b3ce1b05
53539 Author: Marian Balakowicz <m8@semihalf.com>
53540 Date: Fri Feb 29 21:24:06 2008 +0100
53541
53542 [new uImage] New uImage low-level API
53543
53544 Add FDT-based functions for handling new format component images,
53545 configurations, node operations, property get/set, etc.
53546
53547 fit_ - routines handling global new format uImage operations
53548 like get/set top level property, process all nodes, etc.
53549 fit_image_ - routines handling component images subnodes
53550 fit_conf_ - routines handling configurations node
53551
53552 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
53553 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53554
53555 commit 30f1806f60978d707b0cff2d7bf89d141fc24290
53556 Author: Wolfgang Denk <wd@denx.de>
53557 Date: Sun Mar 9 16:20:02 2008 +0100
53558
53559 Release v1.3.2
53560
53561 Update CHANGELOG for release.
53562
53563 Signed-off-by: Wolfgang Denk <wd@denx.de>
53564
53565 commit 5b464c289ba715d0979b6e1f94947bb8f1068d16
53566 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53567 Date: Sun Mar 9 14:52:11 2008 +0100
53568
53569 SCM: fix 'packed' attribute ignored for field of type 'can_msg_t' warnings
53570
53571 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53572 Signed-off-by: Wolfgang Denk <wd@denx.de>
53573
53574 commit db695b78515ddb88a2d4f3357c120345efbf59ec
53575 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53576 Date: Sun Mar 9 10:44:01 2008 +0100
53577
53578 scb9328: Fix flash warning: type qualifiers ignored on function return type
53579
53580 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53581
53582 commit 2b3e7e61d6a72f16aee93f870bc6af67f30758c4
53583 Author: Wolfgang Denk <wd@denx.de>
53584 Date: Sun Mar 9 10:50:41 2008 +0100
53585
53586 esd/common/fpga.c: fix indentation.
53587
53588 Signed-off-by: Wolfgang Denk <wd@denx.de>
53589
53590 commit cc3843e36453e2b8db65d7e56de938ba045016a0
53591 Author: Wolfgang Denk <wd@denx.de>
53592 Date: Sun Mar 9 10:33:31 2008 +0100
53593
53594 common/kgdb.c: fix 'dereferencing type-punned pointer' warning
53595
53596 and get rid of a couple of unneeded casts.
53597
53598 Signed-off-by: Wolfgang Denk <wd@denx.de>
53599
53600 commit 8d4f4a838d7dc7cf4de17e3e9a67e2f222b6a1c8
53601 Author: Wolfgang Denk <wd@denx.de>
53602 Date: Sun Mar 9 10:09:53 2008 +0100
53603
53604 esd/common/fpga.c: fix 'assignment of read-only location' error
53605
53606 Signed-off-by: Wolfgang Denk <wd@denx.de>
53607
53608 commit c6fe4dabac066e8758345d249032768496983a3e
53609 Author: Wolfgang Denk <wd@denx.de>
53610 Date: Sun Mar 9 02:13:19 2008 +0100
53611
53612 Makefile: make build silently again.
53613
53614 Signed-off-by: Wolfgang Denk <wd@denx.de>
53615
53616 commit 76babc86576f092573599334c85ec543fdbc6015
53617 Author: Wolfgang Denk <wd@denx.de>
53618 Date: Sun Mar 9 02:07:49 2008 +0100
53619
53620 m501sk: Fix out of tree building
53621
53622 Signed-off-by: Wolfgang Denk <wd@denx.de>
53623
53624 commit 210ed2004e062fdd03f25ab4925998aa1bd08a07
53625 Author: Wolfgang Denk <wd@denx.de>
53626 Date: Sun Mar 9 00:06:09 2008 +0100
53627
53628 ADS5121: fix out of tree build
53629
53630 and simplify Makefile a bit.
53631
53632 Signed-off-by: Wolfgang Denk <wd@denx.de>
53633
53634 commit 46cb5074a3f74de64ebd97dd0c4ec7eb3d768b93
53635 Author: Wolfgang Denk <wd@denx.de>
53636 Date: Sat Mar 8 22:35:31 2008 +0100
53637
53638 Release v1.3.2
53639
53640 Signed-off-by: Wolfgang Denk <wd@denx.de>
53641
53642 commit 78a90f827df74520e939c794fc7413dace21c4db
53643 Author: Wolfgang Denk <wd@denx.de>
53644 Date: Sat Mar 8 22:35:04 2008 +0100
53645
53646 Update CHANGELOG
53647
53648 Signed-off-by: Wolfgang Denk <wd@denx.de>
53649
53650 commit 58f3c57c6008b42e01f551d3be6efd88c14ac87f
53651 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53652 Date: Sat Mar 8 21:30:04 2008 +0100
53653
53654 esd: Fix warning: passing argument 1 of 'fpga_boot' discards qualifiers from pointer target type
53655
53656 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53657
53658 commit d75469d48c05795144f4b8ba76addbb4920a7bba
53659 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
53660 Date: Sat Mar 8 09:25:49 2008 +0900
53661
53662 net: rtl8169: Add processing when OWNbit did't enable in rtl_recv()
53663
53664 When rtl_recv() of rtl8169 is called, OWNbit of status register
53665 is not enable occasionally.
53666 rtl_recv() doesn't work normally when the driver doesn't do
53667 appropriate processing.
53668 This patch fix this problem.
53669
53670 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
53671
53672 commit 82afabfeb8ae6a27c7b396011ea99f4712aa73fa
53673 Author: Heiko Schocher <hs@denx.de>
53674 Date: Fri Mar 7 08:15:28 2008 +0100
53675
53676 mgsuvd: update board configuration
53677
53678 initialize the UPIOx controller.
53679
53680 Signed-off-by: Heiko Schocher <hs@denx.de>
53681
53682 commit e492c90c26215e459aec0fdf0f8ef1fd204988f5
53683 Author: Heiko Schocher <hs@denx.de>
53684 Date: Fri Mar 7 08:13:41 2008 +0100
53685
53686 mgcoge: update board configuration
53687
53688 add support for the config Flash.
53689 initialize the UPIOx controller.
53690
53691 Signed-off-by: Heiko Schocher <hs@denx.de>
53692
53693 commit 270fe261b7f9292800b2b3d1bf19ae7cbc880258
53694 Author: Kim Phillips <kim.phillips@freescale.com>
53695 Date: Fri Mar 7 12:27:31 2008 -0600
53696
53697 mpc83xx: make dtb basename file references equal those of linux
53698
53699 the dts file basenames were updated in linux - this helps avoid
53700 inadvertently loading any old dtbs laying around.
53701
53702 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
53703
53704 commit f30b6154f16f5ffa4a9f5bfca5e114d72b6ef675
53705 Author: Kim Phillips <kim.phillips@freescale.com>
53706 Date: Wed Feb 27 16:08:22 2008 -0600
53707
53708 net: uec_phy: actually increment the timeout counter
53709
53710 allow u-boot to recover (and, e.g., switch to another interface) in the
53711 case where a PHY does not report autonegotiation is complete within its
53712 two second timeout value.
53713
53714 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
53715
53716 commit 772003e43957ee0c895abed7cd82cbe72820cbb8
53717 Author: Markus Brunner <super.firetwister@googlemail.com>
53718 Date: Wed Mar 5 21:38:12 2008 +0100
53719
53720 fix taihu soft spi_read
53721
53722 The taihu board used gpio_read_out_bit which reads the output register and not
53723 the pin state.
53724
53725 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
53726
53727 commit fc84a8495ac750f6b4adae81f8c4f100f65b6340
53728 Author: Stefan Roese <sr@denx.de>
53729 Date: Fri Mar 7 08:01:43 2008 +0100
53730
53731 ppc4xx: Sequoia: Add device tree (fdt) Linux booting default env variables
53732
53733 Signed-off-by: Stefan Roese <sr@denx.de>
53734
53735 commit bd4458cb47abecabd406b1210457be96c69fc49d
53736 Author: Dave Liu <r63238@freescale.com>
53737 Date: Tue Mar 4 16:59:22 2008 +0800
53738
53739 837xEMDS: Improve the system performance
53740
53741 1. Make the CSB bus pipeline depth as 4, and enable
53742 the repeat mode;
53743 2. Raise the eTSEC emergency priority;
53744 3. Use the highest IP blocks clock.
53745
53746 Signed-off-by: Dave Liu <daveliu@freescale.com>
53747
53748 commit d8ab58b212481b1c57947ea21aa96c4ce800d0b4
53749 Author: Detlev Zundel <dzu@denx.de>
53750 Date: Thu Mar 6 16:45:53 2008 +0100
53751
53752 Replace "run load; run update" with conditionalized "run load update".
53753
53754 The latter version stops when "run load" fails for whatever reasons
53755 rendering the combination *a lot* more secure.
53756
53757 Signed-off-by: Detlev Zundel <dzu@denx.de>
53758
53759 commit 6bc113886d7d316df1a4e459bec8baf027518551
53760 Author: Stefan Roese <sr@denx.de>
53761 Date: Tue Mar 4 17:40:41 2008 +0100
53762
53763 net: Print error message upon net usage when no ethernet-interface is found
53764
53765 This patch fixes a problem seen on PPC4xx boards, when no MAC address is
53766 defined. Then no ethernet interface is available but a simple "tftp"
53767 command will return without any error message which is quite confusing.
53768
53769 Signed-off-by: Stefan Roese <sr@denx.de>
53770
53771 commit a30a549a3553032d809e0356306b62de0b125901
53772 Author: Jon Loeliger <jdl@freescale.com>
53773 Date: Tue Mar 4 10:03:03 2008 -0600
53774
53775 Remove erroneous or extra spd.h #includers.
53776
53777 Many of the spd.h #includers don't need it,
53778 and wanted to have spd_sdram() declared instead.
53779 Since they didn't get that, some also had open
53780 coded extern declarations of it instead or as well.
53781 Fix it all up by using spd_sdram.h where needed.
53782
53783 Signed-off-by: Jon Loeliger <jdl@freescale.com>
53784
53785 commit a4475386cef14af3fd88f0518b688e755669486d
53786 Author: Wolfgang Denk <wd@denx.de>
53787 Date: Tue Mar 4 17:41:28 2008 +0100
53788
53789 PCS440EP: fix build problems (redundant #define)
53790
53791 Signed-off-by: Wolfgang Denk <wd@denx.de>
53792
53793 commit e85e2fa85ec09a6fac2846d1d881d8737e2bbda9
53794 Author: Stefan Roese <sr@denx.de>
53795 Date: Tue Mar 4 17:39:25 2008 +0100
53796
53797 net: Print error message upon net usage when no ethernet-interface is found
53798
53799 This patch fixes a problem seen on PPC4xx boards, when no MAC address is
53800 defined. Then no ethernet interface is available but a simple "tftp"
53801 command will return without any error message which is quite confusing.
53802
53803 Signed-off-by: Stefan Roese <sr@denx.de>
53804
53805 commit 384faaafb999cae3ce447c93e28a0b7e2e5fef53
53806 Author: Wolfgang Denk <wd@denx.de>
53807 Date: Tue Mar 4 17:38:50 2008 +0100
53808
53809 W7OLMC/W7OLMG: fix build problems (redundant #define)
53810
53811 Signed-off-by: Wolfgang Denk <wd@denx.de>
53812
53813 commit f9301e1cda296245ba052d7b08321199c3d0af9d
53814 Author: Wolfgang Denk <wd@denx.de>
53815 Date: Tue Mar 4 14:58:31 2008 +0100
53816
53817 Makefile: fix problem with out-of-tree builds introduced by 5013c09f
53818
53819 Commit 5013c09f (Makefile: cleanup "clean" target) introduced a
53820 problem for out-of-tree builds which caused "make clean" to fail.
53821
53822 Signed-off-by: Wolfgang Denk <wd@denx.de>
53823
53824 commit dfece9500556bed5d8244b1c15d973cec7c25bfe
53825 Author: Wolfgang Denk <wd@denx.de>
53826 Date: Tue Mar 4 11:58:26 2008 +0100
53827
53828 examples/Makefile: build "hello_world" on 8xx, too.
53829
53830 Signed-off-by: Wolfgang Denk <wd@denx.de>
53831
53832 commit 74eb0222594fd23aafdf168e60e872814eea8b62
53833 Author: Mike Nuss <mike@terascala.com>
53834 Date: Mon Mar 3 15:27:05 2008 -0500
53835
53836 PPC4xx (Sequoia): Fix Ethernet "remote fault" problems
53837
53838 Every now and then a Sequoia board (or equivalent hardware) had
53839 problems connecting to a Gigabit capable network interface.
53840
53841 There were differences in the PHY setup between Linux and U-Boot.
53842
53843 This patch fixes the problem. Apparently "remote fault" is being set,
53844 which signals to some devices (on the other end of the cable) that a
53845 fault has occurred, while other devices ignore it. I believe the RF bit
53846 was causing the issue, but I removed T4 also, to match up with Linux.
53847
53848 Signed-off-by: Mike Nuss <mike@terascala.com>
53849
53850 commit 491fb6dea9f52fdb9cb5996e8e978b9e9685179f
53851 Author: Timur Tabi <timur@freescale.com>
53852 Date: Mon Mar 3 09:58:52 2008 -0600
53853
53854 fix QE firmware uploading limit
53855
53856 Fix a typo in qe_upload_firmware() that prevented uploading firmware on
53857 systems with more than one RISC core.
53858
53859 Signed-off-by: Timur Tabi <timur@freescale.com>
53860
53861 commit 42ba58e0c302b339a3c2faa6006a013c6f186b7a
53862 Author: Bernhard Nemec <bnemec@ganssloser.com>
53863 Date: Mon Mar 3 11:57:23 2008 +0000
53864
53865 Fix endianess problem in cramfs code (cramfs is always host-endian in Linux)
53866
53867 Originally pointed out by Laurent Pinchart <laurent.pinchart@tbox.biz>,
53868 see http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/22846
53869
53870 Signed-off-by: Bernhard Nemec <bnemec <at> ganssloser.com>
53871
53872 commit 84d0c2f1e39caff58bf765a7ab7c72da23c25ec8
53873 Author: Kim B. Heino <Kim.Heino@bluegiga.com>
53874 Date: Mon Mar 3 10:39:13 2008 +0200
53875
53876 fix copy from ram to dataflash
53877
53878 If I try to "cp.b <ram> <dataflash>", u-boot selects normal flash
53879 routines instead of dataflash. This is because it checks "if source
53880 address is not dataflash" instead of target address.
53881
53882 Signed-off-by: Kim B. Heino <Kim.Heino@bluegiga.com>
53883
53884 commit 32bf3d143a888f8deacfdcc97e898f6c06d0aea4
53885 Author: Wolfgang Denk <wd@denx.de>
53886 Date: Mon Mar 3 12:16:44 2008 +0100
53887
53888 Fix quoting problem (preboot setting) in many board config files.
53889
53890 Signed-off-by: Wolfgang Denk <wd@denx.de>
53891
53892 commit 5b0b2b6fc9fe22e3864c2a57316d91a2507ec215
53893 Author: Wolfgang Denk <wd@denx.de>
53894 Date: Mon Mar 3 12:36:49 2008 +0100
53895
53896 ADS5121: Fix default environment.
53897
53898 Signed-off-by: Wolfgang Denk <wd@denx.de>
53899
53900 commit 91c82076ae492bb1f9d9c47a481314631d32dc8e
53901 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53902 Date: Sun Mar 2 16:12:31 2008 +0100
53903
53904 Makefile: Fix missing unconfig and mkconfig use
53905
53906 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53907
53908 commit 8ce4e5c2c02cb7e8adddf7b651d3050d81ce4c1d
53909 Author: michael <trimarchi@gandalf.sssup.it>
53910 Date: Sun Mar 2 23:33:46 2008 +0100
53911
53912 Fix checking fat32 cluster size.
53913
53914 This fixes the cluster size tests in the FAT32 file system.
53915 The current implementation of VFAT support doesn't work if the
53916 referred cluster has an offset > 16bit representation, causing
53917 "fatload" and "fatls" commands etc. to fail.
53918
53919 Signed-off-by: michael trimarchi <trimarchi@gandalf.sssup.it>
53920
53921 commit 661bad63a076a96c39c64f136915f146725af92b
53922 Author: Wolfgang Denk <wd@denx.de>
53923 Date: Sun Mar 2 22:57:23 2008 +0100
53924
53925 Prepare v1.3.2-rc2 release candidate
53926
53927 Signed-off-by: Wolfgang Denk <wd@denx.de>
53928
53929 commit 76957cb3d621bf664311908e5962e151c633c285
53930 Author: Stefan Roese <sr@denx.de>
53931 Date: Sat Mar 1 12:11:40 2008 +0100
53932
53933 ppc4xx: EMAC: Fix 405EZ fifo size setup in EMAC_MR1
53934
53935 The 405EZ only supports 512 bytes of rx-/tx-fifo EMAC sizes. But
53936 currently 4k/2k is configured. This patch fixes this issue.
53937
53938 Thanks to Thomas Kindler <tkindler@lenord.de> for pointing this out.
53939
53940 Signed-off-by: Stefan Roese <sr@denx.de>
53941
53942 commit 118978c8eb43803e2794233922df4249fa278b83
53943 Author: Woodruff, Richard <r-woodruff2@ti.com>
53944 Date: Fri Feb 29 17:34:35 2008 -0600
53945
53946 Fix alignment error on ARM for modules
53947
53948 Fix alignment fault on ARM when running modules. With out an explicit
53949 linker file gcc4.2.1 will half word align __bss_start's value. The word
53950 dereference will crash hello_world.
53951
53952 signed-off-by Richard Woodruff <r-woodruff2@ti.com>
53953
53954 commit ce1120dd703e6f12c59e4eba9962356a0300b832
53955 Author: Dave Liu <r63238@freescale.com>
53956 Date: Fri Feb 29 17:45:31 2008 +0800
53957
53958 fs: Fix ext2 read issue
53959
53960 The ext2 aligned process will corrupt the key
53961 data struct, the patch fix this.
53962
53963 Signed-off-by: Dave Liu <daveliu@freescale.com>
53964
53965 commit 5013c09f7a5675952a3ca88b6bc6c924e63af33e
53966 Author: Wolfgang Denk <wd@denx.de>
53967 Date: Sun Mar 2 22:45:33 2008 +0100
53968
53969 Makefile: cleanup "clean" target
53970
53971 Make sure CDPATH settings cannot interfere.
53972 Update CHANGELOG.
53973
53974 Signed-off-by: Wolfgang Denk <wd@denx.de>
53975
53976 commit ffda586fc1373243c9794babde69500f6293a8d8
53977 Author: Li Yang <leoli@freescale.com>
53978 Date: Fri Feb 29 11:46:05 2008 +0800
53979
53980 add cscope build target
53981
53982 Add cscope build target to generate cscope database for code browsing.
53983
53984 Signed-off-by: Li Yang <leoli@freescale.com>
53985
53986 commit f655adef65e4cf6b929054b049ee19ae9b5ccbe2
53987 Author: Kim Phillips <kim.phillips@freescale.com>
53988 Date: Wed Feb 27 15:06:39 2008 -0600
53989
53990 net: uec_phy: handle 88e1111 rev.B2 erratum 5.6
53991
53992 erratum 5.6 states the autoneg completion bit is functional only if the
53993 autoneg bit is asserted.
53994
53995 This fixes any secondarily-issued networking commands on non-gigabit
53996 links on the mpc8360 mds board.
53997
53998 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
53999
54000 commit 5f91db7f582ca17b1f19f10189c025696f333d2e
54001 Author: John Rigby <jrigby@freescale.com>
54002 Date: Tue Feb 26 09:38:14 2008 -0700
54003
54004 MPC5121e ADS PCI support take 3
54005
54006 Adds PCI support for MPC5121
54007
54008 Tested with drivers/net/rtl8139.c
54009
54010 Support is conditional since PCI on old silicon does not work.
54011
54012 ads5121_PCI_config turns on PCI
54013
54014 In this version, condition compilation of PCI code has been moved
54015 from ifdef in board/ads5121/pci.c to board/ads5121/Makefile as
54016 suggested by Jean-Christophe PLAGNIOL-VILLARD
54017
54018 Signed-off-by: John Rigby <jrigby@freescale.com>
54019
54020 commit 44b4dbed4133f657705b7c5193209da9978243a7
54021 Author: Anatolij Gustschin <agust@denx.de>
54022 Date: Mon Feb 25 23:53:07 2008 +0100
54023
54024 Fix warnings while compilation of post/drivers/memory.c
54025
54026 Fix warnings while compilation with new gcc in eldk-4.2
54027
54028 Signed-off-by: Anatolij Gustschin <agust@denx.de>
54029
54030 commit 4fae35a53b3e958254d6574a1cc7e10811fc6726
54031 Author: Anatolij Gustschin <agust@denx.de>
54032 Date: Mon Feb 25 20:54:04 2008 +0100
54033
54034 ppc4xx: Fix problem in 4xx_enet.c driver
54035
54036 U-Boot crashes in the net loop if CONFIG_4xx_DCACHE is
54037 enabled. To reproduce the problem ensure that 'ethrotate'
54038 environment variable isn't set to "no" and then run
54039 "tftp 200000 not_existent_file".
54040 This patch tries to fix the issue.
54041
54042 Signed-off-by: Anatolij Gustschin <agust@denx.de>
54043
54044 commit 60ec654c5eb80d0fe0c38a3bd42140215bc06484
54045 Author: Anatolij Gustschin <agust@denx.de>
54046 Date: Mon Feb 25 20:04:20 2008 +0100
54047
54048 POST: Disable cache while SPR POST
54049
54050 Currently (since commit b2e2142c) u-boot crashes on
54051 sequoia board while SPR test if CONFIG_4xx_DCACHE is
54052 enabled. This patch disables the cache while SPR test.
54053
54054 Signed-off-by: Anatolij Gustschin <agust@denx.de>
54055
54056 commit c313b2c6c555e7d89ec59bd51c59ab164ad0105d
54057 Author: Martin Krause <martin.krause@tqs.de>
54058 Date: Mon Feb 25 17:52:40 2008 +0100
54059
54060 TQM5200: use automatic fdt memory fixup (part 2)
54061
54062 Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
54063 TB5200 and TB5200_B to fixup the /memory node with the memory values
54064 detected by U-Boot.
54065
54066 Signed-off-by: Martin Krause <martin.krause@tqs.de>
54067
54068 commit 44ceec253ea941b301abf4b079d52324def69d92
54069 Author: Martin Krause <martin.krause@tqs.de>
54070 Date: Mon Feb 25 15:17:05 2008 +0100
54071
54072 TQM5200: use automatic fdt memory fixup
54073
54074 Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
54075 TB5200 and TB5200_B to fixup the /memory node with the memory values
54076 detected by U-Boot.
54077
54078 Signed-off-by: Martin Krause <martin.krause@tqs.de>
54079
54080 commit f3a329acb26017d8e10e9c93e1e726c2a5ac634a
54081 Author: Martin Krause <martin.krause@tqs.de>
54082 Date: Mon Feb 25 13:27:52 2008 +0100
54083
54084 TQM5200: fix bug in SDRAM initialization code
54085
54086 This patch fixes a bug in the SDRAM initialization code for the
54087 TQM5200. The hi_addr bit is now set correctly. Without this patch
54088 the hi_addr bit is always set to 1, if the second SDRAM bank is
54089 not populated.
54090
54091 For other MPC5200 boards a correspondig patch has already been applied
54092 some time ago, see commit a63109281ad41b0fb489fdcb901171f76bcdbc2c.
54093
54094 Signed-off-by: Martin Krause <martin.krause@tqs.de>
54095 --
54096 Forget the first patch please. I confused flash with SDRAM in
54097 the comment ...
54098
54099 commit 217bf6b6a313d9ccb619a4dbc09f73f77cd48df1
54100 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54101 Date: Mon Feb 25 00:03:12 2008 +0100
54102
54103 mx1fs2/flash: Fix multiple compiler warnings
54104
54105 "pointer targets in assignment differ in signedness"
54106
54107 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54108
54109 commit 5599c28cef55be42a8ca6fa8086b1a44e56a85d2
54110 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54111 Date: Mon Feb 25 00:03:11 2008 +0100
54112
54113 arm-imx: Fix register definitions
54114
54115 Sync register definitions with linux
54116
54117 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54118
54119 commit c9bcf75fecc58886af77d2a571cff2eab39eab6f
54120 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54121 Date: Mon Feb 25 00:03:10 2008 +0100
54122
54123 actua1/actua2/actua3: Fix multiple unused variable warnings
54124
54125 - actua1:
54126 actux1.c: In function 'checkboard':
54127 actux1.c:92: warning: unused variable 'revision'
54128
54129 - actua2:
54130 actux2.c: In function 'checkboard':
54131 actux2.c:100: warning: unused variable 's'
54132 actux2.c:99: warning: unused variable 'revision'
54133 actux2.c: In function 'reset_phy':
54134 actux2.c:130: warning: unused variable 'i'
54135
54136 - actua3:
54137 actux3.c: In function 'checkboard':
54138 actux3.c:114: warning: unused variable 'revision'
54139
54140 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54141
54142 commit f8fa6368a6a0c02164da8e2f52f18d457c6977bd
54143 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54144 Date: Sun Feb 24 11:44:29 2008 +0900
54145
54146 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
54147
54148 The previous patch was lacking of i386, microblaze, nios and nios2. This
54149 patch tries to fix them.
54150
54151 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54152
54153 commit 05e07b1ea22844e946cfcf7d5e8a0199d18d2a95
54154 Author: Marian Balakowicz <m8@semihalf.com>
54155 Date: Fri Feb 29 22:22:46 2008 +0100
54156
54157 [new uImage] Fix FDT blob totalsize calculation in boot_relocate_fdt()
54158
54159 Do not use global fdt blob pointer, calculate blob size from routine
54160 argument blob pointer.
54161
54162 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54163
54164 commit d1cc52879c8966507dad9fb575481e6d3985e64e
54165 Author: David Gibson <david@gibson.dropbear.id.au>
54166 Date: Tue Feb 12 00:58:31 2008 +1100
54167
54168 libfdt: Add and use a node iteration helper function.
54169
54170 This patch adds an fdt_next_node() function which can be used to
54171 iterate through nodes of the tree while keeping track of depth. This
54172 function is used to simplify the iteration code in a lot of other
54173 functions, and is also exported for use by library users.
54174
54175 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
54176
54177 commit 8cf30809a82902a471866d2f07725ce3b8a22291
54178 Author: Bartlomiej Sieka <tur@semihalf.com>
54179 Date: Fri Feb 29 16:00:24 2008 +0100
54180
54181 [new uImage] Add libfdt support to mkimage
54182
54183 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54184
54185 commit a6e530f00d31a8494a0422799b2b9a692a9c0eb9
54186 Author: Bartlomiej Sieka <tur@semihalf.com>
54187 Date: Fri Feb 29 16:00:23 2008 +0100
54188
54189 [new uImage] Add sha1.o object to mkimage binary build
54190
54191 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54192
54193 commit df6f1b895c997978f03afe04502ee76b7ba34ab9
54194 Author: Marian Balakowicz <m8@semihalf.com>
54195 Date: Fri Feb 29 16:00:06 2008 +0100
54196
54197 [new uImage] Fix component handling for legacy multi component images
54198
54199 Use uint32_t when accessing size table in image_multi_count() and
54200 image_multi_getimg() for multi component images.
54201
54202 Add missing uimage_to_cpu() endianness conversion.
54203
54204 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54205
54206 commit 570abb0ad120f6002bcaa3cf6f32bd4ca2e1b248
54207 Author: Marian Balakowicz <m8@semihalf.com>
54208 Date: Fri Feb 29 15:59:59 2008 +0100
54209
54210 [new uImage] Share common uImage code between mkimage and U-boot
54211
54212 This patch adds the following common routines:
54213
54214 1) Dedicated mkimage print_header() is replaced with common
54215 image_print_contents()
54216 image_print_contents_noindent()
54217
54218 2) Common os/arch/type/comp fields name <--> id translation routines
54219 genimg_get_os_name()
54220 genimg_get_arch_name()
54221 genimg_get_type_name()
54222 genimg_get_comp_name()
54223 genimg_get_os_id()
54224 genimg_get_arch_id()
54225 genimg_get_type_id()
54226 genimg_get_comp_id()
54227
54228 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54229
54230 commit 9a4daad0a35eb5143037eea9f786a3e9d672bdd6
54231 Author: Marian Balakowicz <m8@semihalf.com>
54232 Date: Fri Feb 29 14:58:34 2008 +0100
54233
54234 [new uImage] Update naming convention for bootm/uImage related code
54235
54236 This patch introduces the following prefix convention for the
54237 image format handling and bootm related code:
54238
54239 genimg_ - dual format shared code
54240 image_ - legacy uImage format specific code
54241 fit_ - new uImage format specific code
54242 boot_ - booting process related code
54243
54244 Related routines are renamed and a few pieces of code are moved around and
54245 re-grouped.
54246
54247 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54248
54249 commit 75fa002c47171b73fb4c1f2c2fe4d6391c136276
54250 Author: Kumar Gala <galak@kernel.crashing.org>
54251 Date: Wed Feb 27 21:51:51 2008 -0600
54252
54253 [new uImage] Respect autostart setting in linux bootm
54254
54255 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54256 Acked-by: Marian Balakowicz <m8@semihalf.com>
54257
54258 commit d3f2fa0d278467b2232e4eb2372f905c3febfbeb
54259 Author: Kumar Gala <galak@kernel.crashing.org>
54260 Date: Wed Feb 27 21:51:50 2008 -0600
54261
54262 [new uImage] Provide ability to restrict region used for boot images
54263
54264 Allow the user to set 'bootm_low' and 'bootm_size' env vars as a way
54265 to restrict what memory range is used for bootm.
54266
54267 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54268 Acked-by: Marian Balakowicz <m8@semihalf.com>
54269
54270 commit e822d7fc4dd4755d4d0a22f05e33f33d1a0481da
54271 Author: Kumar Gala <galak@kernel.crashing.org>
54272 Date: Wed Feb 27 21:51:49 2008 -0600
54273
54274 [new uImage] Use lmb for bootm allocations
54275
54276 Convert generic ramdisk_high(), get_boot_cmdline(), get_boot_kbd()
54277 functions over to using lmb for allocation of the ramdisk, command line
54278 and kernel bd info.
54279
54280 Convert PPC specific fdt_relocate() to use lmb for allocation of the device
54281 tree.
54282
54283 Provided a weak function that board code can call to do additional
54284 lmb reserves if needed.
54285
54286 Also introduce the concept of bootmap_base to specify the offset in
54287 physical memory that the bootmap is located at. This is used for
54288 allocations of the cmdline, kernel bd, and device tree as they should
54289 be contained within bootmap_base and bootmap_base + CFG_BOOTMAPSZ.
54290
54291 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54292
54293 commit f5614e7926863bf0225ec860d9b319741a9c4004
54294 Author: Kumar Gala <galak@kernel.crashing.org>
54295 Date: Wed Feb 27 21:51:48 2008 -0600
54296
54297 [new uImage] Add autostart flag to bootm_headers structure
54298
54299 The autostart env variable was dropped as part of the initial new uImage
54300 cleanup. Add it back here so the arch specific code can decide if it
54301 wants to really boot or not.
54302
54303 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54304 Acked-by: Marian Balakowicz <m8@semihalf.com>
54305
54306 commit 4ed6552f715983bfc7d212c1199a1f796f1144ad
54307 Author: Kumar Gala <galak@kernel.crashing.org>
54308 Date: Wed Feb 27 21:51:47 2008 -0600
54309
54310 [new uImage] Introduce lmb from linux kernel for memory mgmt of boot images
54311
54312 Introduce the LMB lib used on PPC in the kernel as a clean way to manage
54313 the memory spaces used by various boot images and structures. This code
54314 will allow us to simplify the code in bootm and its support functions.
54315
54316 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54317
54318 commit 4648c2e7a173b0d7f17bef4adaa0623090c9e904
54319 Author: Kumar Gala <galak@kernel.crashing.org>
54320 Date: Tue Feb 19 22:03:47 2008 -0600
54321
54322 [new uImage] ppc: Allow boards to specify effective amount of memory
54323
54324 For historical reasons we limited the stack to 256M because some boards
54325 could only map that much via BATS. However newer boards are capable of
54326 mapping more memory (for example 85xx is capable of doing up to 2G).
54327
54328 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54329 Acked-by: Marian Balakowicz <m8@semihalf.com>
54330
54331 commit 274cea2bddbca10cdad7daa518951b75c44ef6bc
54332 Author: Kumar Gala <galak@kernel.crashing.org>
54333 Date: Wed Feb 27 21:51:46 2008 -0600
54334
54335 [new uImage] rework error handling so common functions don't reset
54336
54337 Changed image_get_ramdisk() to just return NULL on error and have
54338 get_ramdisk() propogate that error to the caller. It's left to the
54339 caller to call do_reset() if it wants to.
54340
54341 Also moved calling do_reset() in get_fdt() and fdt_relocate() on ppc
54342 to a common location. In the future we will change get_fdt() and
54343 fdt_relocate() to return success/failure and not call do_reset() at all.
54344
54345 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54346 Acked-by: Marian Balakowicz <m8@semihalf.com>
54347
54348 commit d2bc095a639672def11d5d043b5688d0dbd692ec
54349 Author: Kumar Gala <galak@kernel.crashing.org>
54350 Date: Wed Feb 27 21:51:45 2008 -0600
54351
54352 [new uImage] ppc: Re-order ramdisk/fdt handling sequence
54353
54354 Doing the fdt before the ramdisk allows us to grow the fdt w/o concern
54355 however it does mean we have to go in and fixup the initrd info since
54356 we don't know where it will be.
54357
54358 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54359
54360 commit 27953493ef025fb698d68c5dee39b36f01f4d530
54361 Author: Kumar Gala <galak@kernel.crashing.org>
54362 Date: Wed Feb 27 21:51:44 2008 -0600
54363
54364 [new uImage] ppc: Determine if we are booting an OF style
54365
54366 If we are bootin OF style than we can skip setting up some things
54367 that are used for the old boot method.
54368
54369 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54370 Acked-by: Marian Balakowicz <m8@semihalf.com>
54371
54372 commit a6612bdfe7ef37b9787b66800cf02aaded05fbeb
54373 Author: Kumar Gala <galak@kernel.crashing.org>
54374 Date: Wed Feb 27 21:51:43 2008 -0600
54375
54376 [new uImage] Don't pass kdb to ramdisk_high since we may not have one
54377
54378 We don't actually need the kdb param as we are just using it to get
54379 bd->bi_memsize which we can get from gd->bd->bi_memsize. Also, if we
54380 boot via OF we might not actually fill out a kdb.
54381
54382 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54383 Acked-by: Marian Balakowicz <m8@semihalf.com>
54384
54385 commit 2b22fa4baee51e6b467c44ea1be0d1ecd86e8775
54386 Author: Kumar Gala <galak@kernel.crashing.org>
54387 Date: Wed Feb 27 16:30:47 2008 -0600
54388
54389 85xx: Don't icbi when unlocking the cache
54390
54391 There is no reason to icbi when invalidating the temporary stack in
54392 the d-cache. Its impossible on e500 to have the i-cache contain
54393 any addresses in the temp stack and it can be problematic in generating
54394 transactions on the bus to non-valid addresses.
54395
54396 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54397
54398 commit 534ea6b6f86f8b75ef2ac061ef110a98f103d7d6
54399 Author: Andy Fleming <afleming@freescale.com>
54400 Date: Wed Feb 27 15:50:50 2008 -0600
54401
54402 Fix source for ECM error IVPR
54403
54404 The source vector for the ECM was being set to 2,
54405 but that's what the source vector for DDR was being
54406 set to. Change it to 1.
54407
54408 Signed-off-by: Andy Fleming <afleming@freescale.com>
54409
54410 commit 21fae8b2b4e4e6e648796e07e20ab13e9cb18923
54411 Author: Andy Fleming <afleming@freescale.com>
54412 Date: Wed Feb 27 14:29:58 2008 -0600
54413
54414 Invalidate INIT_RAM TLB mappings
54415
54416 Commit 0db37dc... (and some others) changed the INIT_RAM TLB
54417 mappings to be unguarded. This collided with an existing "bug"
54418 where the mappings for the INIT_RAM were being kept around.
54419 This meant that speculative loads to those addresses were
54420 succeeding in the TLB, and going out to the bus, where they
54421 were causing an exception (there's nothing at that address). The
54422 Flash code was coincidentally causing such a speculative load.
54423 Rather than go back to mapping the INIT RAM as guarded, we fix
54424 it so that the entries for the INIT_RAM are invalidated. Thus
54425 the speculative loads will fail in the TLB, and have no effect.
54426
54427 Signed-off-by: Andy Fleming <afleming@freescale.com>
54428
54429 commit 347b7938d3e561eb215aa386c37fb5acb5a383c6
54430 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54431 Date: Sun Feb 17 22:56:17 2008 +0100
54432
54433 sbc8548: Fix Revision reading and unused variable 'path'
54434
54435 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54436
54437 commit 495d162374c472f46454453553382ad0735dc725
54438 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54439 Date: Sun Feb 17 22:56:16 2008 +0100
54440
54441 sbc8548: Fix cfi flash bank declaration
54442
54443 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54444
54445 commit 4efbe9dbb129f857f27856936112c8c02f016be6
54446 Author: Marian Balakowicz <m8@semihalf.com>
54447 Date: Wed Feb 27 11:02:26 2008 +0100
54448
54449 [new uImage] Correct raw FDT blob handlig when CONFIG_FIT is disabled
54450
54451 Dual format image code must properly handle all three FDT passing methods:
54452 - raw FDT blob passed
54453 - FDT blob embedded in the legacy uImage
54454 - FDT blob embedded in the new uImage
54455
54456 This patch enables proper raw FDT handling when no FIT imaeg support
54457 is compiled in. This is a bit tricky as we must dected FIT format even
54458 when FIT uImage handling is not enabled as both FIT uImages and raw FDT
54459 blobs use tha same low level format (libfdt).
54460
54461 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54462
54463 commit ff0734cff0fb5397ce2f4602f4f3e5ec9c8a36e8
54464 Author: Marian Balakowicz <m8@semihalf.com>
54465 Date: Wed Feb 27 11:02:26 2008 +0100
54466
54467 [new uImage] POWERPC: Add image_get_fdt() routine
54468
54469 FDT blob may be passed either: (1) raw (2) or embedded in the legacy uImage
54470 (3) or embedded in the new uImage. For the (2) case embedding image must be
54471 verified before we get FDT from it. This patch factors out legacy image
54472 specific verification routine to the separate helper routine.
54473
54474 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54475 Acked-by: Kumar Gala <galak@kernel.crashing.org>
54476
54477 commit 1efd43601f90de21ec6c0ebb9880823e822927b1
54478 Author: Marian Balakowicz <m8@semihalf.com>
54479 Date: Wed Feb 27 11:02:07 2008 +0100
54480
54481 [new uImage] Add image_get_kernel() routine
54482
54483 Legacy image specific verification is factored out to a separate helper
54484 routine to keep get_kernel() generic and simple.
54485
54486 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54487 Acked-by: Kumar Gala <galak@kernel.crashing.org>
54488
54489 commit 8a5ea3e6168fe6a2780eeaf257a3b19f30dec658
54490 Author: Marian Balakowicz <m8@semihalf.com>
54491 Date: Wed Feb 27 11:01:04 2008 +0100
54492
54493 [new uImage] Move image verify flag to bootm_headers structure
54494
54495 Do not pass image verification flag directly to related routines.
54496 Simplify argument passing and move it to the bootm_header structure which
54497 contains curently processed image specific data and is already being passed
54498 on the argument list.
54499
54500 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54501 Acked-by: Kumar Gala <galak@kernel.crashing.org>
54502
54503 commit 823afe7cefe00dafefc6696c1cc7aa828c394234
54504 Author: Marian Balakowicz <m8@semihalf.com>
54505 Date: Wed Feb 27 11:00:47 2008 +0100
54506
54507 [Makefile] Sort COBJS in lib_<arch> Makefiles
54508
54509 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54510
54511 commit 6f0f9dfc4ee880fbf400a2ebe14238181a6c3f91
54512 Author: Marian Balakowicz <m8@semihalf.com>
54513 Date: Wed Feb 27 11:00:47 2008 +0100
54514
54515 [new uImage] Optimize gen_get_image() flow control
54516
54517 When CONFIG_HAS_DATAFLASH is not defined gen_get_image() routine has nothing
54518 to do, update its control flow to better reflect that simple case.
54519
54520 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54521 Acked-by: Kumar Gala <galak@kernel.crashing.org>
54522
54523 commit d2ced9eb19ec74f4a359949dbe353427fa6d55ca
54524 Author: Marian Balakowicz <m8@semihalf.com>
54525 Date: Mon Feb 4 08:28:17 2008 +0100
54526
54527 [new uImage] POWERPC: Split get_fdt() into get and relocate routines
54528
54529 PPC specific FDT blob handling code is divided into two separate routines:
54530
54531 get_fdt() - find and verify a FDT blob (either raw or image embedded)
54532 fdt_relocate() - move FDT blob to within BOOTMAP if needed
54533
54534 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54535 Acked-by: Kumar Gala <galak@kernel.crashing.org>
54536
54537 commit 33fa5c0bfaf465de8ceb23fcd6b397f68b35a817
54538 Author: Jon Loeliger <jdl@freescale.com>
54539 Date: Mon Feb 25 13:13:37 2008 -0600
54540
54541 86xx: Fix renamed GUR symbols in sbc8641d board.
54542
54543 Back in commit a551cee99ad1d1da20fd23ad265de47448852f56
54544 (86xx: Fix GUR PCI config registers properly), we should have
54545 changed the MPC86xx_PORBMSR_HA and MPC86xx_PORDEVSR_IO_SEL
54546 symbols in the sbc8641d board as well. Fix this oversight.
54547
54548 Signed-off-by: Jon Loeliger <jdl@freescale.com>
54549
54550 commit 64cd594e623c39f73964d18787763e4533f791f7
54551 Author: Stefan Roese <sr@denx.de>
54552 Date: Mon Feb 25 16:50:48 2008 +0100
54553
54554 ppc4xx: Fix acadia_nand build problem
54555
54556 Don't include testdram() on NAND-booting target acadia_nand. This saves
54557 a few bytes and makes the target build clean again.
54558
54559 Signed-off-by: Stefan Roese <sr@denx.de>
54560
54561 commit 14e099e698d41e8179d05c2b2dbcf704a236f748
54562 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54563 Date: Sun Feb 24 23:03:12 2008 +0000
54564
54565 mx1fs2/flash: Fix multiple pointertargets in assignment differ in signedness
54566
54567 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54568
54569 commit 724902c8464e610642b3a170278b99710325888e
54570 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54571 Date: Sun Feb 24 23:03:11 2008 +0000
54572
54573 arm-imx: Fix registers definition
54574
54575 Sync registers definition with linux
54576
54577 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54578
54579 commit 4cd288b589ea1178947c6e364453c32b3dede6b7
54580 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54581 Date: Sun Feb 24 23:03:10 2008 +0000
54582
54583 actua1/actua2/actua3: Fix multipleunused variable
54584
54585 - actua1:
54586 actux1.c: In function 'checkboard':
54587 actux1.c:92: warning: unused variable 'revision'
54588
54589 - actua2:
54590 actux2.c: In function 'checkboard':
54591 actux2.c:100: warning: unused variable 's'
54592 actux2.c:99: warning: unused variable 'revision'
54593 actux2.c: In function 'reset_phy':
54594 actux2.c:130: warning: unused variable 'i'
54595
54596 - actua3:
54597 actux3.c: In function 'checkboard':
54598 actux3.c:114: warning: unused variable 'revision'
54599
54600 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54601
54602 commit d5934ad7756f038a393a9cfab76a4fe306d9d930
54603 Author: Marian Balakowicz <m8@semihalf.com>
54604 Date: Mon Feb 4 08:28:09 2008 +0100
54605
54606 [new uImage] Add dual format uImage support framework
54607
54608 This patch adds framework for dual format images. Format detection is added
54609 and the bootm controll flow is updated to include cases for new FIT format
54610 uImages.
54611
54612 When the legacy (image_header based) format is detected appropriate
54613 legacy specific handling is invoked. For the new (FIT based) format uImages
54614 dual boot framework has a minial support, that will only print out a
54615 corresponding debug messages. Implementation of the FIT specific handling will
54616 be added in following patches.
54617
54618 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54619
54620 commit b29661fc1151077776454288051bc9a488351ce8
54621 Author: Wolfgang Denk <wd@denx.de>
54622 Date: Sun Feb 24 15:21:36 2008 +0100
54623
54624 Coding style cleanup. Prepare v1.3.2-rc2 release candidate
54625
54626 Signed-off-by: Wolfgang Denk <wd@denx.de>
54627
54628 commit 00b48a48424894daa589d166d73277830b1c6ac4
54629 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54630 Date: Sat Feb 23 12:15:56 2008 +0100
54631
54632 ENV: remove saveenv when CFG_ENV_IS_NOWHERE is selected
54633
54634 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54635
54636 commit b075d74efb70ff68c49a2532f26b56d6703b69c1
54637 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54638 Date: Sat Feb 23 17:24:16 2008 +0900
54639
54640 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
54641
54642 ----------------------------------------------------------------
54643 Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)]
54644
54645 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on
54646 32bit targets.
54647
54648 GCC can be made to warn about usage of long long types with ISO C90
54649 (-ansi), but only with -pedantic. You can write this in a way that even
54650 then it doesn't cause warnings, namely by:
54651
54652 #ifdef __GNUC__
54653 __extension__ typedef __signed__ long long __s64;
54654 __extension__ typedef unsigned long long __u64;
54655 #endif
54656
54657 The __extension__ keyword in front of this switches off any pedantic
54658 warnings for this expression.
54659
54660 Signed-off-by: Olaf Hering <olh@suse.de>
54661 Cc: <linux-arch@vger.kernel.org>
54662 Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
54663 Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
54664 ----------------------------------------------------------------
54665
54666 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54667
54668 commit 208acd112e6517b21fc30c420396902b103563ac
54669 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54670 Date: Sat Feb 23 17:07:57 2008 +0900
54671
54672 cpu/mcf52x2/config.mk: Make needlessly deffered expansions immediate.
54673
54674 This will reduce the build time.
54675
54676 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54677
54678 commit 495a0dde7fa1b14cdc15607d86503ec2bdcd02c4
54679 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54680 Date: Sat Feb 23 17:05:00 2008 +0900
54681
54682 cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate.
54683
54684 This will reduce the build time.
54685
54686 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54687
54688 commit e682ba399a1d76f09d8cc7af1e57066f1d360d91
54689 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54690 Date: Sat Feb 23 16:58:41 2008 +0900
54691
54692 cpu/mips/cofigl.mk: Make a needlessly deffered expansion immediate.
54693
54694 This reduces the build time by ~10%. Here's the gth2_config example.
54695
54696 BEFORE AFTER
54697 real 0m31.441s 0m27.833s
54698 user 0m24.766s 0m23.045s
54699 sys 0m10.425s 0m7.468s
54700
54701 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54702
54703 commit 02409f8cf54c7cd91981f0dfec135dbf3858090c
54704 Author: Marcel Moolenaar <marcelm@juniper.net>
54705 Date: Fri Feb 22 10:48:07 2008 -0800
54706
54707 make define2mk.sed work on FreeBSD
54708
54709 In the thread "[1.3.2-rc1] MPC8548CDS/MPC8555CDS configs fails to link",
54710 the define2mk.sed script was identified as the source of the link
54711 failure on FreeBSD. The problem is that sed(1) does not always support
54712 the '+' operator. It isn't on FreeBSD. The attach patch implements the
54713 equivalent, using the '*' operator instead and should work everywhere.
54714
54715 Signed-off-by: Marcel Moolenaar <marcelm@juniper.net>
54716
54717 commit e5084af8ded58453cd07ec1af8b0f29f34122bbc
54718 Author: Detlev Zundel <dzu@denx.de>
54719 Date: Fri Feb 22 17:21:32 2008 +0100
54720
54721 Replace deprecated "ramdisk" with "ramdisk_size" kernel parameter.
54722
54723 The Linux commit fac8b209b1084bc85748bd54e13d00c1262b220f ("Remove
54724 final traces of long-deprecated "ramdisk" kernel parm") makes these
54725 changes neccessary.
54726
54727 Signed-off-by: Detlev Zundel <dzu@denx.de>
54728
54729 commit d01b847c5cd070895c4ba178c85cd068a95cf7cd
54730 Author: Larry Johnson <lrj@acm.org>
54731 Date: Thu Feb 21 13:58:16 2008 -0500
54732
54733 LM75 bug fix for negative temperatures
54734
54735 When the LM75 temperature sensor measures a temperature below 0 C, the
54736 current driver does not perform sign extension, so the result returned is
54737 256 C too high. This patch fixes the problem.
54738
54739 Signed-off-by: Larry Johnson <lrj@acm.org>
54740
54741 commit 5a910c224b13e413bda41922379add6d75c32da3
54742 Author: Heiko Schocher <hs@denx.de>
54743 Date: Thu Feb 21 18:33:45 2008 +0100
54744
54745 IDS8247: update MAINTAINER entry.
54746
54747 Signed-off-by: Heiko Schocher <hs@denx.de>
54748
54749 commit 79eac2bfb591f2b028ec1735049dc91e4320de4a
54750 Author: Heiko Schocher <hs@denx.de>
54751 Date: Thu Feb 21 18:31:15 2008 +0100
54752
54753 Fix device tree for mgsuvd board.
54754
54755 Rename the "scc" node in "ethernet" for the mgsuvd board.
54756
54757 Signed-off-by: Heiko Schocher <hs@denx.de>
54758
54759 commit 2e721094a70a52206af2e1bf1208d9a7131f6dad
54760 Author: Yuri Tikhonov <yur@emcraft.com>
54761 Date: Thu Feb 21 14:23:42 2008 +0100
54762
54763 lwmon5: enable hardware watchdog
54764
54765 Some boards (e.g. lwmon5) may use rather small watchdog intervals, so
54766 causing it to reboot the board if U-Boot does a long busy-wait with
54767 udelay(). Thus, for these boards we have to restart WD more
54768 frequently.
54769
54770 This patch splits the busy-wait udelay() into smaller, predefined,
54771 intervals, so that the watchdog timer may be resetted with the
54772 configurable (CONFIG_WD_PERIOD) interval.
54773
54774 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
54775
54776 commit bc77881247ee6f95d7a9ebc499d26b96bae38c9d
54777 Author: Anatolij Gustschin <agust@denx.de>
54778 Date: Thu Feb 21 12:52:29 2008 +0100
54779
54780 ppc4xx: Support for ATI Radeon 9200 card on sequoia
54781
54782 Adds configuration option for ATI Radeon 9200 card
54783 support to sequoia config file. If CONFIG_VIDEO
54784 is enabled, TEXT_BASE should be changed to 0xFFF80000.
54785
54786 Signed-off-by: Anatolij Gustschin <agust@denx.de>
54787
54788 commit 5a9abcc317cf3c8a69559ff83081f4e5d719edb7
54789 Author: Kumar Gala <galak@kernel.crashing.org>
54790 Date: Mon Feb 18 08:18:07 2008 -0600
54791
54792 Remove duplicate defines for ARRAY_SIZE
54793
54794 A few duplicate of the ARRAY_SIZE macro sneaked in since we put
54795 the define in common.h.
54796
54797 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54798
54799 commit 81d93e5c4b83d8b6dcee69de6f4a14ccf6f7114a
54800 Author: Kumar Gala <galak@kernel.crashing.org>
54801 Date: Mon Feb 18 08:09:37 2008 -0600
54802
54803 ppc: Allow boards to specify effective amount of memory
54804
54805 For historical reasons we limited the stack to 256M because some boards
54806 could only map that much via BATS. However newer boards are capable of
54807 mapping more memory (for example 85xx is capable of doing up to 2G).
54808
54809 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54810
54811 commit 755c35f54ba7eb7687aa7935e04a02a01ef1b27b
54812 Author: Mike Frysinger <vapier@gentoo.org>
54813 Date: Mon Feb 18 05:24:13 2008 -0500
54814
54815 include autoconf.mk before any other .mk files
54816
54817 This bumps the autoconf.mk include step above board/cpu/arch/etc... so that
54818 those .mk files can have make if statements based on the current config.
54819
54820 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
54821
54822 commit 16fe77752eee099b9fb61ed73460e51cc94b37ba
54823 Author: Mike Frysinger <vapier@gentoo.org>
54824 Date: Mon Feb 18 05:10:07 2008 -0500
54825
54826 error check autoconf.mk generation
54827
54828 If any of the steps for generating autoconf.mk fail currently, they go
54829 unnoticed. To fix, we can simply add 'set -e' to the long list of commands.
54830 This is simpler and more robust than placing '|| exit $$?' after every line.
54831
54832 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
54833
54834 commit 019895a8dee71a9f00da05c03e379f45d581b0fe
54835 Author: Stefano Babic <sbabic@denx.de>
54836 Date: Mon Feb 18 08:03:51 2008 +0100
54837
54838 Fix bug in dependency checking
54839
54840 By adding VERSION_FILE to the PHONY targets the script
54841 /tools/setlocalversion is always called and version_autogenerated.h
54842 is replaced only if the script find a modified source file.
54843
54844 Signed-off-by: Stefano Babic <sbabic@denx.de>
54845
54846 commit 98ba144ccc912eee90dd42699f023c497ce774c6
54847 Author: Kyungmin Park <kmpark@infradead.org>
54848 Date: Mon Feb 18 14:35:43 2008 +0900
54849
54850 Fix GPMC CS2 memory setup at apollon
54851
54852 It disables the current map first
54853
54854 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
54855
54856 commit e845e07e1e6e64f40e35688439d3cdcf01cfff4f
54857 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54858 Date: Sun Feb 17 23:52:46 2008 +0100
54859
54860 uli526x: Fix multiple differ in signedness and parentheses around comparison
54861
54862 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54863
54864 commit beeccf7a5dc5415c202e0132a33c58fc316c2a62
54865 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54866 Date: Sun Feb 17 16:58:04 2008 +0100
54867
54868 MIPS: Fix CFG_NO_FLASH support
54869
54870 - Fix flash_init call when CFG_NO_FLASH is used
54871 - Remove no more needed flash.c for qemu-mips
54872
54873 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54874
54875 commit edfed1d91df2b2670a812ca9d1a1f9faae7dba47
54876 Author: Mike Frysinger <vapier@gentoo.org>
54877 Date: Sat Feb 16 02:40:18 2008 -0500
54878
54879 easylogo: clean up some more and add -r (rgb) support
54880
54881 Michael Hennerich added support for outputting an image in RGB format rather
54882 than forcing YUYV all the time. This makes obvious sense if the display you
54883 have takes RGB input rather than YUYV.
54884
54885 Rather than hack in support for options, I've converted it to use getopt and
54886 cleaned up the argument parsing in the process.
54887
54888 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
54889 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
54890
54891 commit f65c98129ccada3f7caf97d80395a95b84e911de
54892 Author: Mike Frysinger <vapier@gentoo.org>
54893 Date: Sat Feb 16 02:12:37 2008 -0500
54894
54895 Makefile: add target for $(LDSCRIPT)
54896
54897 If the $(LDSCRIPT) does not exist (normally it's board/$(BOARD)/u-boot.lds),
54898 then change into the board directory and try and create it. This allows you
54899 to generate the linker script on the fly based upon board defines (like the
54900 Blackfin boards do).
54901
54902 There should be no regressions due to this change as the normal case is to
54903 already have a u-boot.lds file. If that's the case, then there's nothing to
54904 generate, and so make will always exit. The fix here is that if the linker
54905 script does not exist, the implicit rules take over and attempt to guess how
54906 to generate the file.
54907
54908 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
54909
54910 commit 5583cbf736474ef754e128a54fb78632f57b48fd
54911 Author: Marian Balakowicz <m8@semihalf.com>
54912 Date: Thu Feb 21 17:27:49 2008 +0100
54913
54914 [new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds
54915
54916 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54917
54918 commit 2242f5369822bc7780db95c47985bb408ea9157b
54919 Author: Marian Balakowicz <m8@semihalf.com>
54920 Date: Thu Feb 21 17:27:41 2008 +0100
54921
54922 [new uImage] Rename and move print_image_hdr() routine
54923
54924 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54925
54926 commit f50433d670ec2ee9e96abac67cdc6e5e061a810d
54927 Author: Marian Balakowicz <m8@semihalf.com>
54928 Date: Thu Feb 21 17:20:20 2008 +0100
54929
54930 [new uImage] Add fit_parse_conf() and fit_parse_subimage() routines
54931
54932 Introducing routines for parsing new uImage format bootm arguments:
54933 [<addr>]#<conf> - configuration specification
54934 [<addr>]:<subimg> - subimage specification
54935
54936 New format images can contain multiple subimages of the same type. For example
54937 a single new format image file can contain three kernels, two ramdisks and a
54938 couple of FDT blobs. Subimage and configuration specifications are extensions
54939 to bootm (and other image-related commands) arguments' syntax that allow to
54940 specify which particular subimage should be operated on.
54941
54942 Subimage specification is used to denote a particular subimage. Configurations
54943 are a bit more complex -- they are used to define a particualr booting setup,
54944 for example a (kernel, fdt blob) pair, or a (kernel, ramdisk, fdt blob) tuple,
54945 etc.
54946
54947 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54948
54949 commit fff888a1997ff7de9b29e24050fc4a0fd403ba16
54950 Author: Marian Balakowicz <m8@semihalf.com>
54951 Date: Thu Feb 21 17:20:19 2008 +0100
54952
54953 [new uImage] Add gen_get_image() routine
54954
54955 This routine assures that image (whether legacy or FIT) is not
54956 in a special dataflash storage.
54957
54958 If image address is a dataflash address image is moved to system RAM.
54959
54960 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54961
54962 commit 75d3e8fbd93c14d9929d024c75af2d742c76db70
54963 Author: Marian Balakowicz <m8@semihalf.com>
54964 Date: Thu Feb 21 17:20:18 2008 +0100
54965
54966 [new uImage] Pull in libfdt if CONFIG_FIT is enabled
54967
54968 New uImage format (Flattened Image Tree) requires libfdt
54969 functionality, print out error message if CONFIG_OF_LIBFDT
54970 is not defined.
54971
54972 New uImage support is enabled by defining CONFIG_FIT (and CONFIG_OF_LIBFDT).
54973 This commit turns it on by default.
54974
54975 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54976
54977 commit 1ba639da5604a64b3ed884a2cbb1c5414a9fa728
54978 Author: Michael Schwingen <michael@schwingen.org>
54979 Date: Mon Feb 18 23:16:35 2008 +0100
54980
54981 CFI: Do not use uninitialized cmd_reset
54982
54983 Do not use uninitialized cmd_reset; issue both AMD and Intel reset
54984 commands instead
54985
54986 From a short test, it looks like AMD-style flash roms treat *any* unknown
54987 command write as a reset, at least when in CFI Query mode, so issuing the
54988 Intel reset command to AMD-style flashs seems safe (from the small sample I
54989 have), plus the 3-cycle magic sequence should kick the state machine into
54990 the right state even without a reset command. Since the AMD-style flashs
54991 require the unlock sequence for real operation, I chose to try the AMD reset
54992 command first, so that Intel flashs do no see an invalid command prior to
54993 the CFI query.
54994
54995 I have tested the patch on AM29LV320-style flashs from Fujitsu and Macronix,
54996 plus Intel StrataFlash.
54997
54998 Signed-off-by: Michael Schwingen <michael@schwingen.org>
54999 Signed-off-by: Stefan Roese <sr@denx.de>
55000
55001 commit e7a85f26830c9f2e78506421c2d519a2965bc7a1
55002 Author: Rafal Jaworowski <raj@semihalf.com>
55003 Date: Thu Feb 21 11:56:44 2008 +0100
55004
55005 API: Add (c) and licensing notice to the public API header.
55006
55007 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
55008
55009 commit 928d1d77f8623c120d8763e20e1ca58df9c5c4c6
55010 Author: Yuri Tikhonov <yur@emcraft.com>
55011 Date: Thu Feb 21 11:06:07 2008 +0100
55012
55013 Fix CPU POST test failure
55014
55015 The CPU POST test code (run from cpu_post_exec_31()) doesn't follow the
55016 ABI carefully, at least the CR3, CR4, and CR5 fields of CR are clobbered
55017 by it. The gcc-4.2 with its more aggressive optimization exposes this fact.
55018 This patch just saves the CR value before running the test code, so allowing
55019 it to do anything it wants with CR.
55020
55021 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
55022 Acked-by: Yuri Tikhonov <yur@emcraft.com>
55023 --
55024
55025 commit d5908b093955415f3d340706378b991f911af671
55026 Author: Jon Loeliger <jdl@freescale.com>
55027 Date: Wed Feb 20 15:26:51 2008 -0600
55028
55029 8610HPCD: Document the flashbank selection switches.
55030
55031 Signed-off-by: Jon Loeliger <jdl@freescale.com>
55032
55033 commit a551cee99ad1d1da20fd23ad265de47448852f56
55034 Author: Jon Loeliger <jdl@freescale.com>
55035 Date: Wed Feb 20 14:22:26 2008 -0600
55036
55037 86xx: Fix GUR PCI config registers properly.
55038
55039 Back in commit 975a083a5ef785c414b35f9c5b8ae25b26b41524 where
55040 I tried to "8610HPCD: Fix typos in two PCI setup registers", I
55041 botched it due to not realizing that 8610 and 8641 had different
55042 Global Utility Register defintions, one of which was like 85xx,
55043 and the other wasn't. Correct this problem by introducing two
55044 symbols, one for each 86xx SoC, but neither of which is named
55045 anything like 85xx.
55046
55047 My bad. Lovely Wednesday with git bisect. You know.
55048
55049 Signed-off-by: Jon Loeliger <jdl@freescale.com>
55050
55051 commit cb06eb961bdffc8728b38c242473d802e83ab2b4
55052 Author: Jon Loeliger <jdl@freescale.com>
55053 Date: Wed Feb 20 12:24:11 2008 -0600
55054
55055 8610HPCD: Don't use VIDEO/CFB_CONSOLE by default.
55056
55057 Without an actual supported video card hooked up, enabling
55058 the CONFIG_VIDEO by default just makes it look broken by
55059 routing all console output to the video card. Don't.
55060
55061 Signed-off-by: Jon Loeliger <jdl@freescale.com>
55062
55063 commit 4d264eff4312f230776b913edade7ceb75f1b1e0
55064 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55065 Date: Wed Jan 30 15:08:15 2008 -0600
55066
55067 ColdFire: Fix missing code flash size for M5485EVB
55068
55069 Signed-off-by: James Mahan <kmahan@freescale.com>
55070 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
55071
55072 commit c54f9263e4e11e34b1e70c160bc467ef1d8ec59d
55073 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55074 Date: Wed Jan 30 15:04:42 2008 -0600
55075
55076 ColdFire: Fix 5282 and 5271 interrupt mask bit
55077
55078 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
55079
55080 commit 975a083a5ef785c414b35f9c5b8ae25b26b41524
55081 Author: Jon Loeliger <jdl@freescale.com>
55082 Date: Tue Feb 19 12:31:08 2008 -0600
55083
55084 8610HPCD: Fix typos in two PCI setup registers.
55085
55086 The two symbols MPC86xx_PORDEVSR_IO_SEL and MPC86xx_PORBMSR_HA
55087 were erroneously present as 85xx names and values, leftover from
55088 the clone wars. Fix this by removing the 85xx cruft from the
55089 86xx codebase.
55090
55091 Signed-off-by: Jon Loeliger <jdl@freescale.com>
55092
55093 commit 13f5433f700d4da9f6fdf2a4bb80310133a7c170
55094 Author: Jon Loeliger <jdl@freescale.com>
55095 Date: Mon Feb 18 14:01:56 2008 -0600
55096
55097 86xx: Convert sbc8641d to use libfdt.
55098
55099 This is the proper fix for a missing closing brace in the function
55100 ft_cpu_setup() noticed by joe.hamman <at> embeddedspecialties.com.
55101 The ft_cpu_setup() function in mpc8641hpcn.c should have been
55102 removed earlier as it was under the obsolete CONFIG_OF_FLAT_TREE,
55103 but was missed. Only, the sbc8641d was nominally still using it.
55104 It all got ripped out, and the funcality that was in ft_board_setup()
55105 was refactored to remove the CPU portions into the new file
55106 cpu/mpc86xx/fdt.c instead. Make sbc8641d use this now.
55107
55108 Based loosely on an original patch from joe.hamman@embeddedspecialties.com
55109
55110 Signed-off-by: Jon Loeliger <jdl@freescale.com>
55111
55112 commit 04efddc87c50c84f85dad5c331c634a6ce830a83
55113 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55114 Date: Sun Feb 17 23:35:31 2008 +0100
55115
55116 mpc86xx: Fix unused variable 'config' and 'immap'
55117
55118 and remove useless CONFIG_DDR_INTERLEAVE
55119
55120 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55121
55122 commit 83d1b3876695c4f21faff2b731d9ef83f38ed208
55123 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55124 Date: Sun Feb 17 23:03:36 2008 +0100
55125
55126 mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
55127
55128 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55129
55130 commit b6f29c84c208a091f95a10cbc9852d729659ba20
55131 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55132 Date: Sun Feb 17 14:15:31 2008 +0100
55133
55134 s3c24x0: Fix unused variable 'i' in function 'serial_init_dev'
55135
55136 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55137
55138 commit 0937b8d869fdb42d6ad4fe312958639bd62c973f
55139 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55140 Date: Sun Feb 17 14:15:32 2008 +0100
55141
55142 pxa: fix assignment from incompatible pointer type
55143
55144 fix mmc_bread function prototype
55145
55146 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55147
55148 commit 64d792063fff90b8118179b092feee09fe5cae13
55149 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55150 Date: Sun Feb 17 14:15:30 2008 +0100
55151
55152 at91cap9adk: fix implicit declaration of function 'eth_init'
55153
55154 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55155
55156 commit 375c4353db8f900f7ec772e26fab116ec00f7d3a
55157 Author: Wolfgang Denk <wd@denx.de>
55158 Date: Sun Feb 17 15:43:44 2008 +0100
55159
55160 Remove files added by mistake, update CHANGELOG.
55161
55162 Signed-off-by: Wolfgang Denk <wd@denx.de>
55163
55164 commit b738654d3c84a30f2bfd9a8d7652ff20807c890c
55165 Author: Mike Nuss <mike@terascala.com>
55166 Date: Wed Feb 6 11:10:11 2008 -0500
55167
55168 PPC440EPx: Optionally enable second I2C bus
55169
55170 The option CONFIG_I2C_MULTI_BUS does not have any effect on Sequoia, the
55171 PPC440EPx reference platform, because IIC1 is never enabled. Add Sequoia board
55172 code to turn on IIC1 if CONFIG_I2C_MULTI_BUS is selected.
55173
55174 Signed-off-by: Mike Nuss <mike@terascala.com>
55175 Cc: Stefan Roese <sr@denx.de>
55176
55177 commit ef5b4f221c22d05770878513951745f236b5b43f
55178 Author: Niklaus Giger <niklaus.giger@netstal.com>
55179 Date: Tue Feb 5 10:26:44 2008 +0100
55180
55181 ppc4xx: HCU4/5. Cleanup configs
55182
55183 - hcu4.h: Removed define of CONFIG_PPC405GPr
55184 - Corrected phy addresses
55185 - Fix boot variables
55186 - Respect line length of 80 chars
55187
55188 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
55189
55190 commit 74973126d1be63ac75bdc192f46234dca3a7c421
55191 Author: Niklaus Giger <niklaus.giger@netstal.com>
55192 Date: Tue Feb 5 11:31:28 2008 +0100
55193
55194 ppc4xx: HCU4/5. Cleanups
55195
55196 - Fix some coding style violations.
55197 - Use in/out_u16/32 where appropriate.
55198 - Use register names from ppc405.h.
55199 - Fix trace useage for Lauterbach.
55200 - Remove obsolete generation HCU2.
55201 - Renamed fixed_hcu4_sdram to init_ppc405_sdram.
55202
55203 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
55204
55205 commit 8cc10d06b833ed917a19ad358c8ebbed8bc19555
55206 Author: Niklaus Giger <niklaus.giger@netstal.com>
55207 Date: Tue Feb 5 10:26:41 2008 +0100
55208
55209 ppc4xx: PPC405GPr fix missing register definitions
55210
55211 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
55212
55213 commit 214398d9cb22268d9d4f7563359edca0f78297a2
55214 Author: Larry Johnson <lrj@acm.org>
55215 Date: Fri Jan 18 21:49:05 2008 -0500
55216
55217 ppc4xx: Beautify configuration files for Sequoia and Korat boards
55218
55219 Signed-off-by: Larry Johnson <lrj@acm.org>
55220
55221 commit 30c6a241e88499f536e86d325759e29ba00ff67f
55222 Author: Anatolij Gustschin <agust@denx.de>
55223 Date: Fri Feb 15 20:09:01 2008 +0100
55224
55225 Wipe out assembler warnings while compiling x86 biosemu
55226
55227 This patch tries to get rid of some assembler warnings about
55228 changed .got2 section type while compiling x86 bios emulator
55229 code.
55230
55231 Signed-off-by: Anatolij Gustschin <agust@denx.de>
55232
55233 commit 67a4389e39ad853d65b72e2b7cad15c7e8291147
55234 Author: Wolfgang Denk <wd@denx.de>
55235 Date: Fri Feb 15 00:57:09 2008 +0100
55236
55237 Prepare v1.3.2-rc1 release candidate
55238
55239 commit f33e9653c9c09868995d788511d573771c209fe5
55240 Author: Anatolij Gustschin <agust@denx.de>
55241 Date: Fri Feb 15 00:13:20 2008 +0100
55242
55243 Fix compile warning on lib_ppc/board.c
55244
55245 Signed-off-by: Anatolij Gustschin <agust@denx.de>
55246
55247 commit e5c6f9f8bec4dff9603419161e3a15cc8ad5d5f4
55248 Author: Anatolij Gustschin <agust@denx.de>
55249 Date: Thu Feb 14 18:22:04 2008 +0100
55250
55251 Add Radeon Mobility 9200 pci device id to the radeon driver
55252
55253 This patch extends PCI device id table of the
55254 radeon driver so that the driver will also support
55255 Radeon Mobility 9200 (M9+) based boards.
55256
55257 Signed-off-by: Anatolij Gustschin <agust@denx.de>
55258
55259 commit 1b8607e1f7143548c6062c28371449ec69588c00
55260 Author: Anatolij Gustschin <agust@denx.de>
55261 Date: Thu Feb 14 18:19:50 2008 +0100
55262
55263 Extend ATI Radeon driver to support more video modes
55264
55265 Adds ATI Radeon 9200 support for 1280x1024, 1024x768,
55266 800x600, 640x480 at 24, 16 and 8 bpp.
55267
55268 Signed-off-by: Anatolij Gustschin <agust@denx.de>
55269
55270 commit 4124382de029d361162a4b8cecc773eb8f26e2a8
55271 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55272 Date: Sun Feb 10 17:05:20 2008 +0100
55273
55274 xsengine: fix typo and few coding style
55275
55276 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55277
55278 commit 6f4abee789b6d9be3ec4b97ad48f509355559e9e
55279 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
55280 Date: Fri Feb 8 21:25:58 2008 +0100
55281
55282 Fix wrong memory limit calculation in memory-test
55283
55284 If the length of the memory address range passed to the "mtest" command is
55285 not of the form 2^x - 1, not all address lines are tested. This bug is
55286 inherited from the original software at
55287 http://www.netrino.com/Embedded-Systems/How-To/Memory-Test-Suite-C. Fix
55288 this.
55289
55290 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
55291
55292 commit 7e30f5eac7f07082a7ca77b7d91b944a8d0af6db
55293 Author: Wolfgang Denk <wd@denx.de>
55294 Date: Fri Feb 15 00:11:39 2008 +0100
55295
55296 Coding STyle cleanup.
55297
55298 Signed-off-by: Wolfgang Denk <wd@denx.de>
55299
55300 commit f6921e3dc331293c873ec4d109fd5517a42a90b3
55301 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
55302 Date: Tue Feb 5 13:30:43 2008 +0900
55303
55304 sh: Fix register address of SH7722
55305
55306 The address of SH7722 is wrong by old document.
55307 This patch fixes this problem.
55308
55309 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
55310
55311 commit 0ec7a061fb1c277f6afd73d61dd71bd21e7ef7b2
55312 Author: Mike Frysinger <vapier@gentoo.org>
55313 Date: Mon Feb 4 17:44:23 2008 -0500
55314
55315 only update version header as needed
55316
55317 Constantly rebuilding the version header will force useless relinking, so we
55318 simply need to compare the new header with the existing one before updating
55319 it.
55320
55321 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
55322
55323 commit 208447f8e953f347425eb92c8e28d59e6d911363
55324 Author: Mike Frysinger <vapier@gentoo.org>
55325 Date: Mon Jan 28 05:56:19 2008 -0500
55326
55327 Do not specify a CROSS_COMPILE default when executing size
55328
55329 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
55330
55331 commit 1f780aa6f17a5d79791d69ec1d2f66d76ac45d8e
55332 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
55333 Date: Wed Feb 13 11:19:19 2008 +0100
55334
55335 Fix return value of mtest when CFG_ALT_MEMTEST set
55336
55337 Fix a missing return statement from a non-void function.
55338
55339 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
55340
55341 commit 943afa229cf5bf70ef917c7eb6bd0db59a1ba602
55342 Author: Timur Tabi <timur@freescale.com>
55343 Date: Wed Jan 9 14:35:26 2008 -0600
55344
55345 85xx, 86xx: Determine I2C clock frequencies and store in global_data
55346
55347 Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
55348
55349 Update the get_clocks() function in 85xx and 86xx to determine the I2C
55350 clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
55351
55352 Signed-off-by: Timur Tabi <timur@freescale.com>
55353
55354 commit b931b3a9c3bdfaaeaa71e57a6026eec726005b08
55355 Author: Wolfgang Denk <wd@denx.de>
55356 Date: Thu Feb 14 23:18:01 2008 +0100
55357
55358 TQM834x: clean up configuration
55359
55360 Get board name consistent with Linux and elsewhere;
55361 get rid of local network definitions etc.
55362
55363 Signed-off-by: Wolfgang Denk <wd@denx.de>
55364
55365 commit 38cc09c55b1d7f233789052c6fc462e5377669a9
55366 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55367 Date: Thu Feb 14 08:02:12 2008 +0100
55368
55369 TFTP: fix search of ':' in BootFile
55370
55371 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55372
55373 commit 0bc9efada170096c6b273f19165e32936d330d80
55374 Author: Wolfgang Denk <wd@denx.de>
55375 Date: Thu Feb 14 22:46:55 2008 +0100
55376
55377 Coding style cleanup; update CHANGELOG.
55378
55379 Signed-off-by: Wolfgang Denk <wd@denx.de>
55380
55381 commit e7670f6c1e52ae6d2a43ff75a8bcfa7a5c86e47b
55382 Author: Wolfgang Denk <wd@denx.de>
55383 Date: Thu Feb 14 22:43:22 2008 +0100
55384
55385 PPC: Use r2 instead of r29 as global data pointer
55386
55387 R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc
55388 will refuse to use load/store multiple insns; instead, it issues a
55389 list of simple load/store instructions upon function entry and exit,
55390 resulting in bigger code size, which in turn makes the build for a
55391 few boards fail.
55392
55393 Use r2 instead.
55394
55395 Signed-off-by: Wolfgang Denk <wd@denx.de>
55396
55397 commit 3c234efa693bc59906c2be55c7918ecbb55392ea
55398 Author: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
55399 Date: Wed Jan 30 09:08:49 2008 +0100
55400
55401 ARM: make the machid configurable via the environment
55402
55403 If the variable "machid" exists, let do_bootm_linux use that instead
55404 of bd->bi_arch_number.
55405
55406 Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
55407
55408 commit dd24058407c5add45cc60aec6c757ddc1a17e1b0
55409 Author: Vlad Lungu <vlad@comsys.ro>
55410 Date: Wed Jan 23 16:34:46 2008 +0200
55411
55412 Use #ifdef CONFIG_FSLDMAFEC
55413
55414 MCD_tasks.c lacks [subject] so compilation of mips targets (and more, probably)
55415 fails
55416
55417 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
55418
55419 commit 26c7bab81e08dc7bd696c48f753428a829629bd8
55420 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
55421 Date: Sat Jan 19 10:25:59 2008 +0900
55422
55423 common/miiphyutil.c: Cleanup MII_DEBUG and debug()
55424
55425 Current MII_DEBUG is confusing in two ways. One is useless define-then-
55426 undef at the top of the file. The other is there is only one debug() in
55427 this file, and that doesn't seem worthwhile to bother having MII_DEBUG.
55428 While there are many useful printf()/puts() debug codes, but they are for
55429 DEBUG, not for MII_DEBUG.
55430
55431 This patch tries to put them all together into MII_DEBUG and debug().
55432
55433 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
55434
55435 commit 751b9b5189f3274b03c809172631316d6b002c82
55436 Author: Kyungmin Park <kmpark@infradead.org>
55437 Date: Thu Jan 17 16:43:25 2008 +0900
55438
55439 OneNAND Initial Program Loader (IPL) support
55440
55441 This patch enables the OneNAND boot within U-Boot.
55442 Before this work, we used another OneNAND IPL called X-Loader based
55443 on open source. With this work, we can build the oneboot.bin image
55444 without other program.
55445
55446 The build sequence is simple.
55447 First, it compiles the u-boot.bin
55448 Second, it compiles OneNAND IPL
55449 Finally, it becomes the oneboot.bin from OneNAND IPL and u-boot.bin
55450 The mechanism is similar with NAND boot except it boots from itself.
55451
55452 Another thing is that you can only use the OneNAND IPL only to work
55453 other bootloader such as RedBoot and so on.
55454
55455 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
55456
55457 commit 21f6f9636f0e978397548751347425fbf8d42bb3
55458 Author: Andy Fleming <afleming@freescale.com>
55459 Date: Wed Jan 16 13:06:59 2008 -0600
55460
55461 Fix CONFIG_MMC usage in fat code
55462
55463 A #if statement in fat.c depended on CONFIG_MMC, instead of
55464 defined(CONFIG_MMC). This meant CONFIG_MMC needed to be defined
55465 as "1" rather than just defined. Now it's better.
55466
55467 Signed-off-by: Andy Fleming <afleming@freescale.com>
55468
55469 commit f57d7d364ce189e39b0a64338d2f8012c074a2bd
55470 Author: Rafal Jaworowski <raj@semihalf.com>
55471 Date: Tue Jan 15 12:52:31 2008 +0100
55472
55473 ppc: Refactor cache routines, so there is only one common set.
55474
55475 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
55476
55477 commit 3f2ac8f928c76cbd2374437b2d079f8b4324aaba
55478 Author: Jon Loeliger <jdl@jdl.com>
55479 Date: Wed Jan 23 15:55:02 2008 -0600
55480
55481 86xx: Fix compilation warning in sys_eprom.c
55482
55483 sys_eeprom.c:82:9: warning: unknown escape sequence '\/'
55484
55485 Signed-off-by: Jon Loeliger <jdl@freescale.com>
55486
55487 commit 65230107025733e89e28fd5e5cfd916d4953c28a
55488 Author: Haavard Skinnemoen <hskinnemoen at>
55489 Date: Fri Feb 22 11:40:50 2008 +0000
55490
55491 Move AT91RM9200DK board support under board/atmel
55492
55493 We already have a vendor subdir for Atmel, so we should use it.
55494
55495 Signed-off-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
55496
55497 commit 6d0943a6be99977d6d853d51749e9963d68eb192
55498 Author: Andreas Engel <andreas.engel@ericsson.com>
55499 Date: Mon Jan 14 09:06:52 2008 +0000
55500
55501 ARM: cleanup duplicated exception handlingcode
55502
55503 Move duplicated exception handling code into lib_arm.
55504
55505 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
55506
55507 commit ea8d989f4ef8203e1c0291e62435a8c62e3cfb29
55508 Author: Timo Tuunainen <timo.tuunainen@sysart.fi>
55509 Date: Fri Feb 1 10:09:03 2008 +0000
55510
55511 Support for Artila M-501 starter kit
55512
55513 Kimmo Leppala / Sysart and
55514 Timo Tuunainen / Sysart
55515
55516 commit 9604b6e53ddae4fe00a488cbcd6b0e6cb344bccc
55517 Author: Stelian Pop <stelian@popies.net>
55518 Date: Mon Feb 11 10:50:19 2008 +0000
55519
55520 AT91CAP9 support
55521
55522 ---------------------------------
55523
55524 read_dataflash() takes a signed char pointer as a parameter. Silence a
55525 few warnings dues to incorrect parameter types in env_dataflash.c.
55526
55527 Signed-off-by: Stelian Pop <stelian@popies.net>
55528
55529 commit 64e8a06af68cda174a8a06d0a61fce5e5bb189d7
55530 Author: Stelian Pop <stelian@popies.net>
55531 Date: Thu Feb 7 09:42:57 2008 +0000
55532
55533 AT91CAP9 support : move board files to Atmel vendor directory.
55534
55535 AT91CAP9 support : move at91cap9adk board files to Atmel vendor directory.
55536
55537 Signed-off-by: Stelian Pop <stelian@popies.net>
55538
55539 commit 7263ef191b87da94768f762c7093bedeb70db98f
55540 Author: Stelian Pop <stelian at>
55541 Date: Thu Jan 3 21:15:56 2008 +0000
55542
55543 AT91CAP9 support : MACB changes
55544
55545 Signed-off-by: Stelian Pop <stelian <at> popies.net>
55546 Acked-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
55547
55548 commit 6afcabf11d7321850f4feaadfee841488ace54c5
55549 Author: Stelian Pop <stelian@popies.net>
55550 Date: Thu Feb 7 16:37:54 2008 +0000
55551
55552 AT91CAP9 support : board/ files
55553
55554 Signed-off-by: Stelian Pop <stelian@popies.net>
55555
55556 commit fefb6c10928caa9e71335cad64dcb65c83fce8ab
55557 Author: Stelian Pop <stelian at>
55558 Date: Wed Jan 30 21:15:54 2008 +0000
55559
55560 AT91CAP9 support : cpu/ files
55561
55562 Signed-off-by: Stelian Pop <stelian <at> popies.net>
55563
55564 commit fa506a926cec348805143576c941f8e61b333cc0
55565 Author: Stelian Pop <stelian@popies.net>
55566 Date: Thu Jan 31 21:15:53 2008 +0000
55567
55568 AT91CAP9 support : include/ files
55569
55570 Signed-off-by: Stelian Pop <stelian@popies.net>
55571
55572 commit 20b197c6f2799af399a68f96a1aff543a75621b8
55573 Author: Stelian Pop <stelian@popies.net>
55574 Date: Sun Jan 20 19:49:21 2008 +0000
55575
55576 AT91CAP9 support : build integration
55577
55578 Signed-off-by: Stelian Pop <stelian@popies.net>
55579
55580 commit d49fe4bed5b69ec910909d1bd62da23ecd8801fd
55581 Author: Stelian Pop <stelian@popies.net>
55582 Date: Sun Jan 20 21:07:00 2008 +0000
55583
55584 Improve DataFlash CS definition.
55585
55586 Use a structure instead of the error prone unnamed array to
55587 define the possible dataflash banks.
55588
55589 Signed-off-by: Stelian Pop <stelian@popies.net>
55590
55591 commit a6cdd21b56014208706238712a853a9e9a0a2290
55592 Author: Stelian Pop <stelian@popies.net>
55593 Date: Sat Jan 19 21:09:35 2008 +0000
55594
55595 Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on
55596
55597 Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on.
55598
55599 cpu/arm926ejs/start.o: In function `cpu_init_crit':
55600 .../cpu/arm926ejs/start.S:227: undefined reference to `lowlevel_init'
55601
55602 Signed-off-by: Stelian Pop <stelian@popies.net>
55603
55604 commit ea686f52e45b3df2938866d3f5a98bb2556dfe2b
55605 Author: Peter Pearse <peter.pearse@arm.com>
55606 Date: Fri Feb 1 16:50:24 2008 +0000
55607
55608 Fix timer overflow in DaVinci
55609 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
55610
55611 commit f4e7cbfcb0fcbc325a2bcfea7e00e3dd37f93846
55612 Author: Peter Pearse <peter.pearse@arm.com>
55613 Date: Fri Feb 1 16:49:08 2008 +0000
55614
55615 Update board NetStar
55616 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
55617
55618 commit b7f6193e76651e1fd606e46eb11915b53cb6618b
55619 Author: Niklaus Giger <niklaus.giger@netstal.com>
55620 Date: Tue Feb 5 10:26:42 2008 +0100
55621
55622 ppc4xx: HCU4/5. Fix make O=../xx
55623
55624 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
55625
55626 commit 29e3500cbc43c89eff6e720ca83e375deeecd9b3
55627 Author: Larry Johnson <lrj@acm.org>
55628 Date: Tue Jan 22 08:51:59 2008 -0500
55629
55630 ppc4xx: Add CONFIG_4xx_DCACHE compile switch to Denali-core SPD code
55631
55632 Signed-off-by: Larry Johnson <lrj@acm.org>
55633
55634 commit fe891ecf4d187e9d11dde869ed4623af52b54451
55635 Author: Hiroshi Ito <ito@mlb.co.jp>
55636 Date: Thu Jan 31 18:35:04 2008 +0900
55637
55638 NFS Timeout with large files.
55639
55640 Retry to send NFS packet before reaching timeout.
55641
55642 Signed-off-by: Hiroshi Ito <ito@mlb.co.jp>
55643
55644 commit 88f72527f5b89c0905ad5c36cc2ef8d29dd6bbf0
55645 Author: Johannes Stezenbach <js@sig21.net>
55646 Date: Tue Jan 29 00:11:25 2008 +0100
55647
55648 Add dependencies to avoid race conditions with parallel make.
55649
55650 Signed-off-by: Johannes Stezenbach <js@sig21.net>
55651
55652 commit 6d1b6f9f89c815eaca44acff8e73ece7181f61b6
55653 Author: Mike Frysinger <vapier@gentoo.org>
55654 Date: Mon Jan 28 05:46:01 2008 -0500
55655
55656 Mark board_init_[fr] as noreturn
55657
55658 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
55659
55660 commit 161b2af4d7b48fd602ce333c355a4df0337892bb
55661 Author: Mike Frysinger <vapier@gentoo.org>
55662 Date: Mon Jan 28 05:28:50 2008 -0500
55663
55664 Only use TEXT_BASE if defined by the board
55665
55666 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
55667
55668 commit 1b769881750030f10743808b9d6013e11f559350
55669 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55670 Date: Fri Jan 25 07:54:47 2008 +0100
55671
55672 Fix remaining CONFIG_COMMANDS
55673
55674 update comments
55675 Fix coding style
55676
55677 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55678
55679 commit 0c9d42e6b0b83d507335a291e3ea99240038f4b9
55680 Author: Niklaus Giger <niklaus.giger@netstal.com>
55681 Date: Mon Jan 21 16:46:00 2008 +0100
55682
55683 Add *~ to .gitignore
55684
55685 One should never add a backup file ending in with ~ to the git repository.
55686
55687 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
55688
55689 commit 3cfb0c51b2bb5ede54eca85ace5b1ba12be314b0
55690 Author: Kumar Gala <galak@kernel.crashing.org>
55691 Date: Thu Jan 17 00:02:10 2008 -0600
55692
55693 Remove duplicate defines for ARRAY_SIZE
55694
55695 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
55696
55697 commit c77ce474b1c57b13e9d36d9830f147966c143694
55698 Author: Stelian Pop <stelian@popies.net>
55699 Date: Mon Jan 14 22:08:14 2008 +0100
55700
55701 Fix incorrect address test in AT91F_DataflashSelect().
55702
55703 Signed-off-by: Stelian Pop <stelian@popies.net>
55704
55705 commit d9ad115bbf7bb0842de7dbd2502b7e430f83cc3d
55706 Author: Kumar Gala <galak@kernel.crashing.org>
55707 Date: Wed Feb 13 15:09:58 2008 -0600
55708
55709 Fix building of fdt_support.c if DEBUG set
55710
55711 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
55712
55713 commit ccd6e1464e5396bc1a9aebf7077ddf4342eafe03
55714 Author: Jon Loeliger <jdl@freescale.com>
55715 Date: Tue Feb 12 14:53:28 2008 -0600
55716
55717 Add CFG_MPC86xx_DDR_ADDR and CFG_MPC86xx_DDR2_ADDR symbols
55718
55719 These replace direct structure references for IMMR sections.
55720
55721 Signed-off-by: Jon Loeliger <jdl@freescale.com>
55722
55723 commit c62776be8dca4097ca03d4f9415f08d4887b45d0
55724 Author: Wolfgang Denk <wd@denx.de>
55725 Date: Tue Feb 12 00:45:06 2008 +0100
55726
55727 Get rid of "#undef DEBUG" from board config files.
55728
55729 Signed-off-by: Wolfgang Denk <wd@denx.de>
55730
55731 commit 73bf1e2de7862bcdbd5a9f993b3e84b67c8ea9c8
55732 Author: Timur Tabi <timur@freescale.com>
55733 Date: Tue Jan 15 17:09:41 2008 -0600
55734
55735 Remove #undef DEBUG from MPC83xx board header files
55736
55737 Remove the "#undef DEBUG" line from all Freescale 83xx board header files.
55738 The inclusion of this line makes it impossible to enable debug code in
55739 other source files, because "#define DEBUG" typically needs to be defined
55740 before any header files are included.
55741
55742 Signed-off-by: Timur Tabi <timur@freescale.com>
55743
55744 commit 69018ce2e086e9caf35b914d675b82bc4888f077
55745 Author: Kumar Gala <galak@kernel.crashing.org>
55746 Date: Thu Jan 17 08:25:45 2008 -0600
55747
55748 QE: Move FDT support into a common file
55749
55750 Move the flat device tree setup for QE related devices into
55751 a common file shared between 83xx & 85xx platforms that have QE's.
55752
55753 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
55754
55755 commit 5cf746c303710329f8040d9c62ee354313e3e91f
55756 Author: Marian Balakowicz <m8@semihalf.com>
55757 Date: Thu Jan 31 13:59:09 2008 +0100
55758
55759 [new uImage] Move kernel data find code to get_kernel() routine
55760
55761 Verification of the kernel image (in old format) and finding kernel
55762 data is moved to a dedicated routine. The routine will also hold
55763 support for, to be added, new image format.
55764
55765 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55766
55767 commit 7b325454fd231d4273de3fe373850f777fb086bf
55768 Author: Marian Balakowicz <m8@semihalf.com>
55769 Date: Thu Jan 31 13:58:20 2008 +0100
55770
55771 [new uImage] Cleanup FDT handling in PPC do_boot_linux()
55772
55773 Move FDT blob finding and relocation to a dedicated
55774 get_fdt() routine. It increases code readability and
55775 will make adding support for new uImage format easier.
55776
55777 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55778
55779 commit b6b0fe6460b7063ac60b9a3531ef210aedb31451
55780 Author: Marian Balakowicz <m8@semihalf.com>
55781 Date: Thu Jan 31 13:58:13 2008 +0100
55782
55783 [new uImage] Cleanup do_botm_linux() boot allocations
55784
55785 This patch moves common pre-boot allocation steps shared between PPC
55786 and M68K to a helper routines:
55787
55788 common:
55789 - get_boot_sp_limit()
55790 - get_boot_cmline()
55791 - get_boot_kbd()
55792
55793 platform:
55794 - set_clocks_in_mhz()
55795
55796 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55797
55798 commit ceaed2b1e54ebf14d600e02fef016c8df5cc4d40
55799 Author: Marian Balakowicz <m8@semihalf.com>
55800 Date: Thu Jan 31 13:57:17 2008 +0100
55801
55802 [new uImage] Move ramdisk loading to a common routine
55803
55804 Ramdisk loading code, including initrd_high variable handling,
55805 was duplicated for PPC and M68K platforms. This patch creates
55806 common helper routine that is being called from both platform
55807 do_bootm_linux() routines.
55808
55809 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55810
55811 commit 68d4f05e6b2383a442fb71f80f2a9fbb3d8def68
55812 Author: Marian Balakowicz <m8@semihalf.com>
55813 Date: Thu Jan 31 13:55:53 2008 +0100
55814
55815 [new uImage] Removed dead ramdisk code on microblaze architectures
55816
55817 Microblaze do_bootm_linux() includes ramdisk processing code but
55818 the ramdisk does not get used anywhere later on.
55819
55820 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55821
55822 commit 5ad03eb3854c162684222a718b44c0716ea0db03
55823 Author: Marian Balakowicz <m8@semihalf.com>
55824 Date: Thu Jan 31 13:55:39 2008 +0100
55825
55826 [new uImage] Factor out common image_get_ramdisk() routine
55827
55828 Architecture specific do_bootm_linux() routines share common
55829 ramdisk image processing code. Move this code to a common
55830 helper routine.
55831
55832 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55833
55834 commit d3c5eb6dd1f4ed3c3388386cf1d1bf82aa51d56b
55835 Author: Marian Balakowicz <m8@semihalf.com>
55836 Date: Thu Jan 31 13:20:08 2008 +0100
55837
55838 [new uImage] Move FDT error printing to common fdt_error() routine
55839
55840 FDT error handling in PPC do_bootm_linux() shares the same message format.
55841 This patch moves error message printing to a helper fdt_error() routine.
55842
55843 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55844 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
55845
55846 commit 42b73e8ee00d48004791dea64b8093fb974c57e1
55847 Author: Marian Balakowicz <m8@semihalf.com>
55848 Date: Thu Jan 31 13:20:07 2008 +0100
55849
55850 [new uImage] Factor out common routines for getting os/arch/type/comp names
55851
55852 Move numeric-id to name translation for image os/arch/type/comp header
55853 fields to a helper routines: image_get_os_name(), image_get_arch_name(),
55854 image_get_type_name(), image_get_comp_name().
55855
55856 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55857
55858 commit e99c26694a384221d336f6448c06a57479c0baa4
55859 Author: Marian Balakowicz <m8@semihalf.com>
55860 Date: Thu Jan 31 13:20:07 2008 +0100
55861
55862 [new uImage] Remove standalone applications handling from boootm
55863
55864 Standalone applications are supposed to be run using the "go" command.
55865 This patch removes standalone images handling from the do_bootm().
55866
55867 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55868
55869 commit 4a2ad5ff6400698433dd7203d34939c3c9cc9bff
55870 Author: Marian Balakowicz <m8@semihalf.com>
55871 Date: Thu Jan 31 13:20:07 2008 +0100
55872
55873 [new uImage] Remove OF_FLAT_TREE support from PPC bootm code
55874
55875 Support for OF_FLAT_TREE is to be obsoleted in the near future,
55876 remove related code from the bootm routines.
55877
55878 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55879
55880 commit 82850f3d32a2661868ec6876bed7a22c55cef718
55881 Author: Marian Balakowicz <m8@semihalf.com>
55882 Date: Thu Jan 31 13:20:06 2008 +0100
55883
55884 [new uImage] Use image API in SH do_bootm_linux() routine
55885
55886 Introduce image handling API for lately added Hitachi SH architecture.
55887
55888 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55889
55890 commit 4a995edec1ac163d9326d143ffe2b47e7543407f
55891 Author: Marian Balakowicz <m8@semihalf.com>
55892 Date: Thu Jan 31 13:20:06 2008 +0100
55893
55894 [new uImage] Rename architecture specific bootm code files
55895
55896 Implementation of the do_bootm_linux() and other bootm helper routines is
55897 architecture specific code. As such it resides in lib_<arch> directories
55898 in files named <arch>_linux.c
55899
55900 This patch renames those files to a more clear and accurate
55901 lib_<arch>/bootm.c form.
55902
55903 List of the renamed files:
55904 lib_arm/armlinux.c -> lib_arm/bootm.c
55905 lib_avr32/avr32_linux.c -> lib_avr32/bootm.c
55906 lib_blackfin/bf533_linux.c -> lib_blackfin/bootm.c
55907 lib_i386/i386_linux.c -> lib_i386/bootm.c
55908 lib_m68k/m68k_linux.c -> lib_m68k/bootm.c
55909 lib_microblaze/microblaze_linux.c -> lib_microblaze/bootm.c
55910 lib_mips/mips_linux.c -> lib_mips/bootm.c
55911 lib_nios/nios_linux.c -> lib_nios/bootm.c
55912 lib_nios2/nios_linux.c -> lib_nios2/bootm.c
55913 lib_ppc/ppc_linux.c -> lib_ppc/bootm.c
55914 lib_sh/sh_linux.c -> lib_sh/bootm.c
55915
55916 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55917
55918 commit 7582438c285bf0cef82909d0f232de64ec567a8a
55919 Author: Marian Balakowicz <m8@semihalf.com>
55920 Date: Thu Jan 31 13:20:06 2008 +0100
55921
55922 [new uImage] Return error on image move/uncompress overwrites
55923
55924 Check for overwrites during image move/uncompress, return with error
55925 when the original image gets corrupted. Report clear message to the user
55926 and prevent further troubles when pointer to the corrupted images is passed
55927 to do_bootm_linux routine.
55928
55929 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55930
55931 commit f13e7b2e993c61fed1f607962501e051940d6e80
55932 Author: Marian Balakowicz <m8@semihalf.com>
55933 Date: Tue Jan 8 18:12:17 2008 +0100
55934
55935 [new uImage] Cleanup image header pointer use in bootm code
55936
55937 - use single image header pointer instead of a set of auxilliary variables.
55938 - add multi component image helper routines: get component size/data address
55939
55940 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55941
55942 commit 1ee1180b6e93e56d0282ac8d943e448e9d0eab20
55943 Author: Marian Balakowicz <m8@semihalf.com>
55944 Date: Tue Jan 8 18:17:10 2008 +0100
55945
55946 [new uImage] Cleanup cmd_bootm.c
55947
55948 - sort and cleanup headers, declarations, etc.
55949 - group related routines
55950 - cleanup indentation, white spaces
55951
55952 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55953
55954 commit af13cdbc01eaf88880978bfb4f603e012818ba24
55955 Author: Marian Balakowicz <m8@semihalf.com>
55956 Date: Tue Jan 8 18:11:45 2008 +0100
55957
55958 [new uImage] Add memmove_wd() common routine
55959
55960 Move common, watchdog sensible memmove code to a helper memmmove_wd() routine.
55961
55962 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55963
55964 commit 958fc48abddeab513ea4847e34f22a2e9fe67fe1
55965 Author: Marian Balakowicz <m8@semihalf.com>
55966 Date: Tue Jan 8 18:11:44 2008 +0100
55967
55968 [new uImage] Fix FDT header verification in PPC do_boot_linux() routine
55969
55970 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55971
55972 commit 15158971f49255ccef54f0979a942cfd3de2ae52
55973 Author: Marian Balakowicz <m8@semihalf.com>
55974 Date: Tue Jan 8 18:11:44 2008 +0100
55975
55976 [new uImage] Fix uImage header pointer use in i386 do_bootm_linux()
55977
55978 Use image header copy instead of a (possibly corrupted) pointer to
55979 a initial image location.
55980
55981 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55982
55983 commit 261dcf4624b25f3c551efcf8634e9194fabba9c3
55984 Author: Marian Balakowicz <m8@semihalf.com>
55985 Date: Tue Jan 8 18:11:44 2008 +0100
55986
55987 [new uImage] Remove I386 uImage fake_header() routine
55988
55989 I386 targets are not using a uImage format, instead fake header
55990 is added to ram image before it is further processed by bootm.
55991
55992 Remove this fixup and force proper uImage use for I386.
55993
55994 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55995
55996 commit 559316faf7eae0614c91d77f509b57d6c4c091ba
55997 Author: Marian Balakowicz <m8@semihalf.com>
55998 Date: Tue Jan 8 18:11:44 2008 +0100
55999
56000 [new uImage] Move CHUNKSZ definition to image.h
56001
56002 CHUNKSZ defined for PPC and M68K is set to the same value of 64K,
56003 move this definition to a common header.
56004
56005 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56006
56007 commit 321359f20823e0b8c5ad38b64d007a6c48cda16e
56008 Author: Marian Balakowicz <m8@semihalf.com>
56009 Date: Tue Jan 8 18:11:43 2008 +0100
56010
56011 [new uImage] Move gunzip() common code to common/gunzip.c
56012
56013 Move gunzip(), zalloc() and zfree() to a separate file.
56014 Share zalloc() and zfree() with cramfs uncompress routine.
56015
56016 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56017
56018 commit d45d5a18b6b36688f2365623f9d550566c664b5b
56019 Author: Marian Balakowicz <m8@semihalf.com>
56020 Date: Tue Jan 8 18:11:43 2008 +0100
56021
56022 [new uImage] Cleanup OF/FDT #if/#elif/#endif use in do_bootm_linux()
56023
56024 Make CONFIG_OF_LIBFDT and CONFIG_OF_FLAT_TREE use more
56025 readable in PPC variant of do_bootm_linux() routine.
56026
56027 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56028
56029 commit 5d3cc55ecbae277e08f5ff771da20b1d6a36ec36
56030 Author: Marian Balakowicz <m8@semihalf.com>
56031 Date: Tue Jan 8 18:11:43 2008 +0100
56032
56033 [new uImage] Move PPC do_bootm_linux() to lib_ppc/ppc_linux.c
56034
56035 PPC implementation of do_bootm_linux() routine is moved to
56036 a dedicated file lib_ppc/ppc_linux.c
56037
56038 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56039
56040 commit b97a2a0a21f279d66de8a9bdbfe21920968bcb1c
56041 Author: Marian Balakowicz <m8@semihalf.com>
56042 Date: Tue Jan 8 18:14:09 2008 +0100
56043
56044 [new uImage] Define a API for image handling operations
56045
56046 - Add inline helper macros for basic header processing
56047 - Move common non inline code common/image.c
56048 - Replace direct header access with the API routines
56049 - Rename IH_CPU_* to IH_ARCH_*
56050
56051 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56052
56053 commit ed29bc4e8142b46b626f67524207b36e43d9aad6
56054 Author: Marian Balakowicz <m8@semihalf.com>
56055 Date: Thu Jan 31 13:19:58 2008 +0100
56056
56057 Add missing cmd_ximg.o to common/Makefile
56058
56059 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56060
56061 commit 37e3c62fa07a823e7569c872e3a9395d227ed8e3
56062 Author: Grzegorz Bernacki <gjb@semihalf.com>
56063 Date: Mon Jan 28 10:15:02 2008 +0100
56064
56065 ADS5121e: DDR2 init/timing update.
56066
56067 Signed-off-by: John Rigby <jrigby@freescale.com>
56068 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
56069
56070 commit ac9152830d7fdebace8a260b7737ef2870c21ca0
56071 Author: John Rigby <jrigby@freescale.com>
56072 Date: Wed Jan 30 13:36:57 2008 -0700
56073
56074 Device tree updates
56075
56076 Changes to match 5121 device tree going mainline in 2.6.25.
56077
56078 Change OF_SOC from "soc5121" to plain "soc".
56079 Remove unneeded "ref-frequency" fixups.
56080 Remove "address" enetaddr fixup.
56081
56082 Add bus-frequency fixup for old OF_SOC so old
56083 kernels with old device trees will work with new
56084 u-boot with 66MHz IPS clock
56085
56086 Signed-off-by: John Rigby <jrigby@freescale.com>
56087
56088 commit de55d18df3ff2ea614624e74793de7c43520e0e7
56089 Author: John Rigby <jrigby@freescale.com>
56090 Date: Wed Jan 30 13:36:56 2008 -0700
56091
56092 Change IPS freq to 66MHz
56093
56094 Recommended frequency is 66MHz
56095 Change divider from 4 to 3.
56096
56097 Signed-off-by: John Rigby <jrigby@freescale.com>
56098
56099 commit cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974
56100 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56101 Date: Mon Jan 14 22:38:55 2008 +0100
56102
56103 xsengine: rename board_post_init to board_late_init
56104
56105 missing migration from "Cleanup of some init functions"
56106 in c837dcb1a316745092567bfe4fb266d0941884ff
56107
56108 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56109
56110 commit 8dafa87476b0d7170e219c2f5e3842c833a91807
56111 Author: Larry Johnson <lrj@acm.org>
56112 Date: Sat Jan 12 23:35:33 2008 -0500
56113
56114 Add attribute POST_PREREL to ECC memory POST
56115
56116 Signed-off-by: Larry Johnson <lrj@acm.org>
56117
56118 commit ed2cf548cac80cd3cf8154dcfe7b2685bef45938
56119 Author: Kumar Gala <galak@kernel.crashing.org>
56120 Date: Thu Jan 17 08:25:45 2008 -0600
56121
56122 QE: Move FDT support into a common file
56123
56124 Move the flat device tree setup for QE related devices into
56125 a common file shared between 83xx & 85xx platforms that have QE's.
56126
56127 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
56128
56129 commit d38da537943cd36356b9d3d9d9b60533554b81d8
56130 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56131 Date: Wed Jan 23 17:20:14 2008 +0100
56132
56133 AVR32: Make SDRAM refresh rate configurable
56134
56135 The existing code assumes the SDRAM row refresh period should always
56136 be 15.6 us. This is not always true, and indeed on the ATNGW100, the
56137 refresh rate should really be 7.81 us.
56138
56139 Add a refresh_period member to struct sdram_info and initialize it
56140 properly for both ATSTK1000 and ATNGW100. Out-of-tree boards will
56141 panic() until the refresh_period member is updated properly.
56142
56143 Big thanks to Gerhard Berghofer for pointing out this issue.
56144
56145 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56146
56147 commit 61151cccb660cdb06a07fb283de6089913d7bde0
56148 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56149 Date: Thu Apr 19 10:10:11 2007 +0200
56150
56151 ATSTK1000: Fix potential flash programming bug
56152
56153 The (now obsolete) atngw100 flash programming code was having problems
56154 programming the onboard at49bv642 chip. The atstk1000 flash
56155 programming code may have the same bug, so import fix for this problem
56156 from the AVR32 Linux BSP.
56157
56158 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56159
56160 commit b2e1d5b64469f10dfcce27f7b0afd935684a8e11
56161 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56162 Date: Thu Nov 22 17:04:13 2007 +0100
56163
56164 ATSTK1004: Fix comment about default load address
56165
56166 The default load address is SDRAM + 2MB, not SDRAM + 4MB. The latter
56167 wouldn't have worked anyway since the board can only access 4MB of
56168 SDRAM.
56169
56170 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56171
56172 commit 8269ab53608d8db2aa06969c337ab0b0518211e5
56173 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56174 Date: Thu Nov 22 17:01:24 2007 +0100
56175
56176 ATSTK1002: Use SDRAM + 4MB as default load address
56177
56178 Many people run into problems when they compile a big kernel and load
56179 the uImage at the default SDRAM + 2MB address as the kernel will
56180 overwrite the uImage as it is being unpacked. Increase the default
56181 load address so that we can load a 4MB kernel image without any
56182 problems.
56183
56184 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56185
56186 commit 2bcacc2d841b77f3d2d3910db722003742727e9f
56187 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56188 Date: Thu Nov 22 16:51:39 2007 +0100
56189
56190 ATNGW100: Fix default mtest range
56191
56192 Let mtest cover the whole SDRAM except the last megabyte, which is
56193 where u-boot lives.
56194
56195 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56196
56197 commit 9856a6b3104e0bc210b0868dfe691c52bf03c227
56198 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
56199 Date: Tue Jan 22 15:31:56 2008 +0900
56200
56201 sh: Fix register address of SH7722.
56202
56203 The address of SH7722 is wrong by old document.
56204 This patch fixes this problem.
56205
56206 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
56207
56208 commit 30942b18b66f35f2ceedab39af10e9eccaa943cc
56209 Author: Mike Frysinger <vapier@gentoo.org>
56210 Date: Mon Feb 4 19:26:57 2008 -0500
56211
56212 new command for displaying strings at specified memory locations
56213
56214 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56215
56216 commit b58d8b48e25b0c866d167cc577f118f528cd9e0a
56217 Author: Mike Frysinger <vapier@gentoo.org>
56218 Date: Mon Feb 4 19:26:57 2008 -0500
56219
56220 rewrite/cleanup Blackfin RTC driver
56221
56222 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56223
56224 commit 94a91e248b71c3ff951fc27cff6909e82ca37d15
56225 Author: Mike Frysinger <vapier@gentoo.org>
56226 Date: Mon Feb 4 19:26:57 2008 -0500
56227
56228 generate u-boot.ldr for Blackfin targets
56229
56230 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56231
56232 commit b779f7a59530436040f157f7841db7ab796542df
56233 Author: Mike Frysinger <vapier@gentoo.org>
56234 Date: Mon Feb 4 19:26:57 2008 -0500
56235
56236 scrub unused symbols
56237
56238 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56239
56240 commit cc2977acc3bbbb7850f16645dd1081f95335868d
56241 Author: Mike Frysinger <vapier@gentoo.org>
56242 Date: Mon Feb 4 19:26:57 2008 -0500
56243
56244 move Blackfin cpu object list to respective cpu directories
56245
56246 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56247
56248 commit d0b01a246d0a351bc7dce1d0c9cf6aebdf6d7505
56249 Author: Mike Frysinger <vapier@gentoo.org>
56250 Date: Mon Feb 4 19:26:57 2008 -0500
56251
56252 interface to Blackfin on-chip One-Time-Programmable memory
56253
56254 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56255
56256 commit 4c727c77e43872d3a1d1f76a949fcb3f26a38788
56257 Author: Mike Frysinger <vapier@gentoo.org>
56258 Date: Mon Feb 4 19:26:56 2008 -0500
56259
56260 add support for memory commands with Blackfin L1 instruction memory
56261
56262 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56263
56264 commit 6b9097e5e7490aa7b828c6f1a1c7a0e875df8464
56265 Author: Mike Frysinger <vapier@gentoo.org>
56266 Date: Mon Feb 4 19:26:56 2008 -0500
56267
56268 use C code rather than inline assembly
56269
56270 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56271
56272 commit 97c26e006d2fa6d4e1560933ee6f385d8b8908b9
56273 Author: Mike Frysinger <vapier@gentoo.org>
56274 Date: Mon Feb 4 19:26:56 2008 -0500
56275
56276 add Blackfin-specific reginfo command
56277
56278 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56279
56280 commit 0858b835e7ea501ea084d34cef75932f098342bb
56281 Author: Mike Frysinger <vapier@gentoo.org>
56282 Date: Mon Feb 4 19:26:55 2008 -0500
56283
56284 add support for Blackfin symbol prefixes to examples
56285
56286 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56287
56288 commit 8dc48d71a4be753ea9f84956cd33600de35fad04
56289 Author: Mike Frysinger <vapier@gentoo.org>
56290 Date: Mon Feb 4 19:26:55 2008 -0500
56291
56292 add Blackfin-specific bdinfo command
56293
56294 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56295
56296 commit 0003613e3c7df3b84b2cb92e797d77f46f15a43a
56297 Author: Mike Frysinger <vapier@gentoo.org>
56298 Date: Mon Feb 4 19:26:55 2008 -0500
56299
56300 move -ffixed-P5 to blackfin_config.mk and drop unused -D__BLACKFIN__
56301
56302 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56303
56304 commit 60fa72d65610c7ef33e1d6db858979d05ff0df58
56305 Author: Mike Frysinger <vapier@gentoo.org>
56306 Date: Mon Feb 4 19:26:55 2008 -0500
56307
56308 unify the Blackfin board targets
56309
56310 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56311
56312 commit d4d7730853e5d675f76ec666807da3028c91d592
56313 Author: Mike Frysinger <vapier@gentoo.org>
56314 Date: Mon Feb 4 19:26:55 2008 -0500
56315
56316 punt Blackfin VDSP headers and import sanitized/auto-generated ones
56317
56318 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56319
56320 commit 6cfcce67671a3425229d66203386fa3cbd0cc3bd
56321 Author: Mike Frysinger <vapier@gentoo.org>
56322 Date: Mon Feb 4 19:26:54 2008 -0500
56323
56324 always pull in asm/blackfin.h for Blackfin ports
56325
56326 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56327
56328 commit bf53974c2ddae678d7660f2b5ccfeb0732b6f5dc
56329 Author: Mike Frysinger <vapier@gentoo.org>
56330 Date: Mon Feb 4 19:26:54 2008 -0500
56331
56332 add missing __raw versions of Blackfin read/write io functions
56333
56334 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56335
56336 commit 24e02d0fd3acc50e73e1a3cdd567f0a77946f15d
56337 Author: Mike Frysinger <vapier@gentoo.org>
56338 Date: Mon Feb 4 19:26:54 2008 -0500
56339
56340 add the default Blackfin logo used by Blackfin boards with splash screens
56341
56342 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56343
56344 commit 4c58eb5552220e425c8af6ac8d2839244a2f57b1
56345 Author: Mike Frysinger <vapier@gentoo.org>
56346 Date: Mon Feb 4 19:26:54 2008 -0500
56347
56348 add some more Blackfin docs
56349
56350 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56351
56352 commit 32a9f5f2160a034ea87ea651b233ef7c635e55cf
56353 Author: Mike Frysinger <vapier@gentoo.org>
56354 Date: Mon Feb 4 19:26:54 2008 -0500
56355
56356 make smc91111_eeprom managment simpler by depending on the board configuration file rather than a hardcoded list of boards
56357
56358 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56359
56360 commit 4087bc88cebec75c432a7fe9f6afb545b0919831
56361 Author: Mike Frysinger <vapier@gentoo.org>
56362 Date: Mon Feb 4 19:26:54 2008 -0500
56363
56364 fix building on Blackfin as the assembler supports the .set syntax, not the = syntax, for assigning symbols
56365
56366 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56367
56368 commit b45264ee85cbd92020640a32e02fb434fd557108
56369 Author: Mike Frysinger <vapier@gentoo.org>
56370 Date: Mon Feb 4 19:26:53 2008 -0500
56371
56372 add gitignores for Blackfin pieces
56373
56374 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56375
56376 commit a93907c43f847f076dd0e34ee3b69b5e8e6d0d29
56377 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56378 Date: Fri Jan 18 01:14:03 2008 +0100
56379
56380 TFTP: add host ip addr support
56381
56382 allow to use a different server as set in serverip
56383 add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length
56384 if not defined the max length will be at 128
56385
56386 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56387
56388 commit e56b4b494cd92def577969f9678395aa22d34c9f
56389 Author: Timur Tabi <timur@freescale.com>
56390 Date: Wed Jan 9 14:35:26 2008 -0600
56391
56392 85xx,86xx: Determine I2C clock frequencies and store in global_data
56393
56394 Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
56395
56396 Update the get_clocks() function in 85xx and 86xx to determine the I2C
56397 clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
56398
56399 Signed-off-by: Timur Tabi <timur@freescale.com>
56400
56401 commit 7ec8bb15ee368ea54d48d64867767a704d9ab4c2
56402 Author: Wolfgang Denk <wd@denx.de>
56403 Date: Thu Dec 27 10:56:54 2007 +0100
56404
56405 OMAP5912: fix FIFO handling in UART driver
56406
56407 According to the OMAP5912 Serial Interfaces Reference Guide (see
56408 http://focus.ti.com/lit/ug/spru760c/spru760c.pdf, page 150), the
56409 FIFO_EN enable bit in the FIFO Control Register (FCR) can only be
56410 changed when the baud clock is not running, i. e. when both DLL and
56411 DLH are set to 0.
56412
56413 Thus make sure that DLL and DLH are 0 when writing the FCR.
56414
56415 Signed-off-by: Wolfgang Denk <wd@denx.de>
56416
56417 commit 16158778b5f52f201e95ded2d2d9084b0ed5670d
56418 Author: Harald Welte <laforge@openmoko.org>
56419 Date: Wed Dec 19 15:10:52 2007 +0100
56420
56421 ARM: S3C24x0 SoC NAND controller support
56422
56423 This patch adds NAND support to the S3C24x0 SoC code in u-boot
56424
56425 Signed-off-by: Harald Welte <laforge@openmoko.org>
56426
56427 commit a7c185ed3d9f8ebd85cfc286e1ffee72e4803163
56428 Author: Harald Welte <laforge@openmoko.org>
56429 Date: Wed Dec 19 14:24:40 2007 +0100
56430
56431 ARM: s3c24xx: Multiple serial port support
56432
56433 This patch adds support for CONFIG_SERIAL_MULTI on s3c24x0 CPU's
56434
56435 Signed-off-by: Harald Welte <laforge@openmoko.org>
56436
56437 commit a25f72f1f73a11de68251fb88c89991e202e68fa
56438 Author: Harald Welte <laforge@openmoko.org>
56439 Date: Wed Dec 19 14:16:57 2007 +0100
56440
56441 ARM: arm920t: Allow use of 'gd' pointer from IRQ
56442
56443 This patch allows us to use the 'gd' pointer (and thus environment
56444 and everything else associated with it) from interrupt context on
56445 arm920t.
56446
56447 Signed-off-by: Harald Welte <laforge@openmoko.org>
56448
56449 commit be19bd5cd0f454b63298844a0b5377e029b2caad
56450 Author: Harald Welte <laforge@openmoko.org>
56451 Date: Wed Dec 19 14:19:38 2007 +0100
56452
56453 ARM: arm920/s3c24xx: IRQ demulitplexer callback
56454
56455 This patch adds a IRQ demultiplexer callback to the arm920 cpu core code,
56456 plus a stub implementation of it for the S3C2410.
56457
56458 The purpose is to allow arm920t implementations such as the s3c24x0 to
56459 implement interrupt handlers in u-boot without having to touch core
56460 arm920t code.
56461
56462 Signed-off-by: Harald Welte <laforge@openmoko.org>
56463
56464 commit a41dbbd98d201d8aea31b5d21df4742c20cd7eda
56465 Author: Hebbar <gururajakr@sanyo.co.in>
56466 Date: Tue Dec 18 16:03:07 2007 -0800
56467
56468 ARM: Display Ethernet info in do_bdinfo only if CONFIG_CMD_NET is defined
56469
56470 Add ifdef to bdinfo command to display ethernet information
56471 only if CONFIG_CMD_NET is defined for arm modules.
56472
56473 Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
56474
56475 commit f7ad79b6f9f0f45437b62e19b45356cc2aaf4884
56476 Author: Hebbar <gururajakr@sanyo.co.in>
56477 Date: Tue Dec 18 16:00:54 2007 -0800
56478
56479 ARM: add I2C init function call in lib_arm/board.c
56480
56481 Adds I2C init func call to init sequence for ARM boards. This is
56482 present in ppc,blackfin and other processor init sequence.
56483
56484 Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
56485
56486 commit ff02f139804f3cb61414f7bbcbfdaa0279e3efae
56487 Author: Stefan Roese <sr@denx.de>
56488 Date: Fri Feb 1 09:38:29 2008 +0100
56489
56490 ppc4xx: Fix ndfc HW ECC byte order
56491
56492 The current ndfc HW ECC implementation swaps the first two ECC bytes.
56493 But the 4xx NDFC already uses the SMC (Smart Media Card) ECC ordering,
56494 so this swapping in the HW ECC driver is bogus. This patch fixes this
56495 problem and now really uses the SMC ECC byte order.
56496
56497 Thanks to Sean MacLennan for pointing this out.
56498
56499 Signed-off-by: Stefan Roese <sr@denx.de>
56500
56501 commit e1d1429b49b0ee58c80f8c7b29c1ebaf8be7f5f1
56502 Author: Stefan Roese <sr@denx.de>
56503 Date: Wed Jan 30 15:35:50 2008 +0100
56504
56505 ppc4xx: Fix GPIO configuration for pcs440ep
56506
56507 The SRD0_PFC0 register was not configured correctly to enable the GPIO's
56508 49-63 for GPIO. They have been configured as trace signals. This patch
56509 fixes this by clearing the corresponding bit.
56510
56511 Signed-off-by: Stefan Roese <sr@denx.de>
56512
56513 commit 28d77d968bfe0316deb5bf15c17f57d5ff2c8821
56514 Author: Stefan Roese <sr@denx.de>
56515 Date: Wed Jan 30 14:48:28 2008 +0100
56516
56517 ppc4xx: Fix problem with init-ram bigger than 4k on 440 platforms
56518
56519 Signed-off-by: Stefan Roese <sr@denx.de>
56520
56521 commit 4fedfddf97461b88668b9aec774dfb7a0c6dc368
56522 Author: Ladislav Michl <ladis@linux-mips.org>
56523 Date: Fri Dec 7 00:42:32 2007 +0100
56524
56525 ARM: Board voiceblue update
56526
56527 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
56528
56529 commit 2c5260f711168d5ee91c70ddbb7d897013eefc46
56530 Author: Ladislav Michl <ladis@linux-mips.org>
56531 Date: Thu Dec 6 23:24:57 2007 +0100
56532
56533 ARM: AT91RM9200 based boards config cleanup
56534
56535 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
56536
56537 Remove nowhere used struct bd_info_ext, remove trailing whitespaces, fix
56538 indentation.
56539
56540 commit 481f28b1db5cd21deb55f69399ba240e107af4c7
56541 Author: Ladislav Michl <ladis@linux-mips.org>
56542 Date: Thu Dec 6 22:59:16 2007 +0100
56543
56544 ARM: Fix at91rm9200dk base address
56545
56546 Somewhere during development of U-Boot-1.1.3 CONFIG_BOOTBINFUNC was
56547 renamed into CONFIG_INIT_CRITICAL which was 04 Apr 2005 replaced
56548 with CONFIG_SKIP_LOWLEVEL_INIT and CONFIG_SKIP_RELOCATE_UBOOT.
56549 However CONFIG_SKIP_LOWLEVEL_INIT has oposite meaning to
56550 CONFIG_BOOTBINFUNC, so fix configuration to reflect this fact.
56551 I'm sending this patch 4th (!) time in hope it produces at least some
56552 reaction.
56553
56554 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
56555
56556 Fix at91rm9200dk base and environment address.
56557
56558 commit c95219fae2a7add7daa2f91aedca65b1698465c7
56559 Author: stefano babic <sbabic@denx.de>
56560 Date: Tue Nov 20 10:40:24 2007 +0100
56561
56562 MMC for PXA 27X (resubmit)
56563
56564 MMC support for X_Scale PXA is broken and does not work.
56565 Mainly, the mmc_init() function cannot recognize current SD/MMC cards.
56566 There were already some patches around the world but none of them was
56567 merged into the official u-boot tree.
56568
56569 This patch makes order fixing this issue. Resubmit after code cleanup.
56570
56571 Applied and tested on PXA 270 (TrizepsIV module).
56572
56573 Signed-off-by: Stefano Babic <sbabic@denx.de>
56574
56575 commit 96bbfa1e6625ce23a150936863b3ecf4c853eb33
56576 Author: stefano babic <sbabic@denx.de>
56577 Date: Tue Nov 20 10:37:04 2007 +0100
56578
56579 Fix gcc issues in pxa-regs.h
56580
56581 Fix gcc4 issue. With some toolchain, a previous patch that fixes gcc4
56582 issues generates wrong code.
56583 (Problem was reported with gcc-4.0.2-glibc-2.3.6/arm-softfloat-linux-gnu).
56584 This patch fixes the problem and solves the gcc-4 issues as the linux
56585 kernel does.
56586
56587 Signed-off-by: Stefano Babic <sbabic@denx.de>
56588 Signed-off-by: Dmitry Ivanov <ivadmitry@gmail.com>
56589
56590 commit 7047b388876e7b905b2ec4edb8010543e3641b85
56591 Author: Jens Gehrlein <sew_s@tqs.de>
56592 Date: Tue Jan 29 08:45:03 2008 +0100
56593
56594 TQM834x: enable DHCP
56595
56596 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
56597 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56598
56599 commit a877004d44ca7dbc1e618add3eeb1da7c84e4bec
56600 Author: Jens Gehrlein <sew_s@tqs.de>
56601 Date: Tue Jan 29 08:45:02 2008 +0100
56602
56603 TQM834x: support for Spansion N-type Flashes (sector size = 256 KiB at 2x16 Bit).
56604
56605 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
56606 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56607
56608 commit 8931ab176025b03cfc320b3fd1eca432a88ed560
56609 Author: Ben Warren <biggerbadderben@gmail.com>
56610 Date: Sat Jan 26 23:41:19 2008 -0500
56611
56612 Fix conditional compilation of mpx8xxx_spi driver
56613
56614 This driver should only compile if CONFIG_MPC8XXX_SPI is set
56615
56616 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
56617 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56618
56619 commit 63f732d3d3880feb531f48af247c025bf01462b0
56620 Author: Rafal Jaworowski <raj@semihalf.com>
56621 Date: Tue Jan 29 17:00:34 2008 +0100
56622
56623 API: Provide dummy halt() in the glue layer.
56624
56625 This fixes a demo app link failure on platforms configured with CONFIG_PANIC_HANG.
56626
56627 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
56628
56629 commit 0dc1fc22af86d16993388d9ed9630dbaa2d51826
56630 Author: Rafal Jaworowski <raj@semihalf.com>
56631 Date: Tue Jan 29 16:57:38 2008 +0100
56632
56633 API: Convert conditional building to the new scheme.
56634
56635 This fixes a build breakage with CONFIG_API enabled, which appeared after
56636 the recent changes in the U-Boot build system.
56637
56638 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
56639
56640 commit 98b742489c09780be6a832eeaa4e5eff824792bb
56641 Author: Wolfgang Denk <wd@denx.de>
56642 Date: Fri Jan 25 09:56:17 2008 +0100
56643
56644 inka4x0: remove dead code
56645
56646 Signed-off-by: Wolfgang Denk <wd@denx.de>
56647
56648 commit 4f93f8b1a4d35b6d302842132edba920ef8f62aa
56649 Author: Becky Bruce <becky.bruce@freescale.com>
56650 Date: Wed Jan 23 16:31:06 2008 -0600
56651
56652 86xx: Add reginfo command
56653
56654 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
56655
56656 commit ddcebcb638715a6278da93b553d5016f99823816
56657 Author: Becky Bruce <becky.bruce@freescale.com>
56658 Date: Wed Jan 23 16:31:05 2008 -0600
56659
56660 86xx: Add print_laws function to fsl_law.c
56661
56662 This can be used for debug, and will be used by board code
56663 to help implement reginfo.
56664
56665 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
56666
56667 commit 9cd32426f26a0567bb61f339edd83c6a2ce9bfc3
56668 Author: Becky Bruce <becky.bruce@freescale.com>
56669 Date: Wed Jan 23 16:31:04 2008 -0600
56670
56671 86xx: Remove old-style law setup code
56672
56673 This includes mpc8610hpcd, mpc8641hpcn, and sbc8641d.
56674
56675 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
56676
56677 commit 713d8186649dae874613d495b0cecaa039a98b30
56678 Author: Becky Bruce <becky.bruce@freescale.com>
56679 Date: Wed Jan 23 16:31:03 2008 -0600
56680
56681 86xx: Convert sbc8641d to use new law setup code.
56682
56683 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
56684
56685 commit 031976f6364b93833e989f57e9f1e023e0be8c4c
56686 Author: Becky Bruce <becky.bruce@freescale.com>
56687 Date: Wed Jan 23 16:31:02 2008 -0600
56688
56689 86xx: Convert mpc8610hpcd to new law setup method.
56690
56691 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
56692
56693 commit 4933b91f8a49e436681f163df3173beb91cac44a
56694 Author: Becky Bruce <becky.bruce@freescale.com>
56695 Date: Wed Jan 23 16:31:01 2008 -0600
56696
56697 86xx: Support new law setup method and convert mpc8641
56698
56699 Adds the support code in cpu/mpc86xx for the new law setup code
56700 recently created fsl_law.c, and changes the MPC8641HPCN config
56701 to use this code.
56702
56703 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
56704
56705 commit 1a41f7ce9c086e208c0eabf52565a237af2a2bd1
56706 Author: Becky Bruce <becky.bruce@freescale.com>
56707 Date: Wed Jan 23 16:31:00 2008 -0600
56708
56709 86xx: Rearrange the sequence in start.S
56710
56711 * split the BAT initialization so that only 2 BATs (for the boot page
56712 and stack) are programmed very early on. The rest are initialized later.
56713 * Move other BAT setup, ccsrbar setup, and law setup later in the code
56714 after translation has been enabled.
56715
56716 These changes will facilitate the moving of law and BAT initialization
56717 to C code, and will aid with 36-bit physical addressing support.
56718
56719 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
56720
56721 commit 33dac03b1b5d61e4fed7bad445ba40b4c97feba0
56722 Author: Wolfgang Denk <wd@denx.de>
56723 Date: Wed Jan 23 14:41:37 2008 +0100
56724
56725 Coding Style Cleanup; update CHANGELOG
56726
56727 Signed-off-by: Wolfgang Denk <wd@denx.de>
56728
56729 commit 865f0f9754b95183cad395de7e8cb85df0c6ea1f
56730 Author: Wolfgang Denk <wd@denx.de>
56731 Date: Wed Jan 23 14:31:17 2008 +0100
56732
56733 Coding Style Cleanup; update CHANGELOG
56734
56735 Signed-off-by: Wolfgang Denk <wd@denx.de>
56736
56737 commit cfe5ca77976afdbe7ecb86e39fd7505bde636ace
56738 Author: Dave Liu <r63238@freescale.com>
56739 Date: Fri Jan 18 10:07:04 2008 +0800
56740
56741 mpc83xx: Correct the struct spi8xxx in mpc8xxx_spi.h
56742
56743 The commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
56744 cause the 83xx immap broken, so the DMA and PCI will
56745 be failed.
56746
56747 The patch fix the struct spi8xxx and rm struct spi83xx.
56748
56749 Signed-off-by: Dave Liu <daveliu@freescale.com>
56750 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56751
56752 commit 6b4439444286e0fcd01596df504e6ca897ad3e5a
56753 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56754 Date: Sat Apr 14 17:11:49 2007 +0200
56755
56756 AVR32: ATNGW100 board support
56757
56758 Add support for the ATNGW100 Network Gateway reference design,
56759 including flash, ethernet and MMC support.
56760
56761 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56762
56763 commit e006927a0b9a54e8ee7685d8ac748aaad6801862
56764 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56765 Date: Sat Nov 24 18:15:31 2007 +0100
56766
56767 AVR32: Initialize ipaddr, loadaddr and bootfile at startup
56768
56769 I don't know why the relevant layers can't do this by itself, but this
56770 is what ppc does.
56771
56772 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56773
56774 commit 799891ef7b1b3432032ec23466df6b665a797fa4
56775 Author: Michael Schwingen <michael@schwingen.org>
56776 Date: Fri Jan 18 00:04:28 2008 +0100
56777
56778 Add AcTux board support
56779
56780 Hi,
56781
56782 The patch adds 4 boards, called AcTux-1 .. AcTux-4. This patch contains the
56783 files that
56784 contain changes for multiple boards, the board-specific files follow as
56785 separate patches.
56786
56787 Signed-off-by: Michael Schwingen <michael@schwingen.org>
56788
56789 commit 66a4344a4d910a11125df7768899ad529719855e
56790 Author: Michael Schwingen <michael@schwingen.org>
56791 Date: Wed Jan 16 19:53:23 2008 +0100
56792
56793 add AcTux-4 board support
56794
56795 Signed-off-by: Michael Schwingen <michael@schwingen.org>
56796
56797 commit bc24345e4101a5c996d6b48ce497b09c53025dc6
56798 Author: Michael Schwingen <michael@schwingen.org>
56799 Date: Wed Jan 16 19:51:55 2008 +0100
56800
56801 add AcTux-3 board support
56802
56803 Signed-off-by: Michael Schwingen <michael@schwingen.org>
56804
56805 commit aebf00fc4d1343b24715373893f7b20bf462d1e9
56806 Author: Michael Schwingen <michael@schwingen.org>
56807 Date: Wed Jan 16 19:51:14 2008 +0100
56808
56809 add AcTux-2 board support
56810
56811 Signed-off-by: Michael Schwingen <michael@schwingen.org>
56812
56813 commit ea99e8f05b7240fd657739e286664664ae160abe
56814 Author: Michael Schwingen <michael@schwingen.org>
56815 Date: Wed Jan 16 19:50:37 2008 +0100
56816
56817 add AcTux-1 board support
56818
56819 Signed-off-by: Michael Schwingen <michael@schwingen.org>
56820
56821 commit 3d9f3bfb7a33efe8e41e01b025563cd712c57d64
56822 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56823 Date: Mon Jan 14 19:20:08 2008 +0100
56824
56825 ARM: remove useless function board_post_init
56826
56827 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56828
56829 commit 96bd462942022e4569b582c072a0ed26de1cd19b
56830 Author: Michael Schwingen <michael@schwingen.org>
56831 Date: Thu Jan 10 14:59:46 2008 +0100
56832
56833 IXP: enable RTS
56834
56835 enables the RTS signal with CONFIG_SERIAL_RTS_ACTIVE.
56836 No handshaking is done, but the active RTS signal allows to
56837 connect to the target using a PC which is using RTS/CTS
56838 handshake, and does no harm if the PC is set to ignore RTS.
56839
56840 Signed-off-by: Michael Schwingen <michael@schwingen.org>
56841
56842 commit a1cf027a08f9dc1c0e769499e6f4fbddcf9cab93
56843 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56844 Date: Mon Jan 7 08:41:34 2008 +0100
56845
56846 IXP: add dynamic microcode addr
56847
56848 allow to load the microde from flash or ram by download it through
56849 the serial or other.
56850
56851 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56852 Acked-by: Stefan Roese <sr@denx.de>
56853
56854 commit 63ebcc4615dd39926ccf61f1d5f3510262ef6564
56855 Author: Michael Schwingen <michael@schwingen.org>
56856 Date: Sat Nov 10 15:44:12 2007 +0100
56857
56858 load ixp42x NPE firmware from separate flash block, remove dead code
56859
56860 Hi,
56861
56862 the following patch adds support to move the IXP42X NPE firmware to a
56863 separate flash block, whose start address is defined in
56864 CONFIG_IXP4XX_NPE_EXT_UCODE_BASE. Using that, it is possible to build
56865 NPE-enabled u-boot without copyright problems due to the NPE firmware.
56866
56867 I hope the patch applies, I get whitespace-related differences in the NPE
56868 files due to trailing whitespace in the original versions.
56869
56870 Signed-off-by: Michael Schwingen <michael@schwingen.org>
56871 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56872
56873 commit 57a127201eb3d8cc19170a008e0bd7af608bd72f
56874 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56875 Date: Tue Jan 15 14:15:46 2008 -0600
56876
56877 ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB support
56878
56879 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56880 Signed-off by: John Rigby <jrigby@freescale.com>
56881
56882 commit 1aee111135d8660a164d4f6bf7d66b032ea535cf
56883 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56884 Date: Tue Jan 15 14:02:49 2008 -0600
56885
56886 ColdFire: MCF547x_8x - Add M547xEVB and M548xEVB board
56887
56888 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56889 Signed-off by: John Rigby <jrigby@freescale.com>
56890
56891 commit 777d1abd9796f1c2e148417cc10657e847d318ce
56892 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56893 Date: Tue Jan 15 14:00:25 2008 -0600
56894
56895 ColdFire: Add MCF547x_8x FEC driver
56896
56897 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56898 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
56899 Signed-off by: John Rigby <jrigby@freescale.com>
56900
56901 commit 72f56adc0b25d43875ad067bae6be1bcea86b79f
56902 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56903 Date: Tue Jan 15 13:54:09 2008 -0600
56904
56905 ColdFire: Add MCF547x_8x dma code and header files
56906
56907 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56908 Signed-off by: John Rigby <jrigby@freescale.com>
56909
56910 commit ce09fc49b56ea3c442794b6be9b7db4b99dfdc87
56911 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56912 Date: Tue Jan 15 13:52:03 2008 -0600
56913
56914 ColdFire: Add MCF547x_8x dma code - 2
56915
56916 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56917 Signed-off by: John Rigby <jrigby@freescale.com>
56918
56919 commit 11865ea844e7154fd30c7e2860da4eed4a12ad1f
56920 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56921 Date: Tue Jan 15 13:48:52 2008 -0600
56922
56923 ColdFire: Add MCF547x_8x dma code - 1
56924
56925 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56926 Signed-off by: John Rigby <jrigby@freescale.com>
56927
56928 commit 4621fc3fe7cd65b78b3cbd31f65c9f7f72b22bd3
56929 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56930 Date: Tue Jan 15 13:39:44 2008 -0600
56931
56932 ColdFire: Add MCF547x_8x related header files
56933
56934 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56935 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
56936 Signed-off by: John Rigby <jrigby@freescale.com>
56937
56938 commit 570c0186aecab1b747b2d44d0e1d3c1ac4cb27f5
56939 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56940 Date: Tue Jan 15 13:37:34 2008 -0600
56941
56942 ColdFire: Add MCF547x_8x cpu arch
56943
56944 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56945 Signed-off by: John Rigby <jrigby@freescale.com>
56946
56947 commit e2756f4b54aba0e0523b81dd145666829cf7fd59
56948 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56949 Date: Mon Jan 14 17:47:23 2008 -0600
56950
56951 ColdFire: Add MCF5227x cpu and M52277EVB support-3
56952
56953 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56954 Signed-off by: John Rigby <jrigby@freescale.com>
56955
56956 commit c87581027994c148131b2f11aa75501f782ec19a
56957 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56958 Date: Mon Jan 14 17:46:19 2008 -0600
56959
56960 ColdFire: Add MCF5227x cpu and MCF52277EVB support-2
56961
56962 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56963 Signed-off by: John Rigby <jrigby@freescale.com>
56964
56965 commit 1552af70ecab11b9f3dceff7528ed15faf678b9d
56966 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56967 Date: Mon Jan 14 17:43:33 2008 -0600
56968
56969 ColdFire: Add MCF5227x cpu and M52277EVB support-1
56970
56971 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56972 Signed-off by: John Rigby <jrigby@freescale.com>
56973
56974 commit 397b7b81a1f1008798ae1206913508cc89cb3a7d
56975 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56976 Date: Mon Jan 14 17:35:44 2008 -0600
56977
56978 ColdFire: Fix CFI Flash low level Read/Write macro
56979
56980 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56981 Signed-off by: John Rigby <jrigby@freescale.com>
56982
56983 commit aa5f1f9dc815a76f6dffb580798599c028fe7feb
56984 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56985 Date: Mon Jan 14 17:23:08 2008 -0600
56986
56987 ColdFire: Add M5373EVB platform support - 2
56988
56989 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56990 Signed-off by: John Rigby <jrigby@freescale.com>
56991
56992 commit 1ac559d4aa358f63b48c62b564224c06feeb4e36
56993 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56994 Date: Mon Jan 14 17:19:54 2008 -0600
56995
56996 ColdFire: Add M5373EVB platform support - 1
56997
56998 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
56999 Signed-off by: John Rigby <jrigby@freescale.com>
57000
57001 commit 320d61991fa3190ee41765601ed017b6b5ff7b2b
57002 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57003 Date: Mon Jan 14 17:17:03 2008 -0600
57004
57005 ColdFire: Update FlexBus CS for MCF532x
57006
57007 Definition update and change from 16bit to 32bit
57008
57009 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57010 Signed-off by: John Rigby <jrigby@freescale.com>
57011
57012 commit 2e72ad0644b940817a89a3590ce0d7b99c05c396
57013 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57014 Date: Mon Jan 14 17:11:47 2008 -0600
57015
57016 ColdFire: PCI and misc updates for MCF5445x
57017
57018 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57019 Signed-off by: John Rigby <jrigby@freescale.com>
57020
57021 commit d2b16493480ac3d4a60ad7d835b0dc27d2e99cee
57022 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57023 Date: Mon Jan 14 17:06:55 2008 -0600
57024
57025 ColdFire: MCF5445x header files cleanup
57026
57027 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57028 Signed-off by: John Rigby <jrigby@freescale.com>
57029
57030 commit d9aae6260993a93f7fcf13abff85a601f4f50ea7
57031 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57032 Date: Mon Jan 14 16:59:42 2008 -0600
57033
57034 ColdFire: MCF532x header files cleanup
57035
57036 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57037 Signed-off by: John Rigby <jrigby@freescale.com>
57038
57039 commit 7af7751d047e74b2ec58400f97b879c56446b3e8
57040 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57041 Date: Mon Jan 14 15:30:15 2008 -0600
57042
57043 ColdFire: Add modules header files
57044
57045 Add CF specific modules header files
57046
57047 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
57048 Signed-off-by: John Rigby <jrigby@freescale.com>
57049
57050 commit 2956acd5ef93a498337f8ac2ec6ae6a77d491dc5
57051 Author: Kim Phillips <kim.phillips@freescale.com>
57052 Date: Thu Jan 17 12:48:00 2008 -0600
57053
57054 codingstyle cleanup for spi driver
57055
57056 ..and rm unused CONFIG_FSL_SPI define
57057
57058 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57059
57060 commit d59feffb42c9f174116db7a82a311df98983dfce
57061 Author: Haiying Wang <Haiying.Wang@freescale.com>
57062 Date: Wed Jan 16 17:12:12 2008 -0500
57063
57064 FSL: Fix common EEPROM_data structure definition
57065
57066 - Fix EEPROM_data structure definition according to System EEPROM Data Format.
57067 - Read MAC addresses from EEPROM to ethXaddr before saving ethXaddr to
57068 bd->bi_ethaddr.
57069
57070 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
57071
57072 commit 6bee764bd6da510a4aad614880300c968bc7318d
57073 Author: Timur Tabi <timur@freescale.com>
57074 Date: Wed Jan 16 15:48:12 2008 -0600
57075
57076 86xx: enable command-line editing
57077
57078 Enable command-line editing for all MPC86xx boards.
57079
57080 Signed-off-by: Timur Tabi <timur@freescale.com>
57081
57082 commit 80ddd22626d321a772ebfba304eb7830cb4f6bac
57083 Author: Ben Warren <biggerbadderben@gmail.com>
57084 Date: Wed Jan 16 22:37:42 2008 -0500
57085
57086 Implement hard SPI driver on MPC8349EMDS
57087
57088 This patch implements the fsl_spi driver on the MPC8349EMDS evaluation board.
57089 This board has an ST M25P40 4Mbit EEPROM on its SPI bus
57090
57091 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57092 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57093
57094 commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
57095 Author: Ben Warren <biggerbadderben@gmail.com>
57096 Date: Wed Jan 16 22:37:35 2008 -0500
57097
57098 Add support for a Freescale non-CPM SPI controller
57099
57100 This patch adds support for the SPI controller found on Freescale PowerPC
57101 processors such as the MCP834x family. Additionally, a new config option,
57102 CONFIG_HARD_SPI, is added for general purpose SPI controller use.
57103
57104 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57105 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57106
57107 commit a8cb43a89be6cfd283257a603dd9841503ccce0f
57108 Author: Dave Liu <r63238@freescale.com>
57109 Date: Thu Jan 17 18:23:19 2008 +0800
57110
57111 mpc83xx: Fix the fatal conflict of merge
57112
57113 The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
57114 will cause the mpc8315erdb board can't boot up.
57115
57116 The patch fix that bug, and remove the duplicated #ifdef
57117 CFG_SPCR_TSECEP code and clean the SCCR_TSEC2 for
57118 MPC8313E processor.
57119
57120 Signed-off-by: Dave Liu <daveliu@freescale.com>
57121 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57122
57123 commit 3259eeaa4148125a81417477f62c05bd67f60587
57124 Author: Larry Johnson <lrj@acm.org>
57125 Date: Thu Jan 17 08:50:09 2008 -0500
57126
57127 Merge Sequoia beautification into Korat code
57128
57129 Signed-off-by: Larry Johnson <lrj@acm.org>
57130
57131 commit e16925773211291b562e77187061e9dd1d757217
57132 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
57133 Date: Thu Jan 17 07:45:05 2008 +0100
57134
57135 net: add 'ethrotate' environment variable
57136
57137 [PATCH] net: add 'ethrotate' environment variable
57138
57139 This patch replaces the buildtime configuration option
57140 CONFIG_NET_DO_NOT_TRY_ANOTHER through the 'ethrotate' runtime
57141 configuration veriable. See README.
57142
57143 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
57144 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57145
57146 commit ba52be3d0e618c26070e93aaf3c1f2d2adf5571f
57147 Author: Stefan Roese <sr@denx.de>
57148 Date: Thu Jan 17 14:29:04 2008 +0100
57149
57150 ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5
57151
57152 Signed-off-by: Stefan Roese <sr@denx.de>
57153
57154 commit 55ed1516cbc1dad3ae277c67ee06fc4a46eaac7d
57155 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57156 Date: Thu Jan 17 18:07:32 2008 +0900
57157
57158 sh: Remove CONFIG_COMMANDS from MS7720SE config file
57159
57160 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57161
57162 commit 055606bd25e88c0cd04ad348a679a04b1b616bee
57163 Author: Niklaus Giger <niklaus.giger@netstal.com>
57164 Date: Wed Jan 16 18:39:20 2008 +0100
57165
57166 ppc4xx: Netstal HCU4 board: added various fixes and POST
57167
57168 - Moved some common code to netstal/common/nm_bsp.c.
57169 - sdram initialisation goes go netstal/common/fixed_sdram.c.
57170 - Added support for POST.
57171 - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
57172
57173 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57174
57175 commit 69b0634a4ee98c9791815600d43b99f626a952f3
57176 Author: Niklaus Giger <niklaus.giger@netstal.com>
57177 Date: Thu Jan 17 12:53:56 2008 +0100
57178
57179 ppc4xx: netstal/common define routines used by all boards
57180
57181 Added some routines used by all Netstal boards:
57182 - nm_bsp.c: - nm_show_print and
57183 - common_misc_init_r
57184 - set_params_for_sw_install. Very specific code to handle our SW
57185 installation procedure
57186 - fixed_sdram.c: Common routines for HCU4 (and upcoming) MCU25 boards
57187 to handle sdram initialization.
57188 - nm.h: Common header
57189
57190 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57191
57192 commit efeff5382b7a91b48a1aa68b2b75f92ad1d33ff8
57193 Author: Niklaus Giger <niklaus.giger@netstal.com>
57194 Date: Wed Jan 16 18:39:18 2008 +0100
57195
57196 ppc4xx: Netstal HCU5 board: added various fixes and POST
57197
57198 - Moved some common code to nestal/common/nm_bsp.c.
57199 - Added support for the vxWorks EDR.
57200 - Enable trace for Lauterbach, if present.
57201 - Added support for POST.
57202 - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
57203
57204 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57205
57206 commit 4371090e5da77edc7bf9f296364db4801639d9c4
57207 Author: Niklaus Giger <niklaus.giger@netstal.com>
57208 Date: Wed Jan 16 18:39:08 2008 +0100
57209
57210 ppc4xx: Netstal HCU5 board. Added POST. Various fixes
57211
57212 - Various fixes
57213 - Reduced rom_size from 384 to 320 kB
57214 - Environment is now in flash
57215 - Added POST
57216 - Support for OF
57217
57218 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57219
57220 commit 4bd5036e60afac37e484c2d35cbbe7f6cc1623e7
57221 Author: Niklaus Giger <niklaus.giger@netstal.com>
57222 Date: Wed Jan 16 18:37:50 2008 +0100
57223
57224 ppc4xx: Netstal HCU4 board. Added POST. Various fixes
57225
57226 - Various fixes
57227 - Reduced rom_size from 384 to 320 kB
57228 - Environment is now in flash
57229 - Added POST
57230 - Support for OF
57231
57232 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57233
57234 commit 1a3ac86b79fcb690275c85861c8efa6a3899060a
57235 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
57236 Date: Thu Jan 17 10:53:08 2008 +0100
57237
57238 ppc4xx: Complete DU440 board support
57239
57240 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
57241
57242 commit 15a08bc2bef91e5f1ea4b9cf60e46832d86bcc1f
57243 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
57244 Date: Thu Jan 17 10:52:30 2008 +0100
57245
57246 ppc4xx: Add DU440 board support
57247
57248 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
57249
57250 commit ac331da07db3860f11fa1d0fd3db7c810bce1198
57251 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57252 Date: Thu Jan 17 15:53:52 2008 +0900
57253
57254 sh: Update SuperH SCIF driver
57255
57256 This patch fixed wrong SH7720 CPU macro and changed macro that
57257 calculated value of SCBRR register.
57258
57259 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57260
57261 commit 334e442e6fac59be91244063e9b3f6ca25e8daf8
57262 Author: Grzegorz Bernacki <gjb@semihalf.com>
57263 Date: Wed Jan 16 15:12:47 2008 +0100
57264
57265 Set ips dividor to 1/4 of csb clock.
57266
57267 Previous setting cause ips clock to be out of spec. This bug was found by John
57268 Rigby from Freescale.
57269
57270 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
57271
57272 commit 7dc358bb0de9e2fa341f3b4c914466b1f34b2d89
57273 Author: Kumar Gala <galak@kernel.crashing.org>
57274 Date: Thu Jan 17 02:19:18 2008 -0600
57275
57276 85xx: Get ride of old TLB setup code
57277
57278 Now that all boards have been converted, remove old config code and the
57279 config option for the new style.
57280
57281 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57282
57283 commit 3b558e26a5ef31635787d6d6e97d70939d4f892d
57284 Author: Kumar Gala <galak@kernel.crashing.org>
57285 Date: Thu Jan 17 02:02:10 2008 -0600
57286
57287 85xx: Convert TQM85xx to new TLB setup
57288
57289 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57290
57291 commit 74121b470c14f7eaf284ee838bffca6f9521069e
57292 Author: Kumar Gala <galak@kernel.crashing.org>
57293 Date: Thu Jan 17 01:56:32 2008 -0600
57294
57295 85xx: Convert STXGP3 & STXSSA to new TLB setup
57296
57297 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57298
57299 commit 143b518d9125b54f96f1d7f1afc640b8aae81ff0
57300 Author: Kumar Gala <galak@kernel.crashing.org>
57301 Date: Thu Jan 17 01:44:34 2008 -0600
57302
57303 85xx: Convert SBC8540/SBC8560/SBC8548 to new TLB setup
57304
57305 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57306
57307 commit 818218bac6a11591e2542c344d2330e0f4e1968b
57308 Author: Kumar Gala <galak@kernel.crashing.org>
57309 Date: Thu Jan 17 01:31:34 2008 -0600
57310
57311 85xx: Convert PM854/PM856 to new TLB setup
57312
57313 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57314
57315 commit ff4681c9285b2b4d24552a19cacc1769fe2fc7e0
57316 Author: Kumar Gala <galak@kernel.crashing.org>
57317 Date: Thu Jan 17 01:25:33 2008 -0600
57318
57319 85xx: Convert MPC8540EVAL to new TLB setup
57320
57321 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57322
57323 commit 73aa9ac2b46f1cfd039106ebd6b9865016005234
57324 Author: Kumar Gala <galak@kernel.crashing.org>
57325 Date: Thu Jan 17 01:12:22 2008 -0600
57326
57327 85xx: Convert MPC8568 MDS to new TLB setup
57328
57329 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57330
57331 commit 0db37dc2eed30884db2daa24dbd9a113b5d00610
57332 Author: Kumar Gala <galak@kernel.crashing.org>
57333 Date: Thu Jan 17 01:01:09 2008 -0600
57334
57335 85xx: Convert MPC8541/MPC8555/MPC8548 CDS to new TLB setup
57336
57337 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57338
57339 commit 219a81b98d834f9071b6f7c3bdc6b7ec39cc46cc
57340 Author: Kumar Gala <galak@kernel.crashing.org>
57341 Date: Thu Jan 17 00:52:29 2008 -0600
57342
57343 85xx: Convert MPC8540/MPC8560 ADS to new TLB setup
57344
57345 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57346
57347 commit 80d0b6a1498761c4355b2db9c8001b04c295e7b8
57348 Author: Kumar Gala <galak@kernel.crashing.org>
57349 Date: Thu Jan 17 00:32:17 2008 -0600
57350
57351 85xx: Convert ATUM8548 to new TLB setup
57352
57353 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57354
57355 commit 0f7a3dc95cbff3c21bd6dbc639313796412bbbab
57356 Author: Kumar Gala <galak@kernel.crashing.org>
57357 Date: Wed Jan 16 23:11:57 2008 -0600
57358
57359 85xx: Convert MPC8544 DS to new TLB setup
57360
57361 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57362
57363 commit 8716318057a5f60ab1ba081ece2dbe82ae00e1ee
57364 Author: Kumar Gala <galak@kernel.crashing.org>
57365 Date: Wed Jan 16 22:38:34 2008 -0600
57366
57367 85xx: Reworked initial processor init
57368
57369 Reworked the initial processor initialzation sequence:
57370 * introduced cpu_early_init_f that is run in address space 1 (AS=1)
57371 * Moved TLB/LAW and CCSR init into cpu_early_init_f()
57372 * Reworked initial asm code to do most of the core init before TLBs
57373
57374 The main reasons for these changes are to allow handling of 36-bit phys
57375 addresses in the future and some of the issues that will exist when we
57376 do that.
57377
57378 There are a few caveats on what can be initialized via the LAW and TLB
57379 static tables:
57380 * TLB entry 14/15 can't be initialized via the TLB table
57381 * any LAW that covers the implicit boot window (4G-8M to 4G) must map to
57382 the code that is currently executing.
57383
57384 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57385
57386 commit 44a23cfd6360a68eaa41f945190618a55519eac3
57387 Author: Kumar Gala <galak@kernel.crashing.org>
57388 Date: Wed Jan 16 22:33:22 2008 -0600
57389
57390 85xx: Introduce new tlb API
57391
57392 Add a set of functions to manipulate TLB entries:
57393 * set_tlb() - write a tlb entry
57394 * invalidate_tlb() - invalidate a tlb array
57395 * disable_tlb() - disable a variable size tlb entry
57396 * init_tlbs() - setup initial tlbs based on static table
57397
57398 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57399
57400 commit be88b1699863c262818f3af7f60173b4d48df8fc
57401 Author: Stefan Roese <sr@denx.de>
57402 Date: Thu Jan 17 07:50:17 2008 +0100
57403
57404 ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files
57405
57406 Signed-off-by: Stefan Roese <sr@denx.de>
57407
57408 commit c8c41d4a80b1a8ad5984a287d81ea780496259f8
57409 Author: Kumar Gala <galak@kernel.crashing.org>
57410 Date: Wed Jan 16 10:04:42 2008 -0600
57411
57412 85xx: Use proper defines for PCI addresses
57413
57414 We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE.
57415 While _MEM_BASE & _MEM_PHYS are normally the same, _MEM_BASE should only
57416 be used for configuring the PCI ATMU.
57417
57418 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57419
57420 commit 54a5070115eff38e9b324b78abdfa0b4520580b9
57421 Author: Kumar Gala <galak@kernel.crashing.org>
57422 Date: Wed Jan 16 09:22:29 2008 -0600
57423
57424 85xx: Remove old style of LAW init
57425
57426 All boards are now using the new fsl_law code so we can drop the old version.
57427
57428 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57429
57430 commit 4d3521cc79cabc61edf12c48c0ce318d4efb712f
57431 Author: Kumar Gala <galak@kernel.crashing.org>
57432 Date: Wed Jan 16 09:15:29 2008 -0600
57433
57434 85xx: convert remaining 85xx boards over to use new LAW init code
57435
57436 Converted ATUM8548, MPC8568 MDS, MPC8540 EVAL, and TQM85xx boards over
57437 to use new LAW init code.
57438
57439 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57440
57441 commit 572b13afc42710f2957c382a710360429c0e099b
57442 Author: Kumar Gala <galak@kernel.crashing.org>
57443 Date: Wed Jan 16 09:11:53 2008 -0600
57444
57445 85xx: convert STXGP3/STXSSA over to use new LAW init code
57446
57447 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57448
57449 commit 45f2166ac0233a9263058378f39612bd11f61196
57450 Author: Kumar Gala <galak@kernel.crashing.org>
57451 Date: Wed Jan 16 09:06:48 2008 -0600
57452
57453 85xx: convert PM854/PM856 over to use new LAW init code
57454
57455 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57456
57457 commit e2b159d0070ee06e4ac7e2f9381d3e8e542e614a
57458 Author: Kumar Gala <galak@kernel.crashing.org>
57459 Date: Wed Jan 16 09:05:27 2008 -0600
57460
57461 85xx: convert SBC8540/SBC8560/SBC8548 over to use new LAW init code
57462
57463 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57464
57465 commit 2cfaa1aa1aac39a81006b7b27e0e431bf21f6dfa
57466 Author: Kumar Gala <galak@kernel.crashing.org>
57467 Date: Wed Jan 16 01:45:10 2008 -0600
57468
57469 85xx: convert MPC8541/MPC8555/MPC8548 CDS over to use new LAW init code
57470
57471 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57472
57473 commit 7232a2724ccc9dcbc3ec4ef84ada02f13ccd1238
57474 Author: Kumar Gala <galak@kernel.crashing.org>
57475 Date: Wed Jan 16 01:32:06 2008 -0600
57476
57477 85xx: convert MPC8540/MPC8560 ADS over to use new LAW init code
57478
57479 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57480
57481 commit 4bcae9c92aee0d72a2f19b81cab27ef38107ce75
57482 Author: Kumar Gala <galak@kernel.crashing.org>
57483 Date: Wed Jan 16 01:16:16 2008 -0600
57484
57485 85xx: convert MPC8544 DS over to use new LAW init code
57486
57487 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57488
57489 commit 83d40dfd79fe868796275802f60116d84b9e4395
57490 Author: Kumar Gala <galak@kernel.crashing.org>
57491 Date: Wed Jan 16 01:13:58 2008 -0600
57492
57493 85xx: Move LAW init code into C
57494
57495 Move the initialization of the LAWs into C code and provide an API
57496 to allow modification of LAWs after init.
57497
57498 Board code is responsible to provide a law_table and num_law_entries.
57499
57500 We should be able to use the same code on 86xx as well.
57501
57502 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57503
57504 commit bed8ce838a609aaab136d43b25e6df2a520bc854
57505 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
57506 Date: Sat Dec 22 15:03:12 2007 +0100
57507
57508 qemu-mips: active HUSH PARSER, AUTO_COMPLETE and CMDLINE_EDITING
57509
57510 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
57511
57512 commit 0764c164fed6277d359cf132d55187ea34290114
57513 Author: Vlad Lungu <vlad@comsys.ro>
57514 Date: Wed Jan 16 19:27:51 2008 +0200
57515
57516 MIPS:Target support for qemu -M mips
57517
57518 With serial, NE2000, IDE support. Tested in big-endian mode.
57519 Memory size hard-coded to 128M for now, so don't play with
57520 the -m option.
57521
57522 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
57523
57524 commit 7f52fa3c2df59e49dc2badd7c084cf2d007c438f
57525 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
57526 Date: Fri Jan 11 00:01:37 2008 +0100
57527
57528 Fix nfs command help to reflect that the serverip is optional
57529
57530 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
57531 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57532
57533 commit b8f4162a4f7a9bee5e9d0305c17f2d34de466a9b
57534 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
57535 Date: Mon Dec 10 22:32:14 2007 +0100
57536
57537 bf537-stamp: remove already defined is_zero_ether_addr and is_multicast_ether_addr
57538
57539 and move is_valid_ether_addr board file
57540
57541 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
57542 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57543
57544 commit c2f896b8fc4722e36915903e1942e138e68ce804
57545 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
57546 Date: Wed Jan 16 16:13:31 2008 +0900
57547
57548 drivers/net/rtl8139.c: rx_status should be le32_to_cpu(rx_status).
57549
57550 rx_status on the memory is basically in LE, but needs to be handled in CPU
57551 endian. le32_to_cpu() takes up this mission. Even if on the sane hardware,
57552 it'll work fine.
57553
57554 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
57555 Cc: Masami Komiya <mkomiya@sonare.it>
57556 Cc: Lucas Jin <lucasjin@gmail.com>
57557 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57558
57559 commit 96a236746fe6a7b84802afb4ed31536696d34812
57560 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
57561 Date: Wed Jan 16 16:12:26 2008 +0900
57562
57563 drivers/net/rtl8139.c: Fix cache coherency issues
57564
57565 Current driver is meant for cache coherent systems. This patch adds
57566 flush_cache() routines to support cache non-coherent systems.
57567
57568 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
57569 Cc: Masami Komiya <mkomiya@sonare.it>
57570 Cc: Lucas Jin <lucasjin@gmail.com>
57571 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57572
57573 commit d1276c76c1e2b5035296689280ba1acb2c425104
57574 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
57575 Date: Wed Jan 16 16:11:14 2008 +0900
57576
57577 drivers/net/rtl8139.c: Fix tx timeout
57578
57579 "to = (currticks() + RTL_TIMEOUT)" has possibilities to wrap around. If it
57580 does, the condition "(currticks() < to)" becomes invalid and immediately
57581 leads to tx timeout error. This patch introduces the fine-graded udely(10)
57582 loops to ease the impact of wrapping around.
57583
57584 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
57585 Cc: Masami Komiya <mkomiya@sonare.it>
57586 Cc: Lucas Jin <lucasjin@gmail.com>
57587 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57588
57589 commit 18ee320ff63edbf7b27bbeb05f0e12a52302c68a
57590 Author: Dave Liu <r63238@freescale.com>
57591 Date: Fri Jan 11 18:45:28 2008 +0800
57592
57593 TSEC: Add the support for RealTek RTL8211B PHY
57594
57595 Add the support of RealTek RTL8211B PHY, the RTL8211B
57596 PHY only supports RGMII and MII mode.
57597
57598 Signed-off-by: Dave Liu <daveliu@freescale.com>
57599 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57600
57601 commit 84a3047b72b70e862b0b7a8e2058077457f89a32
57602 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
57603 Date: Wed Jan 16 09:40:41 2008 +0100
57604
57605 Remove annoying debug printout for PHY less boards.
57606
57607 PHY less board prints out lots of "read wrong ...":
57608 read wrong value : mii_id 3,mii_reg 2, base e0102320
57609 read wrong value : mii_id 3,mii_reg 3, base e0102320
57610 UEC: PHY is Generic MII (ffffffff)
57611 read wrong value : mii_id 3,mii_reg 4, base e0102320
57612 read wrong value : mii_id 3,mii_reg 0, base e0102320
57613 read wrong value : mii_id 3,mii_reg 1, base e0102320
57614 read wrong value : mii_id 3,mii_reg 1, base e0102320
57615 read wrong value : mii_id 3,mii_reg 5, base e0102320
57616 read wrong value : mii_id 3,mii_reg 1, base e0102320
57617 read wrong value : mii_id 3,mii_reg 1, base e0102320
57618 read wrong value : mii_id 3,mii_reg 5, base e0102320
57619 FSL UEC0: Full Duplex
57620 FSL UEC0: Speed 100BT
57621 FSL UEC0: Link is up
57622 Using FSL UEC0 device
57623
57624 Make this printout depend on UEC_VERBOSE_DEBUG and
57625 remove its definition in uec_phy.c
57626
57627 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
57628 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57629
57630 commit ee62ed3286f83b98b7785e0318dc6379e78f7ff6
57631 Author: Kim Phillips <kim.phillips@freescale.com>
57632 Date: Tue Jan 15 14:11:00 2008 -0600
57633
57634 net: reduce boot latency on QE UEC based boards
57635
57636 actually polling for PHY autonegotiation to finish enables us to remove the
57637 5 second boot prompt latency present on QE based boards.
57638
57639 call to qe_set_mii_clk_src in init_phy, and mv call to init_phy from
57640 uec_initialize to uec_init by Joakim Tjernlund; autonegotiation wait
57641 code shamelessly stolen from tsec driver.
57642
57643 also rm unused CONFIG_RMII_MODE code.
57644
57645 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57646 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
57647 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57648
57649 commit 55fe7c57a8b99a130925052dcdbb77f053dc50e3
57650 Author: michael.firth@bt.com <michael.firth@bt.com>
57651 Date: Wed Jan 16 11:40:51 2008 +0000
57652
57653 TSEC driver: Change MDIO support to allow access to any PHYs on the MDIO bus
57654
57655 The current TSEC driver limits MDIO access to the devices that have been configured as attached
57656 to a TSEC MAC. This patch allows access to any PHY device on the MDIO bus through the 'mii' commands.
57657
57658 Signed-off-by: Michael Firth <michael.firth@bt.com>
57659 Acked-by: Andy Fleming <afleming@freescale.com>
57660 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57661
57662 commit 5e918a98c26e8ab9b5d2d48d998a2ced2b5b85b3
57663 Author: Kim Phillips <kim.phillips@freescale.com>
57664 Date: Wed Jan 16 00:38:05 2008 -0600
57665
57666 Add support for the MPC837xERDB
57667
57668 MPC837xERDB board support includes:
57669 * DDR2 330MHz hardcoded (soldered on the board)
57670 * Local Bus NOR Flash
57671 * I2C, UART and RTC
57672 * eTSEC RGMII (TSEC0 - RTL8211B with MII;
57673 * TSEC1 - VSC7385 local bus, hardcoded, requires seperate firmware
57674 * load)
57675
57676 Signed-off-by: Kevin Lam <kevin.lam@freescale.com>
57677 Signed-off-by: Joe D'Abbraccio <joe.d'abbraccio@freescale.com>
57678 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57679
57680 commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
57681 Author: Kim Phillips <kim.phillips@freescale.com>
57682 Date: Wed Jan 16 12:06:16 2008 -0600
57683
57684 mpc83xx: add support for more system clock performance controls
57685
57686 System registers that are modified are the Arbiter Configuration
57687 Register (ACR), the System Priority Control Register (SPCR), and the
57688 System Clock Configuration Register (SCCR).
57689
57690 Signed-off by: Michael F. Reiss <Michael.F.Reiss@freescale.com>
57691 Signed-off by: Joe D'Abbraccio <ljd015@freescale.com>
57692 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57693
57694 commit 16c3cde050e2d243e62b37486f1558570787beb8
57695 Author: James Yang <james.yang@freescale.com>
57696 Date: Wed Jan 16 11:58:08 2008 -0600
57697
57698 FSL: Generalize PIXIS reset command parsing.
57699
57700 Before, the order of arguments to the pixis_reset
57701 command needed to be supplied in a hard-coded order.
57702 Generalize the command parsing to allow any order.
57703
57704 Signed-off-by: James Yang <james.yang@freescale.com>
57705 Acked-by: Jon Loeliger <jdl@freescale.com>
57706
57707 commit ad8f8687b78c3e917b173f038926695383c55555
57708 Author: Jon Loeliger <jdl@freescale.com>
57709 Date: Tue Jan 15 13:42:41 2008 -0600
57710
57711 FSL: Convert board/freescale/common/Makefile to use CONFIG_
57712
57713 Convert the board/freescale/common/Makefile to use
57714 CONFIG_* options to select which files to conditionally
57715 compile into the board/freescale/common library rather
57716 than conditionally compiling entire files.
57717
57718 Now handles::
57719 CONFIG_FSL_PIXIS
57720 CONFIG_FSL_DIU_FB
57721 CONFIG_PQ_MDS_PIB
57722
57723 CONFIG_ID_EEPROM is introduced until CFG_ID_EEPROM is gone.
57724
57725 Signed-off-by: Jon Loeliger <jdl@freescale.com>
57726
57727 commit 7c2221eb230372a9e537c4f6636b147b0909325f
57728 Author: Roy Zang <tie-fei.zang@freescale.com>
57729 Date: Tue Jan 15 16:38:38 2008 +0800
57730
57731 Use CONFIG_ULI526X as MPC8610HPCD default Ethernet driver
57732
57733 Use driver/net/uli526x.c as MPC8610HPCD default Ethernet driver.
57734 Remove unused ethernet CONFIG_ options.
57735
57736 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
57737 Acked-by: Jon Loeliger <jdl@freescale.com>
57738
57739 commit 711a7946277d2e29af481011e8635e9975c54e45
57740 Author: Kim Phillips <kim.phillips@freescale.com>
57741 Date: Tue Jan 15 14:05:14 2008 -0600
57742
57743 mpc83xx: fix QE ETHPRIMEs to correct 'FSL UEC0' value
57744
57745 continuation of commit b96c83d4ae475a70ef2635cd0e748174c44c8601
57746
57747 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57748
57749 commit 363eea9ff7f19a2cba17f262bd17559f166e134e
57750 Author: Kim Phillips <kim.phillips@freescale.com>
57751 Date: Tue Jan 15 09:51:12 2008 -0600
57752
57753 mpc83xx: clean up mpc8360emds.c warnings
57754
57755 mpc8360emds.c: In function 'ft_board_setup':
57756 mpc8360emds.c:327: warning: assignment makes pointer from integer without a cast
57757 mpc8360emds.c:329: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
57758 mpc8360emds.c:334: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
57759 mpc8360emds.c:341: warning: assignment makes pointer from integer without a cast
57760 mpc8360emds.c:343: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
57761 mpc8360emds.c:348: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
57762
57763 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57764
57765 commit f09880ea72a1c806db223ce594c5fb1b6542ff6a
57766 Author: Kim Phillips <kim.phillips@freescale.com>
57767 Date: Mon Jan 14 16:14:46 2008 -0600
57768
57769 mpc83xx: fix phy-connection-type fixup code
57770
57771 use tree passed to us in local blob, not global fdt.
57772
57773 Also use fdt_path_offset to convert to relative offset, since absolute
57774 reference is needed to check for rgmii-id mode string value.
57775
57776 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57777
57778 commit 2b4c952be7c4357a13e839d48df80853820c33eb
57779 Author: Kumar Gala <galak@kernel.crashing.org>
57780 Date: Mon Jan 14 09:01:40 2008 -0600
57781
57782 mpc83xx: fix mpc8313/mpc8315/mpc8349itx Makefiles for silent build (with -s)
57783
57784 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57785 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57786
57787 commit e1d8ed2c08da14b168658cc5fa78529d461aea70
57788 Author: Poonam Aggrwal <b10812@freescale.com>
57789 Date: Mon Jan 14 09:41:14 2008 +0530
57790
57791 Changes in uboot DDR configuration for MPC8313eRDB
57792
57793 These changes were identified by HighSmith Bill ,Mazzyar and Joseph for
57794 DDR configuration in u-boot code. Some are related to performance, some
57795 affect stability and some correct few basic errors in the current
57796 configuration.
57797
57798 The changes have been tested and found to give better memory latency
57799 figures on MPC8313eRDB.LMBench figures prove it.
57800
57801 The changes are:
57802
57803 - CS0_CONFIG[ AP_n_EN] is changed from 1 to 0
57804 (this may improve performance for application with many read
57805 or write to open pages).
57806 - CS0_CONFIG[ODT_WR_CFG] is currently changed from 100 to
57807 001 (activating all the CS when only one is used may cause
57808 unwanted noise on the system)
57809
57810 - TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 8clks (based on
57811 Tras=45ns)
57812 - TIMING_CFG_1[REFREC] changed from 21 clks to 18clks.
57813
57814 - TIMING_CFG_2[AL] value changed from 0 setting to 1 clk to
57815 comply with the 3 ODT clk requirements)
57816 - TIMING_CFG_2[CPO] was set to a reserved value, changed to RL+3/4.
57817 - TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 6clks.
57818
57819 - DDR_SDRAM_MODE[AL]changed from 0 to 1.
57820 - DDR_SDRAM_MODE[WRREC] changed from 1 clk to 3 clks.
57821
57822 - DDR_SDRAM_INTERVAL[REFINT] is changed from 0x0320 to 0x0510.
57823 - DDR_SDRAM_INTERVAL[BSTOPRE] is changed from 0x64 to 0x0500.
57824
57825 The patch is based of git://www.denx.de/git/u-boot-mpc83xx.git
57826 The last commit on this tree was 6775c68683a53c7abc778774641aac6f833a2cbf
57827
57828 Signed-off-by: Poonam Aggrwal-b10812 <b10812@freescale.com>
57829 Cc: Bill HighSmith <Bill.Highsmith@freescale.com>
57830 Cc: Razzaz Mazyar <MRazzaz@freescale.com>
57831 Cc: Josep P J <PJ.Joseph@freescale.com>
57832 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57833
57834 commit b5cdd7df4a06edb91539c9a2ea7c178a870c3a95
57835 Author: Jerry Van Baren <gvb.uboot@gmail.com>
57836 Date: Sat Jan 12 13:24:14 2008 -0500
57837
57838 Enable the isdram command on the MPC8360EMDS board
57839
57840 The isdram command prints out decoded information the "serial presence
57841 detect" (SPD) chip on the SDRAM SIMMs. This can be very helpful when
57842 debugging memory configuration problems.
57843
57844 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57845 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57846
57847 commit 8bd522ce4afda3d4868ee8c913f5394094326be1
57848 Author: Dave Liu <r63238@freescale.com>
57849 Date: Fri Jan 11 18:48:24 2008 +0800
57850
57851 mpc83xx: Add the support for MPC8315ERDB board
57852
57853 The features list:
57854 - Boot from NOR Flash
57855 - DDR2 266MHz hardcoded configuration
57856 - Local bus NOR Flash R/W operation
57857 - I2C, UART, MII and RTC
57858 - eTSEC0/1 support
57859 - PCI host
57860
57861 Signed-off-by: Dave Liu <daveliu@freescale.com>
57862 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57863
57864 commit b05884efa614e4d8a9413158fc228e0dc02ab704
57865 Author: Dave Liu <r63238@freescale.com>
57866 Date: Fri Jan 11 18:46:50 2008 +0800
57867
57868 mpc83xx: Add config of eTSEC emergency priority in SPCR
57869
57870 The TSEC emergency priority definition of 831x/837x
57871 is different than the definition of 834x in SPCR register.
57872
57873 Add the other config of TSEC emergency priority into
57874 cpu_init.c
57875
57876 Signed-off-by: Dave Liu <daveliu@freescale.com>
57877 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57878
57879 commit 9b958234b0783f13d92f007f753fd2c3ae2c8680
57880 Author: Dave Liu <r63238@freescale.com>
57881 Date: Fri Jan 11 18:42:19 2008 +0800
57882
57883 mpc83xx: Remove cache config from MPC8360ERDK.h
57884
57885 The MPC8360ERDK board support patch is added before
57886 the commit 2c5b48fc205c3e2752910da8f39209ed075929e5
57887 so, miss clean up it.
57888
57889 The patch clean up the miss cache config.
57890
57891 Signed-off-by: Dave Liu <daveliu@freescale.com>
57892 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57893
57894 commit cd9d23053d435c08fc8695017b5cb9003fcda786
57895 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
57896 Date: Mon Jan 14 23:09:32 2008 +0300
57897
57898 nand: FSL UPM NAND driver
57899
57900 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
57901
57902 commit 6cb2239ae76faee64434286c4f8fc71374702dd2
57903 Author: Kyungmin Park <kmpark@infradead.org>
57904 Date: Tue Jan 15 08:59:44 2008 +0900
57905
57906 OneNAND: Separate U-Boot dependent code from OneNAND
57907
57908 OneNAND: Separate U-Boot dependent code from OneNAND
57909
57910 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
57911
57912 commit 83a49c8dd7998be2d1f0d420597a36bbf0bf4164
57913 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
57914 Date: Wed Jan 16 10:33:46 2008 +0100
57915
57916 ppc4xx: Sequoia coding style cleanup and beautification
57917
57918 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
57919
57920 commit 4b3cc6ece9c455504cf12909fae38d085d848ac0
57921 Author: Larry Johnson <lrj@acm.org>
57922 Date: Tue Jan 15 14:35:58 2008 -0500
57923
57924 ppc4xx: Refactor ECC POST for AMCC Denali core
57925
57926 The ECC POST reported intermittent failures running after power-up on
57927 the Korat PPC440EPx board. Even when the test passed, the debugging
57928 output occasionally reported additional unexpected ECC errors.
57929
57930 This refactoring has three main objectives: (1) minimize the code
57931 executed with ECC enabled during the tests, (2) add more checking of the
57932 results so any unexpected ECC errors would cause the test to fail, and
57933 (3) use synchronization (only) where required by the processor.
57934
57935 Signed-off-by: Larry Johnson <lrj@acm.org>
57936
57937 commit 2465665b73ac2f688af945b1ed510752afa816a4
57938 Author: David Saada <David.Saada@ecitele.com>
57939 Date: Tue Jan 15 10:40:24 2008 +0200
57940
57941 QE UEC: Extend number of supported UECs to 4
57942
57943 This patch extends the number of supported UECs to 4. Note that the
57944 problem of QE thread resources exhaustion is resolved by setting the
57945 correct number of QE threads according to Ethernet type (GBE or FE).
57946
57947 Signed-off-by: David Saada <david.saada@ecitele.com>
57948 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57949
57950 commit 58d204256cb1ce1bd323847d9f644acf70a72e6a
57951 Author: Wolfgang Denk <wd@denx.de>
57952 Date: Wed Jan 16 00:01:01 2008 +0100
57953
57954 LWMON5: enable hush shell as command line parser
57955
57956 Signed-off-by: Wolfgang Denk <wd@denx.de>
57957
57958 commit 66ffb1883feedddc813d8a507d060f2a940eb2b2
57959 Author: Wolfgang Denk <wd@denx.de>
57960 Date: Tue Jan 15 17:22:28 2008 +0100
57961
57962 ADS5121: disable watchdog; enable image timestamps
57963
57964 Signed-off-by: Wolfgang Denk <wd@denx.de>
57965
57966 commit 2b4f778fe9d1de61d7445bae7b325340aba6968d
57967 Author: Wolfgang Denk <wd@denx.de>
57968 Date: Tue Jan 15 17:21:28 2008 +0100
57969
57970 TK885D: fixes for bigger flash sector sizes on new modules;
57971 adjust default environment;
57972 disable SCC ethernet (not used on this board).
57973
57974 Signed-off-by: Wolfgang Denk <wd@denx.de>
57975
57976 commit f91d7ae5ca89acf9fa1ed1015dc078cf29581607
57977 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57978 Date: Tue Jan 15 17:48:13 2008 +0900
57979
57980 pcmcia: Remove CONFIG_COMMANDS from marubun pcmcia driver
57981
57982 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57983
57984 commit 76e49aa7fb8e76cc49092c1acd53fff921e26360
57985 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57986 Date: Tue Jan 15 23:25:25 2008 +0900
57987
57988 sh: Add support SH7710/SH7712
57989
57990 SH7710/SH7712 of SH3 CPU are supported.
57991 SH771X is called SH-Ether, and has the Ether controller in CPU.
57992 The driver of Ether is not included in this patch.
57993
57994 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57995
57996 commit 63a11be68306870e04d3851ed9fa41955cdf4894
57997 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57998 Date: Tue Jan 15 23:06:17 2008 +0900
57999
58000 sh: Add support of map_physmem() and unmap_physmem() to SuperH
58001
58002 This patch add the support of map_physmem() and unmap_physmem()
58003 used with Common Flash Interface(CFI) driver.
58004
58005 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58006
58007 commit db3995fe5164ac5d630b7ecb96286a9828dfbb54
58008 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58009 Date: Wed Jan 9 14:42:27 2008 +0900
58010
58011 sh: Add maintainer of MS7720SE to the MAINTAINER file
58012
58013 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58014
58015 commit dcd99e88e03d56a0aeecd42b507d2d29d20ab0e3
58016 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58017 Date: Wed Jan 9 14:39:58 2008 +0900
58018
58019 sh: Fix board name in MS7720SE's config.mk
58020
58021 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58022
58023 commit c0a04d93734d768b39dbb72fb501b65614c8615d
58024 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58025 Date: Wed Jan 9 14:37:36 2008 +0900
58026
58027 sh: Add MS7720SE to MAKEALL
58028
58029 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58030
58031 commit b2b5e2bb78a1ef4ae8504f5a26bfdc3293ea74ae
58032 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
58033 Date: Mon Dec 3 22:58:50 2007 +0900
58034
58035 sh: Add support for MS7720RP02 board
58036
58037 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
58038 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58039 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58040
58041 commit 7c10c57275901939a8ece4a9ef3e7ccb7c12a0ed
58042 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
58043 Date: Wed Jan 9 14:30:02 2008 +0900
58044
58045 sh: Add support for SH7720 in serial_sh driver.
58046
58047 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
58048 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58049 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58050
58051 commit f9913a8ee71ff14fcfc1c7fd0e6912f897e69403
58052 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
58053 Date: Mon Dec 3 22:58:45 2007 +0900
58054
58055 sh: Add support SH3 and SH7720
58056
58057 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
58058 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58059 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58060
58061 commit 9adfc9fb9ade64cdf1ed9ff842e4f900cbda78bd
58062 Author: Stefan Roese <sr@denx.de>
58063 Date: Tue Jan 15 10:11:02 2008 +0100
58064
58065 ppc4xx: Remove compiler warning in cpu/ppc4xx/44x_spd_ddr2.c
58066
58067 Signed-off-by: Stefan Roese <sr@denx.de>
58068
58069 commit 17bef68097ab3692500a36fb31115bff7910aa99
58070 Author: Niklaus Giger <niklausgiger@gmx.ch>
58071 Date: Mon Jan 14 14:04:42 2008 +0100
58072
58073 ppc_4xx: Fix post spr.c for PPC405
58074
58075 post/cpu/ppc4xx/spr.c contained a few checks for registers only present
58076 for PPC440 and derivates processor.
58077
58078 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
58079
58080 commit 06c428bcd4413014b43236e77765022071424fa6
58081 Author: Dave Liu <r63238@freescale.com>
58082 Date: Mon Jan 14 11:12:01 2008 +0800
58083
58084 QE: fix compile warning
58085
58086 qe.c: In function 'qe_upload_firmware':
58087 qe.c:390: warning: pointer targets in passing argument 2
58088 uec.c: In function 'uec_initialize':
58089 uec.c:1236: warning: 'uec_info' may be used uninitialized
58090
58091 Signed-off-by: Dave Liu <daveliu@freescale.com>
58092
58093 commit a0dd99d51efa55fe023e19c97ead92683725eb11
58094 Author: Stefan Roese <sr@denx.de>
58095 Date: Mon Jan 14 10:05:05 2008 +0100
58096
58097 ppc4xx: Update Kilauea CPLD configuration with USB PHY reset bit
58098
58099 Now that bit 29 is the USB PHY reset bit, update the Kilauea port
58100 to remove the USB PHY reset after powerup. The CPLD will keep the
58101 USB PHY in reset (active low) until the bit is set to 1 in
58102 board_early_init_f().
58103
58104 Signed-off-by: Stefan Roese <sr@denx.de>
58105
58106 commit f43ad53908f1ea83a7c26c3505bbe84382e47aad
58107 Author: Wolfgang Denk <wd@denx.de>
58108 Date: Sun Jan 13 23:26:45 2008 +0100
58109
58110 ARM: update mach-types.h from 2.6.24-rc7 Linux kernel tree
58111
58112 Signed-off-by: Wolfgang Denk <wd@denx.de>
58113
58114 commit 8d103071b7b0e3ec888859bfcb9d422565e6d750
58115 Author: Wolfgang Denk <wd@denx.de>
58116 Date: Sun Jan 13 23:37:50 2008 +0100
58117
58118 ADS5121: Fix typo in ads5121.c, adjust default environment
58119
58120 Signed-off-by: Wolfgang Denk <wd@denx.de>
58121
58122 commit 51b67d06faa670c65de6f29ec5b5aace74b2a047
58123 Author: John Rigby <jrigby@freescale.com>
58124 Date: Fri Aug 24 18:18:43 2007 -0600
58125
58126 ADS5121: MAX slew rate for PATA pins
58127
58128 Signed-off-by: John Rigby <jrigby@freescale.com>
58129
58130 commit dd531aac34aaad138f16cacdb51d61908d59c0e2
58131 Author: Wolfgang Denk <wd@denx.de>
58132 Date: Sun Jan 13 21:05:52 2008 +0100
58133
58134 Fix Makefile dependency problem with parallel builds.
58135
58136 Signed-off-by: Wolfgang Denk <wd@denx.de>
58137
58138 commit 89967841e3ea02e3d0e5e1295ab687576e5b1089
58139 Author: Wolfgang Denk <wd@denx.de>
58140 Date: Sun Jan 13 19:51:39 2008 +0100
58141
58142 MPC8544DS: fix board Makefile for silent build (with -s)
58143
58144 Signed-off-by: Wolfgang Denk <wd@denx.de>
58145
58146 commit 6d714f82fb4b8bb7e267e9c71b8009bc670bfe88
58147 Author: Wolfgang Denk <wd@denx.de>
58148 Date: Sun Jan 13 16:44:08 2008 +0100
58149
58150 PMC440 board: fix board Makefile for out-of-tree building
58151
58152 Signed-off-by: Wolfgang Denk <wd@denx.de>
58153
58154 commit 6eb3fb15588d319bd3099d5f9b910051dfeab6b2
58155 Author: Wolfgang Denk <wd@denx.de>
58156 Date: Sun Jan 13 16:07:44 2008 +0100
58157
58158 Makalu: fix compile warning
58159
58160 Signed-off-by: Wolfgang Denk <wd@denx.de>
58161
58162 commit 0a1e03bcadc7734688a21e8dd2e46a4f608193c0
58163 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
58164 Date: Sun Jan 13 12:36:12 2008 +0100
58165
58166 cmd_nand : fix compiler warning.
58167
58168 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
58169
58170 commit 8225d1e3ac0ab147cdde4b0042812583380afb8a
58171 Author: Michael Schwingen <rincewind@discworld.dascon.de>
58172 Date: Sat Jan 12 20:29:47 2008 +0100
58173
58174 CFI: Fix CONFIG_FLASH_CFI_LEGACY compilation
58175
58176 Signed-off-by: Michael Schwingen <michael@schwingen.org>
58177 Acked-by: Stefan Roese <sr@denx.de>
58178
58179 commit 2b2f43ed6a30ece77f76191c845ac95267daa31a
58180 Author: Wolfgang Denk <wd@denx.de>
58181 Date: Sun Jan 13 02:19:44 2008 +0100
58182
58183 MPC8360ERDK: fix incorrect initialization of CFG_I2C_NOPROBES
58184
58185 Signed-off-by: Wolfgang Denk <wd@denx.de>
58186
58187 commit 08e99e1dd01a3e0e3dc3a7138eb827c997e2b74d
58188 Author: Wolfgang Denk <wd@denx.de>
58189 Date: Sun Jan 13 02:19:13 2008 +0100
58190
58191 MPC8xx FEC driver: fix compiler warning.
58192
58193 Signed-off-by: Wolfgang Denk <wd@denx.de>
58194
58195 commit ae6d1056d2c2e4d1266413c0ae8a6d5529ecde4b
58196 Author: Wolfgang Denk <wd@denx.de>
58197 Date: Sun Jan 13 00:59:21 2008 +0100
58198
58199 Fix Makefile dependencies issues; allow silent build
58200
58201 - get rid of "version" target whichdidn't really work
58202 - make autoconf.mk depend on version_autogenerated.h to make sure
58203 to rebuild files as needed
58204 - add XECHO macro to allow for silent build using "make -s"
58205
58206 Signed-off-by: Wolfgang Denk <wd@denx.de>
58207
58208 commit e343ab83d5135b558aa58db9be8fc7faa68d77ed
58209 Author: Wolfgang Denk <wd@denx.de>
58210 Date: Sun Jan 13 00:55:47 2008 +0100
58211
58212 ADS5121e: fix compile warning
58213
58214 Signed-off-by: Wolfgang Denk <wd@denx.de>
58215
58216 commit f2b6f4610627fe3d607620e25082916a01538875
58217 Author: Wolfgang Denk <wd@denx.de>
58218 Date: Sun Jan 13 00:55:18 2008 +0100
58219
58220 MUNICes: fix board Makefile for remote build directory
58221
58222 Signed-off-by: Wolfgang Denk <wd@denx.de>
58223
58224 commit 2ad4d3999fe801aa716221d7d9a4c5bdad74783a
58225 Author: Oliver Weber <almoeli@gmx.de>
58226 Date: Wed Jan 9 17:04:38 2008 +0100
58227
58228 MPC5200: don't use hardcoded MBAR address in Bestcomm firmware
58229
58230 Signed-off-by: Oliver Weber <almoeli@gmx.de>
58231
58232 commit 00ac50e348d1bace27a174b7f528d113bc7cdf7f
58233 Author: Andreas Engel <andreas.engel@ericsson.com>
58234 Date: Wed Jan 9 17:10:56 2008 +0100
58235
58236 Make bootretry work when command line editing is enabled
58237
58238 Currently, when CONFIG_CMDLINE_EDITING is set, bootretry doesn't work.
58239 This patch fixes the problem.
58240
58241 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
58242
58243 commit 632de0672d3c3ab53ad798c47f5f1eb26008a0e4
58244 Author: Larry Johnson <lrj@acm.org>
58245 Date: Fri Jan 11 23:26:18 2008 -0500
58246
58247 Refactor code for "i2c sdram" command
58248
58249 Signed-off-by: Larry Johnson <lrj@acm.org>
58250
58251 commit 0df6b8446c4721b91ce311548114891130371083
58252 Author: Larry Johnson <lrj@acm.org>
58253 Date: Thu Jan 10 22:23:39 2008 -0500
58254
58255 Fix "i2c sdram" command for DDR2 DIMMs
58256
58257 Many of the SPD bytes for DDR2 SDRAM are not interpreted correctly by the
58258 "i2c sdram" command. This patch provides correct alternative
58259 interpretations when DDR2 memory is detected.
58260
58261 Signed-off-by: Larry Johnson <lrj@acm.org>
58262
58263 commit 64134f011254123618798ff77c42ba196b2ec485
58264 Author: Wolfgang Denk <wd@denx.de>
58265 Date: Sat Jan 12 20:31:39 2008 +0100
58266
58267 Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections
58268
58269 With recent toolchain versions, some boards would not build because
58270 or errors like this one (here for ocotea board when building with
58271 ELDK 4.2 beta):
58272 ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab]
58273
58274 For many boards, the .bss section is big enough that it wraps around
58275 at the end of the address space (0xFFFFFFFF), so the problem will not
58276 be visible unless you use a 64 bit tool chain for development. On
58277 some boards however, changes to the code size (due to different
58278 optimizations) we bail out with section overlaps like above.
58279
58280 The fix is to add the NOLOAD attribute to the .bss and .sbss
58281 sections, telling the linker that .bss does not consume any space in
58282 the image.
58283
58284 Signed-off-by: Wolfgang Denk <wd@denx.de>
58285
58286 commit 3afac79ec27b91df185f090b31dad9620779f440
58287 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
58288 Date: Fri Jan 11 20:42:58 2008 -0600
58289
58290 USB: Add Philips 1561 PCI-OHCI ids
58291 (needed for M5475EVB)
58292
58293 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58294
58295 commit 5e8def6731cd7bec74bff42a16b139de04010353
58296 Author: Wolfgang Denk <wd@denx.de>
58297 Date: Sat Jan 12 15:51:34 2008 +0100
58298
58299 Add MAINTAINERS entries for ids8247, jupiter, municse, sc3 and uc101
58300 boards.
58301
58302 Signed-off-by: Heiko Schocher <hs@denx.de>
58303 Signed-off-by: Wolfgang Denk <wd@denx.de>
58304
58305 commit 5d49e0e152a8b81cc0602271e8fd259371f559b7
58306 Author: Grzegorz Bernacki <gjb@semihalf.com>
58307 Date: Fri Jan 11 12:03:43 2008 +0100
58308
58309 MPC512X: Cleanup bus clock names.
58310
58311 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
58312
58313 commit 66a9455b6bf46d69cec5c88d1a600d1d9a10670d
58314 Author: Grzegorz Bernacki <gjb@semihalf.com>
58315 Date: Tue Jan 8 17:16:59 2008 +0100
58316
58317 MPC512X: Fixed typo in macro name.
58318
58319 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
58320
58321 commit 281ff9a45cf9eb17b8a9afc436cb783cf1f62363
58322 Author: Grzegorz Bernacki <gjb@semihalf.com>
58323 Date: Tue Jan 8 17:16:15 2008 +0100
58324
58325 ads5121: Added support for FDT.
58326
58327 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
58328
58329 commit a10ff9196183e7e5f2ae3c4f5f3cbe92ae9cb719
58330 Author: Wolfgang Denk <wd@denx.de>
58331 Date: Sat Jan 12 01:05:50 2008 +0100
58332
58333 Coding Style cleanup; update CHANGELOG.
58334
58335 Signed-off-by: Wolfgang Denk <wd@denx.de>
58336
58337 commit f6db945649e5e9d0c7efe33b507d243cdc86cf03
58338 Author: Heiko Schocher <hs@denx.de>
58339 Date: Fri Jan 11 15:15:17 2008 +0100
58340
58341 Fixed syntax error in function init_e300_core() of mpc83xx/start.S if
58342
58343 Signed-off-by: Timur Tabi <timur@freescale.com>
58344 Signed-off-by: Heiko Schocher <hs@denx.de>
58345
58346 commit fa05664cd8c7ab1ecf062aa73b992b7b58bba49c
58347 Author: Heiko Schocher <hs@denx.de>
58348 Date: Fri Jan 11 15:15:16 2008 +0100
58349
58350 MUNICes: Set the right CFG_DEFAULT_MBAR value.
58351
58352 Signed-off-by: Heiko Schocher <hs@denx.de>
58353
58354 commit 5fb2b2342ece8d786c6f7fdba1bc273febd3b3d2
58355 Author: Heiko Schocher <hs@denx.de>
58356 Date: Fri Jan 11 15:15:15 2008 +0100
58357
58358 added the config File for the MUNICes board.
58359
58360 Signed-off-by: Heiko Schocher <hs@denx.de>
58361
58362 commit 6341d9d723b71b4c0bf86f979e4cb228c02fd09d
58363 Author: Heiko Schocher <hs@denx.de>
58364 Date: Fri Jan 11 15:15:14 2008 +0100
58365
58366 added basic support for the MUNICes board.
58367
58368 Signed-off-by: Heiko Schocher <hs@denx.de>
58369
58370 commit 3bb77fb09a1caabf5a292cc5b486a78b977fbe19
58371 Author: Wolfgang Denk <wd@denx.de>
58372 Date: Sat Jan 12 00:39:37 2008 +0100
58373
58374 Update CHANGELOG and MAINTAINERS files.
58375
58376 Signed-off-by: Wolfgang Denk <wd@denx.de>
58377
58378 commit 5ba7390c3cb579172be66888a371707b47b5be4e
58379 Author: Anatolij Gustschin <agust@denx.de>
58380 Date: Fri Jan 11 02:15:02 2008 +0100
58381
58382 Fix compilation problem in common/cmd_bmp.c
58383
58384 common/cmd_bmp.c fails to compile if CONFIG_VIDEO_BMP_GZIP
58385 isn't defined. This patch fix this.
58386
58387 Signed-off-by: Anatolij Gustschin <agust@denx.de>
58388
58389 commit 5aa437baae5fe629abeab99bef793a2a1fc71b58
58390 Author: Heiko Schocher <hs@denx.de>
58391 Date: Fri Jan 11 01:12:09 2008 +0100
58392
58393 Fix defaultconfig for the mgcoge board.
58394
58395 Signed-off-by: Heiko Schocher <hs@denx.de>
58396
58397 commit ac9db066b26935f31bff15c98168b19faeb603f3
58398 Author: Heiko Schocher <hs@denx.de>
58399 Date: Fri Jan 11 01:12:08 2008 +0100
58400
58401 Added support for the mgcoge board from keymile.
58402
58403 Signed-off-by: Heiko Schocher <hs@denx.de>
58404
58405 commit b423d055cc2e13c4ef1f0389c3fa2988d0eed818
58406 Author: Heiko Schocher <hs@denx.de>
58407 Date: Fri Jan 11 01:12:07 2008 +0100
58408
58409 Enable SMC microcode relocation patch for SMC1.
58410
58411 Signed-off-by: Heiko Schocher <hs@denx.de>
58412
58413 commit 381e4e639720d8d2efb8066c7c48ec9588cb28c7
58414 Author: Heiko Schocher <hs@denx.de>
58415 Date: Fri Jan 11 01:12:06 2008 +0100
58416
58417 Added support for the mgsuvd board from keymile.
58418
58419 Signed-off-by: Heiko Schocher <hs@denx.de>
58420
58421 commit bf05293973b348f6946c9df92cd3c65ece42d0be
58422 Author: James Yang <james.yang@freescale.com>
58423 Date: Thu Jan 10 16:02:07 2008 -0600
58424
58425 Fix 64-bit vsprintf.
58426
58427 There were some size and unsigned problems.
58428 Also add support for "ll" size modifier in format string like glibc
58429
58430 Signed-off-by: James Yang <James.Yang@freescale.com>
58431 Acked-by: Jon Loeliger <jdl@freescale.com>
58432
58433 commit 92fa37eac530860643afa26ae347af3d23d67309
58434 Author: Larry Johnson <lrj@acm.org>
58435 Date: Wed Jan 9 12:42:35 2008 -0500
58436
58437 Remove superfluous preprocessor conditionals from LM73 driver
58438
58439 (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
58440
58441 (2) Use conditional Makefile.o.
58442
58443 Signed-off-by: Larry Johnson <lrj@acm.org>
58444
58445 commit efc6f447c1b940d1650c4b854c5598a595ddc3da
58446 Author: Guennadi Liakhovetski <lg@denx.de>
58447 Date: Thu Jan 10 17:59:07 2008 +0100
58448
58449 Add support for the TK885D baseboard from TELE-DATA
58450
58451 The TK885D board uses a TQM885D module from TQ, this port adds an
58452 own configuration file and adds a last_stage_init() method to
58453 configure the two PHYs, depending on the phy_auto_nego environment
58454 variable.
58455
58456 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
58457
58458 commit 0ec595243dc99edcd248bbcfbfd5a1dc860bde89
58459 Author: Kumar Gala <galak@kernel.crashing.org>
58460 Date: Thu Jan 10 02:22:05 2008 -0600
58461
58462 Fix compiler warning
58463
58464 main.c: In function 'readline_into_buffer':
58465 main.c:927: warning: unused variable 'p_buf'
58466
58467 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58468
58469 commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
58470 Author: Anatolij Gustschin <agust@denx.de>
58471 Date: Fri Jan 11 14:30:01 2008 +0100
58472
58473 Add Fujitsu CoralP/Lime video driver
58474
58475 Signed-off-by: Anatolij Gustschin <agust@denx.de>
58476 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
58477
58478 commit 20c450ef61ef2eb1c96f9b59ba0eb8d849bba058
58479 Author: Anatolij Gustschin <agust@denx.de>
58480 Date: Fri Jan 11 02:39:47 2008 +0100
58481
58482 Fix video console newline and carriage return handling
58483
58484 Lines of the lenght CONSOLE_COLS or greater than CONSOLE_COLS
58485 are not displayed correctly. This is an attempt to fix
58486 this issue. Also add carriage return handling.
58487
58488 Signed-off-by: Anatolij Gustschin <agust@denx.de>
58489 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
58490
58491 commit d5a163d6baa04f5a8edcc10ebc6fad08657d3093
58492 Author: Stefan Roese <sr@denx.de>
58493 Date: Fri Jan 11 15:53:58 2008 +0100
58494
58495 ppc4xx: Fix sdram init on Sequoia boards
58496
58497 Clear possible errors in MCSR resulting from data-eye-search.
58498 If not done, then we could get an interrupt later on when
58499 exceptions are enabled.
58500
58501 Signed-off-by: Stefan Roese <sr@denx.de>
58502
58503 commit d610a60730b7464f6f659db49d264d89a7c71061
58504 Author: Anatolij Gustschin <agust@denx.de>
58505 Date: Fri Jan 11 15:31:09 2008 +0100
58506
58507 ppc4xx: Rework Lime support for lwmon5
58508
58509 Rework Lime support for lwmon5 using new video driver
58510
58511 Signed-off-by: Anatolij Gustschin <agust@denx.de>
58512
58513 commit ff41ffc93c1592e77a44bdbebd5d781739f3aae0
58514 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
58515 Date: Fri Jan 11 14:55:16 2008 +0100
58516
58517 ppc4xx: Update PMC440 config file
58518
58519 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
58520
58521 commit e3edcb36f14f0aabb6f50e96014d6877f73d64ea
58522 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
58523 Date: Fri Jan 11 14:55:08 2008 +0100
58524
58525 ppx4xx: Fix sdram init on PMC440 boards
58526
58527 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
58528
58529 commit 061aad4d320dddce26247699dcf2875ee2ea1366
58530 Author: Dave Liu <r63238@freescale.com>
58531 Date: Thu Jan 10 23:09:33 2008 +0800
58532
58533 mpc83xx: Fix the bug of 266MHz data rate DDR
58534
58535 The DDR doesn't work on the 266MHz data rate,
58536 the patch fix the bug.
58537
58538 Signed-off-by: Dave Liu <daveliu@freescale.com>
58539 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58540
58541 commit ded08317ad9e340b887bf2eb46e9565a0f610a93
58542 Author: Dave Liu <r63238@freescale.com>
58543 Date: Thu Jan 10 23:08:26 2008 +0800
58544
58545 mpc83xx: Make the code more readable
58546
58547 Format the code, make it more readable
58548
58549 Signed-off-by: Dave Liu <daveliu@freescale.com>
58550 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58551
58552 commit 7e74d63d1a211fbc34ec424e2dc6726601f323d0
58553 Author: Dave Liu <r63238@freescale.com>
58554 Date: Thu Jan 10 23:07:23 2008 +0800
58555
58556 mpc83xx: Reduce the latency of DDR
58557
58558 Reduce the AL from 2 to 1 clock to improve the performance.
58559
58560 Signed-off-by: Dave Liu <daveliu@freescale.com>
58561 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58562
58563 commit 6f3931a2bed5412c20d5e5536c865fbd657f7d28
58564 Author: Dave Liu <r63238@freescale.com>
58565 Date: Thu Jan 10 23:06:05 2008 +0800
58566
58567 mpc83xx: Fix the wrong definition of MPC8315E
58568
58569 According to the latest user manual of MPC8315E,
58570 1) The SVCOD of HRCWL is different than 837x
58571 2) The SCCR has changes
58572
58573 Signed-off-by: Dave Liu <daveliu@freescale.com>
58574 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58575
58576 commit ec2638ea08a537a1bd409db873aaaa33a053ebae
58577 Author: Dave Liu <r63238@freescale.com>
58578 Date: Thu Jan 10 23:05:00 2008 +0800
58579
58580 mpc83xx: Fix the typo in mpc83xx.h
58581
58582 The SPCR about TSEC priority is wrong.
58583
58584 Signed-off-by: Michael Barkowski <Michael.Barkowski@freescale.com>
58585 Signed-off-by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
58586 Signed-off-by: Dave Liu <daveliu@freescale.com>
58587 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58588
58589 commit c86ef2cd9ef81935049231fa89f36c7b793f2d4b
58590 Author: Dave Liu <r63238@freescale.com>
58591 Date: Thu Jan 10 23:04:13 2008 +0800
58592
58593 mpc83xx: Fix the typo in global data struct
58594
58595 Fix the typo in global_data.h
58596
58597 Signed-off-by: Dave Liu <daveliu@freescale.com>
58598 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58599
58600 commit 2c5b48fc205c3e2752910da8f39209ed075929e5
58601 Author: Dave Liu <r63238@freescale.com>
58602 Date: Thu Jan 10 23:03:03 2008 +0800
58603
58604 mpc83xx: Remove cache config from config.h
58605
58606 clean up the cache config from configs.h of board
58607
58608 Signed-off-by: Dave Liu <daveliu@freescale.com>
58609 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58610
58611 commit fab6f556bbbbd1bb35a5433161f7f173c18df559
58612 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58613 Date: Wed Jan 9 20:57:47 2008 +0300
58614
58615 mpc83xx: add support for the MPC8360E-RDK
58616
58617 This is MPC8360E based board with:
58618 - 256MB fixed SDRAM;
58619 - 8MB Intel Strata NOR flash;
58620 - StMICRO 64MiB NAND flash;
58621 - two 10/100/1000 ethernet ports connected via Broadcom
58622 BCM5481 PHYs;
58623 - two 10/100 ethernet ports connected via National
58624 DP83848 PHYs;
58625 - one PCI and one miniPCI slots;
58626 - four serial ports (two NS16550-compatible, two UCCs);
58627 - four USB ports working through MPC8360E "FHCI" USB controller;
58628 - Fujitsu MB86277 graphics controller;
58629 - Analog to Digital Converter/Touchscreen controller, AD7843
58630 connected to SPI.
58631
58632 Features not supported in this patch are:
58633 - StMICRO 64MiB NAND flash (patch sent);
58634 - MINT framebuffer initialization (patch is pending);
58635 - Fetching production information from the EEPROM via I2C;
58636 - FHCI USB;
58637 - Two slow UCCs used as RS-485 UARTs.
58638
58639 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58640 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58641
58642 commit b3d2cde7a3aa1e83b7968cdff929e52c8cc617bb
58643 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58644 Date: Wed Jan 9 20:57:40 2008 +0300
58645
58646 mpc83xx: add "fsl, qe" compatible fixups
58647
58648 New device trees will use "fsl,qe" compatible properties.
58649
58650 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58651 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58652
58653 commit 977b57583a7c34010e566a09a679ec3c1836f996
58654 Author: Kim Phillips <kim.phillips@freescale.com>
58655 Date: Wed Jan 9 15:24:06 2008 -0600
58656
58657 mpc83xx: add missing CONFIG_HAS_ETH0 defines
58658
58659 the new libfdt code only updates eth0 if CONFIG_HAS_ETH0
58660 is defined; add the define to the missing board configs.
58661
58662 Thanks to Emilian Medve for finding this.
58663
58664 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58665
58666 commit b830b7f1635984ba607219fcbd78597c28eeb529
58667 Author: Becky Bruce <bgill@freescale.com>
58668 Date: Thu Jan 10 14:00:28 2008 -0600
58669
58670 86xx: Support 2GB DIMMs
58671
58672 Configure the number of bits used to address the banks inside the SDRAM
58673 device. The default register value of 0 means 2 bits to address 4 banks.
58674 Higher capacity devices like a 2GB DIMM require 3 bits to address 8 banks.
58675
58676 Signed-off-by: Becky Bruce <bgill@freescale.com>
58677
58678 commit 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
58679 Author: Niklaus Giger <niklausgiger@gmx.ch>
58680 Date: Thu Jan 10 18:50:33 2008 +0100
58681
58682 ppc4xx: Make Sequoia boot vxWorks
58683
58684 vxWorks expects in
58685 TLB 0 a entry for the Machine Check interrupt
58686 TLB 1 a entry for the RAM
58687 TLB 2 a entry for the EBC
58688 TLB 3 a entry for the boot flash
58689
58690 After changing the baudrate to 9600 I had no problems to boot the
58691 vxWorks image as distributed by WindRiver (Revision 2.0/1 from
58692 June 18, 2007)
58693
58694 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
58695
58696 commit 6d8184b00c0d1d7090e4a2f514e310d98a394f8d
58697 Author: Larry Johnson <lrj@arlinx.com>
58698 Date: Wed Jan 9 23:10:27 2008 -0500
58699
58700 ppc4xx: Fix dflush() to restore DVLIM register
58701
58702 Signed-off-by: Larry Johnson <lrj@acm.org>
58703
58704 commit 252f60b068d1f94190b5bcfda169db582387e15e
58705 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
58706 Date: Thu Jan 10 03:52:44 2008 -0500
58707
58708 Nios2: remove common/cmd_bdinfo.c unused variable.
58709
58710 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
58711 Signed-off-by: Scott McNutt <smcnutt@psyent.com>
58712
58713 commit 422b1a01602b6e2fbf8444a1192c7ba31461fd4c
58714 Author: Ben Warren <biggerbadderben@gmail.com>
58715 Date: Wed Jan 9 18:15:53 2008 -0500
58716
58717 Fix Ethernet init() return codes
58718
58719 Change return values of init() functions in all Ethernet drivers to conform
58720 to the following:
58721
58722 >=0: Success
58723 <0: Failure
58724
58725 All drivers going forward should return 0 on success. Current drivers that
58726 return 1 on success were left as-is to minimize changes.
58727
58728 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
58729 Acked-by: Stefan Roese <sr@denx.de>
58730 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
58731 Acked-by: Kim Phillips <kim.phillips@freescale.com>
58732 Acked-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
58733 Acked-By: Timur Tabi <timur@freescale.com>
58734
58735 commit d3a6532cbe263d992f49e86ac95bede28e96f9c8
58736 Author: Wolfgang Denk <wd@denx.de>
58737 Date: Thu Jan 10 00:55:14 2008 +0100
58738
58739 Coding Style cleanup; update CHANGELOG
58740
58741 Signed-off-by: Wolfgang Denk <wd@denx.de>
58742
58743 commit 17a41e4492121ccf9fa2c10c2cb1a6d1c18d74f7
58744 Author: Kim Phillips <kim.phillips@freescale.com>
58745 Date: Wed Jan 9 16:56:54 2008 -0600
58746
58747 Add QE brg freq and correct qe bus freq fdt update code
58748
58749 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58750 Signed-off-by: Andy Fleming <afleming@freescale.com>
58751
58752 commit 890dfef06c2d169a3356359596890754dfb8ee1c
58753 Author: Andy Fleming <afleming@freescale.com>
58754 Date: Wed Jan 9 16:34:51 2008 -0600
58755
58756 Remove cache config from ATUM8548 and sbc8548 configs
58757
58758 These boards weren't updated by Kumar's config patch because they
58759 weren't in the tree, yet.
58760
58761 Signed-off-by: Andy Fleming <afleming@freescale.com>
58762
58763 commit b8ec2385038c094b07ec5b49336289a46b6e9cc6
58764 Author: Timur Tabi <timur@freescale.com>
58765 Date: Mon Jan 7 13:31:19 2008 -0600
58766
58767 85xx: add ability to upload QE firmware
58768
58769 Define the layout of a binary blob that contains a QE firmware and instructions
58770 on how to upload it. Add function qe_upload_firmware() to parse the blob and
58771 perform the actual upload. Add command-line command "qe fw" to take a firmware
58772 blob in memory and upload it. Update ft_cpu_setup() on 85xx to create the
58773 'firmware' device tree node if U-Boot has uploaded a firmware. Fully define
58774 'struct rsp' in immap_qe.h to include the actual RISC Special Registers.
58775
58776 Signed-off-by: Timur Tabi <timur@freescale.com>
58777
58778 commit b009f3eca99bb7b9e6ba6639a8909a138dd5e9fe
58779 Author: Kumar Gala <galak@kernel.crashing.org>
58780 Date: Tue Jan 8 01:22:21 2008 -0600
58781
58782 85xx: Remove cache config from configs.h
58783
58784 Either use the standard defines in asm/cache.h or grab the information
58785 at runtime from the L1CFG SPR.
58786
58787 Also, minor cleanup in cache.h to make the code a bit more readable.
58788
58789 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58790
58791 commit b964e9368f45372aaf1da0c13fe56f6d81ae8e96
58792 Author: robert lazarski <robertlazarski@gmail.com>
58793 Date: Fri Dec 21 10:39:27 2007 -0500
58794
58795 mpc85xx: Add support for ATUM8548 (updated)
58796
58797 Add support for Instituto Atlantico's ATUM8548 board
58798
58799 Signed-off-by: robert lazarski <robertlazarski@gmail.com>
58800 Signed-off-by: Andy Fleming <afleming@freescale.com>
58801
58802 commit 7bd6104b71de9bca80ac8e0936003443bb42f2fc
58803 Author: robert lazarski <robertlazarski@gmail.com>
58804 Date: Fri Dec 21 10:36:37 2007 -0500
58805
58806 mpc85xx: Add support for ATUM8548 (updated)
58807
58808 Add support for Instituto Atlantico's ATUM8548 board
58809
58810 Signed-off-by: robert lazarski <robertlazarski@gmail.com>
58811
58812 commit 9e3ed392d2c8965e24c942b58796c31c644c2f70
58813 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
58814 Date: Thu Dec 13 06:45:14 2007 -0600
58815
58816 mpc85xx: Add support for SBC8548 (updated)
58817
58818 Add support for Wind River's SBC8548 reference board.
58819
58820 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
58821
58822 commit 11c45ebd46d6517b51b7a92dd52a618b2f4e5586
58823 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
58824 Date: Thu Dec 13 06:45:08 2007 -0600
58825
58826 mpc85xx: Add support for SBC8548 (updated)
58827
58828 Add support for Wind River's SBC8548 reference board.
58829
58830 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
58831 Signed-off by: Andy Fleming <afleming@freescale.com>
58832
58833 commit 64d4bcb087c2ece1c4d0de8efe85e0075e5b1594
58834 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58835 Date: Mon Oct 22 19:58:19 2007 +0400
58836
58837 MPC8568E-MDS: set up QE pario for UART1
58838
58839 To use UART1 on the MPC8568E-MDS, QE pario pins PC[0:3] should
58840 be set up appropriately.
58841
58842 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58843
58844 commit ad162249cb371e9e38971676f09be791e5f3cf4a
58845 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58846 Date: Mon Oct 22 18:12:46 2007 +0400
58847
58848 MPC8568E-MDS: reset UCCs to use them reliably
58849
58850 In order to use GETH1 and GETH2 on the MPC8568E-MDS, we should reset
58851 UCCs.
58852
58853 p.s Similar code exists in the Linux kernel board file (for capability
58854 reasons with older U-Boots), but should be removed some day.
58855
58856 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58857
58858 commit 2146cf56821c3364786ca94a7306008c5824b238
58859 Author: Kumar Gala <galak@kernel.crashing.org>
58860 Date: Wed Dec 19 01:18:15 2007 -0600
58861
58862 Reworked FSL Book-E TLB macros to be more readable
58863
58864 The old macros made it difficult to know what WIMGE and perm bits
58865 were set for a TLB entry. Actually use the bit masks for these items
58866 since they are only a single bit.
58867
58868 Also moved the macros into mmu.h out of e500.h since they aren't specific
58869 to e500.
58870
58871 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58872
58873 commit 1d47273d46925929f8f2c1913cd96d7257aade88
58874 Author: Kumar Gala <galak@kernel.crashing.org>
58875 Date: Tue Dec 18 23:21:51 2007 -0600
58876
58877 Use FSL Book-E MMU macros from Linux Kernel
58878
58879 Grab the FSL Book-E MAS register macros from Linux. Also added
58880 defines for page sizes up to 4TB and removed SHAREN since it doesnt
58881 really exist.
58882
58883 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58884
58885 commit 02df4a270f817ef6ec39047a01b55fecdc5f3b37
58886 Author: Andy Fleming <afleming@freescale.com>
58887 Date: Wed Jan 9 13:51:32 2008 -0600
58888
58889 Fix my own merge stupidity
58890
58891 Way back in August I merged Heiko's patch:
58892 566a494f592: [PCS440EP] upgrade the PCS440EP board
58893
58894 with Jon's CONFIG_COMMANDS patches.
58895
58896 This was done in commit: 6bf6f114dcdd97ec3f80c2761ed40e31229d6b78
58897
58898 However, in the process, I left out some of Heiko's good changes.
58899
58900 Now Heiko's and Jon's patches are properly merged in fat_register_device()
58901
58902 Signed-off-by: Andy Fleming <afleming@freescale.com>
58903
58904 commit 6636b62a6efc7f14e6e788788631ae7a7fca4537
58905 Author: James Yang <James.Yang@freescale.com>
58906 Date: Wed Jan 9 11:17:49 2008 -0600
58907
58908 Expose parse_line() globally.
58909
58910 Add new function readline_into_buffer() that allows the
58911 output of readline to be put into a pointer to char buffer.
58912
58913 This refactoring allows other functions besides the
58914 main command loop to also use the same input mechanism.
58915
58916 Signed-off-by: James Yang <James.Yang@freescale.com>
58917 Acked-by: Jon Loeliger <jdl@freescale.com>
58918
58919 commit 7ca90513486abd4ae50bd1b7403f47cc58c5ad25
58920 Author: Guennadi Liakhovetski <lg@denx.de>
58921 Date: Wed Jan 9 01:15:25 2008 +0100
58922
58923 trivial: fix consequences of a bad merge
58924
58925 Fix what looks like a merge artifact.
58926
58927 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
58928
58929 commit 4785a694c0045996ccf0ac5b8edf531efc1b730e
58930 Author: Zhang Wei <wei.zhang@freescale.com>
58931 Date: Thu Jan 3 10:51:15 2008 +0800
58932
58933 Add Ctrl combo key support to usb keyboard driver.
58934
58935 Ctrl combo key support is added, which is very useful to input Ctrl-C
58936 for interrupt current job.
58937 Also add usb_event_poll() calling to usb_kbd_testc(), which can get
58938 key input when tstc() is called.
58939
58940 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
58941
58942 commit 10c7382bc5d5e64c47f94ac2ca78cc574442e82d
58943 Author: Marcel Ziswiler <marcel@ziswiler.com>
58944 Date: Sun Dec 30 03:30:56 2007 +0100
58945
58946 fix various comments
58947
58948 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
58949
58950 commit 7817cb2083d982923752fe0f12b67c0e7c09a027
58951 Author: Marcel Ziswiler <marcel@ziswiler.com>
58952 Date: Sun Dec 30 03:30:46 2007 +0100
58953
58954 fix comments with new drivers organization
58955
58956 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
58957
58958 commit a9b410dc7d2a4721c408b13abfc037988150f145
58959 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
58960 Date: Fri Dec 28 12:50:59 2007 +0900
58961
58962 Remove the obsolete terse version of do_mii()
58963
58964 We now have more useful version of do_mii() and everybody use it.
58965 Gerald Van Baren says:
58966
58967 > When I originally wrote the mii command 6(!) years ago, I wrote a
58968 > verbose version that printed human readable decomposition of the flags,
58969 > etc., and a terse one that didn't print as much stuff and thus had a
58970 > smaller memory footprint.
58971 >
58972 > It sounds like the terse version has withered and died, apparently
58973 > people are only using the verbose version (which is very understandable,
58974 > I do myself).
58975
58976 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
58977 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
58978
58979 commit 01c687aa6e065bd4faf80f723361e798941dd6b0
58980 Author: Mike Frysinger <vapier@gentoo.org>
58981 Date: Thu Dec 27 13:42:56 2007 -0500
58982
58983 Do not reference sha1.c when building mkimage.
58984
58985 remove sha1.o from mkimage linking since it isn't actually used.
58986
58987 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
58988
58989 commit b9173af73e524d37c812f210173cf83385c5171a
58990 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
58991 Date: Thu Dec 27 15:39:54 2007 +0900
58992
58993 common/cmd_mii.c: Add sanity argc check
58994
58995 If type mii command without arguments, we suffer from uninitialized argv[]
58996 entries; for example we MIPS get stuck by TLB error.
58997
58998 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
58999
59000 commit 500856eb1707ed17d9204baa61dd59948d3b2899
59001 Author: Rafal Jaworowski <raj@semihalf.com>
59002 Date: Wed Jan 9 19:39:36 2008 +0100
59003
59004 API for external applications.
59005
59006 This is an API for external (standalone) applications running on top of
59007 U-Boot, and is meant to be more extensible and robust than the existing
59008 jumptable mechanism. It is similar to UNIX syscall approach. See api/README
59009 for more details.
59010
59011 Included is the demo application using this new framework (api_examples).
59012
59013 Please note this is still an experimental feature, and is turned off by
59014 default.
59015
59016 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
59017
59018 commit fe8dd0b2220b7c02b0d4c9c4f9967879970477b1
59019 Author: Jon Loeliger <jdl@freescale.com>
59020 Date: Wed Jan 9 12:14:55 2008 -0600
59021
59022 86xx: Remove cache config from configs.h
59023
59024 Just use the standard defines in asm/cache.h.
59025
59026 Signed-off-by: Jon Loeliger <jdl@freescale.com>
59027
59028 commit 26a41790f8eba19ad450e18ae91351daf485b3e2
59029 Author: Rafal Jaworowski <raj@semihalf.com>
59030 Date: Wed Jan 9 18:05:27 2008 +0100
59031
59032 Globalize envmatch()
59033
59034 The newly introduced API (routines related to env vars) will need to call
59035 it.
59036
59037 Signed-off-by: Rafal Zabdyr <armo@semihalf.com>
59038
59039 commit 1df170f8b2a99e1e2f940f9f0b56511e1e4c9e1f
59040 Author: Jon Loeliger <jdl@freescale.com>
59041 Date: Fri Jan 4 12:07:27 2008 -0600
59042
59043 Convert MPC8610HPCD to use libfdt.
59044
59045 Assumes the presence of the aliases node in the DTS to
59046 locate the pci and serial nodes for fixups.
59047
59048 Use consistent fdtaddr and fdtfile in environment variables.
59049
59050 Signed-off-by: Jon Loeliger <jdl@freescale.com>
59051
59052 commit c9974ab0a4d3731cdb76a7599d9fe9445d764d60
59053 Author: Jon Loeliger <jdl@freescale.com>
59054 Date: Fri Jan 4 11:58:23 2008 -0600
59055
59056 8610: Fix lingering compile warnings.
59057
59058 Turn off DEBUG.
59059
59060 Signed-off-by: Jon Loeliger <jdl@freescale.com>
59061
59062 commit 6007f3251c0967adc13f2ed8be1b924ddc30124d
59063 Author: Wolfgang Denk <wd@denx.de>
59064 Date: Wed Jan 9 15:14:46 2008 +0100
59065
59066 Coding Style cleanup, update CHANGELOG
59067
59068 Signed-off-by: Wolfgang Denk <wd@denx.de>
59069
59070 commit fc6414eca55f1fc108fb12fc8cdc43bd8b4463f9
59071 Author: Mike Frysinger <vapier@gentoo.org>
59072 Date: Tue Dec 18 04:29:55 2007 -0500
59073
59074 fix easylogo on big endian dev systems
59075
59076 didnt realize how out of shape easylogo actually was until i tried using it.
59077 this patch does byte swapping as need be on the input tga header since the tga
59078 is in little endian but the host could just as well be big endian. i didnt
59079 bother using bswap macros or such stuff from system headers as nothing in
59080 POSIX dictates byte swapping functionality.
59081
59082 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
59083
59084 commit 38d299c2db81bd889c601b5dfc12c4e83ef83333
59085 Author: Mike Frysinger <vapier@gentoo.org>
59086 Date: Tue Dec 18 03:23:25 2007 -0500
59087
59088 cleanup easylogo
59089
59090 - make the Makefile not suck
59091 - include proper headers for prototypes
59092 - fix obvious broken handling of strchr() when handling '.' in filenames
59093
59094 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
59095
59096 commit 883e3925d99a8dd69c5b0201cba5b1887f88f95c
59097 Author: raptorbrino@aim.com <raptorbrino@aim.com>
59098 Date: Thu Dec 13 21:23:28 2007 -0500
59099
59100 Fix build problems under Cygwin
59101
59102 This patch allows u-boot to build without error in a cygwin
59103 environment. Cygwin does not define __u64 in it's
59104 include/asm/types.h file. The -idirafter flag in the u-boot
59105 build causes the inclusion of the cygwin types.h file as opposed
59106 to u-bot/include/asm/types.h file which does define __u64.
59107 Subsequently, sha1.c compile fails due to unknown symbol.
59108
59109 Signed-off-by: Brian Miller <raptorbrino@netscape.net>
59110
59111 commit 43ef1c381f9195504a2488f5cb909227eb97d475
59112 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
59113 Date: Fri Nov 30 17:29:59 2007 +0100
59114
59115 cmd_bmp: Add support for displaying gzip compressed bmps
59116
59117 The existing code can show information about a gzip compressed BMP
59118 image, but can't actually display it.
59119
59120 Therefore, move the decompression code out of bmp_info() and use it in
59121 bmp_display() as well in order to display a compressed BMP image.
59122
59123 Also, clean things up a bit and fix a memory leak while we're at it.
59124
59125 [hskinnemoen@atmel.com: a bit of refactoring]
59126 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
59127
59128 commit d197ffd8172c6fdef38733424640a9a47295d6e9
59129 Author: Guennadi Liakhovetski <lg@denx.de>
59130 Date: Thu Nov 29 21:15:56 2007 +0100
59131
59132 Fix and optimize MII operations on FEC (MPC8xx) controllers
59133
59134 This patch fixes several issues at least on a MPC885 based system with two
59135 FEC interfaces used in MII mode.
59136
59137 1. PHY discovery should first read PHY_PHYIDR2 register and only then
59138 PHY_PHYIDR1 like cpu/mpc8xx/fec.c::mii_discover_phy() does it,
59139 otherwise the values read are wrong. Also notice, that PHY discovery
59140 cannot work on MPC88x / MPC87x in setups with both FECs active at all
59141 in its present form, because for both interfaces the registers from FEC
59142 1 are used to communicate over MII.
59143
59144 2. Remove code duplication for resetting the FEC by isolating it into a
59145 separate function.
59146
59147 3. Initialize MII on FEC 1 when communicating over FEC 2 in fec_init().
59148
59149 4. Optimize mii_init() to only reset the FEC 1 controller once.
59150
59151 5. Fix a typo in mii_init() using index i instead of j thus potentially
59152 leading to unpredictable results.
59153
59154 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
59155
59156 commit 6a5e1d75bf106fa157e9ce68bcaf4b13e8a1d214
59157 Author: Guennadi Liakhovetski <lg@denx.de>
59158 Date: Tue Nov 20 13:14:20 2007 +0100
59159
59160 Fix endianness conversions in rtl8169 driver
59161
59162 It is unclear on what platforms this driver has been tested, since
59163 noone up to now defines CONFIG_RTL8169 in the board configuration
59164 header. Now it has been fixed for a big-endian mpc8241 based
59165 linkstation platform. This patch presents the necessary endianness
59166 conversion fixes.
59167
59168 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
59169
59170 commit 58694f9709c0c3e3178e349ae748d98cfb0c639a
59171 Author: Zhang Wei <wei.zhang@freescale.com>
59172 Date: Thu Jan 3 10:51:15 2008 +0800
59173
59174 Add Ctrl combo key support to usb keyboard driver.
59175
59176 Ctrl combo key support is added, which is very useful to input Ctrl-C
59177 for interrupt current job.
59178 Also add usb_event_poll() calling to usb_kbd_testc(), which can get
59179 key input when tstc() is called.
59180
59181 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
59182 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
59183
59184 commit 07eb02687f008721974a2fb54cd7fdc28033ab3c
59185 Author: Wolfgang Denk <wd@denx.de>
59186 Date: Wed Jan 9 13:43:38 2008 +0100
59187
59188 Coding Style clenaup; update CHANGELOG
59189
59190 Signed-off-by: Wolfgang Denk <wd@denx.de>
59191
59192 commit c26acc1a43b31ddca5add42fd0360ff0eee90c80
59193 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59194 Date: Thu Dec 27 17:13:11 2007 +0100
59195
59196 Remove bit swapping in Xilinx Spartan bitfile loading
59197
59198 This patch removes the unnecessary bit swapping when
59199 booting .bit files with the 'fpga loadb' command.
59200
59201 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59202
59203 commit 437fc7327f0611f82937858f2d80e4cd61b40984
59204 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59205 Date: Thu Dec 27 17:13:05 2007 +0100
59206
59207 Fix MSB check in Xilinx Spartan slave serial mode
59208
59209 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59210
59211 commit 3bff4ffa33729a42645e328a21e8d16488872958
59212 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59213 Date: Thu Dec 27 17:12:56 2007 +0100
59214
59215 Add new Xilinx Spartan FPGA types
59216
59217 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59218
59219 commit 21d39d598c4e74d4e7761608c79dba2715d40a4c
59220 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59221 Date: Thu Dec 27 17:12:43 2007 +0100
59222
59223 Add pre and post configuration callbacks for Spartan FPGAs
59224
59225 This patch adds a post configuration callback for Spartan2/3 FPGAs.
59226 pre and post configuration callback are now optional and
59227 not called when the function pointer is set to NULL.
59228
59229 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59230
59231 commit 0133502e39ff89b67c26cb4015e0e7e8d9571184
59232 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59233 Date: Thu Dec 27 17:12:34 2007 +0100
59234
59235 Improve configuration of FPGA subsystem
59236
59237 This patch removes the FPGA subsystem configuration through
59238 the CONFIG_FPGA bitmask configuration option.
59239
59240 See README for the new options:
59241
59242 CONFIG_FPGA,
59243 CONFIG_FPGA_<vendor>,
59244 CONFIG_FPGA_<family>
59245
59246 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59247
59248 commit 95c6bc7d4a3588b452baca610f8c795a83630477
59249 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59250 Date: Thu Dec 27 16:55:17 2007 +0100
59251
59252 Add Epson RX8025 RTC support
59253
59254 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59255
59256 commit 1208a2dfde02bedd3c5bda29a606632b8e0be058
59257 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59258 Date: Thu Dec 27 16:57:23 2007 +0100
59259
59260 serial: Make default_serial_console() a weak function
59261
59262 With this patch it is possible to reimplement default_serial_console()
59263 in board specific code. This will be done in the upcomming PMC440
59264 U-Boot port. This also allows the lwmon board maintainer to
59265 remove the '#if !defined(CONFIG_LWMON) ...' from common/serial.c.
59266
59267 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59268
59269 commit d16471ee05ce7ac5392bc0e9fe3ff4b58a768f33
59270 Author: Harald Welte <laforge@openmoko.org>
59271 Date: Wed Dec 19 14:14:47 2007 +0100
59272
59273 add 'terminal program' functionality
59274
59275 This patch adds a 'cu' like serial terminal command to u-boot
59276 using which you can access other serial ports from the system console.
59277
59278 OpenMoko uses this in their Neo1973 phones to get access to the GSM
59279 Modem and GPS chip from the bootloader.
59280
59281 Signed-off-by: Harald Welte <laforge@openmoko.org>
59282
59283 commit 62d4f4365341576f5a5307b2b205a5aa2e3c6be6
59284 Author: Harald Welte <laforge@openmoko.org>
59285 Date: Wed Dec 19 14:12:53 2007 +0100
59286
59287 Re-introduce the 'nand read.oob' and 'nand write.oob' commands
59288 that used to exist with the legacy NAND code
59289
59290 Signed-off-by: Harald Welte <laforge@openmoko.org>
59291
59292 commit f540c42d9564854b19ce9bbb70affe172529fe70
59293 Author: Harald Welte <laforge@openmoko.org>
59294 Date: Wed Dec 19 14:09:58 2007 +0100
59295
59296 Fix building with CRAMFS but not JFFS2 support
59297
59298 Signed-off-by: Harald Welte <laforge@openmoko.org>
59299
59300 commit 23d0baf967fecdaf1804f045f6339337c5607eec
59301 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59302 Date: Sat Dec 22 15:52:58 2007 +0100
59303
59304 Allow CONFIG_AUTO_COMPLETE and command history CONFIG_CMDLINE_EDITING at the sametime
59305
59306 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
59307 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59308
59309 commit 23776ff292966a85d811126933830bed48211826
59310 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59311 Date: Tue Dec 11 10:53:12 2007 +0100
59312
59313 ARM: support board-specific ethernet PHY init
59314
59315 Add until the new phylib will be arrived
59316
59317 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59318
59319 commit 7b74ebe723e576baedf5a8b6240589b19b845a1b
59320 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59321 Date: Sat Dec 8 16:34:08 2007 +0100
59322
59323 IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x
59324
59325 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59326
59327 commit a2df4da31b1a1e41e3e9e1358cfc52b806046ce1
59328 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59329 Date: Sun Dec 9 11:01:10 2007 +0100
59330
59331 Add missing file in gitignore and comments
59332
59333 based on Linux source tree's .gitignore files
59334
59335 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59336
59337 commit 435dc8fcdb3bc61d3d490773a8f369f98a20c868
59338 Author: Wolfgang Denk <wd@denx.de>
59339 Date: Wed Jan 9 11:36:21 2008 +0100
59340
59341 Coding Style cleanup, update CHANGELOG
59342
59343 Signed-off-by: Wolfgang Denk <wd@denx.de>
59344
59345 commit b2e2142c500c48a57f18f9dd30e66c13caea0971
59346 Author: Stefan Roese <sr@denx.de>
59347 Date: Wed Jan 9 10:38:58 2008 +0100
59348
59349 POST: Execute SPR test after relocation
59350
59351 On LWMON5 we now use d-cache as init-ram and stack. The SPR POST test uses
59352 self modifying code and this doesn't work with stack in d-cache, since
59353 I can't move the code from d-cache to i-cache. We move the SPR test to
59354 be executed a little later, after relocation. Then stack is located in
59355 SDRAM and this self-modifying code is no problem anymore.
59356
59357 Signed-off-by: Stefan Roese <sr@denx.de>
59358
59359 commit 8f24e0637ae113500d8bd60d80d57afcc0aa8bde
59360 Author: Stefan Roese <sr@denx.de>
59361 Date: Wed Jan 9 10:28:20 2008 +0100
59362
59363 ppc4xx: Change LWMON5 to not use OCM for init-ram and POST anymore
59364
59365 This patch configures the LWMON5 port to use d-cache as init-ram and
59366 the unused GPT0_COMP6 as POST WORD storage.
59367
59368 Signed-off-by: Stefan Roese <sr@denx.de>
59369
59370 commit 1754f50b710194f886b6f2831803d8960171a14d
59371 Author: Stefan Roese <sr@denx.de>
59372 Date: Wed Jan 9 10:25:46 2008 +0100
59373
59374 ppc4xx: Add CFG_POST_ALT_WORD_ADDR to support non OCM POST WORD storage
59375
59376 The privious 4xx POST implementation only supported storing the POST
59377 WORD in OCM. Since we need to reserve the OCM on LWMON5 for the logbuffer
59378 we need to store the POST WORD in some other non volatile location.
59379 This patch adds CFG_POST_ALT_WORD_ADDR to specify an address for such
59380 a location.
59381
59382 Signed-off-by: Stefan Roese <sr@denx.de>
59383
59384 commit e02c521d94b45d7b05aa522e4ccde6b74bf5fe57
59385 Author: Stefan Roese <sr@denx.de>
59386 Date: Wed Jan 9 10:23:16 2008 +0100
59387
59388 ppc4xx: Add 44x cache locking to better support init-ram in d-cache
59389
59390 This patch adds support for locking the init-ram/stack in d-cache,
59391 so that other regions may use d-cache as well
59392
59393 Note, that this current implementation locks exactly 4k of d-cache,
59394 so please make sure that you don't define a bigger init-ram area. Take
59395 a look at the lwmon5 440EPx implementation as a reference.
59396
59397 Signed-off-by: Stefan Roese <sr@denx.de>
59398
59399 commit 0ddb89601a8d29e808db450366752ffdc6267c53
59400 Author: Wolfgang Denk <wd@denx.de>
59401 Date: Wed Jan 9 10:16:33 2008 +0100
59402
59403 Fix memset bug in ext2fs_read_file()
59404
59405 ext2fs_read_file() had the function arguments swapped.
59406
59407 Pointed out by Mike Montour, 19 Dec 2007 22:34:25 -0800
59408
59409 Signed-off-by: Wolfgang Denk <wd@denx.de>
59410
59411 commit 32d6f1bc09175f3b77469771e839bc7255a9f22e
59412 Author: Markus Klotzbücher <mk@denx.de>
59413 Date: Tue Jan 5 08:17:15 1988 +0100
59414
59415 Fix problems with usb storage devices on MPC5200 /TQM5200
59416
59417 The MPC5200 OHCI controller operates in big endian, so
59418 CFG_OHCI_BE_CONTROLLER must be defined for it to work properly.
59419
59420 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
59421
59422 commit 46f6e5019048b103d7693d5310de0f1cfbaf4c19
59423 Author: Wolfgang Denk <wd@denx.de>
59424 Date: Tue Jan 8 22:58:27 2008 +0100
59425
59426 Fix compile problem with new env code.
59427
59428 Signed-off-by: Wolfgang Denk <wd@denx.de>
59429
59430 commit 64b3727b9779d86127cd576e392a987de5ebb9fd
59431 Author: Markus Klotzbücher <mk@denx.de>
59432 Date: Tue Nov 27 10:23:20 2007 +0100
59433
59434 tools: fix fw_printenv tool to compile again
59435
59436 This patch updates the fw_printenv/fw_setenv userspace tool to include
59437 the correct MTD header in order to compile against current kernel
59438 headers. Backward compatibility is preserved by introducing an option
59439 MTD_VERSION which can be set to "old" for compilation using the old MTD
59440 headers. Along with this a number of warnings are fixed.
59441
59442 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
59443
59444 commit 1f84021a85abeb837d2ce0dc84297b4f1d45d516
59445 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59446 Date: Tue Jan 8 15:40:09 2008 +0100
59447
59448 ppc4xx: assign PCI interrupts on seuqoia boards
59449
59450 Some operating systems rely on assigned PCI interrupts.
59451
59452 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59453
59454 commit 6e9233d30afe57cb6e148fbfa4895e7810196fac
59455 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59456 Date: Tue Jan 8 15:50:49 2008 +0100
59457
59458 ppc4xx: Move cpu/ppc4xx/vecnum.h into include path
59459
59460 This patch allows the use of 4xx interrupt vector number defines
59461 in board specific code outside cpu/ppc4xx.
59462
59463 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59464
59465 commit 580d1d3186a2bc6dbdb626941b716dae1788e51e
59466 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59467 Date: Tue Jan 8 15:39:01 2008 +0100
59468
59469 ppc4xx: Fix UIC2 vector number base
59470
59471 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59472
59473 commit ff5fb8a6ccba56e3482d0e297d8cfb7faa040811
59474 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59475 Date: Tue Jan 8 12:49:58 2008 +0100
59476
59477 ppc4xx: Update PLB/PCI divider for PMC440 board
59478
59479 This patch updates the PLB/PCI divider when running at
59480 400MHz CPU frequency from 4 to 3 which results in 44MHz PCI sync clock.
59481
59482 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59483
59484 commit 7d5d75633174867316a0c0f2fca5ceb2cf312cde
59485 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59486 Date: Tue Jan 8 11:13:09 2008 +0100
59487
59488 ppc4xx: Disable error message when no NAND chip is installed on PMC440
59489
59490 Add CFG_NAND_QUIET_TEST option to disable error message when
59491 no NAND chip is installed on PMC440 boards.
59492
59493 Disable a couple of config defines that are only used for NAND_U_BOOT.
59494
59495 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59496
59497 commit c83d7ca4dadd44ae430235077f63b64a11f36f6e
59498 Author: Wolfgang Denk <wd@denx.de>
59499 Date: Tue Jan 8 22:58:27 2008 +0100
59500
59501 Fix compile problem with new env code.
59502
59503 Signed-off-by: Wolfgang Denk <wd@denx.de>
59504
59505 commit 6de66b35426312a21174a9bf0576a094e2904bea
59506 Author: Markus Klotzbücher <mk@denx.de>
59507 Date: Tue Nov 27 10:23:20 2007 +0100
59508
59509 tools: fix fw_printenv tool to compile again
59510
59511 This patch updates the fw_printenv/fw_setenv userspace tool to include
59512 the correct MTD header in order to compile against current kernel
59513 headers. Backward compatibility is preserved by introducing an option
59514 MTD_VERSION which can be set to "old" for compilation using the old MTD
59515 headers. Along with this a number of warnings are fixed.
59516
59517 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
59518
59519 commit ad3006fe7e84667021753b74247b0bafd97ba35f
59520 Author: Gerald Van Baren <vanbaren@cideas.com>
59521 Date: Mon Jan 7 23:47:32 2008 -0500
59522
59523 LIBFDT: use memmove() instead of memcpy()
59524
59525 This is partial patch from the DTC/libfdt
59526 commit 67b6b33b9b413a450a72135b5dc59c0a1e33e647
59527 Author: David Gibson <david@gibson.dropbear.id.au>
59528 Date: Wed Nov 21 11:56:14 2007 +1100
59529
59530 The patch also fixes one genuine bug caught by valgrind -
59531 _packblocks() in fdt_rw.c was using memcpy() where it should have been
59532 using memmove().
59533
59534 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59535
59536 commit aec7135bc300e3340d18f203347ee00c5b5f68c0
59537 Author: David Gibson <david@gibson.dropbear.id.au>
59538 Date: Mon Dec 17 14:42:07 2007 +1100
59539
59540 libfdt: Add more documentation (patch the seventh)
59541
59542 This patch adds more documenting comments to libfdt.h. Specifically,
59543 these document the read/write functions (not including fdt_open_into()
59544 and fdt_pack(), for now).
59545
59546 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
59547
59548 commit 9d4450b5adc36623e9c1de1f92539db77ad0c57e
59549 Author: David Gibson <david@gibson.dropbear.id.au>
59550 Date: Mon Dec 17 14:41:52 2007 +1100
59551
59552 libfdt: Add more documentation (patch the sixth)
59553
59554 This patch adds some more documenting comments to libfdt.h.
59555 Specifically this documents all the write-in-place functions.
59556
59557 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
59558
59559 commit b60af3d4c1680487ee37e11aa1b3db6dec04d8f0
59560 Author: Gerald Van Baren <vanbaren@cideas.com>
59561 Date: Sat Dec 29 22:45:27 2007 -0500
59562
59563 Fine grained per property /chosen updating.
59564
59565 Implement a suggestion by Scott Wood to make the /chosen handling fine
59566 grained. Don't overwrite pre-existing properties on a per-property basis,
59567 so if /chosen exists but a necessary /chosen/property doesn't, it gets
59568 created. If a /chosen property exists, it is NOT overwritten unless the
59569 "force" flag is true.
59570
59571 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59572
59573 commit 238cb7a423c6eaa36496efb788cfb9798cea7f95
59574 Author: Gerald Van Baren <vanbaren@cideas.com>
59575 Date: Sat Jan 5 15:33:29 2008 -0500
59576
59577 Improve the FDT help message.
59578
59579 Add a note that "fdt copy" makes the new address active.
59580 Remove most of the extra hints at the end of the fdt help.
59581
59582 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59583
59584 commit ea6d8be153ceaf16958f8009cea6d75f3ff58d92
59585 Author: Gerald Van Baren <vanbaren@cideas.com>
59586 Date: Sat Jan 5 14:52:04 2008 -0500
59587
59588 Support setting FDT properties with optional values.
59589
59590 Fix a bug found and documented by Bartlomiej Sieka where the optional
59591 value on "fdt set <path> <prop> [<val>]" wasn't optional.
59592
59593 => fdt mknode / testnode
59594 => fdt print /testnode
59595 testnode {
59596 };
59597 => fdt set /testnode testprop
59598 => fdt print /testnode
59599 testnode {
59600 testprop;
59601 };
59602
59603 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59604
59605 commit 22fb2246df91bfc840d87f0c5910818bad55577a
59606 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59607 Date: Fri Dec 28 11:56:30 2007 +0100
59608
59609 Add fdt_find_and_setprop() to fdt_support.h
59610
59611 fdt_find_and_setprop() is used by several 4xx boards and it's
59612 missing in the appropriate header. This patch eliminates a
59613 warning when building U-Boot for such boards.
59614
59615 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59616 Acked-by: Stefan Roese <sr@denx.de>
59617
59618 commit 802b769bac17b0560d3535a42c502469ee190cd1
59619 Author: Stefan Roese <sr@denx.de>
59620 Date: Tue Jan 8 18:39:30 2008 +0100
59621
59622 ppc4xx: Return 0 on success in 4xx ethernet driver
59623
59624 Signed-off-by: Stefan Roese <sr@denx.de>
59625
59626 commit 6775c68683a53c7abc778774641aac6f833a2cbf
59627 Author: Kim Phillips <kim.phillips@freescale.com>
59628 Date: Tue Jan 8 09:59:49 2008 -0600
59629
59630 mpc83xx: fix missed pci_hose -> hose conversion for new libfdt code
59631
59632 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59633
59634 commit 94fab25f5f1a7d1c0cc63c17e813ea8943fe49c7
59635 Author: Kim Phillips <kim.phillips@freescale.com>
59636 Date: Thu Dec 20 16:28:34 2007 -0600
59637
59638 mpc83xx: rm remaining FLAT_TREE code
59639
59640 ..in board pci.c files
59641
59642 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59643
59644 commit b3458d2cd55d01732e30a76d898afd99e871cd67
59645 Author: Kim Phillips <kim.phillips@freescale.com>
59646 Date: Thu Dec 20 15:57:28 2007 -0600
59647
59648 mpc83xx: remove FLAT_TREE code
59649
59650 need to rm it from pci code, too!
59651
59652 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59653
59654 commit 5b8bc606c61456566af6912f818a153b6b06f242
59655 Author: Kim Phillips <kim.phillips@freescale.com>
59656 Date: Thu Dec 20 14:09:22 2007 -0600
59657
59658 mpc83xx: convert to using do_fixup_*()
59659
59660 convert to using simpler mpc85xx style fdt update code; streamline by
59661 eliminating macros OF_SOC, OF_CPU, etc. which allows us to rm
59662 the old school FLAT_TREE code from 83xx (since the sbc8349 was just
59663 converted over to using libfdt).
59664
59665 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59666
59667 commit e496865ecc31a2fe2f9abfe798334bb02aaf05ab
59668 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
59669 Date: Thu Dec 20 12:58:51 2007 -0500
59670
59671 sbc8349: enable libfdt by default on WRS SBC8349 board.
59672
59673 Make libfdt the default for the WRS SBC8349 board.
59674 Parallel of commit 35cc4e4823668e8745854899cfaedd4489beb0ef
59675 done for the other 83xx based boards. Also fix a typo in CONFIG_PCI.
59676
59677 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
59678
59679 commit 2408b3f20bcbdd9c6c397cd03ab0d71d54680a40
59680 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
59681 Date: Thu Dec 20 12:58:16 2007 -0500
59682
59683 sbc8349: migrate board to libfdt
59684
59685 This adds libfdt support code for the Wind River sbc8349 board.
59686
59687 Parallel of commit 3fde9e8b22cfbd7af489214758f9839a206576cb for
59688 the other Freescale 83xx boards.
59689
59690 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
59691
59692 commit 27a256a90cc86392ac9bf0039a3afe638ec2c18d
59693 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
59694 Date: Thu Dec 20 12:56:19 2007 -0500
59695
59696 sbc8349: Remove board specific ECC code
59697
59698 ECC code is now shared for all 83xx boards, so remove board specific one.
59699 See commit daab8c67d2defef73dc26ab07f0c3afd1b05d019 for reference.
59700
59701 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
59702
59703 commit a1e1ac849249310e5e2e5c7148e9fb353a8317a7
59704 Author: Kim Phillips <kim.phillips@freescale.com>
59705 Date: Thu Dec 20 01:30:48 2007 -0600
59706
59707 mpc83xx: Remove CONFIG options related to OF that we dont use (on 837x)
59708
59709 continuation of commit 37395fa2b0d9d617f28d44ca11592260ef16105a to 837x
59710
59711 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59712
59713 commit ccf21c311e68d48399eff1e72936052885f6e3f7
59714 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
59715 Date: Thu Dec 6 16:43:40 2007 +0100
59716
59717 Add support CONFIG_UEC_ETH3 in MPC83xx
59718
59719 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
59720
59721 commit e6af9932d31171e35db880e7b2f29f903b1b7660
59722 Author: Kumar Gala <galak@kernel.crashing.org>
59723 Date: Mon Nov 26 11:00:54 2007 -0600
59724
59725 Remove CONFIG options related to OF that we dont use
59726
59727 The MPC8360E MDS config defined:
59728 CONFIG_OF_HAS_BD_T
59729 CONFIG_OF_HAS_UBOOT_ENV
59730
59731 Which we don't use or ever needed. This seems like copy-paste feature creep.
59732
59733 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
59734
59735 commit f602082b4b7ed4ee16432067cc67a0a24fedc715
59736 Author: Kim Phillips <kim.phillips@freescale.com>
59737 Date: Mon Dec 10 14:16:22 2007 -0600
59738
59739 mpc83xx: supress compiler warning
59740
59741 mpc8360emds.c: In function ‘ft_board_setup’:
59742 mpc8360emds.c:335: warning: assignment discards qualifiers from pointer target type
59743 mpc8360emds.c:345: warning: assignment discards qualifiers from pointer target type
59744
59745 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59746
59747 commit c16e44fa835fb9eec982d919863a04e2f78e5ce7
59748 Author: Kim Phillips <kim.phillips@freescale.com>
59749 Date: Tue Nov 27 14:17:29 2007 -0600
59750
59751 mpc83xx: fix remaining fdt_find_node_by_path references
59752
59753 rename to fdt_path_offset
59754
59755 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59756
59757 commit 921d4b19ad1be704df58725485d9292dc0414adf
59758 Author: Kim Phillips <kim.phillips@freescale.com>
59759 Date: Mon Nov 19 12:30:09 2007 -0600
59760
59761 mpc83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions for 837x
59762
59763 Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for 837x.
59764 This change guarantees that the environment will be located on the
59765 first flash sector after the U-Boot image.
59766
59767 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59768
59769 commit 24f868433b50ecbaa88e118aadc7bd254013c6ae
59770 Author: Kim Phillips <kim.phillips@freescale.com>
59771 Date: Fri Nov 9 14:28:08 2007 -0600
59772
59773 mpc83xx: mpc8360 rev.2.1 erratum 2: replace rgmii-id with rgmii-rxid
59774
59775 u-boot itself uses GMII mode on the 8360. Fix up UCC phy-connection-type
59776 properties in the device tree so the PHY gets configured for internal delay on
59777 RX only by the OS, as prescribed by mpc8360 rev. 2.1 pb mds erratum #2.
59778
59779 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59780
59781 commit 22b448dbfbe2a98f01ff4adc3c3979f8c541ad7b
59782 Author: Dave Liu <r63238@freescale.com>
59783 Date: Tue Sep 18 12:41:15 2007 +0800
59784
59785 mpc83xx: update the CREDITS and MAINTAINERS
59786
59787 update the CREDITS and MAINTAINERS.
59788
59789 Signed-off-by: Dave Liu <daveliu@freescale.com>
59790
59791 commit b21add4b42af7b767448251b599b91066a160e0d
59792 Author: Dave Liu <r63238@freescale.com>
59793 Date: Tue Sep 18 12:40:21 2007 +0800
59794
59795 mpc83xx: add MAINTAINER and MAKEALL entries for the mpc837xemds
59796
59797 Add the MAINTAINER and MAKEALL entries for mpc837xemds
59798
59799 Signed-off-by: Dave Liu <daveliu@freescale.com>
59800
59801 commit f8900ce9094c462355eb792eea264ff16ac8fd16
59802 Author: Dave Liu <r63238@freescale.com>
59803 Date: Tue Sep 18 12:38:53 2007 +0800
59804
59805 mpc83xx: Add the MPC837xEMDS board readme
59806
59807 Add the README.mpc837xemds to /doc
59808
59809 Signed-off-by: Dave Liu <daveliu@freescale.com>
59810
59811 commit 19580e660cc8da49f16536a8bd78c047c7bc12e5
59812 Author: Dave Liu <r63238@freescale.com>
59813 Date: Tue Sep 18 12:37:57 2007 +0800
59814
59815 mpc83xx: Add the support of MPC837xEMDS board
59816
59817 The MPC837xEMDS board support:
59818 * DDR2 400MHz hardcoded and SPD init
59819 * Local bus NOR Flash
59820 * I2C, UART, MII and RTC
59821 * eTSEC RGMII
59822 * PCI host
59823
59824 Signed-off-by: Dave Liu <daveliu@freescale.com>
59825
59826 commit 555da61702771fe0f76f3de23b4e7590f3704161
59827 Author: Dave Liu <r63238@freescale.com>
59828 Date: Tue Sep 18 12:36:58 2007 +0800
59829
59830 mpc83xx: Add the support of MPC8315E SoC
59831
59832 The MPC8315E SoC including e300c3 core and new IP blocks,
59833 such as TDM, PCI Express and SATA controller.
59834
59835 Signed-off-by: Dave Liu <daveliu@freescale.com>
59836
59837 commit 03051c3d35c9981ceaa059005660e699f3eacf1c
59838 Author: Dave Liu <r63238@freescale.com>
59839 Date: Tue Sep 18 12:36:11 2007 +0800
59840
59841 mpc83xx: Add the support of MPC837x SoC
59842
59843 The MPC837x SoC including e300c4 core and new IP blocks,
59844 such as SDHC, PCI Express and SATA controller.
59845
59846 Signed-off-by: Dave Liu <daveliu@freescale.com>
59847
59848 commit 651d96f7e4c84adcdb98ef07ec878c20326e3359
59849 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
59850 Date: Wed Nov 14 18:54:53 2007 +0300
59851
59852 MPC8360E-MDS: configure and enable second UART
59853
59854 Despite user manual, BCSR9.7 is negated (high) on HRST, so
59855 UART2 is disabled. Fix that and configure QE pins properly.
59856
59857 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
59858
59859 commit b2893e1fcb28fad8c8b317104df8cee0142c7631
59860 Author: Timur Tabi <timur@freescale.com>
59861 Date: Mon Nov 5 09:34:06 2007 -0600
59862
59863 83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions
59864
59865 Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for all of the
59866 currently-defined 83xx boards. This change guarantees that the environment
59867 will be located on the first flash sector after the U-Boot image.
59868
59869 Signed-off-by: Timur Tabi <timur@freescale.com>
59870 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59871
59872 commit e05329516a13616b53240cd85b739217c2bf87f1
59873 Author: Larry Johnson <lrj@acm.org>
59874 Date: Fri Jan 4 13:27:02 2008 -0500
59875
59876 ppc4xx: Remove weak binding from common Denali data-eye search code
59877
59878 Now that there are no board-specific versions of
59879 "denali_core_search_data_eye()", the weak binding on the common version
59880 can be removed.
59881
59882 Signed-off-by: Larry Johnson <lrj@acm.org>
59883
59884 commit 5ba576c01602fd328800a427964c36a0a05c5dce
59885 Author: Stefan Roese <sr@denx.de>
59886 Date: Sat Jan 5 09:13:46 2008 +0100
59887
59888 ppc4xx: Remove unused CONFIG_ECC_ERROR_RESET from 44x_spd_ddr2.c
59889
59890 Signed-off-by: Stefan Roese <sr@denx.de>
59891
59892 commit 845c6c95dbfe6c915ce68a0a115852fa17932fb4
59893 Author: Stefan Roese <sr@denx.de>
59894 Date: Sat Jan 5 09:12:41 2008 +0100
59895
59896 ppc4xx: Update Katmai/44x_spd_ddr2.c code for optimal DDR2 setup
59897
59898 On Katmai the complete auto-calibration somehow doesn't seem to
59899 produce the best results, meaning optimal values for RQFD/RFFD.
59900 This was discovered by GDA using a high bandwidth scope,
59901 analyzing the DDR2 signals. GDA provided a fixed value for RQFD,
59902 so now on Katmai "only" RFFD is auto-calibrated.
59903
59904 This patch also adds RDCC calibration as mentioned on page 7 of
59905 the AMCC PowerPC440SP/SPe DDR2 application note:
59906 "DDR1/DDR2 Initialization Sequence and Dynamic Tuning"
59907
59908 Signed-off-by: Stefan Roese <sr@denx.de>
59909
59910 commit 49db47b8ae6afff2b898be312948ff501357dc80
59911 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59912 Date: Wed Jan 2 16:48:42 2008 +0100
59913
59914 ppc4xx: Remove sdram.h from PMC440 board
59915
59916 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59917
59918 commit 34065a2ce0d8972f2ec6652076014ab243d2ce8a
59919 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59920 Date: Wed Jan 2 16:48:34 2008 +0100
59921
59922 ppc4xx: use common denali core defines and data eye search code for PMC440
59923
59924 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59925
59926 commit 9ac6b6f3d3f1b072d89268b2efe47e95e6659489
59927 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59928 Date: Wed Jan 2 12:05:14 2008 +0100
59929
59930 ppc4xx: More cleanup for esd's LCD code
59931
59932 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59933
59934 commit fe9c26b330a21ce73e52b5bd347d725cb81e3cfb
59935 Author: Stefan Roese <sr@denx.de>
59936 Date: Fri Jan 4 12:00:01 2008 +0100
59937
59938 ppc4xx: Fix Sequoia NAND booting target
59939
59940 The Sequoia NAND booting target now uses the recently extracted
59941 cpu/ppc4xx/denali_data_eye.c file too.
59942
59943 Signed-off-by: Stefan Roese <sr@denx.de>
59944
59945 commit 0ddd969aec532bd7eae30fc09590488a3aaa629a
59946 Author: Lawrence R. Johnson <lrj@acm.org>
59947 Date: Thu Jan 3 15:02:02 2008 -0500
59948
59949 ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Korat board
59950
59951 Signed-off-by: Larry Johnson <lrj@acm.org>
59952
59953 commit b05e8bf58be9d8956fdfde3d8c8e87c140414663
59954 Author: Lawrence R. Johnson <lrj@acm.org>
59955 Date: Fri Jan 4 02:11:56 2008 -0500
59956
59957 ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Sequoia board
59958
59959 Note: this patch changes the configuration of some GPIO registers:
59960
59961 Register Old Value New Value
59962 --------------- ---------- ----------
59963 DCR GPIO0_TCR 0x0000000F 0x0000F0CF
59964 DCR GPIO0_TSRH 0x55005000 0x00000000
59965 DCR GPIO1_TCR 0xC2000000 0xE2000000
59966 DCR GPIO1_TSRL 0x0C000000 0x00200000
59967 DCR GPIO1_ISR2L 0x00050000 0x00110000
59968
59969 Signed-off-by: Larry Johnson <lrj@acm.org>
59970
59971 commit 5ab884b254ca2e707ab50545cd705f30108cf491
59972 Author: Lawrence R. Johnson <lrj@acm.org>
59973 Date: Thu Jan 3 18:54:00 2008 -0500
59974
59975 ppc4xx: Add functionality to GPIO support
59976
59977 This patch makes two additions to GPIO support:
59978
59979 First, it adds function gpio_read_in_bit() to read the a bit from the
59980 GPIO Input Register (GPIOx_IR) in the same way that function
59981 gpio_read_out_bit() reads a bit from the GPIO Output Register
59982 (GPIOx_OR).
59983
59984 Second, it modifies function gpio_set_chip_configuration() to provide
59985 an additional option for configuring the GPIO from the
59986 "CFG_4xx_GPIO_TABLE".
59987
59988 According to the 440EPx User's Manual, when an alternate output is used,
59989 the three-state control is configured in one of two ways, depending on
59990 the particular output. The first option is to select the corresponding
59991 alternate three-state control in the GPIOx_TRSH/L registers. The second
59992 option is to select the GPIO Three-State Control Register (GPIOx_TCR) in
59993 the GPIOx_TRSH/L registers, and set the corresponding bit in the
59994 GPIOx_TCR register to enable the output. For example, the Manual
59995 specifies configuring the GPIO00 Alternate 1 Signal (PreAddr07) to use
59996 the alternate three-state control (first option), and specifies
59997 configuring the GPIO32 Alternate 1 Signal (USB2OM0) with the output
59998 enabled in the GPIOx_TCR register (second option).
59999
60000 Currently, gpio_set_chip_configuration() configures all alternate signal
60001 outputs to use the first option. This patch allow the second option to
60002 be selected by setting the "out_val" element in the table entry to
60003 "GPIO_OUT_1". The first option is used when the "out_val" element is
60004 set to "GPIO_OUT_0". Because "out_val" is not currently used when an
60005 alternate signal is selected, and because all current GPIO tables set
60006 "out_val" to "GPIO_OUT_0" for all alternate signals, this patch should
60007 not change any existing configurations.
60008
60009 Signed-off-by: Larry Johnson <lrj@acm.org>
60010
60011 commit 196404cdc1de495d6182e84731c200fc5748df15
60012 Author: Larry Johnson <lrj@arlinx.com>
60013 Date: Sun Dec 30 01:01:54 2007 -0500
60014
60015 PPC4xx: Remove sdram.h from board/lwmon5
60016
60017 These definitions are now in "include/ppc440.h".
60018
60019 Signed-off-by: Larry Johnson <lrj@acm.org>
60020
60021 commit ef16fccf96e55eab93fe25d03ebe2e9b56e5332b
60022 Author: Larry Johnson <lrj@arlinx.com>
60023 Date: Sun Dec 30 01:01:32 2007 -0500
60024
60025 PPC4xx: Use common code for LWMON5 board SDRAM support
60026
60027 This patch also modifies the functionality of the code so that the data-eye
60028 search is now done with with the cache disabled.
60029
60030 Signed-off-by: Larry Johnson <lrj@acm.org>
60031
60032 commit 62cc3951ab72135d9c101f1845b794e63a0fa189
60033 Author: Larry Johnson <lrj@arlinx.com>
60034 Date: Sun Dec 30 01:01:14 2007 -0500
60035
60036 PPC4xx: Remove sdram.h from board/amcc/sequoia
60037
60038 These definitions are now in "include/ppc440.h".
60039
60040 Signed-off-by: Larry Johnson <lrj@acm.org>
60041
60042 commit ce3902e1765bbfb07cf5bbe98be9a68e3009996a
60043 Author: Larry Johnson <lrj@arlinx.com>
60044 Date: Sun Dec 30 01:00:50 2007 -0500
60045
60046 PPC4xx: Use common code for Sequoia board SDRAM support
60047
60048 Signed-off-by: Larry Johnson <lrj@acm.org>
60049
60050 commit 8b0c5c127690335758100c25eaec2b84db97c101
60051 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60052 Date: Thu Dec 27 16:58:41 2007 +0100
60053
60054 net: Add CONFIG_NET_DO_NOT_TRY_ANOTHER option
60055
60056 When CONFIG_NET_DO_NOT_TRY_ANOTHER is defined U-Boot's
60057 networking stack does not automatically switch to
60058 another interface. This patch does not touch the default
60059 behavior.
60060
60061 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60062 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
60063
60064 commit 505be87a65e4f87ad7d8da1d57ea4dcd487d7e32
60065 Author: Upakul Barkakaty <upakul@gmail.com>
60066 Date: Thu Nov 29 12:16:13 2007 +0530
60067
60068 NET: Proper return code handling in eth_init() function in file eth.c
60069
60070 This patch modifies the return code handling in the eth_init()
60071 function, to be compatible with the handling of the return codes in
60072 the other network stack files. It now returns a 0 on Success and -1 on
60073 error.
60074
60075 Signed-off-by: Upakul Barkakaty <upakul.barkakaty@conexant.com>
60076 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
60077
60078 commit 5ca2d0953e4579a80810966cca2077e20d912c97
60079 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
60080 Date: Mon Nov 19 20:27:04 2007 +0900
60081
60082 net/eth.c: Fix env_enetaddr signed overflow
60083
60084 Assigning the output of simple_strtoul(CB:A9:87:65:43:21) to `char', we are
60085 warned as below:
60086
60087 U-Boot 1.2.0 (Aug 30 2007 - 08:27:37)
60088
60089 DRAM: 256 MB
60090 Flash: 32 MB
60091 In: serial
60092 Out: serial
60093 Err: serial
60094 Net: NEC-Candy
60095 Warning: NEC-Candy MAC addresses don't match:
60096 Address in SROM is 00:00:4C:80:92:A2
60097 Address in environment is FFFFFFCB:FFFFFFA9:FFFFFF87:65:43:21
60098
60099 This patch changes env_enetaddr type from `char' to `unsigned char'.
60100
60101 Cc: Masaki Ishikawa <ishikawa-masaki@cnt.mxe.nes.nec.co.jp>
60102 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
60103 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
60104
60105 commit f85b60710571b37293d2233933b76e2aa3db5635
60106 Author: Rafal Jaworowski <raj@semihalf.com>
60107 Date: Thu Dec 27 18:19:02 2007 +0100
60108
60109 Introduce new eth_receive routine
60110
60111 The purpose of this routine is receiving a single network frame, outside of
60112 U-Boot's NetLoop(). Exporting it to standalone programs that run on top of
60113 U-Boot will let them utilise networking facilities. For sending a raw frame
60114 the already existing eth_send() can be used.
60115
60116 The direct consumer of this routine is the newly introduced API layer for
60117 external applications (enabled with CONFIG_API).
60118
60119 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
60120 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
60121 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
60122
60123 commit 5c740711f0ea5b51414b341b71597c4a0751be74
60124 Author: Jon Loeliger <jdl@freescale.com>
60125 Date: Thu Jan 3 10:41:04 2008 -0600
60126
60127 8610: Move include of config.h earlier.
60128
60129 Include config.h earlier in the set of #includes
60130 so as to avoid a incidental and duplicate definition
60131 of CFG_CACHELINE_SIZE.
60132
60133 Signed-off-by: Jon Loeliger
60134
60135 commit 61d3421bdea090bd0399b14c3e10a3bebcc8d5ff
60136 Author: Jon Loeliger <jdl@freescale.com>
60137 Date: Tue Dec 4 10:53:34 2007 -0600
60138
60139 Don't slam #undef DEBUG in the 8641HPCN config file.
60140
60141 Doing so prevents it from being individually set
60142 and useful in other files.
60143
60144 Signed-off-by: Jon Loeliger <jdl@freescale.com>
60145
60146 commit ea9f7395ec362584e5e4f266bd0b0c4422cf6a4c
60147 Author: Jon Loeliger <jdl@freescale.com>
60148 Date: Wed Nov 28 14:47:18 2007 -0600
60149
60150 Convert MPC8641HPCN to use libfdt.
60151
60152 Assumes the presence of the aliases node in the DTS to
60153 locate the ethernet, pci and serial nodes for fixups.
60154
60155 Use consistent fdtaddr and fdtfile in environment variables.
60156
60157 Signed-off-by: Jon Loeliger <jdl@freescale.com>
60158
60159 commit ce37422d0002e10490e268392e0c4e3028e52cec
60160 Author: Stefan Roese <sr@denx.de>
60161 Date: Wed Jan 2 14:06:26 2008 +0100
60162
60163 cfi_flash: Fix bug in flash_isset() to use correct 32bit function
60164
60165 This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
60166 flash chips connected to a 32bit wide port.
60167
60168 Signed-off-by: Stefan Roese <sr@denx.de>
60169
60170 commit 1182e9f8e3b92fc372d64943293de53daa2e26cf
60171 Author: Wolfgang Denk <wd@denx.de>
60172 Date: Wed Jan 2 15:58:44 2008 +0100
60173
60174 Fix compile problem introduced by "cleanup" commit 3dfd708c
60175
60176 Signed-off-by: Wolfgang Denk <wd@denx.de>
60177
60178 commit 1aaab9bfae0b3b2ee2b418c22c651280ee7b65c7
60179 Author: Wolfgang Denk <wd@denx.de>
60180 Date: Wed Jan 2 15:54:45 2008 +0100
60181
60182 Make scripts and Makefiles POSIX compliant
60183
60184 The bash builtin versions of the "test" (resp. "[") command allow
60185 using "==" for string comparisons, but POSIX compatible implemen-
60186 tations (like /usr/bin/test) insist on using "=" only. On such systems
60187 you will see:
60188
60189 $ /usr/bin/test a == a && echo OK
60190 /usr/bin/test: ==: binary operator expected
60191
60192 This patch fixes Makefiles and scripts to use POSIX style.
60193
60194 Signed-off-by: Wolfgang Denk <wd@denx.de>
60195
60196 commit 47cc23cbe9a669c510183f4f049bf703ef445f3b
60197 Author: Stefan Roese <sr@denx.de>
60198 Date: Wed Jan 2 14:05:37 2008 +0100
60199
60200 cfi_flash: Fix bug in flash_isset() to use correct 32bit function
60201
60202 This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
60203 flash chips connected to a 32bit wide port.
60204
60205 Signed-off-by: Stefan Roese <sr@denx.de>
60206
60207 commit 3dfd708cc1b2a966ad454ca9ed125dd17dbadbcc
60208 Author: Wolfgang Denk <wd@denx.de>
60209 Date: Wed Jan 2 12:38:43 2008 +0100
60210
60211 Minor coding style cleanup.
60212
60213 Signed-off-by: Wolfgang Denk <wd@denx.de>
60214
60215 commit e174ac34adf5d5653df12bc3cf19c52063a71269
60216 Author: Stefan Roese <sr@denx.de>
60217 Date: Fri Dec 28 17:29:56 2007 +0100
60218
60219 ppc4xx: Coding style cleanup
60220
60221 Signed-off-by: Stefan Roese <sr@denx.de>
60222
60223 commit 8ba132cab18ae438b6dd5b0214c28a8fc0d976e5
60224 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60225 Date: Fri Dec 28 17:07:24 2007 +0100
60226
60227 ppc4xx: Complete PMC440 board support
60228
60229 This patch brings the PMC440 board configuration file.
60230 Finally it enables the PMC440 board support.
60231
60232 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60233
60234 commit 407843a582560fc5231299561ab3c2b6b6cd3397
60235 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60236 Date: Fri Dec 28 17:07:18 2007 +0100
60237
60238 ppc4xx: Add FPGA support and BSP commands for PMC440 boards
60239
60240 This patch adds some BSP commands and FPGA booting support
60241 for esd's PMC440 boards.
60242
60243 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60244
60245 commit 72c5d52aedcce35e4b4fa5895605554825b6a76f
60246 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60247 Date: Fri Dec 28 17:07:14 2007 +0100
60248
60249 ppc4xx: Add initial esd PMC440 board files
60250
60251 This patch adds the first files for the new esd PMC440 boards.
60252 The next two patches will complete the PMC440 board support.
60253
60254 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60255
60256 commit f6e0f1f61896ce7729ba1bcea2ffbd138d3947f5
60257 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60258 Date: Fri Dec 28 17:10:36 2007 +0100
60259
60260 ppc4xx: Add EEPROM write protection for PLU405 boards + misc. updates
60261
60262 - add EEPROM write protection for esd PLU405 boards.
60263 - initialize NAND GPIOs
60264 - use correct io accessors
60265 - cleanup
60266
60267 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60268
60269 commit 77660c4b59055d621d2a8595bd4c18bb277268fc
60270 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60271 Date: Fri Dec 28 17:10:44 2007 +0100
60272
60273 ppc4xx: use correct io accessors for esd's LCD code
60274
60275 This patch fixes esd's LCD dectection code to work correctly with
60276 newer gcc versions.
60277
60278 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60279
60280 commit b56bd0fcfc1c73db722e3462c8a9bf607ba7775e
60281 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60282 Date: Fri Dec 28 17:10:42 2007 +0100
60283
60284 ppc4xx: Maintenance patch for VOH405 boards
60285
60286 - add EEPROM write protection
60287 - initialize NAND GPIOs
60288 - use correct io accessors
60289 - slow down I2C clock to 100kHz
60290 - enable ext. I2C bus
60291 - cleanup
60292
60293 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60294
60295 commit c05569066dbcba3fdf36d4d1943df265dc316a86
60296 Author: Stefan Roese <sr@denx.de>
60297 Date: Fri Dec 28 16:08:08 2007 +0100
60298
60299 ppc4xx: Enable 405EP PCI arbiter per default on all boards
60300
60301 In an attmemt to clean up the 4xx start.S file, I removed the enabling
60302 of the internal 405EP PCI arbiter. This is needed for multiple other
60303 405EP platforms, like most of the esd 405EP. Now the internal PCI
60304 arbiter is enabled again per default as it has been before.
60305
60306 Signed-off-by: Stefan Roese <sr@denx.de>
60307 Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60308
60309 commit bec9264616fb78273a1d93e87ff4b0b67c7bec1b
60310 Author: Stefan Roese <sr@denx.de>
60311 Date: Fri Dec 28 15:53:46 2007 +0100
60312
60313 ppc4xx: Fix bug in cpu_init.c (405EP instead of 450EP)
60314
60315 Signed-off-by: Stefan Roese <sr@denx.de>
60316 Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60317
60318 commit fb83a65c60ab5ca12358b75f1257e5eee6cdbf79
60319 Author: Stefan Roese <sr@denx.de>
60320 Date: Fri Dec 28 06:06:04 2007 +0100
60321
60322 ppc4xx: Fix compilation problem of kilauea/haleakala nand booting target
60323
60324 Use correct link to nand_ecc now located in drivers/mtd/nand/ for the
60325 platforms mentioned above.
60326
60327 Signed-off-by: Stefan Roese <sr@denx.de>
60328
60329 commit b568fd25574181a3b12ae3d66b2913903442cb83
60330 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60331 Date: Thu Dec 27 17:03:46 2007 +0100
60332
60333 Remove CPCI440 board
60334
60335 This board never left prototyping state and it
60336 became a millstone round my neck. So remove it.
60337
60338 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60339
60340 commit c591dffe0cbacd896ccbad06011fe6d6afa080da
60341 Author: Larry Johnson <lrj@arlinx.com>
60342 Date: Thu Dec 27 11:28:51 2007 -0500
60343
60344 Add support for Korat PPC440EPx board
60345
60346 These patches add support for the PPC440EPx-based "Korat" board to
60347 U-Boot. They are based primarily on support for the Sequoia board.
60348
60349 Signed-off-by: Larry Johnson <lrj@acm.org>
60350
60351 commit 87dc096829e6a6363f4fdd73653b0093a85adbe0
60352 Author: Larry Johnson <lrj@arlinx.com>
60353 Date: Sat Dec 22 15:16:25 2007 -0500
60354
60355 Add configuration file for Korat board
60356
60357 This patch supplies the configuration file for the Korat PPC440EPx-
60358 processor board.
60359
60360 Signed-off-by: Larry Johnson <lrj@acm.org>
60361
60362 commit 8eb52d5d982b764b39c88d9d1064d56c5397bfa5
60363 Author: Larry Johnson <lrj@arlinx.com>
60364 Date: Sat Dec 22 15:16:11 2007 -0500
60365
60366 Add denali_data_eye.o and denali_spd_ddr2.o to PPC4xx Makefile
60367
60368 Signed-off-by: Larry Johnson <lrj@acm.org>
60369
60370 commit aba19604d848b2838cfb9ebe818909e6a216058e
60371 Author: Larry Johnson <lrj@arlinx.com>
60372 Date: Thu Dec 27 10:54:48 2007 -0500
60373
60374 Add 440EPx DDR2 SPD DIMM support
60375
60376 This patch adds SPD DDR2 support for the 440EPx ("Denali") SDRAM
60377 controller. It should also work on the 440GRx. It is based on the DDR2
60378 SPD code for the 440EP/440EPx, but makes no provision for DDR1 support.
60379
60380 This code has been tested on prototype Korat boards with three Kingston
60381 DIMMS: 512 MiB ECC (one rank), 512 MiB non-ECC (one rank) and 1 GiB ECC
60382 (two ranks). The Korat board has a single DIMM socket, but support has
60383 been provided (though not tested) for boards with two DIMM sockets.
60384
60385 Signed-off-by: Larry Johnson <lrj@acm.org>
60386
60387 commit 8a24a6963002cb867d5a6b70e3560f0b1467f55f
60388 Author: Larry Johnson <lrj@arlinx.com>
60389 Date: Sat Dec 22 15:15:30 2007 -0500
60390
60391 Copy 440EPx/GRx SDRAM data-eye search to common directory
60392
60393 This patch creates a non-board-specific file for performing the SDRAM
60394 data-eye search. It also adds ECC error checking to the test of valid
60395 data on readback when ECC is enabled.
60396
60397 Signed-off-by: Larry Johnson <lrj@acm.org>
60398
60399 commit c46f53333b22b1f9098676bea8884fc7db820cf3
60400 Author: Larry Johnson <lrj@arlinx.com>
60401 Date: Sat Dec 22 15:15:13 2007 -0500
60402
60403 Add definitions for 440EPx/GRx SDRAM controller to ppc440.h
60404
60405 This patch adds the Denali SDRAM controller definitions to "ppc440.h".
60406 It also fixes two typos in the definitions, so the board-specific
60407 "sdram.h" files containing these definitions are also fixed to avoid
60408 compiler warnings.
60409
60410 Signed-off-by: Larry Johnson <lrj@acm.org>
60411
60412 commit c348578bf612d0c56d8d376d23cae16defbd86af
60413 Author: Larry Johnson <lrj@arlinx.com>
60414 Date: Thu Dec 27 10:50:55 2007 -0500
60415
60416 Add Ethernet 1000BASE-X support for PPC4xx
60417
60418 This patch adds a new switch: "CONFIG_PHY_DYNAMIC_ANEG". When this symbol
60419 is defined, the PHY will advertise it's capabilities for autonegotiation
60420 based on the capabilities shown in the PHY's status registers, including
60421 1000BASE-X. When "CONFIG_PHY_DYNAMIC_ANEG" is not defined, the PHY will
60422 advertise hard-coded capabilities, as before.
60423
60424 Signed-off-by: Larry Johnson <lrj@acm.org>
60425
60426 commit 9e2c347151db5ae8acf5f18b99493cd53e6637e3
60427 Author: Larry Johnson <lrj@arlinx.com>
60428 Date: Thu Dec 27 09:52:17 2007 -0500
60429
60430 Add driver for National Semiconductor LM73 temperature sensor
60431
60432 This driver is based on the driver for the LM75.
60433
60434 Signed-off-by: Larry Johnson <lrj@acm.org>
60435
60436 commit 12618278688ea9b3d76536960a5ad2e3790fac40
60437 Author: Larry Johnson <lrj@arlinx.com>
60438 Date: Sat Dec 22 15:14:00 2007 -0500
60439
60440 Add driver for STMicroelectronics M41T60 RTC
60441
60442 This driver is based on the driver for the M41T11. In the intended
60443 application, the RTC will be powered by a large capacitor, rather than a
60444 battery. The driver therefore checks to see whether the RTC has lost
60445 power. The chip's OUT bit is normally reset from its power-up state. If
60446 the OUT bit is read as set, or if the date and time are not valid, then the
60447 RTC is assumed to have lost power, and its date and time are reset to
60448 1900-01-01 00:00:00.
60449
60450 Support for adjusting the speed of the clock to improve accuracy is
60451 provided through an environment variable.
60452
60453 Signed-off-by: Larry Johnson <lrj@acm.org>
60454
60455 commit d3471173e14b7544bb60339eda8d3d3906694b0a
60456 Author: Larry Johnson <lrj@arlinx.com>
60457 Date: Sat Dec 22 15:34:39 2007 -0500
60458
60459 Use out_be32() and friends to access memory-mapped registers in sequoia.c
60460
60461 Signed-off-by: Larry Johnson <lrj@acm.org>
60462
60463 commit c68f59fe3ec16769f82b5fca7421983c336d3aac
60464 Author: Larry Johnson <lrj@arlinx.com>
60465 Date: Sat Dec 22 15:34:20 2007 -0500
60466
60467 Use definitions from "asm-ppc/mmu.h" in init.S for Sequoia
60468
60469 Signed-off-by: Larry Johnson <lrj@acm.org>
60470
60471 commit 0d9cdeac1d3fa8d62ed7d883acc950c364f5bda8
60472 Author: Larry Johnson <lrj@arlinx.com>
60473 Date: Sat Dec 22 15:23:50 2007 -0500
60474
60475 Cosmetic changes to ECC POST for AMCC Denali core
60476
60477 Signed-off-by: Larry Johnson <lrj@acm.org>
60478
60479 commit 2e583d6c81034f80a267b89fa55498ae063ccef1
60480 Author: Stefan Roese <sr@denx.de>
60481 Date: Wed Dec 26 20:20:19 2007 +0100
60482
60483 ppc4xx: Fix compilation problem in 405 cache POST test
60484
60485 Signed-off-by: Stefan Roese <sr@denx.de>
60486
60487 commit 42d55ea0bde06e47d5a3b49b0d91002acd8e5708
60488 Author: Stefan Roese <sr@denx.de>
60489 Date: Sat Dec 22 12:20:09 2007 +0100
60490
60491 ppc4xx: Move virtual address of POST cache test to bigger address
60492
60493 On Sequoia & LWMON5 the virtual address of the POST cache test is now
60494 moved to a bigger address. This enables usage of more memory on those
60495 boards.
60496
60497 Signed-off-by: Stefan Roese <sr@denx.de>
60498
60499 commit d91722102cf63f77a0148ed3f3d54a26d87575e9
60500 Author: Stefan Roese <sr@denx.de>
60501 Date: Sat Dec 22 12:18:26 2007 +0100
60502
60503 ppc4xx: Fix problem in 44x cache POST routine
60504
60505 As repoted by Larry Johnson, running "diag run cache" caused a crash
60506 in U-Boot. This problem was introduced by a patch that removed the
60507 TLB entry for the cache test after the test has completed. Since this
60508 TLB was only setup once, a 2nd attempt to run this cache test
60509 failed with a crash. Now this TLB entry is created every time the
60510 routine is called.
60511
60512 Signed-off-by: Stefan Roese <sr@denx.de>
60513
60514 commit b0265b576bb8fa9465f99e99c323768b562fadc2
60515 Author: Stefan Roese <sr@denx.de>
60516 Date: Fri Dec 21 07:51:29 2007 +0100
60517
60518 ppc4xx: Update Makalu fdt support
60519
60520 Signed-off-by: Stefan Roese <sr@denx.de>
60521
60522 commit bf8324e4a50758daff8cddd04c6a2ff8ed775bea
60523 Author: Stefan Roese <sr@denx.de>
60524 Date: Wed Dec 19 09:05:40 2007 +0100
60525
60526 ppc4xx: Add fdt support to AMCC Katmai eval board
60527
60528 Signed-off-by: Stefan Roese <sr@denx.de>
60529
60530 commit 328a340392a5df9aaf00792be989df73e750859e
60531 Author: Stefan Roese <sr@denx.de>
60532 Date: Tue Dec 18 08:44:51 2007 +0100
60533
60534 ppc4xx: fdt: Cleanup setup of cpu node setup
60535
60536 Now the cpu node setup ("timebase-frequency" and "clock-frequency") is
60537 without using the absolute path to the cpu node. This makes it possible
60538 to use this U-Boot version with both versions of cpu-node naming
60539 "cpu@0" and the former "PowerPC,440EPx@0".
60540
60541 Signed-off-by: Stefan Roese <sr@denx.de>
60542
60543 commit 7812bc4a2e2436ebbc0ce5b4e99c1dfc2e77eb5b
60544 Author: Stefan Roese <sr@denx.de>
60545 Date: Mon Dec 17 17:26:21 2007 +0100
60546
60547 ppc4xx: Fix lwmon5 compilation problem
60548
60549 Now that the 440EPx ECC test is not board specific anymore
60550 remove this Makefile.
60551
60552 Signed-off-by: Stefan Roese <sr@denx.de>
60553
60554 commit 42ed33ffe135f618680f9d6e9712eb35a85bcb62
60555 Author: Anatolij Gustschin <agustschin@t-online.de>
60556 Date: Wed Dec 5 17:43:20 2007 +0100
60557
60558 Fix ppc4xx clear_bss() code
60559
60560 ppc4xx clear_bss() fails if BSS segment size is not
60561 divisible by 4 without remainder. This patch provides
60562 fix for this problem.
60563
60564 Signed-off-by: Anatolij Gustschin <agust@denx.de>
60565
60566 commit 85dc2a7f82d11e17f0ca2a448118aed7f7a4b85d
60567 Author: Niklaus Giger <niklausgiger@gmx.ch>
60568 Date: Fri Nov 30 18:35:11 2007 +0100
60569
60570 PPC4xx: Minimal changes to add vxWorks support
60571
60572 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
60573
60574 commit 052440b022ca8981d39b6f8c10d1aa6326f47480
60575 Author: Markus Klotzbücher <mk@denx.de>
60576 Date: Fri Nov 23 13:09:18 2007 +0100
60577
60578 ppc4xx: Add CONFIG_BOOTP_SUBNETMASK to Sequoia board config
60579
60580 When using dhcp/bootp the "netmask" environment variable is not
60581 set because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
60582 desireable, so the following patch adds this this option to the board
60583 config.
60584
60585 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
60586 Signed-off-by: Stefan Roese <sr@denx.de>
60587
60588 commit a724a9b40c7fbeb6ade193ca52321b441eaecb4e
60589 Author: Larry Johnson <lrj@arlinx.com>
60590 Date: Sat Oct 27 12:48:15 2007 -0400
60591
60592 Fix/enhance ECC POST for 440EPx/GRx
60593
60594 This patch allows the ECC POST to be used for different boards with the
60595 PPC440 Denali SDRAM controller. Modifications include skipping the test
60596 if ECC is not enabled (as for non-ECC DIMMs) and adding synchronization
60597 to prevent timing errors.
60598
60599 Signed-off-by: Larry Johnson <lrj@acm.org>
60600
60601 commit 454a6cf8d498f70d2b3e18f07837603eb24b12d4
60602 Author: Larry Johnson <lrj@arlinx.com>
60603 Date: Sat Oct 27 12:48:05 2007 -0400
60604
60605 PPC4xx: Move/rename ECC POST for 440EPx/GRx
60606
60607 Signed-off-by: Larry Johnson <lrj@acm.org>
60608
60609 commit c29d2d3680046d430022c55e50fcb27f5866517e
60610 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60611 Date: Fri Dec 14 11:20:33 2007 +0100
60612
60613 ppc4xx: use correct io accessors for 4xx ethernet POST
60614
60615 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60616
60617 commit ba79fde58a48c0a6ff8e2a96caba951594142203
60618 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60619 Date: Fri Dec 14 11:19:56 2007 +0100
60620
60621 ppc4xx: fix flush + invalidate_dcache_range arguments
60622
60623 flush + invalidate_dcache_range() expect the start and stop+1 address.
60624 So the stop address is the first address behind (!) the range.
60625
60626 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60627
60628 commit 871e6ce188a7c6bc7321bcf8372857035d20f1cd
60629 Author: Stefan Roese <sr@denx.de>
60630 Date: Fri Dec 14 08:41:29 2007 +0100
60631
60632 ppc4xx: fdt: use fdt_fixup_ethernet()
60633
60634 By using aliases in the dts file, the ethernet node fixup is
60635 much easier with the recently added functions.
60636
60637 Please note that the dts file needs the aliases for this to work.
60638
60639 Signed-off-by: Stefan Roese <sr@denx.de>
60640
60641 commit 136288847e3b04f2ff357a067ad45e10afa0a24c
60642 Author: Stefan Roese <sr@denx.de>
60643 Date: Thu Dec 13 14:52:53 2007 +0100
60644
60645 ppc4xx: Bring 4xx fdt support up-to-date
60646
60647 This patch update the 4xx fdt support. It enabled fdt booting
60648 on the AMCC Kilauea and Sequoia for now. More can follow later
60649 quite easily.
60650
60651 Signed-off-by: Stefan Roese <sr@denx.de>
60652
60653 commit 0dc80e2759fba859ccc4cdadc633577ca2971f3e
60654 Author: Stefan Roese <sr@denx.de>
60655 Date: Thu Dec 27 07:50:54 2007 +0100
60656
60657 cfi_flash: Add missing check for erased dest to flash_write_cfibuffer()
60658
60659 The check for an sufficiently erased destination was missing in the
60660 buffered write function of the cfi flash driver (when
60661 CFG_FLASH_USE_BUFFER_WRITE is defined). This patch adds this check to that
60662 writing to such a region will fail with the currect error message.
60663
60664 Signed-off-by: Stefan Roese <sr@denx.de>
60665
60666 commit 33ed73bc0e38d0f2b5c183d4629d8f207e5b9994
60667 Author: Martin Krause <martin.krause@tqs.de>
60668 Date: Mon Nov 12 10:56:17 2007 +0100
60669
60670 Some configuration updates for the TQM5200 based TB5200 board:
60671
60672 - enable command line history
60673 - increase malloc space (because of bigger flash sectors)
60674
60675 Signed-off-by: Martin Krause <martin.krause@tqs.de>
60676
60677 commit e318d9e9021a0af7508171f84ed09d0e79f0284e
60678 Author: Martin Krause <martin.krause@tqs.de>
60679 Date: Thu Sep 27 11:10:08 2007 +0200
60680
60681 TQM8xx: use the CFI flash driver on all TQM8xx boards
60682
60683 Signed-off-by: Martin Krause <martin.krause@tqs.de>
60684
60685 commit 11d9eec479b470eab9242ab937fca70a876d9376
60686 Author: Martin Krause <martin.krause@tqs.de>
60687 Date: Wed Sep 26 17:55:56 2007 +0200
60688
60689 TQM885D: adjust for doubled flash sector size + some minor fixes
60690
60691 Signed-off-by: Martin Krause <martin.krause@tqs.de>
60692
60693 commit 22d1a56cbfb0bff34f477b4db6a55d076d829b83
60694 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
60695 Date: Wed Sep 26 17:55:54 2007 +0200
60696
60697 TQM885D: Exchanged SDRAM timing by a more relaxed timing.
60698
60699 CAS-Latency=2, Write Recovery Time tWR=2
60700 The max. supported bus frequency is 66 MHz. Therefore, changed
60701 threshold to switch from 1:1 mode to 2:1 from 80 MHz to 66 MHz.
60702
60703 Signed-off-by: Martin Krause <martin.krause@tqs.de>
60704
60705 commit b988b8cd443989be65161888eea0127ad03f846f
60706 Author: Martin Krause <martin.krause@tqs.de>
60707 Date: Wed Sep 26 17:55:56 2007 +0200
60708
60709 TQM885D: use calculated cpuclk instead of measuring it
60710
60711 On the TQM885D the measurement of cpuclk with the PIT reference
60712 timer ist not necessary. Since all module variants use the same
60713 external 10 MHz oscillator, the cpuclk only depends on the PLL
60714 configuration - which is readable by software.
60715
60716 Signed-off-by: Martin Krause <martin.krause@tqs.de>
60717
60718 commit 492c7049869348d31168de8dad89651315e468e0
60719 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
60720 Date: Thu Sep 27 14:54:46 2007 +0200
60721
60722 TQM885D: fix SDRAM refresh
60723
60724 At 133 MHz the current SDRAM refresh rate is too fast
60725 (measured 4 * 1.17 us).
60726 CFG_MAMR_PTA changes from 39 to 128. This result
60727 in a refresh rate of 4 * 7.8 us at the default clock
60728 66 MHz. At 133 MHz the value will be then 4 * 3.8 us.
60729 This is a compromise until a new method is found to
60730 adjust the refresh rate.
60731
60732 Signed-off-by: Martin Krause <martin.krause@tqs.de>
60733
60734 commit dabad4b9bc46908e301f73ce76b38b23626a96e9
60735 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
60736 Date: Thu Sep 27 14:54:46 2007 +0200
60737
60738 TQM860M: Support for 10col SDRAMs, max. 128 MiB
60739
60740 Signed-off-by: Martin Krause <martin.krause@tqs.de>
60741
60742 commit 61fb15c516fef5631e305f1976d7b3a679725856
60743 Author: Wolfgang Denk <wd@denx.de>
60744 Date: Thu Dec 27 01:52:50 2007 +0100
60745
60746 Fix coding style issues; update CHANGELOG.
60747
60748 Signed-off-by: Wolfgang Denk <wd@denx.de>
60749
60750 commit 467bcee11fe26ad422f2de971aa70866079870f2
60751 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60752 Date: Fri Dec 14 15:36:18 2007 +0100
60753
60754 cfi_flash: Add manufacturer-specific fixups
60755
60756 Run fixups based on the JEDEC manufacturer ID independent of the
60757 command set ID.
60758
60759 This changes current behaviour: Previously, geometry reversal for AMD
60760 chips were done based on the command set ID, while they are now done
60761 based on the JEDEC manufacturer and device ID.
60762
60763 Also add fixup for top-boot Atmel chips. A fixup is needed for
60764 AT49BV6416(T) too, but since u-boot currently only reads the low byte
60765 of the device ID, there's no way to tell it apart from AT49BV642D,
60766 which should not have this fixup. Since AT49BV642D support is
60767 necessary to get ATNGW100 board support into mainline, I've commented
60768 out the fixup for now.
60769
60770 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60771
60772 commit 0ddf06ddf6b4bd057ad4c5f0dffea7870ba06a2a
60773 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60774 Date: Fri Dec 14 15:36:17 2007 +0100
60775
60776 cfi_flash: Add cmdset-specific init functions
60777
60778 Move things like reading JEDEC IDs and fixing up geometry reversal
60779 into separate functions. The geometry reversal fixup is now performed
60780 by altering the qry structure directly, which makes the sector init
60781 code slightly cleaner.
60782
60783 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60784
60785 commit e23741f4a6d8047520ef0d4971762749b3587d32
60786 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60787 Date: Fri Dec 14 15:36:16 2007 +0100
60788
60789 cfi_flash: Read whole QRY structure in one go
60790
60791 Read out the whole CFI Standard Query structure after successful cfi
60792 identification. This allows subsequent code to access this information
60793 directly without having to go through flash_read_uchar() and friends.
60794
60795 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60796
60797 commit df9c25ea04b38a0e05d4f8c73c5cc144cdafa7db
60798 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60799 Date: Mon Dec 17 11:02:44 2007 +0100
60800
60801 AVR32: Fix logic inversion in disable_interrupts()
60802
60803 disable_interrupts() should return nonzero if interrupts were
60804 _enabled_ before, not disabled.
60805
60806 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60807
60808 commit acac475212cbedb17b321a363a1c878e2b47b37f
60809 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60810 Date: Fri Dec 14 16:51:22 2007 +0100
60811
60812 AVR32: Enable interrupts at bootup
60813
60814 The timer code depends on the timer interrupt to keep track of the
60815 upper 32 bits of the cycle counter. This obviously doesn't work when
60816 interrupts are disabled the whole time.
60817
60818 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60819
60820 commit 9570bcd87f4db255514f43b6701746c412f8fef0
60821 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60822 Date: Thu Nov 15 10:03:45 2007 +0100
60823
60824 AVR32: Fix wrong pin setup for USART3
60825
60826 As reported by Gerhard Berghofer:
60827
60828 in "gpio_enable_usart3" the correct pins for USART 3 are PB17 and PB18
60829 instead of PB18 and PB19.
60830
60831 which is obviously correct. There's currently no code that uses
60832 USART3, but custom boards may run into problems.
60833
60834 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60835
60836 commit 09ea0de03dcc3ee7af045b0b572227bda2c1c918
60837 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60838 Date: Thu Nov 1 12:44:20 2007 +0100
60839
60840 README: Remove ATSTK1000 daughterboard list
60841
60842 As noted by Kim Phillips, these lists tend to become out of date.
60843
60844 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60845
60846 commit c81cbbad21cb0ae983e2e796211202234cdc8be2
60847 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60848 Date: Tue Oct 30 14:56:36 2007 +0100
60849
60850 Add ATSTK100[234] to MAINTAINERS
60851
60852 Add all the ATSTK1000 daughterboards to MAINTAINERS along with their
60853 "mother". Also update the entry for ATSTK1000 to be not only about the
60854 AP7000 CPU; it's intended to handle all CPUs in the AT32AP family.
60855
60856 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60857
60858 commit 64ff2357b1727213803591813dbc779c924bf772
60859 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60860 Date: Mon Oct 29 13:02:54 2007 +0100
60861
60862 AVR32: Add support for the ATSTK1004 board
60863
60864 ATSTK1004 is a daughterboard for ATSTK1000 with the AT32AP7002 CPU,
60865 which is a derivative of AT32AP7000.
60866
60867 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60868
60869 commit 667568db157f374b85abd7e03596ddd1f0b25681
60870 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60871 Date: Mon Oct 29 13:02:54 2007 +0100
60872
60873 AVR32: Add support for the ATSTK1003 board
60874
60875 ATSTK1003 is a daughterboard for ATSTK1000 with the AT32AP7001 CPU,
60876 which is a derivative of AT32AP7000.
60877
60878 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60879
60880 commit 5fee84a794a51ec830548cda485a770efb018b92
60881 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60882 Date: Mon Oct 29 13:23:33 2007 +0100
60883
60884 AVR32: Make some AT32AP700x peripherals optional
60885
60886 Add a chip-features file providing definitions of the form
60887
60888 AT32AP700x_CHIP_HAS_<peripheral>
60889
60890 to indicate the availability of the given peripheral on the currently
60891 selected chip.
60892
60893 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60894
60895 commit 36f28f8a9605ee5dcfa330482cfc62171261af97
60896 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60897 Date: Mon Oct 29 13:09:56 2007 +0100
60898
60899 AVR32: Rename at32ap7000 -> at32ap700x
60900
60901 The SoC-specific code for all the AT32AP700x CPUs is practically
60902 identical; the only difference is that some chips have less features
60903 than others. By doing this rename, we can add support for the AP7000
60904 derivatives simply by making some features conditional.
60905
60906 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60907
60908 commit 4d5fa99c73f354e7cf985efcf417ea55ca2f6a5e
60909 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60910 Date: Fri Jun 29 18:22:34 2007 +0200
60911
60912 atmel_mci: Show SR when block read fails
60913
60914 Show controller status as well as card status when an error occurs
60915 during block read.
60916
60917 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60918
60919 commit 8697e6a19b10f514511b6a9c86de88bd108c4f8d
60920 Author: Stefan Roese <sr@denx.de>
60921 Date: Thu Dec 13 14:52:53 2007 +0100
60922
60923 ppc4xx: Bring 4xx fdt support up-to-date
60924
60925 This patch update the 4xx fdt support. It enabled fdt booting
60926 on the AMCC Kilauea and Sequoia for now. More can follow later
60927 quite easily.
60928
60929 Signed-off-by: Stefan Roese <sr@denx.de>
60930
60931 commit 12d30aa79779c2aa7a998bbae4c075f822a53004
60932 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60933 Date: Thu Dec 13 12:56:34 2007 +0100
60934
60935 cfi_flash: Use map_physmem() and unmap_physmem()
60936
60937 Use map_physmem() and unmap_physmem() to convert from physical to
60938 virtual addresses. This gives the arch a chance to provide an uncached
60939 mapping for flash accesses.
60940
60941 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60942
60943 commit 4d7d6936eb29af7cca330937808312aa5f61454d
60944 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60945 Date: Thu Dec 13 12:56:33 2007 +0100
60946
60947 Introduce map_physmem() and unmap_physmem()
60948
60949 map_physmem() returns a virtual address which can be used to access a
60950 given physical address without involving the cache. unmap_physmem()
60951 should be called when the virtual address returned by map_physmem() is
60952 no longer needed.
60953
60954 This patch adds a stub implementation which simply returns the
60955 physical address cast to a uchar * for all architectures except AVR32,
60956 which converts the physical address to an uncached virtual mapping.
60957 unmap_physmem() is a no-op on all architectures, but if any
60958 architecture needs to do such mappings through the TLB, this is the
60959 hook where those TLB entries can be invalidated.
60960
60961 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60962
60963 commit cdbaefb5f5f03e54455d0439dcf6dbd97ead1f9d
60964 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60965 Date: Thu Dec 13 12:56:32 2007 +0100
60966
60967 cfi_flash: Introduce read and write accessors
60968
60969 Introduce flash_read{8,16,32,64) and flash_write{8,16,32,64} and use
60970 them to access the flash memory. This makes it clearer when the flash
60971 is actually being accessed; merely dereferencing a volatile pointer
60972 looks just like any other kind of access.
60973
60974 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60975
60976 commit 812711ce6b3a386125dcf0d6a59588e461abbb87
60977 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60978 Date: Thu Dec 13 12:56:31 2007 +0100
60979
60980 Implement __raw_{read,write}[bwl] on all architectures
60981
60982 This adds implementations of __raw_read[bwl] and __raw_write[bwl] to
60983 m68k, ppc, nios and nios2. The m68k and ppc implementations were taken
60984 from Linux.
60985
60986 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60987
60988 commit be60a9021c82fc5aecd5b2b1fc96f70a9c81bbcd
60989 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60990 Date: Sat Oct 6 18:55:36 2007 +0200
60991
60992 cfi_flash: Reorder functions and eliminate extra prototypes
60993
60994 Reorder the functions in cfi_flash.c so that each function only uses
60995 functions that have been defined before it. This allows the static
60996 prototype declarations near the top to be eliminated and might allow
60997 gcc to do a better job inlining functions.
60998
60999 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
61000
61001 commit 3055793bcbdf24b1f8117f606ffb766d32eb766f
61002 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
61003 Date: Thu Dec 13 12:56:29 2007 +0100
61004
61005 cfi_flash: Make some needlessly global functions static
61006
61007 Make functions not declared in any header file static.
61008
61009 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
61010
61011 commit 7e5b9b471518c5652febc68ba62b432193d6abf4
61012 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
61013 Date: Thu Dec 13 12:56:28 2007 +0100
61014
61015 cfi_flash: Break long lines
61016
61017 This patch tries to keep all lines in the cfi_flash driver below 80
61018 columns. There are a few lines left which don't fit this requirement
61019 because I couldn't find any trivial way to break them (i.e. it would
61020 take some restructuring, which I intend to do in a later patch.)
61021
61022 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
61023
61024 commit 42026c9cb3a76849b41e6e24abfb7b56807a5c1a
61025 Author: Bartlomiej Sieka <tur@semihalf.com>
61026 Date: Tue Dec 11 13:59:57 2007 +0100
61027
61028 CFI: synchronize command offsets with Linux CFI driver
61029
61030 Fixes non-working CFI Flash on the Inka4x0 board.
61031
61032 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
61033
61034 commit 8ff3de61fc5f9b3b21647bce081a3b7f710f0d4d
61035 Author: Kumar Gala <galak@kernel.crashing.org>
61036 Date: Fri Dec 7 12:17:34 2007 -0600
61037
61038 Handle MPC85xx PCIe reset errata (PCI-Ex 38)
61039
61040 On the MPC85xx boards that have PCIe enable the PCIe errata fix.
61041 (MPC8544DS, MPC8548CDS, MPC8568MDS).
61042
61043 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61044
61045 commit 82ac8c97145a4c3bf8b3dbfad00fa96e920f9b9c
61046 Author: Kumar Gala <galak@kernel.crashing.org>
61047 Date: Fri Dec 7 12:04:30 2007 -0600
61048
61049 Update Freescale MPC85xx ADS/CDS/MDS board config
61050
61051 * Enabled CONFIG_CMD_ELF
61052
61053 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61054
61055 commit d435793229ce29a42797c1edc39f5b34f987f91a
61056 Author: Kumar Gala <galak@kernel.crashing.org>
61057 Date: Fri Dec 7 04:59:26 2007 -0600
61058
61059 Handle Asynchronous DDR clock on 85xx
61060
61061 The MPC8572 introduces the concept of an asynchronous DDR clock with
61062 regards to the platform clock.
61063
61064 Introduce get_ddr_freq() to report the DDR freq regardless of sync/async
61065 mode.
61066
61067 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61068
61069 commit 22abb2d2eaf7b795a6923c6273ec9cb53fda9a10
61070 Author: Kumar Gala <galak@kernel.crashing.org>
61071 Date: Thu Nov 29 10:34:28 2007 -0600
61072
61073 Update Freescale MPC85xx ADS/CDS/MDS board config
61074
61075 * Removed some misc environment setup
61076 * Enabled CONFIG_CMDLINE_EDITING
61077
61078 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61079
61080 commit 415a613babb84d5e5d5b42e8e553868c71fc3a64
61081 Author: Kumar Gala <galak@kernel.crashing.org>
61082 Date: Thu Nov 29 10:47:44 2007 -0600
61083
61084 Move the MPC8541/MPC8555/MPC8548 CDS board under board/freescale.
61085
61086 Minor path corrections needed to ensure buildability.
61087
61088 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61089
61090 commit c2d943ffbfd3359b3b45d177b437379d2cb86fbf
61091 Author: Kumar Gala <galak@kernel.crashing.org>
61092 Date: Thu Nov 29 10:16:18 2007 -0600
61093
61094 Move the MPC8540 ADS board under board/freescale.
61095
61096 Minor path corrections needed to ensure buildability.
61097
61098 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61099
61100 commit 870ceac5b3a3486c109396e005af81ae762b5710
61101 Author: Kumar Gala <galak@kernel.crashing.org>
61102 Date: Thu Nov 29 10:14:50 2007 -0600
61103
61104 Move the MPC8560 ADS board under board/freescale.
61105
61106 Minor path corrections needed to ensure buildability.
61107
61108 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61109
61110 commit acbca876fb3fec25cd9c55b0efc81ff618ff5262
61111 Author: Kumar Gala <galak@kernel.crashing.org>
61112 Date: Thu Nov 29 10:13:47 2007 -0600
61113
61114 Move the MPC8568 MDS board under board/freescale.
61115
61116 Minor path corrections needed to ensure buildability.
61117
61118 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61119
61120 commit a853d56c59b33415304531443633808736acfc6e
61121 Author: Kumar Gala <galak@kernel.crashing.org>
61122 Date: Thu Nov 29 02:18:59 2007 -0600
61123
61124 Use standard LAWAR_TRGT_IF_* defines for LAW setup on 85xx
61125
61126 We already had defines for LAWAR_TRGT_IF_* that we should use
61127 rather than creating new ones. Also, added some missing defines for
61128 PCIE targets.
61129
61130 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61131
61132 commit 04db400892da37b76a585e332a0c137954ad2015
61133 Author: Kumar Gala <galak@kernel.crashing.org>
61134 Date: Thu Nov 29 02:10:09 2007 -0600
61135
61136 Stop using immap_t on 85xx
61137
61138 In the future the offsets to various blocks may not be in same location.
61139 Move to using CFG_MPC85xx_*_ADDR as the base of the registers
61140 instead of getting it via &immap.
61141
61142 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61143
61144 commit 2714223f8e04ab3e4133ff65872eef366d90bfea
61145 Author: Kumar Gala <galak@kernel.crashing.org>
61146 Date: Thu Nov 29 01:23:09 2007 -0600
61147
61148 Remove CONFIG_OF_FLAT_TREE related code from mpc85xx since we now use libfdt
61149
61150 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61151
61152 commit c480861bf000156e6a3e932c258db59ff2212dd3
61153 Author: Kumar Gala <galak@kernel.crashing.org>
61154 Date: Thu Nov 29 01:06:19 2007 -0600
61155
61156 Update MPC8568 MDS to use libfdt
61157
61158 Updated the MPC8568 MDS config to use libfdt and assume use of aliases for
61159 ethernet, pci, and serial for the various fixups that are done.
61160
61161 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61162
61163 commit 1563f56e0c68f6920f956382d6d13bee3f01c0f7
61164 Author: Haiying Wang <Haiying.Wang@freescale.com>
61165 Date: Wed Nov 14 15:52:06 2007 -0500
61166
61167 Add PCI Express support on MPC8568MDS
61168
61169 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
61170 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61171
61172 commit b90d25497625b90ffa3f2911a0895ca237556ff5
61173 Author: Kumar Gala <galak@kernel.crashing.org>
61174 Date: Thu Nov 29 00:11:44 2007 -0600
61175
61176 Update MPC85xx CDS to use libfdt
61177
61178 Updated the MPC85xx CDS config to use libfdt and assume use of aliases for
61179 ethernet, pci, and serial for the various fixups that are done.
61180
61181 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61182
61183 commit 0fd5ec66b10521a057ad73e69ab5f0f9eafba255
61184 Author: Kumar Gala <galak@kernel.crashing.org>
61185 Date: Wed Nov 28 22:54:27 2007 -0600
61186
61187 Update MPC8540 ADS to use libfdt
61188
61189 Updated the MPC8540 ADS config to use libfdt and assume use of aliases for
61190 ethernet, pci, and serial for the various fixups that are done.
61191
61192 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61193
61194 commit 5ce715802f6c50dc78b3405b92f184b1e3710519
61195 Author: Kumar Gala <galak@kernel.crashing.org>
61196 Date: Wed Nov 28 22:40:31 2007 -0600
61197
61198 Update MPC8560 ADS to use libfdt
61199
61200 Updated the MPC8560 ADS config to use libfdt and assume use of aliases for
61201 ethernet, pci, and serial for the various fixups that are done.
61202
61203 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61204
61205 commit aafeefbdb8b029f5ca2a195598d0a501a606eea9
61206 Author: Kumar Gala <galak@kernel.crashing.org>
61207 Date: Wed Nov 28 00:36:33 2007 -0600
61208
61209 Stop using immap_t for cpm offset on 85xx
61210
61211 In the future the offsets to various blocks may not be in same location.
61212 Move to using CFG_MPC85xx_CPM_ADDR as the base of the CPM registers
61213 instead of getting it via &immap->im_cpm.
61214
61215 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61216
61217 commit f59b55a5b8fcadaa99781ba48e7a38e956afa527
61218 Author: Kumar Gala <galak@kernel.crashing.org>
61219 Date: Tue Nov 27 23:25:02 2007 -0600
61220
61221 Stop using immap_t for guts offset on 85xx
61222
61223 In the future the offsets to various blocks may not be in same location.
61224 Move to using CFG_MPC85xx_GUTS_ADDR as the base of the guts registers
61225 instead of getting it via &immap->im_gur.
61226
61227 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61228
61229 commit 50c03c8cf494d91cdec39670d95337c743e16ec9
61230 Author: Kumar Gala <galak@kernel.crashing.org>
61231 Date: Tue Nov 27 22:42:34 2007 -0600
61232
61233 Update MPC8544 DS config
61234
61235 * Removed HAS_ETH2/HAS_ETH3 - MPC8544 only has TSEC1/2
61236 * Removed some misc environment setup
61237 * Moved to using fdtfile & fdtaddr as fdt env var names
61238 * Enabled CONFIG_CMDLINE_EDITING
61239
61240 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61241
61242 commit addce57e2e4c49e77ffb2020a84690713bb18b47
61243 Author: Kumar Gala <galak@kernel.crashing.org>
61244 Date: Mon Nov 26 17:12:24 2007 -0600
61245
61246 Update MPC8544DS to use libfdt
61247
61248 Updated the MPC8544DS config to use libfdt and assume use of aliases for
61249 ethernet, pci, and serial for the various fixups that are done.
61250
61251 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61252
61253 commit f852ce72f100cabd1f11c21c085a0ad8eca9fb65
61254 Author: Kumar Gala <galak@kernel.crashing.org>
61255 Date: Thu Nov 29 00:15:30 2007 -0600
61256
61257 Add libfdt based ft_cpu_setup for mpc85xx
61258
61259 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61260
61261 commit 3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9
61262 Author: Stefan Roese <sr@denx.de>
61263 Date: Tue Dec 11 13:38:19 2007 +0100
61264
61265 ppc4xx: Correct GPIO offset in gpio_config()
61266
61267 Thanks to Gary Jennejohn for pointing this out.
61268
61269 Signed-off-by: Stefan Roese <sr@denx.de>
61270
61271 commit 8809a2713b1ceaf3da55d9d785470294f15de06a
61272 Author: Stefan Roese <sr@denx.de>
61273 Date: Tue Dec 11 11:46:01 2007 +0100
61274
61275 rtc: Fix merging problem
61276
61277 Signed-off-by: Stefan Roese <sr@denx.de>
61278
61279 commit 7cfc12a7dcfdb350e2ab76db4dafcc30f7e77c2b
61280 Author: Stefan Roese <sr@denx.de>
61281 Date: Sat Dec 8 14:47:34 2007 +0100
61282
61283 ppc4xx: 405EX: Correctly enable USB pins
61284
61285 This patch selects the USB data pins in the 405EX GPIO and MFC (multi
61286 function control) registers. This is done for the AMCC Kilauea and
61287 Makalu eval boards.
61288
61289 Signed-off-by: Stefan Roese <sr@denx.de>
61290
61291 commit 9692c2734a47f23b44a0f68042a3e2ca8d1bfb39
61292 Author: Stefan Roese <sr@denx.de>
61293 Date: Sat Dec 8 08:25:09 2007 +0100
61294
61295 CFI: Coding style cleanup
61296
61297 Signed-off-by: Stefan Roese <sr@denx.de>
61298
61299 commit 81b20ccc2d795ae9a1199db5a50ad9c28d1e4d22
61300 Author: Michael Schwingen <michael@schwingen.org>
61301 Date: Fri Dec 7 23:35:02 2007 +0100
61302
61303 CFI: support JEDEC flash roms in CFI-flash framework
61304
61305 The following patch adds support for non-CFI flash ROMS, by hooking into the
61306 CFI flash code and using most of its code, as recently discussed here in the
61307 thread "Mixing CFI and non-CFI flashs".
61308
61309 Signed-off-by: Michael Schwingen <michael@schwingen.org>
61310 Signed-off-by: Stefan Roese <sr@denx.de>
61311
61312 commit c01b17dd856fa120b2970f50d9598546a4927ec3
61313 Author: Gerald Van Baren <vanbaren@cideas.com>
61314 Date: Wed Nov 28 21:24:50 2007 -0500
61315
61316 Conditionally compile fdt_fixup_ethernet()
61317
61318 Fix compiler warnings: On boards that don't have ethernets defined,
61319 don't compile fdt_fixup_ethernet().
61320
61321 commit 246d4ae6bc282bc1841224e1c5fc49dc925e0bf7
61322 Author: Kumar Gala <galak@kernel.crashing.org>
61323 Date: Tue Nov 27 21:59:46 2007 -0600
61324
61325 Convert boards that set memory node to use fdt_fixup_memory()
61326
61327 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61328
61329 commit 151c8b09b35eebe8fd9139cb6c1d91c27b22f058
61330 Author: Kumar Gala <galak@kernel.crashing.org>
61331 Date: Mon Nov 26 17:06:15 2007 -0600
61332
61333 Added fdt_fixup_stdout that uses aliases to set linux,stdout-path
61334
61335 We use a combination of the serialN alias and CONFIG_CONS_INDEX to
61336 determine which serial alias we should set linux,stdout-path to.
61337
61338 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61339
61340 commit 3c9272813fad84c691d0e4989bb18a3ffebdebfc
61341 Author: Kumar Gala <galak@kernel.crashing.org>
61342 Date: Mon Nov 26 14:57:45 2007 -0600
61343
61344 Add common memory fixup function
61345
61346 Add the function fdt_fixup_memory() to fixup the /memory node of the fdt
61347
61348 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61349
61350 commit 9c9109e7fcf7ac2ca19c95b8ac54b8d1c773b157
61351 Author: Kumar Gala <galak@kernel.crashing.org>
61352 Date: Mon Nov 26 11:19:12 2007 -0600
61353
61354 Conditionally compile fdt_support.c
61355
61356 Modify common/Makefile to conditionally compile fdt_support.c based
61357 on CONFIG_OF_LIBFDT.
61358
61359 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61360
61361 commit d88e7ba0980773479e1a64badb293116071b7ef0
61362 Author: Kumar Gala <galak@kernel.crashing.org>
61363 Date: Mon Nov 26 10:41:40 2007 -0600
61364
61365 Fix build breakage due to libfdt import
61366
61367 The IDS8247 got lost in the update and need an API update
61368 do to rename of functions in libfdt.
61369
61370 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61371
61372 commit 28f384b171bbf1fb2dafb1046e6d259a6b2f8714
61373 Author: Gerald Van Baren <vanbaren@cideas.com>
61374 Date: Fri Nov 23 19:43:20 2007 -0500
61375
61376 Add spaces around the = in the fdt print format.
61377
61378 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
61379
61380 commit 29592ecba3b932b9b152bcec6c0c0806412db4a3
61381 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61382 Date: Fri Dec 7 01:25:38 2007 +0900
61383
61384 sh: Moved driver of the SuperH dependence
61385
61386 The composition of the directory in the drivers/ changed.
61387 I moved SuperH serial driver and marubun PCMCIA driver.
61388
61389 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61390
61391 commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2
61392 Author: Wolfgang Denk <wd@denx.de>
61393 Date: Thu Dec 6 10:21:19 2007 +0100
61394
61395 Release v1.3.1
61396
61397 Signed-off-by: Wolfgang Denk <wd@denx.de>
61398
61399 commit cf5933ba1e97a1cd8f5f24070e820f21d976eaeb
61400 Author: Wolfgang Denk <wd@denx.de>
61401 Date: Thu Dec 6 10:21:03 2007 +0100
61402
61403 ADS5121 Board: fix compile problem.
61404
61405 Signed-off-by: Wolfgang Denk <wd@denx.de>
61406
61407 commit a27044b14a9e93678a82d7b35f202b93e7687abc
61408 Author: Stefan Roese <sr@denx.de>
61409 Date: Thu Dec 6 05:58:43 2007 +0100
61410
61411 ppc4xx: Enable hardware-fix for PCI/DMA errata on AMCC 440SP/SPe boards
61412
61413 This patch enables the hardware-fix for the PCI/DMA errata's 19+22 by
61414 setting the FIXD bit in the SDR0_MFR register. Here a description of the
61415 symptoms:
61416
61417 Problem Description
61418 ------------------------------
61419 If a DMA is performed between memory and PCI with the DMA 1 Controller
61420 using prefetch, and as a result uses a special purpose buffer selected by
61421 the PCIXn Bridge Options 1 Register (PCIXn_BRDGOPT1[RBP7] - bits 31-29),
61422 the first part of the transfer sequence is performed twice. The
61423 PPC440SPe PCI Controller requests more data than was needed such that in
61424 the case of enforce memory protection, a host CPU exception can occur.
61425 No data is corrupted, because data transfer is stopped in the PCI
61426 Controller. Prefetch enable is specified by setting DMA Configuration
61427 Register (I2O0_DMAx_CFG[DXEPD] - bit 31) to 0.
61428
61429 Behavior that may be observed in a running system
61430 ---------------------------------------------------------------------------
61431
61432 1. DMA performance is decreased because of the double access on the PCI bus
61433 interface.
61434 2. If an illegal access to some address on the PCI bus is detected at the
61435 system level, a machine check or similar system error may occur.
61436
61437 Workarounds Available
61438 ----------------------------------
61439
61440 1. Do not program prefetch. Note that a prefetch command cannot be programmed
61441 without selecting a special purpose buffer.
61442 2. To avoid crossing a physical boundary of the PCI slave device, add 512
61443 bytes of address to the PCI address range.
61444
61445 This patch was originally provided by Pravin M. Bathija <pbathija@amcc.com>
61446 from AMCC and slighly changed.
61447
61448 Signed-off-by: Pravin M. Bathija <pbathija@amcc.com>
61449 Signed-off-by: Stefan Roese <sr@denx.de>
61450
61451 commit a90921f71d225bf9e0f0fc7b8beadeb8001bf78a
61452 Author: Stefan Roese <sr@denx.de>
61453 Date: Tue Dec 4 16:29:48 2007 +0100
61454
61455 ppc4xx: Yosemite/Yellowstone: Add DTT AD7414 support
61456
61457 Signed-off-by: Stefan Roese <sr@denx.de>
61458
61459 commit 8d4f040a3c15036a6ea25a9c39e7d89fefa8440d
61460 Author: Wolfgang Denk <wd@denx.de>
61461 Date: Mon Dec 3 00:15:28 2007 +0100
61462
61463 Prepare for 1.3.1-rc1
61464
61465 Signed-off-by: Wolfgang Denk <wd@denx.de>
61466
61467 commit e15e33433e7c05111968dc9b434a52fd42cbd221
61468 Author: Stefan Roese <sr@denx.de>
61469 Date: Fri Nov 30 07:15:41 2007 +0100
61470
61471 ppc4xx: Kilauea: Add PCIe reset assertion upon power-up
61472
61473 This manual PCIe reset triggering solves the problem seen with the
61474 Intel EPRO/1000 card, which was not detected (link not established)
61475 upon power-up reset.
61476
61477 Signed-off-by: Stefan Roese <sr@denx.de>
61478
61479 commit 260eea5676ca46903a335686cc020b29c4ca46fe
61480 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61481 Date: Thu Nov 29 01:21:54 2007 +0900
61482
61483 sh: Add SuperH boards maintainer to MAINTAINERS file
61484
61485 Add MS7750SE and MS7722SE's board maintainer to MAINTAINERS file.
61486
61487 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61488
61489 commit aa9c4f1d22701a92347c1c81f34d12c8ad3a3747
61490 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61491 Date: Thu Nov 29 00:13:04 2007 +0900
61492
61493 sh: Add ms7750se support in MAKEALL
61494
61495 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61496
61497 commit c7144373427a178332bf9754131c8c34c52c200a
61498 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61499 Date: Tue Nov 27 09:44:53 2007 +0100
61500
61501 sh: Add sh3 and sh4 support in MAKEALL
61502
61503 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61504 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61505
61506 commit 130080874a3d28450098481a262c5f7c855e908d
61507 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61508 Date: Sun Nov 25 02:51:17 2007 +0900
61509
61510 sh: Add document for SuperH.
61511
61512 This document is a summary of information concerning SuperH of U-Boot.
61513
61514 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61515
61516 commit 33ecdc2f9d64926e1a6067b28f3a0aefc3b6d23d
61517 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61518 Date: Sun Nov 25 02:39:31 2007 +0900
61519
61520 sh: Add marubun's pcmcia driver
61521
61522 Marubun pcmcia is a chip for PCMCIA used with SuperH.
61523 Of course, this can be used even by other architectures.
61524 When use this driver, came to be able to use CompactFlash
61525 and Ethernet.
61526
61527 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61528
61529 commit febd86b969b975289ed948f1ac0eb9722da41ced
61530 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61531 Date: Sun Nov 25 02:32:13 2007 +0900
61532
61533 sh: Update SuperH SCIF driver
61534
61535 - Changed volatile unsigned to vu_.
61536 - Changed Makefile for kconfig.
61537
61538 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61539
61540 commit 8be760903645af09871be50ad0a6f9ebb62b311d
61541 Author: Stefan Roese <sr@denx.de>
61542 Date: Tue Nov 27 11:57:35 2007 +0100
61543
61544 ppc4xx: Kilauea & Makalu: Fix ext IRQ pin multiplexing
61545
61546 After an error in the AMCC 405EX users manual now correctly configure
61547 IRQ2 (Kilauea)/IRQ0 (Makalu) as alternate 2 signal for external IRQ
61548 usage.
61549
61550 Signed-off-by: Stefan Roese <sr@denx.de>
61551
61552 commit a5f601fd1b1278deae5aa9fc27a232b0d1c1c788
61553 Author: Wolfgang Denk <wd@denx.de>
61554 Date: Mon Nov 26 19:18:21 2007 +0100
61555
61556 Cleanup coding style; update CHANGELOG
61557
61558 Signed-off-by: Wolfgang Denk <wd@denx.de>
61559
61560 commit 3deca9d44767efd1b83f4b701f0dbf21a7595f7b
61561 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61562 Date: Sun Nov 25 22:39:25 2007 +0100
61563
61564 MAKEALL: add missing 512x boards in ppc
61565
61566 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61567
61568 commit a340c325e668ca7386c2276387681720be9c3757
61569 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61570 Date: Sun Nov 25 18:45:47 2007 +0100
61571
61572 Makefile : fix tags ctags etags with new drivers organization
61573
61574 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61575
61576 commit 63362cfc6baa97ae0e37ba2c6ece530fcac9f79e
61577 Author: Stefan Roese <sr@denx.de>
61578 Date: Mon Nov 26 15:06:14 2007 +0100
61579
61580 ppc4xx: Makalu: Change EBC setup for CS0 to enable 400MHz usage
61581
61582 As suggested by Senao, use a different EBC_PB0AP setup for 400MHz
61583 operation.
61584
61585 Signed-off-by: Stefan Roese <sr@denx.de>
61586
61587 commit ca1ce226287270bb01e25b8e3674c701f12edf19
61588 Author: Stefan Roese <sr@denx.de>
61589 Date: Mon Nov 26 15:01:45 2007 +0100
61590
61591 ppc4xx: Kilauea: Configure pin mux to use ext IRQ2 as interrupt
61592
61593 Signed-off-by: Stefan Roese <sr@denx.de>
61594
61595 commit 87ddedd6ad804427ce125ceaa076d7a4f74e9d5d
61596 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61597 Date: Sun Nov 25 18:45:47 2007 +0100
61598
61599 Makefile : fix tags ctags etags with new drivers organization
61600
61601 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61602
61603 commit 59829cc189378c142c13d2aa8d9a897d8bef3961
61604 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61605 Date: Sat Nov 24 21:26:56 2007 +0100
61606
61607 drivers/mtd : move mtd drivers to drivers/mtd
61608
61609 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61610
61611 commit 318c0b90431f2648552e5ade78833f42652ce859
61612 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61613 Date: Sat Nov 24 21:17:55 2007 +0100
61614
61615 drivers/misc : move misc drivers to drivers/misc
61616
61617 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61618
61619 commit 33daf5b7858807cb4ce4158c2c56524671c14c08
61620 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61621 Date: Sat Nov 24 21:13:59 2007 +0100
61622
61623 drivers/block : move block drivers to drivers/block
61624
61625 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61626
61627 commit 0c698dcaa70275eb8814f665b545547cee013892
61628 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61629 Date: Sat Nov 24 20:59:50 2007 +0100
61630
61631 drivers/rtc : move rtc drivers to drivers/rtc
61632
61633 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61634
61635 commit f868cc5a50757d94f36c312395481cb0f187d9e6
61636 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61637 Date: Sat Nov 24 20:14:44 2007 +0100
61638
61639 drivers/hwmon : move hardware monitor drviers to drivers/hwmon
61640
61641 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61642
61643 commit 16b195c82a18cbfd164800f17a1ef9db2e48331a
61644 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61645 Date: Sat Nov 24 19:46:45 2007 +0100
61646
61647 drivers/input : move input drivers to drivers/input
61648
61649 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61650
61651 commit e4558666293364fc3af1c1d9381ca933fa0f1275
61652 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61653 Date: Sat Nov 24 19:40:11 2007 +0100
61654
61655 drivers/usb : move usb drivers to drivers/usb
61656
61657 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61658
61659 commit 1378df792a7ff3abd1bf54a63f5475784f5b083c
61660 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61661 Date: Sat Nov 24 19:33:38 2007 +0100
61662
61663 drivers/serial : move serial drivers to drivers/serial
61664
61665 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61666
61667 commit 2439e4bfa111babf4bc07ba20efbf3e36036813e
61668 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61669 Date: Wed Nov 21 21:19:24 2007 +0100
61670
61671 drivers/net : move net drivers to drivers/net
61672
61673 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61674
61675 commit 352d259130b349fe9593b8dada641bd78a9659e5
61676 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61677 Date: Tue Nov 20 20:41:48 2007 +0100
61678
61679 drivers/video : move video drivers to drivers/video
61680
61681 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61682
61683 commit 73646217186aa17afc8e305c5f06f06dd335eaad
61684 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61685 Date: Tue Nov 20 20:33:09 2007 +0100
61686
61687 drivers/pcmcia : move pcmcia drivers to drivers/pcmcia
61688
61689 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61690
61691 commit 93a686ee9c5ddc6fa368c32cfbfde6f6724599fc
61692 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61693 Date: Tue Nov 20 20:28:09 2007 +0100
61694
61695 drivers/pci : move pci drivers to drivers/pci
61696
61697 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61698
61699 commit 9162352817579840d7802da6d85872b3ca003c97
61700 Author: Gerald Van Baren <vanbaren@cideas.com>
61701 Date: Thu Nov 22 17:23:23 2007 -0500
61702
61703 Fix fdt printing for updated libfdt
61704
61705 Also improve printing (adopt dtc v1 "c style" hex format), whitespace cleanup.
61706
61707 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
61708
61709 commit 9eb77cea1fa12d5969eb26a1d1d81da381bd6b1c
61710 Author: Kumar Gala <galak@kernel.crashing.org>
61711 Date: Wed Nov 21 13:30:15 2007 -0600
61712
61713 Add additional fdt fixup helper functions
61714
61715 Added the following fdt fixup helpers:
61716 * do_fixup_by_prop{_u32} - Find matching nodes by property name/value
61717 * do_fixup_by_compat{_u32} - Find matching nodes by compat
61718
61719 The _u32 variants work the same only the property they are setting
61720 is know to be a 32-bit integer instead of a byte buffer.
61721
61722 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61723
61724 commit ab544633abdd14f4dd5d92e500b73eb59ef57e67
61725 Author: Kumar Gala <galak@kernel.crashing.org>
61726 Date: Wed Nov 21 11:11:03 2007 -0600
61727
61728 Add fdt_fixup_ethernet helper to set mac addresses
61729
61730 Added a fixup helper that uses aliases to set mac addresses
61731 in the device tree based on the bd_t
61732
61733 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61734
61735 commit dbaf07ce620aab249e3502b20a986234a6af1d3a
61736 Author: Kumar Gala <galak@kernel.crashing.org>
61737 Date: Wed Nov 21 14:07:46 2007 -0600
61738
61739 Fix warnings from import of libfdt
61740
61741 cmd_fdt.c: In function fdt_print:
61742 cmd_fdt.c:586: warning: assignment discards qualifiers from pointer target type
61743 cmd_fdt.c:613: warning: assignment discards qualifiers from pointer target type
61744 cmd_fdt.c:635: warning: assignment discards qualifiers from pointer target type
61745 cmd_fdt.c:636: warning: assignment discards qualifiers from pointer target type
61746
61747 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61748
61749 commit 8d04f02f6224e6983f4812ea4da704950ec8539c
61750 Author: Kumar Gala <galak@kernel.crashing.org>
61751 Date: Wed Oct 24 11:04:22 2007 -0500
61752
61753 Update libfdt from device tree compiler (dtc)
61754
61755 Update libfdt to commit 8eaf5e358366017aa2e846c5038d1aa19958314e from
61756 the device tree compiler (dtc) project.
61757
61758 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61759
61760 commit e93becf80d732b64aef81b23e8b6ece02c40533d
61761 Author: Kumar Gala <galak@kernel.crashing.org>
61762 Date: Sat Nov 3 19:46:28 2007 -0500
61763
61764 Move do_fixup* for libfdt into common code
61765
61766 Moved the generic fixup handling code out of cpu/mpc5xxx and cpu/mpc8260
61767 into common/fdt_support.c and renamed:
61768
61769 do_fixup() -> do_fixup_by_path()
61770 do_fixup_u32() -> do_fixup_by_path_u32()
61771
61772 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61773
61774 commit f738b4a75998f42a7408defadc9baac7a31c92db
61775 Author: Kumar Gala <galak@kernel.crashing.org>
61776 Date: Thu Oct 25 16:15:07 2007 -0500
61777
61778 Make no options to fdt print default to '/'
61779
61780 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61781
61782 commit a3c2933e02503fe36ade2c1b65af46f2b7a168e7
61783 Author: Kumar Gala <galak@kernel.crashing.org>
61784 Date: Wed Oct 24 10:21:57 2007 -0500
61785
61786 Removed some nonused fdt functions and moved fdt_find_and_setprop out of libfdt
61787
61788 Removed:
61789 fdt_node_is_compatible
61790 fdt_find_node_by_type
61791 fdt_find_compatible_node
61792
61793 To ease merge of newer libfdt as we aren't using them anywhere at this time.
61794
61795 Also moved fdt_find_and_setprop out of libfdt into fdt_support.c for the same
61796 reason.
61797
61798 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61799
61800 commit 98e2867cc85409b919f862e6c16026461ec955df
61801 Author: Grant Likely <grant.likely@secretlab.ca>
61802 Date: Wed Nov 21 09:19:37 2007 -0700
61803
61804 [BUILD] Remove libraries when updating autoconf.mk
61805
61806 Fix library problems caused by conditional compilation. Using
61807 autoconf.mk to decide which files to compile has caused a problem when
61808 changing configuration from one board to another without clearing out
61809 the library (*.a) files.
61810
61811 It used to be that the linker was always passed the same list of .o
61812 files when building the .a files. However, that is not longer true
61813 with conditional compilation. Now, a different board config will have
61814 a different file list passed to the linker. The problem occurs when
61815 a library has already been built and the board config is changed.
61816
61817 Since the linker will update instead of replace a preexisting library,
61818 then if the file list changes to remove some object files the old
61819 objects will still exist in the library.
61820
61821 The solution is to remove all old library files when autoconf.mk is
61822 made.
61823
61824 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
61825
61826 commit ed1353d74b9ce8a7fcd660570b848a184d614b5f
61827 Author: Kumar Gala <galak@kernel.crashing.org>
61828 Date: Wed Nov 21 08:49:50 2007 -0600
61829
61830 [BUILD] conditionally compile libfdt/*.c in libfdt/Makefile
61831
61832 Modify libfdt/Makefile to conditionally compile the *.c files based
61833 on the board config.
61834
61835 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61836
61837 commit 4a43719a7738712811d822ca8125427b27a55cdc
61838 Author: Grant Likely <grant.likely@secretlab.ca>
61839 Date: Mon Sep 24 09:05:31 2007 -0600
61840
61841 [BUILD] conditionally compile common/cmd_*.c in common/Makefile
61842
61843 Modify common/Makefile to conditionally compile the cmd_*.c files based
61844 on the board config.
61845
61846 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
61847
61848 commit 2f155f6c0a1f5e9a306a3f1f4fbe067db7ced3b1
61849 Author: Grant Likely <grant.likely@secretlab.ca>
61850 Date: Mon Sep 24 09:05:31 2007 -0600
61851
61852 [BUILD] Generate include/autoconf.mk from board config files
61853
61854 Use cpp and sed to postprocess config.h and import the defined values
61855 into include/autoconf.mk. autoconf.mk is then included by config.mk to
61856 give 'make' access to the board configuration.
61857
61858 Doing this enables conditional compilation at the Makefile level instead
61859 of by wrapping every .c file with #ifdef/#endif wrappers.
61860
61861 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
61862
61863 commit 68b88999da87ab88e71e1306192905be3450198e
61864 Author: Jon Loeliger <jdl@freescale.com>
61865 Date: Tue Nov 20 15:02:26 2007 -0600
61866
61867 8610HPCD: Enable the 8610 Display Interface Unit
61868
61869 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61870
61871 commit 74f89faa9d1e77ed947e628d3effaa513fe05d05
61872 Author: Jon Loeliger <jdl@freescale.com>
61873 Date: Tue Nov 20 15:00:53 2007 -0600
61874
61875 Move 8610 DIU interface structure definitions to header file.
61876
61877 These two structures are still needed during the
61878 initialization and setup of the DIU hardware.
61879 So move them to the fsl_diu_fb.h file for now.
61880 Official "blah".
61881
61882 Noticed-by: York Sun <yorksun@freescale.com>
61883 Signed-off-by: Jon Loeliger <jdl@freescale.com>
61884
61885 commit 080c646dbf474a109c3f85718fb01ce042a38c45
61886 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61887 Date: Tue Nov 20 20:14:18 2007 +0100
61888
61889 drivers/i2c : move i2c drivers to drivers/i2c
61890
61891 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61892
61893 commit 9a337ddc154a10a26f117fd147b009abcdeba75a
61894 Author: Wolfgang Denk <wd@denx.de>
61895 Date: Mon Nov 19 22:20:24 2007 +0100
61896
61897 Prepare for 1.3.0 release.
61898
61899 Signed-off-by: Wolfgang Denk <wd@denx.de>
61900
61901 commit f30ad49b16bf998b03c1a5228b6c86369d61c258
61902 Author: Haiying Wang <Haiying.Wang@freescale.com>
61903 Date: Mon Nov 19 10:02:13 2007 -0500
61904
61905 Move CONFIG_QE out of CONFIG_PCI wrap for MPC8568MDS
61906
61907 CONFIG_QE shouldn't be in the wrap of CONFIG_PCI, fix it.
61908
61909 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
61910
61911 commit f8c320609366176b31104d9bf5e295232e1c7f1d
61912 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
61913 Date: Mon Nov 19 11:14:16 2007 +0900
61914
61915 [MIPS] board/gth2/lowlevel_init.S: Fix a build warning
61916
61917 lowlevel_init.S: Assembler messages:
61918 lowlevel_init.S:413: Warning: Pretending global symbol used as branch target is local.
61919
61920 Looking at codes, the `memtest' and `clearmem' are intentional mixed
61921 use of `global symbols' and `label' for debugging purpose. To make it
61922 build, just disable global-symbols-use for now. As a result `memtest'
61923 still remains as unused, but leave it be...
61924
61925 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
61926
61927 commit e8da58f2bc092891e8cc92b927ed5c4bd0cb0cab
61928 Author: Wolfgang Denk <wd@denx.de>
61929 Date: Mon Nov 19 12:59:14 2007 +0100
61930
61931 Fix build problems with mp2usb board
61932
61933 Signed-off-by: Wolfgang Denk <wd@denx.de>
61934
61935 commit 6bf4c686afca1e86e1c384d59218f914605713bf
61936 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61937 Date: Sun Nov 18 18:36:11 2007 +0100
61938
61939 s3c24x0: Fix usb_ohci.c missing in Makefile
61940 and usb_ohci.c warning differ in signedness
61941
61942 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61943
61944 commit 6073f61e078da5ddb521b56256bcc36508589883
61945 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61946 Date: Sun Nov 18 12:55:02 2007 +0100
61947
61948 pb1x00 board: Fix u16 status declaration when PCMCIA is defined
61949
61950 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61951
61952 commit 8412d814ce8bf5570a2b747f1e7fd321097fe987
61953 Author: Wolfgang Denk <wd@denx.de>
61954 Date: Sun Nov 18 17:11:09 2007 +0100
61955
61956 Fix compiler warnings for ARM systems.
61957
61958 Signed-off-by: Wolfgang Denk <wd@denx.de>
61959
61960 commit 409ecdc0bb47dd28b0af6c25ffd658d22cc36b37
61961 Author: Wolfgang Denk <wd@denx.de>
61962 Date: Sun Nov 18 16:36:27 2007 +0100
61963
61964 Fix compiler warnings for PPC systems. Update CHANGELOG.
61965
61966 Signed-off-by: Wolfgang Denk <wd@denx.de>
61967
61968 commit 653811a3c2b35856bf12e196dcc8c4694e28e420
61969 Author: Stefan Roese <sr@denx.de>
61970 Date: Sun Nov 18 14:44:44 2007 +0100
61971
61972 ppc4xx: Correct 405EX PCIe UTL register mapping
61973
61974 Map 4k mem space for UTL registers for each port.
61975
61976 Signed-off-by: Stefan Roese <sr@denx.de>
61977
61978 commit 079c2c4fa71c0d1ebef394508df9088df8a308d3
61979 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61980 Date: Sat Nov 17 11:31:10 2007 +0100
61981
61982 Fix warning differ in signedness in net/net.c and net/nfs.c
61983
61984 commit 7e14fc65368cbd2861b1207453da55a4fc7b3f81
61985 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
61986 Date: Sat Nov 17 20:42:45 2007 +0900
61987
61988 gth2.c: Fix a warning on gth2 build.
61989
61990 gth2.c: In function 'misc_init_r':
61991 gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
61992
61993 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
61994
61995 commit 2309c130aa4c84b91bd874a41269c923eb61b555
61996 Author: Stefan Roese <sr@denx.de>
61997 Date: Sat Nov 17 07:58:25 2007 +0100
61998
61999 Fix warning differ in signedness in common/cmd_scsi.c
62000
62001 Signed-off-by: Stefan Roese <sr@denx.de>
62002
62003 commit 9ea61b57968554eaf0f474ec7e088b17d367f474
62004 Author: Stefan Roese <sr@denx.de>
62005 Date: Sat Nov 17 14:52:29 2007 +0100
62006
62007 ppc4xx: Update AMCC Kilauea config file
62008
62009 - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
62010
62011 Signed-off-by: Stefan Roese <sr@denx.de>
62012
62013 commit 7e1d884b7cb602007329c517ec1c453e3a6a5d9c
62014 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62015 Date: Sat Nov 17 20:05:26 2007 +0900
62016
62017 [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
62018
62019 Current trick to pick up GNU assembler minor version does not work with the
62020 latest binutils (2007-03-01 or later) due to ${PKGVERSION} now default to
62021 "(GNU Binutils) ".
62022
62023 $ sde-as --version |grep "GNU assembler"
62024 GNU assembler 2.15.94 mipssde-6.02.02-20050602
62025 $ sde-as --version |grep "GNU assembler" |awk '{print $3}'
62026 2.15.94
62027 $ sde-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
62028 15
62029 $
62030
62031 $ mips-linux-as --version |grep "GNU assembler"
62032 GNU assembler (GNU Binutils) 2.18
62033 $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}'
62034 (GNU
62035 $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
62036 (no output)
62037 $
62038
62039 As a result of above, you'll see many noises with such binutils:
62040
62041 make -C cpu/mips/
62042 /bin/sh: line 0: [: : integer expression expected
62043 /bin/sh: line 0: [: : integer expression expected
62044 make[1]: Entering directory `/home/skuribay/devel/u-boot.git/cpu/mips'
62045 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
62046 /bin/sh: line 0: [: : integer expression expected
62047 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
62048 /bin/sh: line 0: [: : integer expression expected
62049 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
62050 /bin/sh: line 0: [: : integer expression expected
62051
62052 This patch simplifies the trick and makes it work with both versions of gas.
62053 I also replace an expensive `awk (or gawk)' with `cut'.
62054
62055 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62056
62057 commit 16664f72850846e645616da1c0fa5afcd6d15f15
62058 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62059 Date: Sat Nov 17 20:05:26 2007 +0900
62060
62061 [MIPS] Remove useless instructions for initializing $gp.
62062
62063 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62064
62065 commit 03c031d5660ea946c39af6e2e16267da857c609f
62066 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62067 Date: Sat Oct 27 15:27:06 2007 +0900
62068
62069 [MIPS] MIPS 4K core: Coding style cleanups
62070
62071 No logical changes.
62072
62073 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62074
62075 commit f5e429d3860bba4c6ae8bead8f78349fa24491b2
62076 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62077 Date: Sat Nov 17 20:05:20 2007 +0900
62078
62079 [MIPS] gth2.c: Fix a warning on gth2 build.
62080
62081 gth2.c: In function 'misc_init_r':
62082 gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
62083
62084 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62085
62086 commit 4fbd0741b2b6441da10be93e10267122581b7079
62087 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62088 Date: Sat Oct 27 15:22:33 2007 +0900
62089
62090 [MIPS] au1x00_eth.c: Fixed a warning on pb1000 build.
62091
62092 au1x00_eth.c: In function 'au1x00_miiphy_write':
62093 au1x00_eth.c:139: warning: 'return' with no value, in function returning non-void
62094
62095 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62096
62097 commit f01320459736f156707425cf8112f98606301aa4
62098 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62099 Date: Sat Oct 27 15:00:25 2007 +0900
62100
62101 [MIPS] au1x00_eth.c: Fix au1x00_miiphy_{read,write} build error
62102
62103 au1x00_eth.c: In function 'au1x00_enet_initialize':
62104 au1x00_eth.c:246: error: 'au1x00_miiphy_read' undeclared (first use in this function)
62105 au1x00_eth.c:246: error: (Each undeclared identifier is reported only once
62106 au1x00_eth.c:246: error: for each function it appears in.)
62107 au1x00_eth.c:246: error: 'au1x00_miiphy_write' undeclared (first use in this function)
62108 au1x00_eth.c: In function 'au1x00_miiphy_write':
62109 au1x00_eth.c:298: warning: 'return' with no value, in function returning non-void
62110 make[1]: *** [au1x00_eth.o] Error 1
62111
62112 Fixed by moving these two functions forward.
62113
62114 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62115
62116 commit b09258c5393edd1087c5f39ae68338f16b49f8b3
62117 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62118 Date: Sat Oct 27 15:00:25 2007 +0900
62119
62120 MAKEALL: Added missing pb1000 board
62121
62122 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62123
62124 commit 2e4a6e3667a1e39c0e6e99498686b15d2718b369
62125 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62126 Date: Sat Oct 27 15:00:24 2007 +0900
62127
62128 [MIPS] pb1000: Replace obsolete memsetup.S with lowlevel_init.S
62129
62130 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62131
62132 commit 662e5cb397249c3ea88a4c3255e9ccfc40b98d82
62133 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62134 Date: Sat Oct 27 15:00:24 2007 +0900
62135
62136 [MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end}
62137
62138 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62139
62140 commit 5947f6999aafa7c54c1390983d264a8463dfea8e
62141 Author: Wolfgang Denk <wd@denx.de>
62142 Date: Sat Nov 17 02:34:38 2007 +0100
62143
62144 Update CHANGELOIG, prepare for -rc4
62145
62146 Signed-off-by: Wolfgang Denk <wd@denx.de>
62147
62148 commit fd329e6f05bbdfe6bd71b0e09f0c76d3b0a025a5
62149 Author: Luotao Fu <l.fu@pengutronix.de>
62150 Date: Wed Nov 14 18:58:33 2007 +0100
62151
62152 Fix the i2c frequency and default address in rsdproto board
62153
62154 rsdproto board support has wrong I2C frequency and wrong return value
62155 handling.
62156
62157 Signed-off-by: Luotao Fu <l.fu@pengutronix.de>
62158
62159 commit 429c180edad038f91c989cb14b478228092e7054
62160 Author: Wolfgang Denk <wd@denx.de>
62161 Date: Sat Nov 17 01:45:38 2007 +0100
62162
62163 powerpc: Backout relocation changes for MPC5121, too.
62164
62165 Apply Grant Likely's backout to MPC5121 code, too.
62166
62167 Pointed out by Rafal Jaworowski <raj@semihalf.com>
62168
62169 Signed-off-by: Wolfgang Denk <wd@denx.de>
62170
62171 commit 1c3dd43338a077165e7e0309cb3994e65d2bdbf8
62172 Author: Grant Likely <grant.likely@secretlab.ca>
62173 Date: Tue Nov 13 22:18:33 2007 -0700
62174
62175 powerpc: Backout relocation changes.
62176
62177 Ugh. I *hate* to back this change out, but these compiler flags don't
62178 work for relocation on all versions of GCC. I've not been able to
62179 reproduce the environment in my setup (and hence, not been able to
62180 find a combination that *does* work), so I've got no choice but to go
62181 back to the old gcc flags and linker script.
62182
62183 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62184
62185 commit 5c15010efad980ad5498cc565fc1ed70df2f52b4
62186 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62187 Date: Tue Nov 13 09:11:05 2007 +0100
62188
62189 Fixed mips_io_port_base build errors.
62190
62191 This patch has been sent on:
62192 - 29 Sep 2007
62193
62194 Although mips_io_port_base is currently a part of IDE command, it is quite
62195 fundamental for MIPS I/O port access such as in[bwl] and out[bwl]. So move
62196 it to MIPS general part, and introduce `set_io_port_base()' from Linux.
62197
62198 This patch is triggered by multiple definition of `mips_io_port_base' build
62199 error on gth2 (and tb0229 also needs this fix.)
62200
62201 board/gth2/libgth2.a(gth2.o): In function `log_serial_char':
62202 /home/skuribay/devel/u-boot.git/board/gth2/gth2.c:47: multiple definition of `mips_io_port_base'
62203 common/libcommon.a(cmd_ide.o):/home/skuribay/devel/u-boot.git/common/cmd_ide.c:712: first defined here
62204 make: *** [u-boot] Error 1
62205
62206 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62207 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62208
62209 commit 6ecbb7a3fa9b0940ed33e490d195d4b6830b2422
62210 Author: Wolfgang Denk <wd@denx.de>
62211 Date: Sat Nov 17 01:30:40 2007 +0100
62212
62213 Fix a bug in the slave serial programming mode for the Xilinx
62214 Spartan2/3 FPGAs. The old code used "< 0" on a "char" type to test if
62215 the most significant bit was set, which did not work on any
62216 architecture where "char" defaulted to be an unsigned type.
62217
62218 Based on a patch by Angelos Manousaridis <amanous@inaccessnetworks.com>
62219
62220 Signed-off-by: Wolfgang Denk <wd@denx.de>
62221
62222 commit d08b7233bc252faad8339e7ca0ddfd62fa79903c
62223 Author: Jon Loeliger <jdl@freescale.com>
62224 Date: Thu Nov 1 12:23:29 2007 -0500
62225
62226 86xx: Fix broken variable reference when #def DEBUGing.
62227
62228 Sometimes you can't reference the DDR2 controller variables.
62229
62230 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62231
62232 commit f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19
62233 Author: Jason Jin <Jason.jin@freescale.com>
62234 Date: Fri Oct 26 18:32:00 2007 +0800
62235
62236 make 8610 board use pixis reset
62237
62238 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
62239
62240 commit db74b3c1c9481a6bffbf8cd445e5bcbf6908e836
62241 Author: Jason Jin <Jason.jin@freescale.com>
62242 Date: Mon Oct 29 19:26:21 2007 +0800
62243
62244 Unify pixis_reset altbank across board families
62245
62246 Basically, refactor the CFG_PIXIS_VBOOT_MASK values
62247 into the separate board config files.
62248
62249 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
62250 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62251
62252 commit 64bf555465c7926be13e1046ac0d0f05ac72829c
62253 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62254 Date: Wed Nov 7 08:19:21 2007 +0100
62255
62256 Fix warning: pointer targets in assignment differ in signedness
62257
62258 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62259
62260 commit 7a60ee7c6248a958c5757d3660a1702723a2786d
62261 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62262 Date: Wed Nov 7 08:19:19 2007 +0100
62263
62264 Fix warning differ in signedness in common/cmd_ide.c
62265
62266 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62267
62268 commit f31d38b9eea9b32f6a1ac848a298cc71ca4c9a03
62269 Author: Stefan Roese <sr@denx.de>
62270 Date: Fri Nov 16 14:16:54 2007 +0100
62271
62272 ppc4xx: Enable 405EX PCIe UTL register configuration
62273
62274 Till now the UTL registers on 405EX were not initialized but left with
62275 their default values. This patch new initializes some of the UTL
62276 registers on 405EX.
62277
62278 Signed-off-by: Stefan Roese <sr@denx.de>
62279
62280 commit ecdcbd4f8c1f8cefd785752f4e7536aae2a4ecf9
62281 Author: Stefan Roese <sr@denx.de>
62282 Date: Fri Nov 16 14:00:59 2007 +0100
62283
62284 ppc4xx: Update AMCC Makalu for board rev 1.1
62285
62286 This patch adds changes needed for Makalu rev 1.1:
62287
62288 - Enable 2nd DDR2 bank resulting in 256MByte of SDRAM
62289 - Enable 2nd ethernet port EMAC1
62290 - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
62291 - Reset PCIe ports via GPIO upon bootup
62292
62293 Signed-off-by: Stefan Roese <sr@denx.de>
62294
62295 commit 4d4faae65e115e327425cd514c1a35146a85166b
62296 Author: Grant Likely <grant.likely@secretlab.ca>
62297 Date: Mon Sep 24 09:05:31 2007 -0600
62298
62299 Group PCI and PCMCIA drivers in drivers/Makefile
62300
62301 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62302
62303 commit 5798f87dc10a496d79d3177b9f5a76488987fd35
62304 Author: Grant Likely <grant.likely@secretlab.ca>
62305 Date: Mon Sep 24 09:05:31 2007 -0600
62306
62307 Group block/flash drivers in drivers/Makefile
62308
62309 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62310
62311 commit df58c81551700f058b44cacf55a7997fa63bfe0a
62312 Author: Grant Likely <grant.likely@secretlab.ca>
62313 Date: Mon Sep 24 09:05:31 2007 -0600
62314
62315 Group USB drivers in drivers/Makefile
62316
62317 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62318
62319 commit 5dbb6ed622e539b0c8493ef7e578d3a533181d29
62320 Author: Grant Likely <grant.likely@secretlab.ca>
62321 Date: Mon Sep 24 09:05:30 2007 -0600
62322
62323 Group i2c drivers in drivers/Makefile
62324
62325 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62326
62327 commit ec00c76de0e5971273905998d62d6bb119324218
62328 Author: Grant Likely <grant.likely@secretlab.ca>
62329 Date: Mon Sep 24 09:05:30 2007 -0600
62330
62331 Group console drivers in drivers/Makefile
62332
62333 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62334
62335 commit 754f230aa01b8c789fc31f8013c2487954073300
62336 Author: Grant Likely <grant.likely@secretlab.ca>
62337 Date: Mon Sep 24 09:05:30 2007 -0600
62338
62339 Group network drivers in drivers/Makefile
62340
62341 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62342
62343 commit f0037c56b0d12cd46215124667b9f83d60ef9391
62344 Author: Grant Likely <grant.likely@secretlab.ca>
62345 Date: Mon Sep 24 09:05:30 2007 -0600
62346
62347 Build: split COBJS value into multiple lines
62348
62349 This change is in preparation for condtitionial compile support in the
62350 build system. By spliting them all into seperate lines now, subsequent
62351 patches that change 'COBJS-y += ' into 'COBJS-$(CONFIG_<blah>) += ' will
62352 be less invasive and easier to review
62353
62354 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62355
62356 commit 1b4aaffe4fb2a5e95d9111a5d94fd1f89215dce4
62357 Author: Grant Likely <grant.likely@secretlab.ca>
62358 Date: Mon Sep 24 09:05:30 2007 -0600
62359
62360 Add .gitignore files
62361
62362 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62363 Acked-by: Kim Phillips <kim.phillips@freescale.com>
62364
62365 commit 955413f35f054a82e40042f1dbcf501c6a05719b
62366 Author: Grant Likely <grant.likely@secretlab.ca>
62367 Date: Thu Nov 15 08:27:52 2007 -0700
62368
62369 Revert "Correct relocation fixup for mpc5xx"
62370
62371 This reverts commit 3649cd99ba815b6601868735765602f00ef3692b.
62372 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62373
62374 commit e15633888a058aacb31a62d2cf1278e1e4c236ab
62375 Author: Grant Likely <grant.likely@secretlab.ca>
62376 Date: Thu Nov 15 08:24:32 2007 -0700
62377
62378 Revert "Correct fixup relocation for MPC5xxx"
62379
62380 This reverts commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.
62381 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62382
62383 commit 139365fbe566d0fc619a1ed04452ec5388f0cef8
62384 Author: Grant Likely <grant.likely@secretlab.ca>
62385 Date: Thu Nov 15 08:21:04 2007 -0700
62386
62387 Revert "Correct fixup relocation for mpc8220"
62388
62389 This reverts commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00.
62390 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62391
62392 commit 70922342369e5e39b286fe21e768a239ca07a514
62393 Author: Grant Likely <grant.likely@secretlab.ca>
62394 Date: Thu Nov 15 08:20:57 2007 -0700
62395
62396 Revert "Correct fixup relocation for mpc824x"
62397
62398 This reverts commit f3a52fe05923935db86985daf9438e2f70ac39aa.
62399 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62400
62401 commit 96279ab4cad60cb5972aa934fbe4845ac02cc75a
62402 Author: Grant Likely <grant.likely@secretlab.ca>
62403 Date: Thu Nov 15 08:20:50 2007 -0700
62404
62405 Revert "Correct fixup relocation for mpc8260"
62406
62407 This reverts commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96.
62408 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62409
62410 commit 928fe33b24cdf382a8dc8687fed24b1961cdb5d6
62411 Author: Grant Likely <grant.likely@secretlab.ca>
62412 Date: Thu Nov 15 08:20:43 2007 -0700
62413
62414 Revert "Correct fixup relocation for mpc83xx"
62415
62416 This reverts commit 057004f4a4863554d56cc56268bfa7c7d9738e27.
62417 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62418
62419 commit c93945e8f9e300860d2bf73a2549ce5794f8bd00
62420 Author: Grant Likely <grant.likely@secretlab.ca>
62421 Date: Thu Nov 15 08:20:25 2007 -0700
62422
62423 Revert "[MPC512x] Correct fixup relocation"
62424
62425 This reverts commit 8d17979d0359492a822a0a409d26e3a3549b4cd4.
62426 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62427
62428 commit c9672f81f1bdb4e8ddf62aa72ca0206e8b72aa1c
62429 Author: Stefan Roese <sr@denx.de>
62430 Date: Thu Nov 15 14:25:09 2007 +0100
62431
62432 ppc4xx: Small AMCC Kilauea cleanup
62433
62434 Remove not needed pci_target_init() function.
62435
62436 Signed-off-by: Stefan Roese <sr@denx.de>
62437
62438 commit aee747f19b460a0e9da20ff21e90fdaac1cec359
62439 Author: Stefan Roese <sr@denx.de>
62440 Date: Thu Nov 15 14:23:55 2007 +0100
62441
62442 ppc4xx: Enable 440 GPIO init table CFG_440_GPIO_TABLE for 405 platforms
62443
62444 - Rename CFG_440_GPIO_TABLE to CFG_4xx_GPIO_TABLE
62445 - Cleanup of the 4xx GPIO functions
62446 - Move some GPIO defines from the cpu headers ppc405.h/ppc440.h into gpio.h
62447
62448 Signed-off-by: Stefan Roese <sr@denx.de>
62449
62450 commit 8ada0ebf38e4073beea0309188b25d82a112a2ae
62451 Author: Stefan Roese <sr@denx.de>
62452 Date: Thu Nov 15 14:20:08 2007 +0100
62453
62454 ppc4xx: AMCC Taihu board config file cleanup
62455
62456 This patch makes the AMCC Taihu a little more compatible to the other
62457 AMCC eval boards.
62458
62459 Signed-off-by: Stefan Roese <sr@denx.de>
62460
62461 commit 5e71c51d74c963d3174060c078dcacf13bdd02ef
62462 Author: Marian Balakowicz <m8@semihalf.com>
62463 Date: Thu Nov 15 13:37:28 2007 +0100
62464
62465 [INKA4x0] NG hardware: flash support
62466
62467 Disabled and remove inka4x0 custom flash driver, use CFI flash
62468 driver instead.
62469
62470 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62471
62472 commit 5fb6d7191e206cdde0e23140fd8111caed93a595
62473 Author: Marian Balakowicz <m8@semihalf.com>
62474 Date: Thu Nov 15 13:29:55 2007 +0100
62475
62476 [INKA4x0] NG hardware: SDRAM support
62477
62478 Add support for three new DDR chips that may be present on a NG
62479 INKA4x0 hardware: HYB25D512160BF-5, K4H511638C-7CB3, T46V32M16BN-6IT.
62480
62481 Cleanup board/inka4x0/mt48lc16m16a2-75.h file.
62482
62483 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62484
62485 commit f23cb34c367bb27585a4fdb8a75277370e7d0596
62486 Author: Marian Balakowicz <m8@semihalf.com>
62487 Date: Thu Nov 15 13:24:43 2007 +0100
62488
62489 [INKA4x0] NG hardware: platform code update
62490
62491 - Cleanup compile warnings.
62492 - Add missing '\0' in default environment.
62493 - Increase CFG_MONITOR_LEN to 256 KiB.
62494 - Add required CFG_USE_PPCENV.
62495
62496 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62497
62498 commit 2ae64f5135e51bb18753884d1265b99e89b5aedd
62499 Author: Peter Pearse <peter.pearse@arm.com>
62500 Date: Thu Nov 15 08:58:00 2007 +0000
62501
62502 Remove warnings re CONFIG_EXTRA_ENV_SETTINGS
62503 Remove warnings re onenand_read() & write()
62504
62505 commit 2db916e14410e3ec1738508c7bf4dfeb2b299ae7
62506 Author: Peter Pearse <peter.pearse@arm.com>
62507 Date: Thu Nov 15 08:45:13 2007 +0000
62508
62509 Correction patch
62510
62511 commit 1d8a49eca1c7bdc8db1c47a92f9014a29ead03ae
62512 Author: Roy Zang <tie-fei.zang@freescale.com>
62513 Date: Thu Sep 13 18:52:28 2007 +0800
62514
62515 Enable ULi1575 Ethernet support in 8610HPCD config
62516
62517 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
62518 Acked-by: Jon Loeliger <jdl@freescale.com>
62519
62520 commit 54fd6c93c28a0a45352fff5dd92673401ff563f2
62521 Author: Stefan Roese <sr@denx.de>
62522 Date: Tue Nov 13 08:18:20 2007 +0100
62523
62524 ppc4xx: lwmon5: Change PHY reset sequence for PHY MDIO address latching
62525
62526 Signed-off-by: Stefan Roese <sr@denx.de>
62527
62528 commit 7d0a4066b5a6b698e5fc1b66cfe9705774bbce93
62529 Author: Stefan Roese <sr@denx.de>
62530 Date: Tue Nov 13 08:06:11 2007 +0100
62531
62532 ppc4xx: Fix 405EX PCIe UTLSET register setup
62533
62534 Signed-off-by: Stefan Roese <sr@denx.de>
62535
62536 commit 1ce55151c85d068f70317a8d65c61058b891afb4
62537 Author: Heiko Schocher <hs@denx.de>
62538 Date: Tue Nov 13 07:50:29 2007 +0100
62539
62540 [UC101] SRAM now with 2 MB working.
62541
62542 Signed-off-by: Heiko Schocher <hs@denx.de>
62543
62544 commit 2d14684341109a69616e4d6016cd61402d55086f
62545 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62546 Date: Fri Nov 9 15:37:53 2007 +0100
62547
62548 ppc4xx: Use generic usb-ohci driver for sequoia board
62549
62550 This patch makes the sequoia board use the generic usb-ohci driver
62551 instead of cpu/ppc4xx/usb_ohci.c.
62552
62553 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62554 Signed-off-by: Stefan Roese <sr@denx.de>
62555
62556 commit 9be659ac0868dc367caa957c5c725e46b07f6a5f
62557 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62558 Date: Fri Nov 9 15:37:23 2007 +0100
62559
62560 ppc4xx: Make USB working with CONFIG_4xx_DCACHE defined
62561
62562 This patch disables the 44x d-cache on 'usb start' and
62563 reenables it on 'usb stop'. This should be seen as a
62564 temporary fix until the generic usb-ohci driver can
62565 life with d-cache enabled.
62566
62567 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62568 Signed-off-by: Stefan Roese <sr@denx.de>
62569
62570 commit fbde2169d2c48fcc9ff03489534a78ffb0a8a0d4
62571 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62572 Date: Fri Nov 9 15:36:44 2007 +0100
62573
62574 ppc4xx: Remove redundant code from 4xx network driver
62575
62576 This patch removes some redundant code and decrements the end
62577 address of cache flush and invalidate by 1.
62578
62579 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62580 Signed-off-by: Stefan Roese <sr@denx.de>
62581
62582 commit 5ca9881aad8c413ac2a82868a5e3719178254502
62583 Author: Peter Pearse <peter.pearse@arm.com>
62584 Date: Fri Nov 9 15:24:26 2007 +0000
62585
62586 Add apollon board support
62587 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
62588
62589 commit b53313dbfc74525d85f1e7e0102f902d5c863beb
62590 Author: Stefan Roese <sr@denx.de>
62591 Date: Fri Nov 9 12:19:58 2007 +0100
62592
62593 ppc4xx: Remove In:/Out:/Err: boot output for AMCC Kilauea
62594
62595 Signed-off-by: Stefan Roese <sr@denx.de>
62596
62597 commit c7f69c340277935a6c19a956421852da944a365f
62598 Author: Stefan Roese <sr@denx.de>
62599 Date: Fri Nov 9 12:18:54 2007 +0100
62600
62601 ppc4xx: Make output a little shorter on I2C bootrom detection
62602
62603 Most 4xx PPC capable of using an I2C bootrom for bootstrap setting
62604 already print a line with the information which I2C bootrom is
62605 used for bootstrap configuration. So we don't need this extra line
62606 with "I2C boot EEPROM en-/dis-abled".
62607
62608 This patch also has a little code cleanup integrated.
62609
62610 Signed-off-by: Stefan Roese <sr@denx.de>
62611
62612 commit 8d737a28152ec12873f8544cca1fb39a49e5e693
62613 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62614 Date: Thu Nov 8 12:50:18 2007 -0600
62615
62616 ColdFire: MCF5329 - Remove reset registers from CCM
62617
62618 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62619
62620 commit 7d7cdea769a60b0a6e4c18bef7f9d648fd14b8d7
62621 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62622 Date: Thu Nov 8 12:31:11 2007 -0600
62623
62624 ColdFire: MCF5329 - Add Reset structure to immap_5329.h
62625
62626 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62627
62628 commit 09b26cf00d76d75fdf7fdc4b13e4dd929743bc21
62629 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62630 Date: Thu Nov 8 12:19:01 2007 -0600
62631
62632 ColdFire: MCF5329 - revert include/asm-m68k/m5329.h file mode
62633
62634 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62635
62636 commit 225a24b5e062ad94627424508ae814f51dbe1a34
62637 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62638 Date: Wed Nov 7 18:00:54 2007 -0600
62639
62640 ColdFire: MCF5445x - Update correct RAMBAR and missing linker files
62641
62642 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62643
62644 commit 248c7c14835f34d5d910b45e5600050e58ca6cab
62645 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62646 Date: Wed Nov 7 17:56:15 2007 -0600
62647
62648 ColdFire: MCF532x - Update do_reset() using core reset
62649
62650 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62651
62652 commit d9240a5f827eb3b476a6ba2938d01f1a9e7688f4
62653 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62654 Date: Wed Nov 7 17:51:00 2007 -0600
62655
62656 ColdFire: Update cpu flag for 4.2-xx compiler
62657
62658 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62659
62660 commit 070ba56115b4da63b46e974287fa4550d4023386
62661 Author: York Sun <yorksun@freescale.com>
62662 Date: Wed Oct 31 14:59:04 2007 -0500
62663
62664 8610: Add console frame buffer support to FSL 8610 DIU driver.
62665
62666 Add cfb console support to FSL 8610 DIU driver.
62667 Inspect board version from PIXIS to obtain correct pixel format.
62668
62669 Use #define CONFIG_VIDEO in config file to enable fb console.
62670
62671 To switch monitor, set monitor variable to
62672 0 - DVI, 1 - Single link LVDS, 2 - Double link LVDS
62673 followed by "diufb init".
62674
62675 Preserve logo bitmap at the top of the fb console.
62676
62677 Signed-off-by: York Sun <yorksun@freescale.com>
62678 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62679
62680 commit a877880c6949e948bd63cd6ea4e216573d2f53dd
62681 Author: York Sun <yorksun@freescale.com>
62682 Date: Mon Oct 29 13:58:39 2007 -0500
62683
62684 8610: Add 8610 DIU display driver
62685
62686 1280x1024 and 1024x768 @ 32 bpp are supported now.
62687 DVI, Single-link LVDS, Double-link LVDS are all supported.
62688
62689 Environmental variable "monitor" is used to specify monitor port.
62690
62691 A new command "diufb" is introduced to reinitialize monitor
62692 and display a BMP file in the memory. So far, 1-bit, 4-bit,
62693 8-bit and 24-bit BMP formats are supported.
62694
62695 diufb init
62696 - initialize the diu driver
62697 Enable the port specified in the environmental variable "monitor"
62698
62699 diufb addr
62700 - display bmp file in memory.
62701 The bmp image should be no bigger than the resolution, 1280x1024
62702 for DVI and double-link LVDS, 1024x768 for single-link LVDS.
62703
62704 Note, this driver allocate memory but doesn't free it after use
62705 It is written on purpose -- to avoid a failure of reallocation
62706 due to memory fragement.
62707
62708 ECC of DDR is disabled for DIU performance. L2 data cache is also disabled.
62709
62710 Signed-off-by: York Sun <yorksun@freescale.com>
62711 Signed-off-by: Jon loeliger <jdl@freescale.com>
62712
62713 commit 52e5ddfecdda308f75782fae206b677b1810f5f9
62714 Author: York Sun <yorksun@freescale.com>
62715 Date: Wed Oct 31 10:43:59 2007 -0500
62716
62717 FSL: Add a freescale bitmap logo.
62718
62719 This Freescale logo is a 340 x 128 x 4bpp BMP file
62720 that can be displayed by the DIU Framebuffer driver.
62721
62722 Signed-off-by: York Sun <yorksun@freescale.com>
62723 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62724
62725 commit 1815338fbd1c0f94f8276d2891b99caa5a05f622
62726 Author: York Sun <yorksun@freescale.com>
62727 Date: Mon Oct 29 13:57:53 2007 -0500
62728
62729 8610: Make some extra debug environment variables conditional.
62730
62731 One may #define ENV_DEBUG to get them back again.
62732
62733 Signed-off-by: York Sun <yorksun@freescale.com>
62734
62735 commit 761421ccca80a9fb37b19c37aa61d46ef75e0647
62736 Author: Jason Jin <Jason.jin@freescale.com>
62737 Date: Mon Oct 29 19:26:21 2007 +0800
62738
62739 8610: Actually enable pixis_reset CONFIGs
62740
62741 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
62742
62743 commit f3bceaab230b4748d0afc4109b6837308f018b40
62744 Author: Jason Jin <Jason.jin@freescale.com>
62745 Date: Fri Oct 26 18:31:59 2007 +0800
62746
62747 Fix the BAT definition of PCI IO on 8610 board
62748
62749 The address in the BAT register is aligned with the BAT size.
62750 The original definition actually did not define BAT for PCIE2 IO.
62751 This patch fix this.
62752
62753 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
62754
62755 commit 9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56
62756 Author: Jason Jin <Jason.jin@freescale.com>
62757 Date: Mon Oct 29 19:26:21 2007 +0800
62758
62759 Unify pixis_reset altbank across board families
62760
62761 Basically, refactor the CFG_PIXIS_VBOOT_MASK values
62762 into the separate board config files.
62763
62764 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
62765 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62766
62767 commit a8318ec205c8e8794b5f9f1b8584abadb440e8ba
62768 Author: Jason Jin <Jason.jin@freescale.com>
62769 Date: Fri Oct 26 18:32:00 2007 +0800
62770
62771 make 8610 board use pixis reset
62772
62773 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
62774
62775 commit 9c84709eedce9c680dd695984ab7d2328f4f04f5
62776 Author: Jon Loeliger <jdl@freescale.com>
62777 Date: Thu Nov 1 12:23:29 2007 -0500
62778
62779 86xx: Fix broken variable reference when #def DEBUGing.
62780
62781 Sometimes you can't reference the DDR2 controller variables.
62782
62783 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62784
62785 commit 1f103105a3746ab12279b63b8c1d372c0ce2cc58
62786 Author: Roy Zang <tie-fei.zang@freescale.com>
62787 Date: Mon Nov 5 17:39:24 2007 +0800
62788
62789 Implement general ULi 526x Ethernet driver support in U-boot
62790
62791 This patch implements general ULi 526x Ethernet driver.
62792 Until now, it is the only native Ethernet port on
62793 MPC8610HPCD board, but it could be used on other boards
62794 with ULi 526x Ethernet port as well.
62795
62796 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
62797 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
62798 Acked-by: Jon Loeliger <jdl@freescale.com>
62799 Signed-off-by: Ben Warren <bwarren@qstreams.com>
62800
62801 commit 71bc6e6474fea8ef481b9b45d1edd7ad1f6dfbbd
62802 Author: Larry Johnson <lrj@arlinx.com>
62803 Date: Thu Nov 1 08:46:50 2007 -0500
62804
62805 NET: Add Ethernet 1000BASE-X support for PPC4xx
62806
62807 This patch adds support for 1000BASE-X to functions "miiphy_speed ()" and
62808 "miiphy_duplex()". It also adds function "miiphy_is_1000base_x ()", which
62809 returns non-zero iff the PHY registers are configured for 1000BASE-X. The
62810 "mii info" command is modified to distinguish between 1000BASE-T and -X.
62811
62812 Signed-off-by: Larry Johnson <lrj@acm.org>
62813 Signed-off-by: Ben Warren <bwarren@qstreams.com>
62814
62815 commit 298035df4948b113d29ac0e694717d34b95bc5dc
62816 Author: Larry Johnson <lrj@arlinx.com>
62817 Date: Wed Oct 31 11:21:29 2007 -0500
62818
62819 NET: Cosmetic changes
62820
62821 Signed-off-by: Larry Johnson <lrj@acm.org>
62822 Signed-off-by: Ben Warren <bwarren@qstreams.com>
62823
62824 commit 654f38b3a387886996a5a75771fbfc29cb4f225e
62825 Author: Stefan Roese <sr@denx.de>
62826 Date: Mon Nov 5 07:43:05 2007 +0100
62827
62828 ppc4xx: Make output a little shorter on PCIe detection
62829
62830 Now not max 3 lines but 2 lines are printed per PCIe port.
62831
62832 Signed-off-by: Stefan Roese <sr@denx.de>
62833
62834 commit 992742a5b09d9040adbd156fb90756af66ade310
62835 Author: Wolfgang Denk <wd@denx.de>
62836 Date: Sat Nov 3 23:09:27 2007 +0100
62837
62838 Cleanup coding style; update CHANGELOG
62839
62840 Signed-off-by: Wolfgang Denk <wd@denx.de>
62841
62842 commit e881cb563e32f45832b7b6db77bdcd017adcbb41
62843 Author: Bruce Adler <bruce.adler@ccpu.com>
62844 Date: Fri Nov 2 13:15:42 2007 -0700
62845
62846 fix wording in README
62847
62848 Changed the wording to properly describe the shadowing
62849 of the environment from ROM to RAM
62850
62851 Signed-off-by: Bruce Adler <bruce.adler@acm.org>
62852
62853 commit ad845beef06245426c57b53dcdc01b7dc70e0d45
62854 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62855 Date: Wed Oct 31 02:18:15 2007 +0900
62856
62857 blackfin: Move `-D__BLACKFIN__' to $(ARCH)_config.mk
62858
62859 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62860
62861 commit ec22755799466c8a103664bb3a5e647bf9c238f4
62862 Author: Vlad Lungu <vlad@comsys.ro>
62863 Date: Thu Oct 25 16:08:14 2007 +0300
62864
62865 Trimmed some variables in ne2000.c
62866
62867 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
62868
62869 commit eb6f214d3644b2a77968c176ed36dcf858cfe7e0
62870 Author: Zhang Wei <wei.zhang@freescale.com>
62871 Date: Thu Oct 25 17:51:27 2007 +0800
62872
62873 Fix the issue of usb_kbd driver missing the scan code of key 'z'.
62874
62875 The scan code of the key 'z' is 0x1d, which should be handled.
62876
62877 The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
62878 controller.
62879
62880 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
62881
62882 commit bbf4796f6498fbade56d56eff3a0a49b299d93e5
62883 Author: Zhang Wei <wei.zhang@freescale.com>
62884 Date: Thu Oct 25 17:30:04 2007 +0800
62885
62886 Fix USB support issue for MPC8641HPCN board.
62887
62888 The configuration file has already enabled USB, but it
62889 missed definition of CFG_OHCI_SWAP_REG_ACCESS, the USB
62890 on MPC8641HPCN can not work because of the wrong USB
62891 register endian.
62892
62893 And add the USB command to U-Boot commands list.
62894
62895 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
62896
62897 commit 4e62041023dc3de9d98d977bb080235bc6d035e0
62898 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62899 Date: Wed Oct 24 18:16:01 2007 +0200
62900
62901 Use config_cmd_default.h instead of config_cmd_all.h
62902
62903 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62904
62905 commit 56622f87857439b1c221e9deef11a9d5bb5d4308
62906 Author: Marian Balakowicz <m8@semihalf.com>
62907 Date: Wed Oct 24 01:37:36 2007 +0200
62908
62909 TQM5200: Call usb_cpu_init() during board init
62910
62911 usb_cpu_init() configures GPS USB pins, clocks, etc. and
62912 is required for proper operation of kernel USB subsystem.
62913 This setup was previously done in the kernel by the fixup
62914 code which is being removed, thus low level init must be
62915 done by U-boot now.
62916
62917 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62918
62919 commit 29c29c0267fe857e72014ce90c5d35b2ef6302bd
62920 Author: Guennadi Liakhovetski <lg@denx.de>
62921 Date: Tue Oct 23 16:25:50 2007 +0200
62922
62923 Fix typo in nfs.c
62924
62925 An obvious typo. Originally fixed in linkstation u-boot port.
62926
62927 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
62928
62929 commit 59543fe00a4ce720ef9f5aa7fb387c6daf1c7d78
62930 Author: Guennadi Liakhovetski <lg@denx.de>
62931 Date: Tue Oct 23 14:35:05 2007 +0200
62932
62933 Fix a typo in cpu/mpc824x/interrupts.c
62934
62935 Since December 2003 the timer_interrupt_cpu() function in
62936 cpu/mpc824x/interrupts.c contains what seems to be a superfluous
62937 parameter. Remove it.
62938
62939 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
62940
62941 commit c9e7b9b9a1700fe009678d1f9b41e6364ac5df2d
62942 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
62943 Date: Wed Oct 17 11:13:51 2007 +0200
62944
62945 add ft_cpu_setup(..) on mpc8260
62946
62947 Add ft_cpu_setup(..)-function to adapt it for use with libfdt
62948 based on code from mpc5xxx
62949
62950 Sigend-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
62951 --
62952
62953 commit 6abd82e19ae93c0b4d104e50165e235915ec0875
62954 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
62955 Date: Wed Oct 17 11:18:42 2007 +0200
62956
62957 changes for IDS8247 board support
62958
62959 To get the IDS8247 board working following are done:
62960 - FCC2 is deactivated
62961 - FCC1 is activated
62962 - I2C is activated
62963 - CFI driver is activated
62964 - Adapted for use with LIBFDT
62965
62966 Signed-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
62967 --
62968
62969 commit 3d6cb3b24add6415f86a0f013ea40f5639b90047
62970 Author: Stefan Roese <sr@denx.de>
62971 Date: Sat Nov 3 12:08:28 2007 +0100
62972
62973 ppc4xx: Add AMCC Kilauea/Haleakala NAND booting support
62974
62975 This patch adds NAND booting support for the AMCC 405EX(r) eval boards.
62976 Again, only one image supports both targets.
62977
62978 Signed-off-by: Stefan Roese <sr@denx.de>
62979
62980 commit 8b6684a698500be9c142ec2c9f46cfc348e17f0c
62981 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
62982 Date: Wed Oct 24 15:48:37 2007 +0200
62983
62984 ATSTK1002: Remove default ethernet addresses
62985
62986 Wolfgang is right: It's not a good idea to set up default initial
62987 ethernet addresses for a board, even though they belong to the local
62988 range.
62989
62990 This will change the failure mode from "IT manager screams at you for
62991 using duplicate ethernet addresses" to a nice error message explaining
62992 that the ethernet address hasn't been set properly.
62993
62994 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
62995
62996 commit e5c794e491a57d829b6d8733e2ed8368a2269abf
62997 Author: Justin Flammia <jflammia@savantav.com>
62998 Date: Mon Oct 29 17:40:35 2007 -0400
62999
63000 DHCP Client Fix
63001
63002 This is a multi-part message in MIME format.
63003
63004 commit e6e505eae94ed721e123e177489291fc4544b7b8
63005 Author: Justin Flammia <jflammia@savantav.com>
63006 Date: Mon Oct 29 17:19:03 2007 -0400
63007
63008 Found a bug in the way the DHCP Request packet is built, where the IP address
63009 that is offered by the server is bound to prematurely. This patch is a fix of
63010 that bug where the IP address offered by the DHCP server is not used until
63011 after the DHCP ACK from the server is received.
63012
63013 Signed-off-by: Justin Flammia <jflammia@savantav.com>
63014 Signed-off-by: Ben Warren <bwarren@qstreams.com>
63015
63016 commit 5d96d40d3f36da33348e68f9ea993f383e11f997
63017 Author: Stefan Roese <sr@denx.de>
63018 Date: Wed Oct 31 20:58:34 2007 +0100
63019
63020 ppc4xx: Fix acadia_nand build problem
63021
63022 Since the cache handling functions were moved from start.S into cache.S
63023 the acadia NAND booting Makfile needs to be adapted accordingly.
63024
63025 Signed-off-by: Stefan Roese <sr@denx.de>
63026
63027 commit ea2e142843533ca593fcb5cb3e1daf1b7f5e5949
63028 Author: Stefan Roese <sr@denx.de>
63029 Date: Wed Oct 31 20:57:11 2007 +0100
63030
63031 ppc4xx: Add CONFIG_4xx_DCACHE compile options to enable cached SDRAM
63032
63033 This patch adds the CONFIG_4xx_DCACHE options to some SDRAM init files
63034 and to the Sequoia TLB init code. Now the cache can be enabled on 44x
63035 boards by defining CONFIG_4xx_DCACHE in the board config file. This
63036 option will disappear, when more boards use is successfully and no
63037 more known problems exist.
63038
63039 This is tested successfully on Sequoia and Katmai. The only problem that
63040 needs to be fixed is, that USB is not working on Sequoia right now, since
63041 it will need some cache handling code too, similar to the 4xx EMAC driver.
63042
63043 Signed-off-by: Stefan Roese <sr@denx.de>
63044
63045 commit 3db93b8bedd32e914b38976141b3fdf4ea3ff738
63046 Author: Stefan Roese <sr@denx.de>
63047 Date: Wed Oct 31 20:51:10 2007 +0100
63048
63049 ppc4xx: Enable CPU POST test for 4xx with dcache enabled
63050
63051 Now with caches enabled (i- and d-cache) on 44x, we need a chance to
63052 disable the cache for the CPU POST tests, since these tests consist
63053 of self modifying code. This is done via the new change_tlb() function.
63054
63055 Signed-off-by: Stefan Roese <sr@denx.de>
63056
63057 commit f71b2888b4b3c870909a0341427b2a914246f81f
63058 Author: Stefan Roese <sr@denx.de>
63059 Date: Wed Oct 31 20:47:26 2007 +0100
63060
63061 ppc4xx: Change 4xx POST ethernet test to handle cached memory too
63062
63063 This patch enables the 4xx EMAC POST driver to work too, when dcache is
63064 enabled.
63065
63066 Signed-off-by: Stefan Roese <sr@denx.de>
63067
63068 commit a2685904061b35a17583d65fe47cdc2686a69eaa
63069 Author: Stefan Roese <sr@denx.de>
63070 Date: Wed Oct 31 20:45:53 2007 +0100
63071
63072 ppc4xx: Remove temporary TLB entry in POST cache test only for 440
63073
63074 Signed-off-by: Stefan Roese <sr@denx.de>
63075
63076 commit ff768cb168d8157c24a25016dbfbeb465e47f420
63077 Author: Stefan Roese <sr@denx.de>
63078 Date: Wed Oct 31 18:01:24 2007 +0100
63079
63080 ppc4xx: Change 4xx ethernet driver to handle cached memory too
63081
63082 This patch enables the 4xx EMAC driver to work too, when dcache is
63083 enabled.
63084
63085 Signed-off-by: Stefan Roese <sr@denx.de>
63086
63087 commit 483e09a223c666269ef81d3573a6591b1046b0ef
63088 Author: Stefan Roese <sr@denx.de>
63089 Date: Wed Oct 31 17:59:22 2007 +0100
63090
63091 ppc4xx: Add change_tlb function to modify I attribute of TLB(s)
63092
63093 This function is used to either turn cache on or off in a specific
63094 memory area.
63095
63096 Signed-off-by: Stefan Roese <sr@denx.de>
63097
63098 commit d25dfe08fbd1220cb994e7e6b105049aa9aa8e79
63099 Author: Stefan Roese <sr@denx.de>
63100 Date: Wed Oct 31 17:57:52 2007 +0100
63101
63102 ppc4xx: Remove cache definition from 4xx board config files
63103
63104 All 4xx board config files don't need the cache definitions anymore.
63105 These are now defined in common headers.
63106
63107 Signed-off-by: Stefan Roese <sr@denx.de>
63108
63109 commit 9b94ac61d2176185c30adf0793e079ec30e68687
63110 Author: Stefan Roese <sr@denx.de>
63111 Date: Wed Oct 31 17:55:58 2007 +0100
63112
63113 ppc4xx: Rework 4xx cache support
63114
63115 New cache handling functions added and all existing functions
63116 moved from start.S into seperate cache.S.
63117
63118 Signed-off-by: Stefan Roese <sr@denx.de>
63119
63120 commit 06713773da4ac3d390c63d82641eb553224b27c2
63121 Author: Stefan Roese <sr@denx.de>
63122 Date: Tue Oct 23 18:03:12 2007 +0200
63123
63124 ppc4xx: Remove compiler warning from previous commit
63125
63126 Signed-off-by: Stefan Roese <sr@denx.de>
63127
63128 commit 6fa397df67c0f269e4528bf181a6e8c88f9723f9
63129 Author: Stefan Roese <sr@denx.de>
63130 Date: Tue Oct 23 14:40:30 2007 +0200
63131
63132 ppc4xx: Remove temporary TLB entry in POST cache test
63133
63134 Signed-off-by: Stefan Roese <sr@denx.de>
63135
63136 commit 1338e6a81834099ba19733b69aafd8ef5f098094
63137 Author: Stefan Roese <sr@denx.de>
63138 Date: Tue Oct 23 14:05:08 2007 +0200
63139
63140 ppc4xx: Change autonegotiation timeout from 4 to 5 seconds
63141
63142 I lately noticed, that newer 4xx board with GBit support sometimes don't
63143 finish link autonegotiation in 4 seconds. Changing this timeout to 5
63144 seconds seems fine here.
63145
63146 Signed-off-by: Stefan Roese <sr@denx.de>
63147
63148 commit 2d83476a4c1c9911d158a3f8a4312d354bc1bdb7
63149 Author: Stefan Roese <sr@denx.de>
63150 Date: Tue Oct 23 14:03:17 2007 +0200
63151
63152 ppc4xx: Change 4xx_enet & miiphy to use out_be32() and friends
63153
63154 This patch changes all in32/out32 calls to use the recommended in_be32/
63155 out_be32 macros instead.
63156
63157 Signed-off-by: Stefan Roese <sr@denx.de>
63158
63159 commit 7d47cee2cc57f907380f2c06f5b6c683d03e423a
63160 Author: Stefan Roese <sr@denx.de>
63161 Date: Thu Oct 25 12:24:59 2007 +0200
63162
63163 ppc4xx: Fix POST ethernet test for Haleakala
63164
63165 The POST ethernet test needed to be changed to dynamically determine
63166 the count of ethernet devices. This code is cloned from the 4xx
63167 ethernet driver.
63168
63169 Signed-off-by: Stefan Roese <sr@denx.de>
63170
63171 commit f10493c6d77a1e07a6c2ff4d772937a5e7359d6a
63172 Author: Stefan Roese <sr@denx.de>
63173 Date: Tue Oct 23 11:31:05 2007 +0200
63174
63175 ppc4xx: Correct UART input clock calculation and passing to fdt
63176
63177 We now use a value in the gd (global data) structure for the UART input
63178 frequency, since the PPC4xx_SYS_INFO struct is always rewritten completely
63179 in get_sys_info().
63180
63181 Signed-off-by: Stefan Roese <sr@denx.de>
63182
63183 commit 353f2688b4e0fc7b969bc70a02be4b40bf0dd124
63184 Author: Stefan Roese <sr@denx.de>
63185 Date: Tue Oct 23 10:10:08 2007 +0200
63186
63187 ppc4xx: Add initial AMCC Haleakala PPC405EXr eval board support
63188
63189 The Haleakala is nearly identical with the Kilauea eval board. The only
63190 difference is that the 405EXr only supports one EMAC and one PCIe
63191 interface. This patch adds support for the Haleakala board by using
63192 the identical image for Kilauea and Haleakala. The distinction is done
63193 by comparing the PVR.
63194
63195 Signed-off-by: Stefan Roese <sr@denx.de>
63196
63197 commit 9f798766aa85e62eb8fa8c721e148df609b78137
63198 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
63199 Date: Tue Oct 23 08:29:10 2007 +0200
63200
63201 ppc4xx: Fixed offset of refresh rate type for Bamboo on-board DDR SDRAM
63202
63203 This patch also adds a note to the fixed DDR setup for Bamboo NAND booting:
63204
63205 Note:
63206 As found out by Eugene O'Brien <eugene.obrien@advantechamt.com>, the fixed
63207 DDR setup has problems (U-Boot crashes randomly upon TFTP), when the DIMM
63208 modules are still plugged in. So it is recommended to remove the DIMM
63209 modules while using the NAND booting code with the fixed SDRAM setup!
63210
63211 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
63212 Signed-off-by: Stefan Roese <sr@denx.de>
63213
63214 commit afe9fa59cb63b4f9d16bf01c93eb212f25a38c2a
63215 Author: Stefan Roese <sr@denx.de>
63216 Date: Mon Oct 22 16:24:44 2007 +0200
63217
63218 ppc4xx: Add SNTP support to AMCC Katmai, Kilauea & Makalu boards
63219
63220 Signed-off-by: Stefan Roese <sr@denx.de>
63221
63222 commit 3248f63ad89cb031491edb7016587fe6e9a238b9
63223 Author: Stefan Roese <sr@denx.de>
63224 Date: Mon Oct 22 16:22:40 2007 +0200
63225
63226 ppc4xx: Rework of 4xx serial driver (4)
63227
63228 Change 4xx_uart.c:
63229
63230 - Use in_8/out_8 macros instead of in8/out8
63231 - No need for UART_BASE marco anymore, now really handled via function
63232 parameter
63233 - serial_init_common() introduced
63234 - Further coding style cleanup
63235
63236 Signed-off-by: Stefan Roese <sr@denx.de>
63237
63238 commit e61cb8163a66b8a135696ae232e2bead1ce0a049
63239 Author: Stefan Roese <sr@denx.de>
63240 Date: Mon Oct 22 15:45:49 2007 +0200
63241
63242 ppc4xx: Rework of 4xx serial driver (3)
63243
63244 Change all linker scripts to reference the changed driver name iop480_uart.o.
63245
63246 Signed-off-by: Stefan Roese <sr@denx.de>
63247
63248 commit 882ae41274921f9016131806bdeb27e19606f47a
63249 Author: Stefan Roese <sr@denx.de>
63250 Date: Mon Oct 22 15:44:39 2007 +0200
63251
63252 ppc4xx: Rework of 4xx serial driver (2)
63253
63254 Change all linker scripts to reference the changed driver name 4xx_uart.o.
63255
63256 Note: In most cased all these explicit referencing of these object files
63257 in the linker scripts is not neccessary. Only for manually embedded
63258 environment into the U-Boot image, which is not done is most cases.
63259
63260 Signed-off-by: Stefan Roese <sr@denx.de>
63261
63262 commit ad31e40bed042cb670d0036fea96435007afb838
63263 Author: Stefan Roese <sr@denx.de>
63264 Date: Mon Oct 22 15:09:59 2007 +0200
63265
63266 ppc4xx: Rework of 4xx serial driver (1)
63267
63268 This patch starts the rework of the PPC4xx serial driver. First we split
63269 the file into two seperate files, one 4xx_uart.c with the 405/440 UART
63270 handling code and the other one iop480_uart.c with the UART code for the
63271 PLX-Tech IOP480 PPC (PPC403 based).
63272
63273 Signed-off-by: Stefan Roese <sr@denx.de>
63274
63275 commit 764e7417ee5f6e25b1715720e7d7dd3487109385
63276 Author: Stefan Roese <sr@denx.de>
63277 Date: Mon Oct 22 10:30:38 2007 +0200
63278
63279 ppc4xx: Correct UART input clock calculation and passing to fdt
63280
63281 Signed-off-by: Stefan Roese <sr@denx.de>
63282
63283 commit 211ea91ac6c225bec7e668a03d0ba7d7310679fa
63284 Author: Stefan Roese <sr@denx.de>
63285 Date: Mon Oct 22 07:34:34 2007 +0200
63286
63287 ppc4xx: Add initial AMCC Makalu 405EX support
63288
63289 Signed-off-by: Stefan Roese <sr@denx.de>
63290
63291 commit fa8aea20456e6f1dba43f46bcc72024dd9499998
63292 Author: Stefan Roese <sr@denx.de>
63293 Date: Mon Oct 22 07:33:52 2007 +0200
63294
63295 ppc4xx: Add freqUART to CPU speed detection
63296
63297 This value is needed later for the device tree configuration of
63298 the uart clock.
63299
63300 Signed-off-by: Stefan Roese <sr@denx.de>
63301
63302 commit 837c730b4d7c6b1ddf3d1e247cb4445005d9bf0d
63303 Author: Stefan Roese <sr@denx.de>
63304 Date: Sun Oct 21 14:26:29 2007 +0200
63305
63306 ppc: Small Kilauea cleanup of config file
63307
63308 Signed-off-by: Stefan Roese <sr@denx.de>
63309
63310 commit 758c037aeead34b49631b8da3a90b1bba14c0410
63311 Author: Stefan Roese <sr@denx.de>
63312 Date: Sun Oct 21 08:16:12 2007 +0200
63313
63314 rtc: Add Xicor/Intersil X1205 RTC support
63315
63316 This patch adds support for the Xicor/Intersil X1205 RTC used on the
63317 AMCC Makalu eval board. This driver is basically cloned from the Linux
63318 driver version (2.6.23).
63319
63320 This patch also introduces the Linux bcd.h header for the BCD2BIN/
63321 BIN2BCD conversions. In the future some of the other U-Boot RTC driver
63322 should be converted to also use this header instead of implementing
63323 their own local copy of these functions/macros.
63324
63325 Signed-off-by: Stefan Roese <sr@denx.de>
63326
63327 commit 087dfdb79b5fd1ab99a26990c62a732c01a8c7f6
63328 Author: Stefan Roese <sr@denx.de>
63329 Date: Sun Oct 21 08:12:41 2007 +0200
63330
63331 ppc4xx: Consolidate some of the 405 and 440 macros/structs into 4xx
63332
63333 This patch moves some common 4xx macros and the PPC405_SYS_INFO/
63334 PPC440_SYS_INFO structure into the common ppc4xx.h header.
63335
63336 Lot's of other macros are good candidates to be consolidated this way
63337 in the future.
63338
63339 Signed-off-by: Stefan Roese <sr@denx.de>
63340
63341 commit 770c7af5800f598d22730d1f4b70f16c9b33512e
63342 Author: Stefan Roese <sr@denx.de>
63343 Date: Sun Oct 21 08:05:18 2007 +0200
63344
63345 ppc4xx: Fix size setup in Kilauea DDR2 init routine
63346
63347 The size was initilized wrong. Instead of 256MB, the DDR2 controller
63348 was setup to 512MB. Now the correct values is used.
63349
63350 This patch also does a little cleanup and adds a comment here.
63351
63352 Signed-off-by: Stefan Roese <sr@denx.de>
63353
63354 commit f6ba9b56607d4b27550301c7c7f6b55b654fd62a
63355 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
63356 Date: Thu Oct 18 17:29:04 2007 +0200
63357
63358 ppc4xx: Define CONFIG_BOOKE for all PPC440 based processors
63359
63360 CONFIG_BOOKE must be defined for PPC440 processors so that the proper SPR
63361 number is used to access system registers.
63362
63363 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
63364 Signed-off-by: Stefan Roese <sr@denx.de>
63365
63366 commit c36c68160333ac5fe41ec3db12a728b7075b3912
63367 Author: Stefan Roese <sr@denx.de>
63368 Date: Thu Oct 18 07:42:27 2007 +0200
63369
63370 ppc4xx: Change inbound PCIe location for endpoint tests on Katmai
63371
63372 On Yucca & Katmai, the inbound memory map pointed to 0x4.0000.0000, which
63373 is the internal SRAM. Since I now ported and tested this endpoint mode
63374 on Kilauea successfully to map to 0 (SDRAM), I also changed this for
63375 Katmai.
63376
63377 Yucca will stay at internal SRAM for now. Not sure if somebody relies on
63378 this setup.
63379
63380 Signed-off-by: Stefan Roese <sr@denx.de>
63381
63382 commit 5cb4af4791f61843432155142b6cfac901f66c10
63383 Author: Stefan Roese <sr@denx.de>
63384 Date: Thu Oct 18 07:39:38 2007 +0200
63385
63386 ppc4xx: Add PCIe endpoint support on Kilauea (405EX)
63387
63388 This patch adds endpoint support for the AMCC Kilauea eval board. It can
63389 be tested by connecting a reworked PCIe cable (only 1x lane singles
63390 connected) to another root-complex.
63391
63392 In this test setup, a 64MB inbound window is configured at BAR0 which maps
63393 to 0 on the PLB side. So accessing this BAR0 from the root-complex will
63394 access the first 64MB of the SDRAM on the PPC side.
63395
63396 Signed-off-by: Stefan Roese <sr@denx.de>
63397
63398 commit d4cb2d17946466740afeb195a57d6cb290bf4cc0
63399 Author: Stefan Roese <sr@denx.de>
63400 Date: Sat Oct 13 16:43:23 2007 +0200
63401
63402 ppc4xx: Dynamic configuration of 4xx PCIe mode as root or endpoint mode
63403
63404 This patch adds support for dynamic configuration of PCIe ports for the
63405 AMCC PPC4xx boards equipped with PCIe interfaces. These are the PPC440SPe
63406 boards Yucca & Katmai and the 405EX board Kilauea.
63407
63408 This dynamic configuration is done via the "pcie_mode" environement
63409 variable. This variable can be set to "EP" or "RP" for endpoint or
63410 rootpoint mode. Multiple values can be joined via the ":" delimiter.
63411 Here an example:
63412
63413 pcie_mode=RP:EP:EP
63414
63415 This way, PCIe port 0 will be configured as rootpoint, PCIe port 1 and 2
63416 as endpoint.
63417
63418 Per default Yucca will be configured as:
63419 pcie_mode=RP:EP:EP
63420
63421 Per default Katmai will be configured as:
63422 pcie_mode=RP:RP:REP
63423
63424 Per default Kilauea will be configured as:
63425 pcie_mode=RP:RP
63426
63427 Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
63428 Signed-off-by: Stefan Roese <sr@denx.de>
63429
63430 commit fd671802b67a0ef37a06124fa2ce85f00aa22c6f
63431 Author: Stefan Roese <sr@denx.de>
63432 Date: Thu Oct 11 11:15:59 2007 +0200
63433
63434 ppc4xx: Enable device tree support (fdt) on Kilauea per default
63435
63436 This patch enables the fdt support on the AMCC Kilauea eval board.
63437 Additionally now EBC ranges fdt fixup is included to support NOR
63438 FLASH mapping via the Linux physmap_of driver.
63439
63440 This Kilauea port now support booting arch/ppc and arch/powerpc
63441 Linux kernels. The default environment "net_nfs" is for arch/ppc
63442 and "net_nfs_fdt" is for arch/powerpc. In the long run, arch/ppc
63443 support will be removed.
63444
63445 Signed-off-by: Stefan Roese <sr@denx.de>
63446
63447 commit 4994ffd890b9d95d807387a9b7bd8a4803ee406e
63448 Author: Stefan Roese <sr@denx.de>
63449 Date: Thu Oct 11 11:11:45 2007 +0200
63450
63451 ppc4xx: Add additional debug info to 4xx fdt support
63452
63453 Signed-off-by: Stefan Roese <sr@denx.de>
63454
63455 commit db3232ddb058d0ed0bc31f7c5c296748a1afac67
63456 Author: Stefan Roese <sr@denx.de>
63457 Date: Fri Oct 5 21:28:58 2007 +0200
63458
63459 ppc4xx: Fix small merge problems with CPCI440 and Acadia boards
63460
63461 Signed-off-by: Stefan Roese <sr@denx.de>
63462
63463 commit 1941cce71b1ae975602854045061e82f94ecd012
63464 Author: Stefan Roese <sr@denx.de>
63465 Date: Fri Oct 5 17:35:10 2007 +0200
63466
63467 ppc4xx: Fix small merge problem in 4xx_enet.c
63468
63469 Signed-off-by: Stefan Roese <sr@denx.de>
63470
63471 commit 566806ca1a1bf4d895daaf0b2ba5494abbffebaf
63472 Author: Stefan Roese <sr@denx.de>
63473 Date: Fri Oct 5 17:11:30 2007 +0200
63474
63475 ppc4xx: Add initial AMCC Kilauea 405EX support
63476
63477 Signed-off-by: Stefan Roese <sr@denx.de>
63478
63479 commit dbbd125721aea6645fdb962f36bd41f59e272f9d
63480 Author: Stefan Roese <sr@denx.de>
63481 Date: Fri Oct 5 17:10:59 2007 +0200
63482
63483 ppc4xx: Add PPC405EX support
63484
63485 Signed-off-by: Stefan Roese <sr@denx.de>
63486
63487 commit 1d7b874e9c9a7c66f5d8da9ec78a3733765d3e31
63488 Author: Stefan Roese <sr@denx.de>
63489 Date: Fri Oct 5 17:09:36 2007 +0200
63490
63491 ppc4xx: Cleanup of 4xx PCI and PCIe support (renaming)
63492
63493 Signed-off-by: Stefan Roese <sr@denx.de>
63494
63495 commit 4f14ed6230b9c109aac9a6fb878497dabd44c2db
63496 Author: Stefan Roese <sr@denx.de>
63497 Date: Fri Oct 5 17:07:50 2007 +0200
63498
63499 ppc4xx: Add initial fdt support to 4xx (first needed on 405EX)
63500
63501 Signed-off-by: Stefan Roese <sr@denx.de>
63502
63503 commit a424a8bb2924b90724b944165d3141f1fa8dfe5b
63504 Author: Stefan Roese <sr@denx.de>
63505 Date: Fri Oct 5 17:04:57 2007 +0200
63506
63507 POST: Add 405EX support to 4xx UART POST test
63508
63509 Signed-off-by: Stefan Roese <sr@denx.de>
63510
63511 commit 4f2e92c11f6e2392fc8187829211a5ca7f0c1e12
63512 Author: Stefan Roese <sr@denx.de>
63513 Date: Fri Oct 5 15:10:02 2007 +0200
63514
63515 DTT: Prepare DS1775 driver for use of different I2C addresses
63516
63517 Signed-off-by: Stefan Roese <sr@denx.de>
63518
63519 commit 19e93b1e16d267220440d827b920fbad8abfa70f
63520 Author: Stefan Roese <sr@denx.de>
63521 Date: Fri Oct 5 14:23:43 2007 +0200
63522
63523 ppc4xx: 4xx_pcie: Change PCIe status output to match common style
63524
63525 Signed-off-by: Stefan Roese <sr@denx.de>
63526
63527 commit ff68f66bcb0da847845aa2fac11eba6c25938c99
63528 Author: Stefan Roese <sr@denx.de>
63529 Date: Fri Oct 5 09:22:33 2007 +0200
63530
63531 ppc4xx: 4xx_pcie: Disable debug output as default
63532
63533 Signed-off-by: Stefan Roese <sr@denx.de>
63534
63535 commit 97923770cb52b64d69eec958a11b2eda8d46e0f7
63536 Author: Stefan Roese <sr@denx.de>
63537 Date: Fri Oct 5 09:18:23 2007 +0200
63538
63539 ppc4xx: 4xx_pcie: More general cleanup and 405EX PCIe support added
63540
63541 Signed-off-by: Stefan Roese <sr@denx.de>
63542
63543 commit 4dbee8a90df613eb517aadbecebd70f168913d30
63544 Author: Stefan Roese <sr@denx.de>
63545 Date: Fri Oct 5 07:57:20 2007 +0200
63546
63547 ppc4xx: 4xx_pcie: Change CFG_PCIE_MEMSIZE to 128MB on Yucca & Katmai
63548
63549 128MB seems to be the smallest possible value for the memory size
63550 for on PCIe port. With this change now the BAR's of the PCIe cards
63551 are accessible under U-Boot.
63552
63553 One big note: This only works for PCIe port 0 & 1. For port 2 this
63554 currently doesn't work, since the base address is now 0xc0000000
63555 (0xb0000000 + 2 * 0x08000000), and this is already occupied by
63556 CFG_PCIE0_CFGBASE. But solving this issue for port 2 would mean
63557 to change the base addresses completely and this change would have
63558 too much impact right now.
63559
63560 This patch adds debug output to the 4xx pcie driver too.
63561
63562 Signed-off-by: Stefan Roese <sr@denx.de>
63563
63564 commit 6d95289281ed2958ebf76d2b55f86bbd88591fd2
63565 Author: Stefan Roese <sr@denx.de>
63566 Date: Wed Oct 3 21:16:32 2007 +0200
63567
63568 ppc4xx: 4xx_pcie: Fix problem with SDRN access using port number as idx
63569
63570 Signed-off-by: Stefan Roese <sr@denx.de>
63571
63572 commit 3048bcbf0bad262378c5af68f2bf6778fb7d829a
63573 Author: Stefan Roese <sr@denx.de>
63574 Date: Wed Oct 3 15:01:02 2007 +0200
63575
63576 ppc4xx: Rename 405gp_pci to 4xx_pci since its used on all 4xx platforms
63577
63578 These files were introduced with the IBM 405GP but are currently used on all
63579 4xx PPC platforms. So the name doesn't match the content anymore. This patch
63580 renames the files to 4xx_pci.c/h.
63581
63582 Signed-off-by: Stefan Roese <sr@denx.de>
63583
63584 commit 94276eb0a7a35b9e8c053d589ae225b0f017a237
63585 Author: Stefan Roese <sr@denx.de>
63586 Date: Wed Oct 3 14:14:58 2007 +0200
63587
63588 ppc4xx: Add a comment for 405EX PCIe endpoint configuration
63589
63590 Signed-off-by: Stefan Roese <sr@denx.de>
63591
63592 commit 03d344bb6a5f082ea10ec9d753558ea7dfd1c626
63593 Author: Stefan Roese <sr@denx.de>
63594 Date: Wed Oct 3 10:38:09 2007 +0200
63595
63596 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (3)
63597
63598 (3) This patch introduces macros like SDRN_PESDR_DLPSET(port) to access
63599 the SDR registers of the PCIe ports. This makes the overall design
63600 clearer, since it removed a lot of switch statements which are not
63601 needed anymore.
63602
63603 Also, the functions ppc4xx_init_pcie_rootport() and
63604 ppc4xx_init_pcie_entport() are merged into a single function
63605 ppc4xx_init_pcie_port(), since most of the code was duplicated.
63606 This makes maintainance and porting to other 4xx platforms
63607 easier.
63608
63609 Signed-off-by: Stefan Roese <sr@denx.de>
63610
63611 commit 026f71106871f31d17d0ea0db9a7547ff92934bc
63612 Author: Stefan Roese <sr@denx.de>
63613 Date: Wed Oct 3 07:48:09 2007 +0200
63614
63615 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (2)
63616
63617 This patch is the first patch of a series to make the 440SPe PCIe code
63618 usable on different 4xx PPC platforms. In preperation for the new 405EX
63619 which is also equipped with PCIe interfaces.
63620
63621 (2) This patch renames the functions from 440spe_ to 4xx_ with a
63622 little additional cleanup
63623
63624 Signed-off-by: Stefan Roese <sr@denx.de>
63625
63626 commit c7c6da23028f146d912514b95aefa3da7cf37699
63627 Author: Stefan Roese <sr@denx.de>
63628 Date: Wed Oct 3 07:34:10 2007 +0200
63629
63630 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (1)
63631
63632 This patch is the first patch of a series to make the 440SPe PCIe code
63633 usable on different 4xx PPC platforms. In preperation for the new 405EX
63634 which is also equipped with PCIe interfaces.
63635
63636 (1) This patch renames the files from 440spe_pcie to 4xx_pcie
63637
63638 Signed-off-by: Stefan Roese <sr@denx.de>
63639
63640 commit 245a362ad3c0c1b84fccc9fec7b623eb14f6e502
63641 Author: Marian Balakowicz <m8@semihalf.com>
63642 Date: Wed Oct 24 01:37:36 2007 +0200
63643
63644 TQM5200: Call usb_cpu_init() during board init
63645
63646 usb_cpu_init() configures GPS USB pins, clocks, etc. and
63647 is required for proper operation of kernel USB subsystem.
63648 This setup was previously done in the kernel by the fixup
63649 code which is being removed, thus low level init must be
63650 done by U-boot now.
63651
63652 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
63653 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
63654
63655 commit b5af773f8d92677e06f3295b45557c9d0a487c24
63656 Author: Zhang Wei <wei.zhang@freescale.com>
63657 Date: Thu Oct 25 17:51:27 2007 +0800
63658
63659 Fix the issue of usb_kbd driver missing the scan code of key 'z'.
63660
63661 The scan code of the key 'z' is 0x1d, which should be handled.
63662
63663 The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
63664 controller.
63665
63666 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
63667 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
63668
63669 commit 85ac988e86f9414fa645b0148dc66c3520a1eb84
63670 Author: Rodolfo Giometti <giometti@enneenne.com>
63671 Date: Mon Oct 15 11:59:17 2007 +0200
63672
63673 PXA USB OHCI: "usb stop" implementation.
63674
63675 Some USB keys need to be switched off before loading the kernel
63676 otherwise they can remain in an undefined status which prevents them
63677 to be correctly recognized by the kernel.
63678
63679 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
63680 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
63681
63682 commit 31548249decf18a6b877a18436b6139dd483fe4a
63683 Author: Justin Flammia <jflammia@savantav.com>
63684 Date: Mon Oct 29 17:40:35 2007 -0400
63685
63686 DHCP Client Fix
63687
63688 This is a multi-part message in MIME format.
63689
63690 commit e6e505eae94ed721e123e177489291fc4544b7b8
63691 Author: Justin Flammia <jflammia@savantav.com>
63692 Date: Mon Oct 29 17:19:03 2007 -0400
63693
63694 Found a bug in the way the DHCP Request packet is built, where the IP address
63695 that is offered by the server is bound to prematurely. This patch is a fix of
63696 that bug where the IP address offered by the DHCP server is not used until
63697 after the DHCP ACK from the server is received.
63698
63699 Signed-off-by: Justin Flammia <jflammia@savantav.com>
63700 Signed-off-by: Ben Warren <bwarren@qstreams.com>
63701
63702 commit e8ee8f3ade2a06c1893dd5e68f223070d650c7ed
63703 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63704 Date: Thu Oct 25 17:16:22 2007 -0500
63705
63706 ColdFire 54455: Fix correct boot location for atmel and intel
63707
63708 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63709
63710 commit 688e8eb414ac111cca7ce60bdf30e805ab9a7bcb
63711 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63712 Date: Thu Oct 25 17:14:00 2007 -0500
63713
63714 ColdFire: Fix build error when CONFIG_WATCHDOG is defined
63715
63716 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63717
63718 commit c67e12e705b204cfe914e3e3e693d69a445dcabf
63719 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63720 Date: Thu Oct 25 17:12:36 2007 -0500
63721
63722 ColdFire 5329: Assign correct SDRAM size and fix cache
63723
63724 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63725
63726 commit 95e9f2c212a65610b2e59a5c00d0113383a4da0b
63727 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63728 Date: Thu Oct 25 17:10:23 2007 -0500
63729
63730 ColdFire 5253: Assign correct SDRAM size
63731
63732 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63733
63734 commit 2acefa72ee0026f862ab65597ca687428f63a973
63735 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63736 Date: Thu Oct 25 17:09:17 2007 -0500
63737
63738 ColdFire 5282: Fix external flash boot and return dramsize
63739
63740 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63741
63742 commit d78791ae914d4e7c5edca1cdad73b3dc81a4eb82
63743 Author: Bartlomiej Sieka <tur@semihalf.com>
63744 Date: Thu Oct 25 17:20:01 2007 +0200
63745
63746 TQM5200: increase kernel_addr_r and fdt_addr_r (hinted by Wolfgang Denk).
63747
63748 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
63749
63750 commit 1a0ce20aa4cb4e3068da04e7290ee9986fd0b834
63751 Author: Martin Krause <martin.krause@tqs.de>
63752 Date: Wed Oct 24 08:42:25 2007 +0200
63753
63754 TQM5200: fix spurious characters on second serial interface
63755
63756 With this patch PSC3 is configured as UART. This is done, because if
63757 the pins of PSC3 are not configured at all (-> all pins are GPI),
63758 due to crosstalk, spurious characters may be send over the RX232_2_TXD
63759 signal line.
63760
63761 Signed-off-by: Martin Krause <martin.krause@tqs.de>
63762 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
63763
63764 commit be4a87f11e297a5cededbf7dd71c0248f3874acd
63765 Author: Martin Krause <martin.krause@tqs.de>
63766 Date: Wed Oct 24 08:41:27 2007 +0200
63767
63768 TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
63769
63770 Some commands for the STK52xx base board try to access the SM501 grafic
63771 controller. But the TQM5200S has no grafic controller (only the TQM5200
63772 and the TQM5200B have). This patch deactivates the commands accessing
63773 the SM501 for the TQM5200S.
63774
63775 Signed-off-by: Martin Krause <martin.krause@tqs.de>
63776 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
63777
63778 commit b31f64343ead9482cd439b1adbe4c34026a641b1
63779 Author: Martin Krause <martin.krause@tqs.de>
63780 Date: Mon Oct 22 16:45:53 2007 +0200
63781
63782 TQM5200: fix spurious characters on second serial interface
63783
63784 With this patch PSC3 is configured as UART. This is done, because if
63785 the pins of PSC3 are not configured at all (-> all pins are GPI),
63786 due to crosstalk, spurious characters may be send over the RX232_2_TXD
63787 signal line.
63788
63789 Signed-off-by: Martin Krause <martin.krause@tqs.de>
63790
63791 commit 0fc0f91b20ffa802f5a66534ca5c2844910583f6
63792 Author: Martin Krause <martin.krause@tqs.de>
63793 Date: Mon Oct 22 16:40:06 2007 +0200
63794
63795 TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
63796
63797 Some commands for the STK52xx base board try to access the SM501 grafic
63798 controller. But the TQM5200S has no grafic controller (only the TQM5200
63799 and the TQM5200B have). This patch deactivates the commands accessing
63800 the SM501 for the TQM5200S.
63801
63802 Signed-off-by: Martin Krause <martin.krause@tqs.de>
63803
63804 commit 7b0a42219f30277f71f4405cbaf8a269f6d2d227
63805 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63806 Date: Sun Oct 21 09:14:28 2007 +0200
63807
63808 Mips: Fix string functions differ prototype declaration
63809
63810 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63811
63812 commit cb8250fe4b3c4ed549b270e8a20bc22060e7e1d2
63813 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
63814 Date: Fri Oct 19 17:51:40 2007 -0500
63815
63816 fsl_pci_init enable COMMAND_MEMORY if inbound window
63817
63818 Patch 16e23c3f removed PCSRBAR allocation. But passing zero windows
63819 to pciauto_setup_device has the side effect of not getting
63820 COMMAND_MEMORY set.
63821
63822 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
63823
63824 commit e9d0d527992566ebef9826962ff1745b2f082b92
63825 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63826 Date: Fri Oct 19 10:55:24 2007 +0200
63827
63828 delta: Fix OHCI_REGS_BASE undeclared and wait_ms implicit declaration
63829
63830 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63831
63832 commit 9c4884f54da982ce990c7d1760ac81b0704d3c64
63833 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63834 Date: Fri Oct 19 08:10:15 2007 +0200
63835
63836 fix warning: no return statement in function returning non-void
63837
63838 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63839
63840 commit e78220f6e514206757acfe247297fc9a328a881f
63841 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63842 Date: Fri Oct 19 06:33:45 2007 +0200
63843
63844 xsengine: Fix no partition type specified, use DOS as default
63845
63846 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63847
63848 commit 10cdb8dbd67a818823ab9ec88b68fc348903db59
63849 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63850 Date: Fri Oct 19 00:24:59 2007 +0200
63851
63852 lubbock: Fix no partition type specified, use DOS as default
63853
63854 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63855
63856 commit 41b4d282d38fa7231c315c5f6cfff5bdd24e0191
63857 Author: Wolfgang Denk <wd@denx.de>
63858 Date: Tue Oct 23 16:50:03 2007 +0200
63859
63860 Coding style: keep lists sorted; update CHANGELOG
63861
63862 Signed-off-by: Wolfgang Denk <wd@denx.de>
63863
63864 commit 58b74b05c621e2835ecf4e2d3243042cf4186777
63865 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63866 Date: Fri Oct 19 00:09:05 2007 +0200
63867
63868 Fix missing drivers makefile entries ds1722.c mw_eeprom.c
63869
63870 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63871
63872 commit 96455bfebc9887837095c9051d216f53c61b5f10
63873 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63874 Date: Fri Oct 19 00:07:39 2007 +0200
63875
63876 Fix warning differ in signedness in board/innokom/innokom.c
63877
63878 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63879
63880 commit 2a4741d9a14ec475f50e9856d2c0a67e8b4271bd
63881 Author: Marcel Ziswiler <marcel@ziswiler.com>
63882 Date: Fri Oct 19 00:25:33 2007 +0200
63883
63884 fix pxa255_idp board
63885
63886 The pxa255_idp being an old unmaintained board showed several issues:
63887 1. CONFIG_INIT_CRITICAL was still defined.
63888 2. Neither CONFIG_MAC_PARTITION nor CONFIG_DOS_PARTITION was defined.
63889 3. Symbol flash_addr was undeclared.
63890 4. The boards lowlevel_init function was still called memsetup.
63891 5. The TEXT_BASE was still 0xa3000000 rather than 0xa3080000.
63892 6. Using -march=armv5 instead of -march=armv5te resulted in lots of
63893 'target CPU does not support interworking' warnings on recent compilers.
63894 7. The PXA's serial driver redefined FFUART, BTUART and STUART used as
63895 indexes rather than the register definitions from the pxa-regs header
63896 file. Renamed them to FFUART_INDEX, BTUART_INDEX and STUART_INDEX to
63897 avoid any ambiguities.
63898 8. There were several redefinition warnings concerning ICMR, OSMR3,
63899 OSCR, OWER, OIER, RCSR and CCCR in the PXA's assembly start file.
63900 9. The board configuration file was rather outdated.
63901 10. The part header file defined the vendor, product and revision arrays
63902 as unsigned chars instead of just chars in the block_dev_desc_t
63903 structure.
63904
63905 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
63906
63907 commit 298cd4cafe81ff8a6c87be8fbc440a20720d3ed6
63908 Author: Rune Torgersen <runet@innovsys.com>
63909 Date: Wed Oct 17 11:56:31 2007 -0500
63910
63911 Make MPC8266ADS command selection more robust
63912
63913 Fix MPC8266 command line definition so it won't break when new commands
63914 are added to u-boot.
63915 Signed-off-by Rune Torgersen <runet@innovsys.com>
63916
63917 commit d3afa1ee19345a31fd1eaad3e98b97d13ca47315
63918 Author: Bartlomiej Sieka <tur@semihalf.com>
63919 Date: Tue Oct 23 13:14:10 2007 +0200
63920
63921 Motion-PRO: Update configuration to accomodate next generation board.
63922
63923 New board has faster oscillator and a different Flash chip. This affects:
63924 - CFG_MPC5XXX_CLKIN
63925 - SDRAM timings
63926 - Flash CS configuration (timings)
63927 - Flash sector size, and thus MTD partition layout
63928 - malloc() arena size (due to bigger Flash sectors)
63929 - smaller memory test range (due to bigger malloc() arena)
63930
63931 This patch also enables more extensive memory testing via "mtest".
63932
63933 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
63934
63935 commit eff501904df2bf1724a750062628ba2c51dbb1f8
63936 Author: Bartlomiej Sieka <tur@semihalf.com>
63937 Date: Tue Oct 23 11:36:07 2007 +0200
63938
63939 Motion-PRO: Add setting of SDelay reg. to SDRAM controller configuration.
63940
63941 Per AN3221 (MPC5200B SDRAM Initialization and Configuration), the SDelay
63942 register must be written a value of 0x00000004 as the first step of the
63943 SDRAM contorller configuration.
63944
63945 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
63946
63947 commit 7a9348728ebda63cdbaacffd83099aa71d9d4c54
63948 Author: Peter Pearse <peter.pearse@arm.com>
63949 Date: Tue Oct 23 10:22:16 2007 +0100
63950
63951 Move PL01* serial drivers to drivers/serial and adjust Makefiles.
63952
63953 commit 20d500d531a6b971ce6cc1bf191cb0092cdc0afc
63954 Author: Stefan Roese <sr@denx.de>
63955 Date: Tue Oct 23 10:17:42 2007 +0200
63956
63957 ppc4xx: lwmon5: Some further GPIO config changes
63958
63959 Signed-off-by: Stefan Roese <sr@denx.de>
63960
63961 commit de9a738faa7c2f47286119c3bfebc3dfbfe7d86d
63962 Author: Vlad Lungu <vlad@comsys.ro>
63963 Date: Sun Oct 21 22:10:10 2007 +0900
63964
63965 [MIPS] Fix UNCACHED_SDRAM
63966
63967 PHYSADDR is for physical address, KSEG1ADDR is for uncached.
63968
63969 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
63970 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
63971
63972 commit 00101dd7a32d12f698150123e47e4b3420279f86
63973 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
63974 Date: Sun Oct 21 21:30:42 2007 +0900
63975
63976 [MIPS] Add PIC-related switches to PLATFORM_{CPP,LD}FLAGS and cleanup
63977
63978 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
63979
63980 commit eb700636db017d310edaeb559b13d82588560674
63981 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
63982 Date: Sun Oct 21 10:55:37 2007 +0900
63983
63984 [MIPS] u-boot.lds: Define _gp in a standard manner
63985
63986 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
63987
63988 commit 22069215eb7adf5a3888bf7c7784ea9d70a72cd0
63989 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
63990 Date: Sun Oct 21 10:55:36 2007 +0900
63991
63992 [MIPS] Fix $gp usage
63993
63994 Now we load $gp with _GLOBAL_OFFSET_TABLE_, but this is incorrect use.
63995 As a general principle, we should use _gp for $gp.
63996
63997 Thanks to linker script's help we fortunately have _gp which equals to
63998 _GLOBAL_OFFSET_TABLE_. But once _gp gets out of alignment, we will not
63999 be able to access to GOT entires, global variables and procedure entry
64000 points. The right thing to do is to use _gp.
64001
64002 This patch also introduce a new symbol `.gpword _GLOBAL_OFFSET_TABLE_'
64003 which holds the offset from _gp. When updating GOT entries, we use this
64004 offset and _gp to calculate the final _GLOBAL_OFFSET_TABLE_.
64005
64006 This patch is originally submitted by Vlad Lungu <vlad@comsys.ro>, then
64007 I made some change to leave over num_got_entries.
64008
64009 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
64010 Cc: Vlad Lungu <vlad@comsys.ro>
64011
64012 commit cbf2323b5b8285ea01acba7bbb905a3162d9b021
64013 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
64014 Date: Sun Oct 21 10:55:36 2007 +0900
64015
64016 [MIPS] u-boot.lds: Fix __got_start and __got_end
64017
64018 Ensure that __got_start points to top of the `.got', and __got_end points
64019 to bottom as well, so that we never fail to count num_got_entries.
64020
64021 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
64022
64023 commit e5f325fec5b48ae705c89522923ba5a2e37cd5c7
64024 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
64025 Date: Sun Oct 21 10:55:36 2007 +0900
64026
64027 [MIPS] u-boot.lds: Remove duplicated .sdata section
64028
64029 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
64030
64031 commit 05bf4919c1ce49cdedadacd564d0786a8ed796a1
64032 Author: Wolfgang Denk <wd@denx.de>
64033 Date: Sun Oct 21 01:01:17 2007 +0200
64034
64035 Minor coding style cleanup; update CHANGELOG
64036
64037 Signed-off-by: Wolfgang Denk <wd@denx.de>
64038
64039 commit ff285ca07eda1ea4a8909848cc1cc604ec8fec9c
64040 Author: Vlad Lungu <vlad@comsys.ro>
64041 Date: Thu Oct 4 20:47:10 2007 +0300
64042
64043 Fix NE2000 driver:
64044
64045 Fixed typo in ne2000.h, thinko re n2k_inb() usage, don't try
64046 to do anything in eth_stop() if eth_init() was not called.
64047 Simplified RX path in order to avoid timeouts on really really
64048 fast NE2000 cards (read: qemu with internal tftp), NetLoop() is
64049 clever enough to cope with 1 packet per eth_rx().
64050
64051 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
64052
64053 commit df90968b48fb34fa9072fab150db2ac89678f537
64054 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
64055 Date: Mon Sep 24 13:32:13 2007 -0400
64056
64057 Setting MSR[DE] in do_reset
64058
64059 Hello,
64060 This patch ensures the soft reset of the board for the 85xx boards
64061 by setting the MSR[DE] in the do_reset function.
64062
64063 Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
64064
64065 commit 1e701e701304b3c3a3768ca83dd2ab7b9e88c77d
64066 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
64067 Date: Mon Sep 24 13:36:01 2007 -0400
64068
64069 MSR overwrite fix
64070
64071 Hello,
64072 This patch fixes the MSR overwrite in the start.S when moving out of
64073 the last 4K page.
64074
64075 Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
64076
64077 commit 5c7ea64bb74a850a2b2303f853a8270695ad8602
64078 Author: Dan Wilson <dwilson@fulcrummicro.com>
64079 Date: Fri Oct 19 11:33:48 2007 -0500
64080
64081 tsec driver should clear RHALT on startup
64082
64083 This was causing problems for some people.
64084
64085 Signed-off-by: Alain Gravel <agravel@fulcrummicro.com>
64086 Signed-off-by: Dan Wilson <dwilson@fulcrummicro.com>
64087 Signed-off-by: Andy Fleming <afleming@freescale.com>
64088
64089 commit 7600d47b8f6a10019e537dc9a62aa1498df58d25
64090 Author: Kumar Gala <galak@kernel.crashing.org>
64091 Date: Thu Oct 11 00:29:18 2007 -0500
64092
64093 Improve handling of PCI interrupt device tree fixup on MPC85xx CDS
64094
64095 On the MPC85xx CDS we have two issues:
64096
64097 1. The device tree fixup code did not check to see if the property we are
64098 trying to update is actually found. Its possible that it would update
64099 random memory starting at 0.
64100
64101 2. Newer Linux kernel's have moved the location of the PCI nodes to be
64102 sibilings of the soc node and not children. The explicit PATH to the PCI
64103 node would not be found for these device trees. Add the ability to handle
64104 both paths. In the future we shouldn't handle such fixups by explicit path.
64105
64106 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
64107
64108 commit a3063eec775719b7e91023bbec3f64b3118791df
64109 Author: Kumar Gala <galak@kernel.crashing.org>
64110 Date: Thu Oct 11 00:18:48 2007 -0500
64111
64112 Set OF_STDOUT_PATH to match the default console on MPC8568 MDS
64113
64114 On the MPC8568 MDS we use ttyS0, UART0, etc. as the standard configured
64115 console. Make it so we match that config what we tell Linux as the early
64116 STDOUT console.
64117
64118 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
64119
64120 commit e1ce3cb617bb06f91f82f98915391175addf3e82
64121 Author: Kumar Gala <galak@kernel.crashing.org>
64122 Date: Tue Oct 2 11:12:27 2007 -0500
64123
64124 Remove magic numbers from cache related operations for mpc85xx
64125
64126 The mpc85xx start code uses some magic numbers that we actually
64127 have #defines for in <config.h> so use those instead.
64128
64129 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
64130
64131 commit 5441f61a3d8b7034f19fc1361183e936198e6dbb
64132 Author: Detlev Zundel <dzu@denx.de>
64133 Date: Fri Oct 19 16:47:26 2007 +0200
64134
64135 Fix two typos.
64136
64137 Signed-off-by: Detlev Zundel <dzu@denx.de>
64138
64139 commit 281df457c1aa50d2752165d0c5c3282d4027b974
64140 Author: Tony Li <tony.li@freescale.com>
64141 Date: Thu Oct 18 17:47:19 2007 +0800
64142
64143 mpc83xx: Add configure entry for MPC83xx ATM support
64144
64145 Add MPC8360EMDS_ATM_config and MPC832XEMDS_ATM_config into
64146 Makfile and MAKEALL
64147
64148 Signed-off-by: Tony Li <tony.li@freescale.com>
64149 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64150
64151 commit d2646554f529a9577515eceb0ec5eceee18244ba
64152 Author: Tony Li <tony.li@freescale.com>
64153 Date: Thu Oct 18 17:44:38 2007 +0800
64154
64155 mpc83xx: pq-mds-pib.c typo error
64156
64157 Correct to val8 from val.
64158
64159 Signed-off-by: Tony Li <tony.li@freescale.com>
64160 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64161
64162 commit 3e11ae80fec1ee12194940955431186abf6009c2
64163 Author: Stefan Roese <sr@denx.de>
64164 Date: Wed Oct 17 15:40:19 2007 +0200
64165
64166 ppc4xx: Add 667/133 (CPU/PLB) frequency setup to Sequoia bootstrap command
64167
64168 Signed-off-by: Stefan Roese <sr@denx.de>
64169
64170 commit 3c89d75409eb26639d36dfa11d4ee3d8b962dc3c
64171 Author: Jon Loeliger <jdl@freescale.com>
64172 Date: Tue Oct 16 15:27:43 2007 -0500
64173
64174 Initial mpc8610hpcd Makefile files.
64175
64176 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
64177 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
64178 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
64179 Signed-off-by: Jon Loeliger <jdl@freescale.com>
64180
64181 commit 9553df86d3a319c3a1a7cde7e4edd6eeb5aa64c7
64182 Author: Jon Loeliger <jdl@freescale.com>
64183 Date: Tue Oct 16 15:26:51 2007 -0500
64184
64185 Initial mpc8610hpcd cpu/, README and include/ files.
64186
64187 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
64188 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
64189 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
64190 Signed-off-by: Jon Loeliger <jdl@freescale.com>
64191
64192 commit 3dd2db53ceb0dff80f25c2a07f83f29b907b403e
64193 Author: Jon Loeliger <jdl@freescale.com>
64194 Date: Tue Oct 16 13:54:01 2007 -0500
64195
64196 Initial mpc8610hpcd board files.
64197
64198 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
64199 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
64200 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
64201 Signed-off-by: Jon Loeliger <jdl@freescale.com>
64202
64203 commit 7ee6ba1a056e4061ab4cfde30127e332e7957afd
64204 Author: runet@innovsys.com <runet@innovsys.com>
64205 Date: Tue Oct 16 14:50:40 2007 -0500
64206
64207 Make MPC8266ADS board compile again.
64208
64209 Signed-off-by: Runet Torgersen <runet@innovsys.com>
64210
64211 commit 2491167c245d8ebe6f2dbd8c4287aaa0d14fe93a
64212 Author: Jon Loeliger <jdl@freescale.com>
64213 Date: Mon Aug 27 12:41:03 2007 -0500
64214
64215 86xx: Allow for fewer DDR slots per memory controller.
64216
64217 As a direct correlation exists between DDR DIMM slots
64218 and SPD EEPROM addresses used to configure them, use
64219 the individually defined SPD_EEPROM_ADDRESS* values to
64220 determine if a DDR DIMM slot should have its SPD
64221 configuration read or not.
64222
64223 Effectively, this now allows for 1 or 2 DIMM slots
64224 per memory controller.
64225
64226 Signed-off-by: Jon Loeliger <jdl@freescale.com>
64227
64228 commit 4d4a945e189a2f384c66432316da2788a0ac1607
64229 Author: Rodolfo Giometti <giometti@enneenne.com>
64230 Date: Mon Oct 15 11:59:17 2007 +0200
64231
64232 PXA USB OHCI: "usb stop" implementation.
64233
64234 Some USB keys need to be switched off before loading the kernel
64235 otherwise they can remain in an undefined status which prevents them
64236 to be correctly recognized by the kernel.
64237
64238 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
64239
64240 commit e2e93442e558cf1500e92861f99713b2f045ea22
64241 Author: Stefan Roese <sr@denx.de>
64242 Date: Mon Oct 15 11:39:00 2007 +0200
64243
64244 ppc4xx: Fix bug in I2C bootstrap values for Sequoia/Rainier
64245
64246 The I2C bootstrap values that can be setup via the "bootstrap" command,
64247 were setup incorrect regarding the generation of the internal sync PCI
64248 clock. The values for PLB clock == 133MHz were slighly incorrect and the
64249 values for PLB clock == 166MHz were totally incorrect. This could
64250 lead to a hangup upon booting while PCI configuration scan.
64251
64252 This patch fixes this issue and configures valid PCI divisor values
64253 for the sync PCI clock, with respect to the provided external async
64254 PCI frequency.
64255
64256 Here the values of the formula in the chapter 14.2 "PCI clocking"
64257 from the 440EPx users manual:
64258
64259 AsyncPCICLK - 1MHz <= SyncPCIClk <= (2 * AsyncPCIClk) - 1MHz
64260
64261 33MHz async PCI frequency:
64262 PLB = 133:
64263 => 32 <= 44.3 <= 65 (div = 3)
64264
64265 PLB = 166:
64266 => 32 <= 55.3 <= 65 (div = 3)
64267
64268 66MHz async PCI frequency:
64269 PLB = 133:
64270 => 65 <= 66.5 <= 132 (div = 2)
64271
64272 PLB = 166:
64273 => 65 <= 83 <= 132 (div = 2)
64274
64275 Signed-off-by: Stefan Roese <sr@denx.de>
64276
64277 commit 5a5958b7de70ae99f0e7cbd5c97ec1346e051587
64278 Author: Stefan Roese <sr@denx.de>
64279 Date: Mon Oct 15 11:29:33 2007 +0200
64280
64281 ppc4xx: Fix incorrect 33/66MHz PCI clock log-message on Sequoia & Yosemite
64282
64283 The BCSR status bit for the 66MHz PCI operation was correctly
64284 addressed (MSB/LSB problem). Now the correct currently setup
64285 PCI frequency is displayed upon bootup.
64286
64287 This patch also fixes this problem on Rainier & Yellowstone, since these
64288 boards use the same souce code as Sequoia & Yosemite do.
64289
64290 Signed-off-by: Stefan Roese <sr@denx.de>
64291
64292 commit da3aad55cbde80ab6e301aafa82a2c411aa53eff
64293 Author: Martin Krause <martin.krause@tqs.de>
64294 Date: Wed Sep 26 17:55:56 2007 +0200
64295
64296 TQM860M: adjust for doubled flash sector size.
64297
64298 Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
64299 doubled sector size.
64300
64301 Signed-off-by: Martin Krause <martin.krause@tqs.de>
64302
64303 commit 9d29250e2e62f4bf20c7a20b4173d84c48f11f5d
64304 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
64305 Date: Wed Sep 26 17:55:54 2007 +0200
64306
64307 TQM8xx: Fix CAN timing.
64308
64309 Signed-off-by: Martin Krause <martin.krause@tqs.de>
64310
64311 commit d43e489baf02afae49077791fb22332d240d8656
64312 Author: Martin Krause <martin.krause@tqs.de>
64313 Date: Thu Sep 27 14:54:36 2007 +0200
64314
64315 TQM866M: fix SDRAM refresh
64316
64317 At 133 MHz the current SDRAM refresh rate is too fast
64318 (measured 4 * 1.17 us).
64319 CFG_MAMR_PTA changes from 39 to 97. This result
64320 in a refresh rate of 4 * 7.8 us at the default clock
64321 50 MHz. At 133 MHz the value will be then 4 * 2.9 us.
64322 This is a compromise until a new method is found to
64323 adjust the refresh rate.
64324
64325 Signed-off-by: Martin Krause <martin.krause@tqs.de>
64326
64327 commit 9ef57bbee1c67cc01da2026c242c4692db32be36
64328 Author: Martin Krause <martin.krause@tqs.de>
64329 Date: Wed Sep 26 17:55:55 2007 +0200
64330
64331 TQM866M: adjust for doubled flash sector size.
64332
64333 Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
64334 doubled sector size.
64335
64336 Signed-off-by: Martin Krause <martin.krause@tqs.de>
64337
64338 commit f8bf90461d9bad2e6fed31fcebaf235f60dd6763
64339 Author: Michal Simek <monstr@monstr.eu>
64340 Date: Sun Oct 14 16:12:29 2007 +0200
64341
64342 [FIX] XUPV2P change command handling
64343 and remove code violation
64344
64345 commit 636400198228d96983c06657b17f760f5989958e
64346 Author: Wolfgang Denk <wd@denx.de>
64347 Date: Sun Oct 14 00:13:19 2007 +0200
64348
64349 Prepare for 1.3.0-rc3 release
64350
64351 Signed-off-by: Wolfgang Denk <wd@denx.de>
64352
64353 commit 68f14f77ca5fe5f9cc025c8cae101671f628309f
64354 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64355 Date: Sat Sep 29 13:41:37 2007 +0200
64356
64357 Fix warning differ in signedness in cpu/pxa/mmc.c
64358
64359 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64360
64361 commit fc19e36f741e8bc727c0a330170b3b5db90399ef
64362 Author: Wolfgang Denk <wd@denx.de>
64363 Date: Sat Oct 13 23:51:14 2007 +0200
64364
64365 Fix warning differ in signedness in board/mpl/vcma9/vcma9.c
64366
64367 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64368 Signed-off-by: Wolfgang Denk <wd@denx.de>
64369
64370 commit de74b9eeacccaf0a42e5ecc9ae79a88f7a311296
64371 Author: Wolfgang Denk <wd@denx.de>
64372 Date: Sat Oct 13 21:15:39 2007 +0200
64373
64374 Coding Style cleanup.
64375
64376 Signed-off-by: Wolfgang Denk <wd@denx.de>
64377
64378 commit e1893815b0999410d7a327589611c7b38e95299e
64379 Author: Wolfgang Denk <wd@denx.de>
64380 Date: Fri Oct 12 15:49:39 2007 +0200
64381
64382 GP3 SSA: enable RTC
64383
64384 Signed-off-by: Wolfgang Denk <wd@denx.de>
64385
64386 commit 8002012041f1ff9f997a5727abe5015f70cd2e46
64387 Author: Grzegorz Bernacki <gjb@semihalf.com>
64388 Date: Tue Oct 9 13:58:24 2007 +0200
64389
64390 [ads5121] EEPROM support added.
64391
64392 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
64393
64394 commit 7b624ad254b97e5a25dca2304a398b64aeedaffe
64395 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
64396 Date: Sat Oct 6 18:55:35 2007 +0200
64397
64398 AVR32: Initialize bi_flash* in board_init_r
64399
64400 The ATSTK1000-specific flash driver intializes bi_flashstart,
64401 bi_flashsize and bi_flashoffset, but other flash drivers, like the CFI
64402 driver, don't.
64403
64404 Initialize these in board_init_r instead so that things will still be
64405 set up correctly when we switch to the CFI driver.
64406
64407 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
64408
64409 commit 2b2a587d6d3076387d22ac740f44044bf46e2cb8
64410 Author: Marian Balakowicz <m8@semihalf.com>
64411 Date: Fri Oct 5 10:40:54 2007 +0200
64412
64413 tqm5200: Fix CONFIG_CMD_PCI typo in board config file.
64414
64415 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
64416
64417 commit 92869195ef8210758d2176230c0a36897afd50ed
64418 Author: Bartlomiej Sieka <tur@semihalf.com>
64419 Date: Fri Oct 5 09:46:06 2007 +0200
64420
64421 CM5200: Fix missing null-termination in hostname manipulation code
64422
64423 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
64424
64425 commit 9add9884b1fddc34ca186e00a2f868ccd5d02d87
64426 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
64427 Date: Tue Oct 2 19:09:01 2007 +0200
64428
64429 Fix memtest breakage
64430
64431 CFG_MEMTEST_START uses weird magic involving gd, which fails to
64432 compile. Use hardcoded values instead (we actually know how much RAM
64433 we have on board.)
64434
64435 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
64436
64437 commit 738815c0cc44aa329097f868dc1efc49ede9c5ba
64438 Author: Stefan Roese <sr@denx.de>
64439 Date: Tue Oct 2 11:44:46 2007 +0200
64440
64441 ppc4xx: Coding style cleanup
64442
64443 Signed-off-by: Stefan Roese <sr@denx.de>
64444
64445 commit 87c1833a39e944db66385286fd5e28f9b3fcdd50
64446 Author: Stefan Roese <sr@denx.de>
64447 Date: Tue Oct 2 11:44:19 2007 +0200
64448
64449 ppc4xx: lwmon5: Remove watchdog for now, since not fully tested yet
64450
64451 Signed-off-by: Stefan Roese <sr@denx.de>
64452
64453 commit 2db64784061bfc34f4ba70ef1d2fbe7133b55670
64454 Author: Grzegorz Bernacki <gjb@semihalf.com>
64455 Date: Mon Oct 1 09:51:50 2007 +0200
64456
64457 Program EPLD to force full duplex mode for PHY.
64458
64459 EPLD forces modes of PHY operation. By default full duplex is turned off.
64460 This fix turns it on.
64461
64462 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
64463
64464 commit 785c13477b77dcd2e6c5128fffcdb4e1943f4818
64465 Author: Timo Ketola <timo.ketola@exertus.fi>
64466 Date: Mon Sep 24 14:50:32 2007 +0300
64467
64468 Bugfix: Use only one PTD for one endpoint
64469
64470 Original isp116x-hcd code prepared multiple PTDs for longer than 16
64471 byte transfers for one endpoint. That is unnecessary because the
64472 ISP116x is able to split long data from one PTD into multiple
64473 transactions based on the buffer size of the endpoint. It also caused
64474 serious problems if the endpoint NAKed some of the transactions. In
64475 that case ISP116x wouldn't notice that the other PTDs were for the same
64476 endpoint and would try the other PTDs possibly out of order. That would
64477 break the whole transfer.
64478
64479 This patch makes isp116x_submit_job to use one PTD for one transfer.
64480
64481 Signed-off-by: Timo Ketola <timo.ketola@exertus.fi>
64482 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
64483
64484 commit 86ec86c04326c3913178a7679aa910de071da75d
64485 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64486 Date: Thu Sep 27 23:27:47 2007 +0200
64487
64488 Fix missing DECLARE_GLOBAL_DATA_PTR on CONFIG_LPC2292 in serial
64489
64490 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64491
64492 commit 3e954beb614b5b190d7f4f4c3b641437a0132e35
64493 Author: Stefan Roese <sr@denx.de>
64494 Date: Tue Sep 11 14:12:55 2007 +0200
64495
64496 ppc4xx: lwmon5: Change GPIO 58 to default to low (watchdog test)
64497
64498 Signed-off-by: Stefan Roese <sr@denx.de>
64499
64500 commit 1487adbdcf9594bb2eb686325a6f9540dad1b70a
64501 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
64502 Date: Wed Sep 26 16:35:54 2007 -0500
64503
64504 85xx io out functions need sync after write.
64505
64506 This fixes the mc146818 rtc_read/write functions for 85xx.
64507
64508 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
64509
64510 commit 0d38effc6e359e6b1b0c78d66e8bc1a4dc15a2ae
64511 Author: Grant Likely <grant.likely@secretlab.ca>
64512 Date: Tue Sep 25 15:48:05 2007 -0600
64513
64514 Fpga: fix incorrect test of CFG_FPGA_XILINX macro
64515
64516 CFG_FPGA_XILINX is a bit value used to test against the value in
64517 CONFIG_FPGA. Testing for a value will always return TRUE. I don't
64518 think that is the intention in this code.
64519
64520 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
64521
64522 commit 853643d8cf2ca80cb2e25c53ad5dc580abafe166
64523 Author: Michal Simek <monstr@monstr.eu>
64524 Date: Mon Sep 24 00:41:30 2007 +0200
64525
64526 [FIX] change command handling and removing code violation
64527
64528 commit f240356507038e5ce55e8a24cb2607e9eae6d10c
64529 Author: Michal Simek <monstr@monstr.eu>
64530 Date: Mon Sep 24 00:36:06 2007 +0200
64531
64532 [FIX] change sets of commands
64533 because changing of command handling brings
64534 compilation problems
64535
64536 commit cb1bc63b75a232571eb69aa2c8aa919321655845
64537 Author: Michal Simek <monstr@monstr.eu>
64538 Date: Mon Sep 24 00:30:42 2007 +0200
64539
64540 [FIX] Email reparation & Copyright
64541 Both codes are written by myself without any
64542 support from CTU
64543
64544 commit 0731cbae6c2feab93b244d83fd6a43f5cc9bf852
64545 Author: Michal Simek <monstr@monstr.eu>
64546 Date: Mon Sep 24 00:25:11 2007 +0200
64547
64548 [PATCH] Change macro name for UartLite
64549 because PowerPC 405 can use UartLite as console
64550
64551 commit 1c1100d2fcf46b9d11dcf78d6e5aea75e2e8b716
64552 Author: Michal Simek <monstr@monstr.eu>
64553 Date: Mon Sep 24 00:21:19 2007 +0200
64554
64555 [PATCH] Add support for design without interrupt controller
64556 Polling timer
64557
64558 commit 0731933ec8ec45d02ba89b52df673d526873cdde
64559 Author: Michal Simek <monstr@monstr.eu>
64560 Date: Mon Sep 24 00:19:48 2007 +0200
64561
64562 [FIX] resolve problem with cpu without barrel shifter
64563
64564 commit db14d77995ce515b728b178b63f82babe60e3d56
64565 Author: Michal Simek <monstr@monstr.eu>
64566 Date: Mon Sep 24 00:18:46 2007 +0200
64567
64568 [FIX] repair email address
64569
64570 commit 481d4328618804add1f818a6c96296121cd0528e
64571 Author: Michal Simek <monstr@monstr.eu>
64572 Date: Mon Sep 24 00:17:42 2007 +0200
64573
64574 [FIX] repair MFSL commands
64575
64576 commit b90c045f035c3cc9b5d2edaed6048dfb74e40763
64577 Author: Michal Simek <monstr@monstr.eu>
64578 Date: Mon Sep 24 00:08:37 2007 +0200
64579
64580 synchronizition with mainline
64581
64582 commit eda3e1e6619ad0bee94ae4b16c99d88e77e2af13
64583 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64584 Date: Sun Sep 23 02:42:38 2007 +0900
64585
64586 sh: Add support command of ide with sh
64587
64588 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64589
64590 commit d91ea45d15cf8e0987456bd211ffbb650824b6f1
64591 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64592 Date: Sun Sep 23 02:38:42 2007 +0900
64593
64594 sh: Update Makefile
64595
64596 Add support MS7722SE01 to Makefile.
64597
64598 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64599
64600 commit 6c0bbdccd379f5c8702af9e0765294c2fb7472a6
64601 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64602 Date: Sun Sep 23 02:31:13 2007 +0900
64603
64604 sh: Add support Renesas sh7722 processor and Hitachi MS7722SE01 board
64605
64606 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64607
64608 commit 047375bfa4c3052fa50a748da7ff89e9dad3b364
64609 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64610 Date: Sun Sep 23 02:19:24 2007 +0900
64611
64612 sh: Update MS7750SE01 platform
64613
64614 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64615
64616 commit 516ad760db3553766267ada01b7d5d727faa4bbd
64617 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64618 Date: Sun Sep 23 02:17:08 2007 +0900
64619
64620 sh: Remove comment out code from include/asm-sh/cpu_sh4.h
64621
64622 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64623
64624 commit b02bad128669e567fce87d8df823b06a0144b8db
64625 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64626 Date: Sun Sep 23 02:12:30 2007 +0900
64627
64628 sh: Update core code of SuperH.
64629
64630 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64631
64632 commit 66dcad3a9a53e0766d90e0084123bd8529522fb0
64633 Author: Wolfgang Denk <wd@denx.de>
64634 Date: Thu Sep 20 00:04:14 2007 +0200
64635
64636 v1.3.0-rc2
64637
64638 Signed-off-by: Wolfgang Denk <wd@denx.de>
64639
64640 commit 135e19bc2773ebca487e9a8371f67e1ba202313a
64641 Author: Wolfgang Denk <wd@denx.de>
64642 Date: Tue Sep 18 21:36:35 2007 +0200
64643
64644 Avoid compiler warning.
64645
64646 Signed-off-by: Wolfgang Denk <wd@denx.de>
64647
64648 commit 8a783a65851bc7421ab69f442261215e21b8891a
64649 Author: Grant Likely <grant.likely@secretlab.ca>
64650 Date: Tue Sep 18 12:24:57 2007 -0600
64651
64652 Bugfix: remove embedded null (\0) from CFG_BOOTFILE macro in TQM8540_config
64653
64654 /bin/bash and /bin/dash (which /bin/sh is linked to on ubuntu) handle embedded
64655 nulls in a string differently. For example, the following statement:
64656 echo "this is a string\0" > afile
64657 Will produce the following with /bin/bash:
64658 "this is a string\0"
64659 But with /bin/dash, will produce:
64660 "this is a string
64661
64662 Bug fixed by moving the embedded null out of the makefile and into the
64663 config header. Also renamed the macro to avoid usage colision with the same
64664 macro used by other board ports.
64665
64666 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
64667
64668 commit f8d3ca7b6fa322ac57e8e831f07dbeea039a9f35
64669 Author: Wolfgang Denk <wd@denx.de>
64670 Date: Tue Sep 18 17:40:27 2007 +0200
64671
64672 MCC200: fix build warning
64673
64674 The MCC200 board config file includes version.h for some customer-
64675 specific setting, which causes warnings with "make depend"; build
64676 version.h before depend.
64677
64678 Signed-off-by: Wolfgang Denk <wd@denx.de>
64679
64680 commit bd86220f58b99d6896198c385fda132f0c980915
64681 Author: Peter Pearse <peter.pearse@arm.com>
64682 Date: Tue Sep 18 13:07:54 2007 +0100
64683
64684 Move coloured led API to status_led.h
64685 Improve indentation in drivers/at45.c
64686
64687 commit e80e585b00fbbab7ad1bf71619741f2c5b029ab7
64688 Author: Eirik Aanonsen <eaa@wprmedical.com>
64689 Date: Tue Sep 18 08:47:20 2007 +0200
64690
64691 Update atstk1002 bootargs.
64692
64693 Updates to atstk1002 U-Boot header file:
64694 - Changed bootargs:
64695 * Set the bootargs for at1002 to point to the SD-card partition instead
64696 * ... of the boot flash.
64697 * Removing the rootfstype since that argument are not needed.
64698
64699 Signed-off-by: Eirik Aanonsen <eaa@wprmedical.com>
64700 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
64701
64702 commit a4f3aab6dfbed6c29367c688bfb8a47eef62c225
64703 Author: Eirik Aanonsen <eaa@wprmedical.com>
64704 Date: Wed Sep 12 13:32:37 2007 +0200
64705
64706 Add some comments to clocks in atstk1002.h
64707
64708 This patch applies some clarifying comments to how the different
64709 clocks are setup according to atstk1002.h Some of the previous
64710 comments where stating wrongful information.
64711
64712 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
64713
64714 commit 97213f32416ead885deafea86774e912ffd60ad0
64715 Author: David Saada <David.Saada@ecitele.com>
64716 Date: Mon Sep 17 17:04:47 2007 +0200
64717
64718 Description: Add NEC's PCI OHCI module ID to the USB OHCI driver
64719
64720 Signed-off-by: David Saada <david.saada@ecitele.com>
64721
64722 commit 30363e98fa470fbecea5e8bc0f1443352754f303
64723 Author: Stefan Roese <sr@denx.de>
64724 Date: Mon Sep 17 08:20:47 2007 +0200
64725
64726 Small whitespace cleanup of OneNAND patch
64727
64728 Signed-off-by: Stefan Roese <sr@denx.de>
64729
64730 commit d7e8ce101a4a45ed6ed45739fc2de5f87b13f7f1
64731 Author: Kyungmin Park <kmpark@infradead.org>
64732 Date: Mon Sep 10 17:15:14 2007 +0900
64733
64734 OneNAND support (take #2)
64735
64736 [PATCH 3/3] OneNAND support (take #2)
64737
64738 OneNAND support at U-Boot
64739
64740 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
64741
64742 commit 17aa2800457df0c06b41516f46f126712c196219
64743 Author: Kyungmin Park <kmpark@infradead.org>
64744 Date: Mon Sep 10 17:14:34 2007 +0900
64745
64746 OneNAND support (take #2)
64747
64748 [PATCH 2/3] OneNAND support (take #2)
64749
64750 OneNAND support at U-Boot
64751
64752 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
64753
64754 commit 916527f4809a7bcd811f1f1daf34af184e31dd8c
64755 Author: Kyungmin Park <kmpark@infradead.org>
64756 Date: Mon Sep 10 17:13:49 2007 +0900
64757
64758 OneNAND support (take #2)
64759
64760 [PATCH 1/3] OneNAND support (take #2)
64761
64762 OneNAND support at U-Boot
64763
64764 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
64765
64766 commit b49c90df6e7cfcfb8b862b8bbf8448dff5eed9a5
64767 Author: Michal Simek <monstr@monstr.eu>
64768 Date: Sun Sep 16 20:51:57 2007 +0200
64769
64770 [FIX] remove files form repository
64771
64772 commit 67c31036acaaaa992fc346cc89db0909a7e733c4
64773 Author: Wolfgang Denk <wd@denx.de>
64774 Date: Sun Sep 16 17:10:04 2007 +0200
64775
64776 TQM8xx[LM]: Fix broken environment alignment.
64777
64778 With recent toolchains, the environment sectors were no longer aligned to
64779 sector boundaries. The reason was a combination of two bugs:
64780
64781 1) common/environment.c assumed that CONFIG_TQM8xxL would be defined
64782 for all TQM8xxL and TQM8xxM boards. But "include/common.h", where
64783 this gets defined, is not included here (and cannot be included
64784 without causing lots of problems).
64785
64786 Added a new #define CFG_USE_PPCENV for all boards which really
64787 want to put the environment is a ".ppcenv" section.
64788
64789 2) The linker scripts just include environment.o, silently assuming
64790 that the objects in that file are really in the order in which
64791 they are coded in the C file, i. e. "environment" first, then
64792 "redundand_environment", and "env_size" last. However, current
64793 toolchains (GCC-4.x) reorder the objects, causing the environment
64794 data not to start on a flash sector boundary:
64795
64796 Instead of: we got:
64797
64798 40008000 T environment 40008000 T env_size
64799 4000c000 T redundand_environment 40008004 T redundand_environment
64800 40010000 T env_size 4000c004 T environment
64801
64802 Note: this patch fixes just the first part, and cures the alignment
64803 problem by making sure that "env_size" gets placed correctly. However,
64804 we still have a potential issue because primary and redundant
64805 environment sectors are actually swapped, i. e. we have now:
64806
64807 40008000 T redundand_environment
64808 4000c000 T environment
64809 40010000 T env_size
64810
64811 This shall be fixed in the next version.
64812
64813 Signed-off-by: Wolfgang Denk <wd@denx.de>
64814
64815 commit eb6da8050797c204c9d010548424186c7ce32fc1
64816 Author: Wolfgang Denk <wd@denx.de>
64817 Date: Sun Sep 16 02:39:35 2007 +0200
64818
64819 TQM8xx/FPS8xx: adjust flash partitions for 2.6 ARCH=powerpc kernels
64820
64821 Signed-off-by: Wolfgang Denk <wd@denx.de>
64822
64823 commit cd2d1602c54cc6957bdef3872272a4b264893960
64824 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
64825 Date: Mon Sep 10 14:54:56 2007 -0400
64826
64827 Typo fix in tsec.c
64828
64829 Fixup for the break statement in wrong place.
64830
64831 [Patch by urwithsughosh@gmail.com]
64832 Acked-by: Andy Fleming <afleming@freescale.com>
64833 Signed-off-by: Wolfgang Denk <wd@denx.de>
64834
64835 commit 5bd7fe9aeb76906371f40b8fd07613f10922e3e7
64836 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64837 Date: Tue Sep 11 17:04:00 2007 +0200
64838
64839 Fix do_div() usage in nand process output
64840
64841 Fix usage of do_div() in nand erase|read|write process output.
64842
64843 The last patch to nand_util.c introduced do_div() instead of libgcc's
64844 implementation. But do_div() returns the quotient in its first
64845 macro parameter and not as result.
64846
64847 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64848
64849 commit c750d2e6692a000a82f29de7bf24e3dc21239161
64850 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64851 Date: Wed Sep 12 12:36:53 2007 +0200
64852
64853 NAND: Add CFG_NAND_QUIET option
64854
64855 This config option sets the default for the progress information
64856 output behavior that can also be configured through the 'quiet'
64857 environment variable.
64858
64859 The legacy NAND code does not print the current progress info
64860 on the console. So this option is for backward compatibility for
64861 units that are in the field and where setting the quiet variable
64862 is not an option. With CFG_NAND_QUIET set to '1' the console
64863 progress info is turned off. This can still be overwritten
64864 through the environment variable.
64865
64866 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64867
64868 commit dcb88630290d2bcd803386dd4c2be73142994c4f
64869 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
64870 Date: Thu Sep 13 16:06:05 2007 -0700
64871
64872 ColdFire: fix build error becasue of bad type of mii_init()
64873
64874 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
64875
64876 commit 314d5b6ce52a4ed19dd295d1364e246c5e605017
64877 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
64878 Date: Thu Sep 13 16:04:05 2007 -0700
64879
64880 ColdFire: Fix build error caused by pixis.c
64881
64882 Moved the #include <asm/cache.h> inside the #ifdef CONFIG_FSL_PIXIS.
64883
64884 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
64885
64886 commit e21659e30660a1377c42af135a6114efe39801d9
64887 Author: Sam Sparks <SSparks@twacs.com>
64888 Date: Fri Sep 14 11:14:42 2007 -0600
64889
64890 Update MPC8349ITX*_config to place config.tmp in right place.
64891
64892 MPC834ITX*_config does not store config.tmp at the correct locatation,
64893 causing MPC8349ITXGP to have the wrong TEXT_BASE.
64894
64895 Signed-off-by: Sam Sparks <SSparks@twacs.com>
64896 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
64897
64898 commit 1218abf1b5817a39a82399b4b928b00750575bda
64899 Author: Wolfgang Denk <wd@denx.de>
64900 Date: Sat Sep 15 20:48:41 2007 +0200
64901
64902 Fix cases where DECLARE_GLOBAL_DATA_PTR was not declared as global
64903
64904 Signed-off-by: Wolfgang Denk <wd@denx.de>
64905
64906 commit 66b3f24d665be678a9dbb125b1e84185400f63b5
64907 Author: Dirk Behme <dirk.behme@googlemail.com>
64908 Date: Sat Sep 15 11:55:42 2007 +0200
64909
64910 Make DECLARE_GLOBAL_DATA_PTR global for DaVinci
64911
64912 As discussed in [1], DECLARE_GLOBAL_DATA_PTR has to be global and not
64913 function local.
64914
64915 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
64916
64917 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/31805
64918
64919 commit 991b089d1ce5ad945725e3657a8f106dfa02a38e
64920 Author: Michal Simek <monstr@monstr.eu>
64921 Date: Sat Sep 15 00:03:35 2007 +0200
64922
64923 Synchronize with U-BOOT mainline
64924
64925 commit d7fee32b7e61fe11c64e371cde79faa4768e8350
64926 Author: Sam Sparks <SSparks@twacs.com>
64927 Date: Fri Sep 14 11:14:42 2007 -0600
64928
64929 Update MPC8349ITX*_config to place config.tmp in right place.
64930
64931 MPC834ITX*_config does not store config.tmp at the correct locatation,
64932 causing MPC8349ITXGP to have the wrong TEXT_BASE.
64933
64934 Signed-off-by: Sam Sparks <SSparks@twacs.com>
64935 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
64936 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64937
64938 commit 6e7b7b6ea1b6d04dbe96242eb6a0c1c664c98e8c
64939 Author: Bartlomiej Sieka <tur@semihalf.com>
64940 Date: Thu Sep 13 18:21:48 2007 +0200
64941
64942 cm5200: Fix a typo introduced by afaac86fe2948ac84cd9a12bbed883b3c683e7d9
64943
64944 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
64945
64946 commit e1f601b572db5de9aa81a0b77c68a86994fe24c4
64947 Author: Bartlomiej Sieka <tur@semihalf.com>
64948 Date: Thu Sep 13 16:33:59 2007 +0200
64949
64950 tqm5200: Restore customary env. variable boot commands for powerpc kernels
64951
64952 - update default definitions of kernel_addr and fdt_addr env. variables
64953 - make arch/powerpc booting the default scenario
64954 - update MTD partition layout to match the above
64955
64956 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
64957
64958 commit f34024d4a328e6edd906456da98d2c537155c4f7
64959 Author: Wolfgang Denk <wd@denx.de>
64960 Date: Wed Sep 12 00:48:57 2007 +0200
64961
64962 Fix memory corruption problem on STX GP3 SSA Board.
64963
64964 Signed-off-by: Wolfgang Denk <wd@denx.de>
64965
64966 commit d94c79e47011af5e8dd10ed6163c09b4cfc743cc
64967 Author: Peter Pearse <peter.pearse@arm.com>
64968 Date: Tue Sep 11 15:35:01 2007 +0100
64969
64970 Final tidy
64971
64972 commit 38ad82da0c1180ecdeb212a8f4245e945bcc546e
64973 Author: Grzegorz Bernacki <gjb@semihalf.com>
64974 Date: Tue Sep 11 15:42:11 2007 +0200
64975
64976 [GP3SSA] Add define CONFIG_MPC85XX_PCI2 in config file to allow u-boot to
64977 scan on second pci bus.
64978
64979 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
64980
64981 commit 6c2f4f388e8181655ea8b69343ea00b68aa6e8d0
64982 Author: Grzegorz Bernacki <gjb@semihalf.com>
64983 Date: Tue Sep 11 12:57:52 2007 +0200
64984
64985 [ppc4xx] Individual handling of sdram.c for bamboo_nand build
64986
64987 Bamboo has a file sdram.c which needs special treatment when building in
64988 separate directory. It has to be linked to build directory otherwise it is
64989 not seen.
64990
64991 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
64992
64993 commit d45963854eff39d575124d859419bb4953ce2c87
64994 Author: Michal Simek <monstr@monstr.eu>
64995 Date: Tue Sep 11 00:37:04 2007 +0200
64996
64997 [FIX] Microblaze ML401 - repare FLASH handling
64998
64999 commit 38c1ef728d19950414a8ab1ccfc53767848fa346
65000 Author: Sean MCGOOGAN <sean.mcgoogan@st.com>
65001 Date: Mon Sep 10 16:55:59 2007 +0100
65002
65003 Allocate CPU Architecture Code for STMicroelectronics' ST200.
65004
65005 Signed-off-by: Sean McGoogan <Sean.McGoogan@st.com>
65006 ---------------------------------------------------
65007
65008 commit 754bac48156f8958d8f6a53a51eda88ab5758929
65009 Author: Wolfgang Denk <wd@denx.de>
65010 Date: Mon Sep 10 20:42:31 2007 +0200
65011
65012 Update version to match current state.
65013
65014 Signed-off-by: Wolfgang Denk <wd@denx.de>
65015
65016 commit 7a888d6b3c32a126dbb504ef146bb4c26574ca7b
65017 Author: Grzegorz Bernacki <gjb@semihalf.com>
65018 Date: Mon Sep 10 17:39:08 2007 +0200
65019
65020 [MPC512x] Streamline frame handling in the FEC driver
65021
65022 - convert frame size settings to be derived from a single base
65023 - set frame size to the recommended default value
65024
65025 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
65026
65027 commit e251e00d0db4b36d1d2b7e38fec43a7296b529a2
65028 Author: Kyungmin Park <kmpark@infradead.org>
65029 Date: Mon Sep 10 11:34:00 2007 +0900
65030
65031 Remove compiler warning: target CPU does not support interworking
65032
65033 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
65034
65035 commit 1d9e31e04911a6bb7cc66dd91132c699101c32e2
65036 Author: Wolfgang Denk <wd@denx.de>
65037 Date: Sun Sep 9 21:21:33 2007 +0200
65038
65039 Fix compile error in spc1920 config.
65040
65041 Signed-off-by: Markus Klotzbücher <mk@denx.de>
65042 Signed-off-by: Wolfgang Denk <wd@denx.de>
65043
65044 commit a7d7eca791a37f452c9da10fef4b31dd7aa9a622
65045 Author: Grant Likely <grant.likely@secretlab.ca>
65046 Date: Fri Sep 7 09:25:07 2007 -0600
65047
65048 Bugfix: make bootm+libfdt compile on boards with no flash
65049
65050 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65051
65052 commit 6efc1fc0b63e55f94c5bc61d8dd23c918e3bc778
65053 Author: Grzegorz Bernacki <gjb@semihalf.com>
65054 Date: Fri Sep 7 18:35:37 2007 +0200
65055
65056 [PPC440SPe] PCIe environment settings for Katmai and Yucca
65057
65058 - 'pciconfighost' is set by default in order to be able to scan bridges
65059 behind the primary host/PCIe
65060
65061 - 'pciscandelay' env variable is recognized to allow for user-controlled
65062 delay before the PCIe bus enumeration; some peripheral devices require a
65063 significant delay before they can be scanned (e.g. LSI8408E); without the
65064 delay they are not detected
65065
65066 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
65067
65068 commit 7f1913938984ef6c6a46cb53e003719196d9c5de
65069 Author: Grzegorz Bernacki <gjb@semihalf.com>
65070 Date: Fri Sep 7 18:20:23 2007 +0200
65071
65072 [PPC440SPe] Improve PCIe configuration space access
65073
65074 - correct configuration space mapping
65075 - correct bus numbering
65076 - better access to config space
65077
65078 Prior to this patch, the 440SPe host/PCIe bridge was able to configure only the
65079 first device on the first bus. We now allow to configure up to 16 buses;
65080 also, scanning for devices behind the PCIe-PCIe bridge is supported, so
65081 peripheral devices farther in hierarchy can be identified.
65082
65083 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
65084
65085 commit 15ee4734e4e08003d73d9ead3ca80e2a0672e427
65086 Author: Grzegorz Bernacki <gjb@semihalf.com>
65087 Date: Fri Sep 7 17:46:18 2007 +0200
65088
65089 [PPC440SPe] Convert machine check exceptions handling
65090
65091 Convert using fixup mechanism to suppressing MCK for the duration of config
65092 read/write transaction: while fixups work fine with the case of a precise
65093 exception, we identified a major drawback with this approach when there's
65094 an imprecise case. In this scenario there is the following race condition:
65095 the fixup is (by design) set to catch the instruction following the one
65096 actually causing the exception; if an interrupt (e.g. decrementer) happens
65097 between those two instructions, the ISR code is executed before the fixup
65098 handler the machine check is no longer protected by the fixup handler as it
65099 appears as within the ISR code. In consequence the fixup approach is being
65100 phased out and replaced with explicit suppressing of MCK during a PCIe
65101 config read/write cycle.
65102
65103 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
65104
65105 commit ff7640c9ead8806b5d827f2b29f9cb2632add729
65106 Author: Wolfgang Denk <wd@denx.de>
65107 Date: Fri Sep 7 17:43:36 2007 +0200
65108
65109 Fix typo in MAKEALL script.
65110
65111 Signed-off-by: Wolfgang Denk <wd@denx.de>
65112
65113 commit 08e2e5fcd2e06670b62e1680a3934c0e55c72810
65114 Author: Grzegorz Bernacki <gjb@semihalf.com>
65115 Date: Fri Sep 7 17:09:21 2007 +0200
65116
65117 [MPC512x] Proper handling of larger frames in the FEC driver
65118
65119 When frame larger than local RX buffer is received, it is split and handled
65120 by two buffer descriptors. Prior to this patch the FEC driver discarded
65121 contents of a buffer descriptor without the 'LAST' bit set, so the first
65122 part of the frame was lost in case of larger frames. This fix allows to
65123 safely combine the two pieces into the whole frame.
65124
65125 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
65126
65127 commit 8d17979d0359492a822a0a409d26e3a3549b4cd4
65128 Author: Rafal Jaworowski <raj@semihalf.com>
65129 Date: Fri Sep 7 17:05:36 2007 +0200
65130
65131 [MPC512x] Correct fixup relocation
65132
65133 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
65134
65135 commit a89cbbd27a60e6740772000fd0688ffba1c2576a
65136 Author: Wolfgang Denk <wd@denx.de>
65137 Date: Fri Sep 7 01:21:25 2007 +0200
65138
65139 Update CHANGELOG, minor coding style cleanup.
65140
65141 commit 5e5803e119de3bebd76fc9a57baac0b5aeccc8a3
65142 Author: stefano babic <sbabic@denx.de>
65143 Date: Thu Aug 30 23:01:49 2007 +0200
65144
65145 PXA270: Added support for TrizepsIV board.
65146
65147 This patch add support for the Trizeps IV module (520Mhz).
65148
65149 Signed-off-by: Stefano Babic <sbabic@denx.de>
65150
65151 commit 80172c6181c912fbb34ea3ba0c22b232b419b47f
65152 Author: stefano babic <sbabic@denx.de>
65153 Date: Thu Aug 30 22:57:04 2007 +0200
65154
65155 PXA270: Add support for multiple serial ports.
65156
65157 This patch adds support for multiple serial ports to the PXA target.
65158 FFUART, BTUART and STUART are supported.
65159
65160 Signed-off-by: Stefano Babic <sbabic@denx.de>
65161
65162 commit 28bb3f72c687ac6b2eb076b01dd21a5fd657d45e
65163 Author: stefano babic <sbabic@denx.de>
65164 Date: Thu Aug 30 22:48:47 2007 +0200
65165
65166 PXA270: fix compile issue (invalid lvalue)
65167
65168 Code is broken for PXA270 due to "invalid lvalue in assignment".
65169
65170 This patch fix it in pxa-regs.h
65171
65172 Signed-off-by: Stefano Babic <sbabic@denx.de>
65173
65174 commit 1d2ca446e1a731df420206d04fe278c27ea6b8e8
65175 Author: Jason Jin <Jason.jin@freescale.com>
65176 Date: Thu Aug 30 18:19:05 2007 +0800
65177
65178 Add BUILD_DIR support for bios emulator.
65179
65180 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
65181
65182 commit b4d8a55145442f136982634862341a3e02002bda
65183 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65184 Date: Fri Aug 31 14:41:51 2007 +0900
65185
65186 [MIPS] Remove inline asm string functions
65187
65188 Stop using inline string functions on MIPS as other ARCHs do so,
65189 since the optimized inline asm versions are not small.
65190
65191 This change is triggered by a following MIPS build error:
65192 common/libcommon.a(exports.o)(.text+0xdc): In function `jumptable_init':
65193 common/exports.c:32: undefined reference to `strcmp'
65194 make: *** [u-boot] Error 1
65195
65196 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65197
65198 commit 8ea2c4e54833deaebc24c3ca6b7f21353c25b0f5
65199 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65200 Date: Fri Aug 31 14:41:45 2007 +0900
65201
65202 [MIPS] Update asm string header
65203
65204 This patches contains several bugfixes and cleanups in the latest upstream:
65205
65206 - Don't include linux/config.h
65207 - Remove buggy inline version of memscan.
65208 - Merge with Linux 2.6.11-rc3.
65209 - Fix undefined reference to strcpy in binfmt_misc caused by gcc 3.4.
65210 - Goodbye mips64. 31704 lines of code bite the dust.
65211 - Replace extern inline with static inline.
65212 - Fix return value of strncpy.
65213 - Remove a bunch more "$1" clobbers.
65214
65215 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65216
65217 commit 5b729fb3bd98f49855d6bfc657c3fbae95f2adc2
65218 Author: Bartlomiej Sieka <tur@semihalf.com>
65219 Date: Tue Sep 4 17:31:22 2007 +0200
65220
65221 Fix do_bootm_linux() so that multi-file images with FDT blob boot.
65222
65223 Fix incorrect blob address calculation in do_bootm_linux() that prevents
65224 booting the kernel from a multi-file image (kernel + initrd + blob).
65225
65226 Also, make minor updates to the U-Boot's output and to the coding style.
65227
65228 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
65229
65230 commit 041a2554ad619e80dce520c1a33210affcb6a3f2
65231 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
65232 Date: Fri Aug 31 14:29:04 2007 +0200
65233
65234 Add support for Sil680 IDE controller.
65235
65236 o add drivers/sil680.c to support the Sil680 IDE-controller.
65237 o drivers/Makefile: add sil680.o.
65238
65239 Signed-off-by: Gary Jennejohn <garyj@denx.de>
65240
65241 commit e79021223bc339df655e360645a52c457a74b067
65242 Author: Grant Likely <grant.likely@secretlab.ca>
65243 Date: Thu Sep 6 09:47:40 2007 -0600
65244
65245 bootm/fdt: Only process the fdt if an fdt address was provided
65246
65247 Boards with CONFIG_OF_LIBFDT enabled are not able to boot old-style
65248 kernels using the board info structure (instead of passing a device tree)
65249 This change allows the old style booting to be used if the fdt argument
65250 was not passed to 'bootm'.
65251
65252 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65253 Acked-by: Kim Phillips <kim.phillips@freescale.com>
65254
65255 commit cf2817a84c2e9bea2c5dfc084bce2f2d2563ac43
65256 Author: Grant Likely <grant.likely@secretlab.ca>
65257 Date: Thu Sep 6 09:46:23 2007 -0600
65258
65259 Migrate 5xxx boards from CONFIG_OF_FLAT_TREE to CONFIG_OF_LIBFDT
65260
65261 Affects boards: icecube (lite5200), jupiter, motionpro, tqm5200
65262
65263 Tested on: lite5200b
65264
65265 Note: the fixup functions have not been moved to a common place. This
65266 patch is targeted for immediate merging as in solves a build issue, but
65267 the final name/location of the fixups is still subject to debate. I
65268 propose to merge this now, and move the fixups in the next merge window
65269 to be usable by all targets.
65270
65271 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65272
65273 commit 41bb76e941929f54a73206fb132f7a4c275543a3
65274 Author: Grant Likely <grant.likely@secretlab.ca>
65275 Date: Thu Sep 6 09:46:17 2007 -0600
65276
65277 libfdt: add convenience function fdt_find_and_setprop()
65278
65279 Given the path to a node, fdt_find_and_setprop() allows a property value
65280 to be set directly.
65281
65282 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65283
65284 commit 80767a6cead9990d9e77e62be947843c2c72f469
65285 Author: Peter Pearse <peter.pearse@arm.com>
65286 Date: Wed Sep 5 16:04:41 2007 +0100
65287
65288 Changed API name to coloured_led.h
65289 Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
65290 Tidied other cpu/arm920t/start.S code
65291
65292 commit 56a9270521baaa00e12639a978302a67f61ef060
65293 Author: Kumar Gala <galak@kernel.crashing.org>
65294 Date: Thu Aug 30 16:18:18 2007 -0500
65295
65296 Fix ULI RTC support on MPC8544 DS
65297
65298 The RTC on the M1575 ULI chipset requires a dummy read before
65299 we are able to talk to the RTC. We accomplish this by adding a
65300 second memory region to the PHB the ULI is on and read from it.
65301
65302 The second region is added to maintain compatiabilty with Linux's
65303 view of the PCI memory map.
65304
65305 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
65306
65307 commit f75e89e9b5714db2b0e80074071dfbdd6f59488a
65308 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
65309 Date: Thu Aug 30 01:58:48 2007 -0500
65310
65311 ft_board_setup update 85xx/86xx of pci/pcie bus-range property.
65312
65313 pcie is now differentiated from pci. Add 8641 bus-range updates.
65314
65315 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
65316
65317 commit 9f5c3d3720e777a572dcdc8af2008b44c7243885
65318 Author: Peter Pearse <peter.pearse@arm.com>
65319 Date: Tue Sep 4 16:18:38 2007 +0100
65320
65321 Add coloured led interface for ARM boards.
65322 Use it in cpu/arm920t/start.S to indicate U-Boot code has been entered.
65323
65324 commit 7462fe0d5a9d40cde083fb1a3cd73911996b5ecb
65325 Author: Peter Pearse <peter.pearse@arm.com>
65326 Date: Tue Sep 4 14:49:28 2007 +0100
65327
65328 Move include/led.h to board/at91rm9200dk
65329
65330 commit 6e4bf9b24e57c15abc6542e685d06380bc64af27
65331 Author: Peter Pearse <peter.pearse@arm.com>
65332 Date: Tue Sep 4 14:25:51 2007 +0100
65333
65334 Ran Lindent on drivers/at45.c
65335
65336 commit 557ab89d294f08dd532f21d19861b40093200a33
65337 Author: Peter Pearse <peter.pearse@arm.com>
65338 Date: Tue Sep 4 14:23:50 2007 +0100
65339
65340 Rename CONFIG_CMD_MUX to CONFIG_CMD_AT91_SPIMUX
65341
65342 commit 81b73dec16fd1227369a191e725e10044a9d56b8
65343 Author: Gary Jennejohn <garyj@denx.de>
65344 Date: Fri Aug 31 15:21:46 2007 +0200
65345
65346 ppc4xx: (Re-)Enable CONFIG_PCI_PNP on AMCC 440EPx Sequoia
65347
65348 The 440EPx has a problem when the PCI_CACHE_LINE_SIZE register is
65349 set to non-zero, because it doesn't support MRM (memory-read-
65350 multiple) correctly. We now added the possibility to configure
65351 this register in the board config file, so that the default value
65352 of 8 can be overridden.
65353
65354 Here the details of this patch:
65355
65356 o drivers_pci_auto.c: introduce CFG_PCI_CACHE_LINE_SIZE to allow
65357 board-specific settings. As an example the sequoia board requires 0.
65358 Idea from Stefan Roese <sr@denx.de>.
65359 o board/amcc/sequoia/init.S: add a TLB mapping at 0xE8000000 for the
65360 PCI IO-space. Obtained from Stefan Roese <sr@denx.de>.
65361 o include/configs/sequoia.h: turn CONFIG_PCI_PNP back on and set
65362 CFG_PCI_CACHE_LINE_SIZE to 0.
65363
65364 Signed-off-by: Gary Jennejohn <garyj@denx.de>
65365 Signed-off-by: Stefan Roese <sr@denx.de>
65366
65367 commit 60174746c668b309378a91488dded898e9553eae
65368 Author: Wolfgang Denk <wd@denx.de>
65369 Date: Fri Aug 31 10:01:51 2007 +0200
65370
65371 Fix TFTP OACK code for short packets.
65372
65373 The old code had a loop limit overflow bug which caused a semi-
65374 infinite loop for small packets, because in "i<len-8", "i" was signed,
65375 but "len" was unsigned, and "len-8" became a huge number for small
65376 values of "len".
65377
65378 This is a workaround which replaces broken commit 8f1bc284.
65379
65380 Signed-off-by: Wolfgang Denk <wd@denx.de>
65381
65382 commit 696dd1307cd8e73a10e9bb3c51731bfd6f837bee
65383 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
65384 Date: Thu Aug 30 15:03:05 2007 +0200
65385
65386 Reduce BOOTDELAY variable to 1 second by default for STK1002
65387
65388 Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
65389 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65390
65391 commit c88b6e1cbf9a8ae2a34fb602f78a1bf4e6692b6a
65392 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
65393 Date: Thu Aug 30 15:03:04 2007 +0200
65394
65395 Remove double quotation marks around MAC address for STK1002
65396
65397 Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
65398 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65399
65400 commit ff13ac8c7bbebb238e339592de765c546dba1073
65401 Author: Wolfgang Denk <wd@denx.de>
65402 Date: Thu Aug 30 14:42:15 2007 +0200
65403
65404 Backout commit 8f1bc284 as it causes TFTP to fail.
65405
65406 Signed-off-by: Wolfgang Denk <wd@denx.de>
65407
65408 commit 1900fbf255acba8b94fb442a16408ea85a1d46a6
65409 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
65410 Date: Thu Aug 30 02:26:17 2007 -0500
65411
65412 Revert "Fix MPC8544DS PCIe3 scsi."
65413
65414 This reverts commit 9468e680.
65415 Commit 16e23c3f5da removing allocation of PCSRBAR is sufficient.
65416
65417 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
65418
65419 commit 8f1bc28408ded213418d9bc0780c7d8fb8a03774
65420 Author: Grant Likely <grant.likely@secretlab.ca>
65421 Date: Wed Aug 29 18:26:24 2007 -0600
65422
65423 tftp: don't implicity trust the format of recevied packets
65424
65425 The TFTP OACK code trusts that the incoming packet is formated as
65426 ASCII text and can be processed by string functions. It also has a
65427 loop limit overflow bug where if the packet length is less than 8, it
65428 ends up looping over *all* of memory to find the 'blksize' string.
65429
65430 This patch solves the problem by forcing the packet to be null
65431 terminated and using strstr() to search for the sub string.
65432
65433 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65434
65435 commit 04625764cc93ce8a61625ac19d7fe2a2ceee8143
65436 Author: Stefan Roese <sr@denx.de>
65437 Date: Wed Aug 29 16:31:18 2007 +0200
65438
65439 ppc4xx: Change lwmon5 default environment to support Linux RTC
65440
65441 The Linux PCF8563 RTC driver doesn't do autoprobing, so we need
65442 to supply the RTC I2C address as bootline parameter. This patch
65443 adds support for this rtc probing parameter to the bootargs:
65444
65445 "rtc-pcf8563.probe=0,0x51"
65446
65447 Signed-off-by: Stefan Roese <sr@denx.de>
65448
65449 commit 2602a5c40ae37ab965a4e240854fdaffb51328a4
65450 Author: Kim Phillips <kim.phillips@freescale.com>
65451 Date: Wed Aug 29 09:06:05 2007 -0500
65452
65453 sbc8641: remove unused OF_FLAT_TREE_MAX_SIZE
65454
65455 this had slipped through the cracks, since the sbc board was added
65456 after I wrote the original patch to remove all these symbols, and
65457 before it was merged.
65458
65459 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65460
65461 commit c5bded3c88e48ae648a75d357dc81a8255fa81f1
65462 Author: Wolfgang Denk <wd@denx.de>
65463 Date: Wed Aug 29 14:05:30 2007 +0200
65464
65465 Add mii_init() prototype
65466
65467 to get rid of a *lot* of compiler warnings.
65468
65469 Signed-off-by: Wolfgang Denk <wd@denx.de>
65470
65471 commit 2d1f23aa1e74e4a8f8ffa67f246eb98c522dfd7f
65472 Author: Wolfgang Denk <wd@denx.de>
65473 Date: Wed Aug 29 13:35:03 2007 +0200
65474
65475 Disable network support on cmi_mpc5xx board
65476
65477 ..because it caused compiler errors and there seems to be no
65478 board maintainer to take care of this.
65479
65480 Signed-off-by: Wolfgang Denk <wd@denx.de>
65481
65482 commit 9468e6804b7e25b0f6f52e53f47bce3175400a16
65483 Author: Kumar Gala <galak@kernel.crashing.org>
65484 Date: Mon Aug 20 09:44:00 2007 -0500
65485
65486 Fix MPC8544DS PCIe3 scsi.
65487
65488 <ed.swarthout@freescale.com>
65489
65490 The problem is pciauto_setup_device() getting called from fsl_pci_init.c
65491 is allocating memory space it doesn't need.
65492
65493 Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
65494 Signed-off-by: Andy Fleming <afleming@freescale.com>
65495
65496 commit 4bf4abb8a4e9955556b120a1aafa30c03e74032a
65497 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
65498 Date: Tue Aug 21 09:38:59 2007 -0500
65499
65500 8548cds fixes
65501
65502 Restore CONFIG_EXTRA_ENV_SETTINGS definition which contains the
65503 correct consoledev needed for linux boot.
65504 Standardize on fdt{file,addr} var to hold dtb file name.
65505
65506 Set PCI inbound memory region from CFG_MEMORY_{BUS,PHYS}.
65507
65508 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
65509
65510 commit 7a1ac419fa0d2d23ddd08bd61d16896a9f33c933
65511 Author: Haiying Wang <Haiying.Wang@freescale.com>
65512 Date: Thu Aug 23 15:20:54 2007 -0400
65513
65514 Enable L2 cache for MPC8568MDS board
65515
65516 The L2 cache size is 512KB for 8568, print out the correct informaiton.
65517
65518 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
65519
65520 commit 94c47fdaf14cb29fa3fb4d4da2efdd96c803b46b
65521 Author: Jason Jin <Jason.jin@freescale.com>
65522 Date: Wed Aug 22 17:54:49 2007 +0800
65523
65524 Remove the bios emulator binary files from MAI board
65525
65526 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
65527
65528 commit 7608d75f9c87c9eb5b3a43219d0506d3e979a13f
65529 Author: Kim Phillips <kim.phillips@freescale.com>
65530 Date: Tue Aug 21 17:00:17 2007 -0500
65531
65532 support board vendor-common makefiles
65533
65534 if a board/$(VENDOR)/common/Makefile exists, build it.
65535
65536 also add the first such case, board/freescale/common/Makefile, to
65537 handle building board-shared EEPROM, PIXIS, and MDS-PIB code, as
65538 dictated by board configuration.
65539
65540 thusly get rid of alternate build dir errors such as:
65541
65542 FATAL: can't create /work/wd/tmp/u-boot-ppc/board/freescale/mpc8360emds/../common/pq-mds-pib.o: No such file or directory
65543
65544 by putting the common/ mkdir command in its proper place (the common
65545 Makefile). Common bits from existing individual board Makefiles have
65546 been removed.
65547
65548 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65549
65550 commit ef8f20752712dc1cdbd86f47e3bd6e35f81c83fd
65551 Author: stefano babic <sbabic@denx.de>
65552 Date: Tue Aug 21 15:52:33 2007 +0200
65553
65554 Fix: TFTP is not working on little endian systems
65555
65556 TFTP does not work anymore after multicast tftp
65557 patch was applied on little endian systems.
65558 This patch fix it.
65559
65560 Signed-off-by: Stefano Babic <sbabic@denx.de>
65561
65562 commit 5f470948570526e9186f053a3003da7719604e90
65563 Author: stefano babic <sbabic@denx.de>
65564 Date: Tue Aug 21 15:50:33 2007 +0200
65565
65566 Fix MAC address setting in DM9000 driver.
65567
65568 The logic to check if there is a correct MAC address in the DM9000
65569 EEPROM, added in the last patch, is wrong. Now the MAC address is
65570 always taken from the environment, even if a suitable MAC is present
65571 in the EEPROM.
65572
65573 Signed-off-by: Stefano Babic <sbabic@denx.de>
65574
65575 commit 4a8527ef086ec7c89f40674ef024ae6f988a614a
65576 Author: Martin Krause <martin.krause@tqs.de>
65577 Date: Tue Aug 21 12:40:34 2007 +0200
65578
65579 MPC5xxx: fix some compiler warnings in USB code
65580
65581 Fix the following warnings:
65582 - usb.c:xx: warning: function declaration isn't a prototype
65583 - usb_ohci.c:xxx: warning: passing argument 1 of '__fswab32' makes integer
65584 from pointer wihtout a cast
65585
65586 Signed-off-by: Martin Krause <martin.krase@tqs.de>
65587
65588 commit 16e23c3f5dab6937f5109365416808c7f15c122b
65589 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
65590 Date: Mon Aug 20 23:55:33 2007 -0500
65591
65592 fsl_pci_init - Remove self PCSRBAR allocation
65593
65594 CPU physical address space was being wasted by allocating a
65595 PCSRBAR PCI inbound region to it's memory space.
65596
65597 As a rule, PCSRBAR should be left alone since it does not affect
65598 transactions from self and other masters may have changed it.
65599
65600 Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
65601
65602 commit 0e700ce03a23bb1921149bc77008ace7103d5289
65603 Author: Martin Krause <martin.krause@tqs.de>
65604 Date: Mon Aug 20 13:56:47 2007 +0200
65605
65606 Fix compiler warning in include/s3c2410.h
65607
65608 This patch fixes the "type qualifiers ignored on fuction return tpye"
65609 warning for include/s3c2410.h
65610
65611 Signed-off-by: Martin Krause <martin.krause@tqs.de>
65612
65613 commit 9bb8b209ed2058a5756ecbeb544c067e44a42aea
65614 Author: Dirk Behme <dirk.behme@googlemail.com>
65615 Date: Mon Aug 20 07:09:05 2007 +0200
65616
65617 Fix compilation error for omap2420h4_config.
65618
65619 omap2420h4 switched to cfi, so remove old (already disabled) flash.c
65620 and flash_probe() calls in env_flash.c.
65621
65622 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
65623
65624 commit 3bb342fc85d79dbb6b8c2039e7cdcddc82b8d90f
65625 Author: Kim Phillips <kim.phillips@freescale.com>
65626 Date: Fri Aug 10 14:34:14 2007 -0500
65627
65628 fdt: remove unused OF_FLAT_TREE_MAX_SIZE references
65629
65630 and make some minor corrections to the FDT part of the README.
65631
65632 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65633
65634 commit 6af2eeb1e99c2dcc584d4c5ab7fcae30a325f4de
65635 Author: Wolfgang Denk <wd@denx.de>
65636 Date: Wed Aug 29 01:32:05 2007 +0200
65637
65638 Minor coding style cleanup.
65639
65640 Signed-off-by: Wolfgang Denk <wd@denx.de>
65641
65642 commit a861558c65f65f1cf1302f3a35e9db7686b9e1a3
65643 Author: Heiko Schocher <hs@pollux.denx.de>
65644 Date: Tue Aug 28 17:40:33 2007 +0200
65645
65646 [UC101] Fix: if no CF in the board, U-Boot resets sometimes.
65647
65648 Signed-off-by: Heiko Schocher <hs@denx.de>
65649
65650 commit f98984cb194bb34dbe1db9429d3b51133af30d07
65651 Author: Heiko Schocher <hs@pollux.denx.de>
65652 Date: Tue Aug 28 17:39:14 2007 +0200
65653
65654 IDE: - make ide_inb () and ide_outb () "weak", so boards can
65655 define there own I/O functions.
65656 (Needed for the pcs440ep board).
65657 - The default I/O Functions are again 8 Bit accesses.
65658 - Added CONFIG_CMD_IDE for the pcs440ep Board.
65659
65660 Signed-off-by: Heiko Schocher <hs@denx.de>
65661
65662 commit 2c05fd125744981e5f2828d24e66ccc20a77d25d
65663 Author: Semih Hazar <semih.hazar@indefia.com>
65664 Date: Mon Aug 20 19:00:01 2007 +0300
65665
65666 AVR32: Change prototype of memset
65667
65668 Signed-off-by: Semih Hazar <semih.hazar@indefia.com>
65669 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65670
65671 commit 9c02defc29b57945b600714cf61ddfd02b02fb14
65672 Author: Yuri Tikhonov <yur@emcraft.com>
65673 Date: Sat Aug 25 05:07:16 2007 +0200
65674
65675 POST: limit memory test area to not touch global data anymore
65676
65677 As experienced on lwmon5, on some boards the POST memory test can
65678 corrupt the global data buffer (bd). This patch fixes this issue
65679 by checking and limiting this area.
65680
65681 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
65682 Signed-off-by: Stefan Roese <sr@denx.de>
65683
65684 commit 75e1a84d483e36be10e206e539b028c4889e1158
65685 Author: Stefan Roese <sr@denx.de>
65686 Date: Fri Aug 24 15:41:42 2007 +0200
65687
65688 ppc4xx: Add RTC POST test to lwmon5 board configuration
65689
65690 Since this RTC POST test is taking quite a while to complete
65691 it's only initiated upon special keypress same as the complete
65692 memory POST.
65693
65694 Signed-off-by: Stefan Roese <sr@denx.de>
65695
65696 commit d7bfa620037a6d2210159387571bdf93aa32c162
65697 Author: Stefan Roese <sr@denx.de>
65698 Date: Fri Aug 24 15:19:10 2007 +0200
65699
65700 ppc4xx: Change GPIO signal for watchdog triggering on lwmon5
65701
65702 Signed-off-by: Stefan Roese <sr@denx.de>
65703
65704 commit c25dd8fc25e9ca3695db996a257d9ba4dab414db
65705 Author: Stefan Roese <sr@denx.de>
65706 Date: Thu Aug 23 11:02:37 2007 +0200
65707
65708 ppc4xx: Add support for 2nd I2C EEPROM on lwmon5 board
65709
65710 This patch adds support for the 2nd EEPROM (AT24C128) on the lwmon5
65711 board. Now the "eeprom" command can be used to read/write from/to this
65712 device. Additionally a new command was added "eepromwp" to en-/disable
65713 the write-protect of this 2nd EEPROM.
65714
65715 The 1st EEPROM is not affected by this write-protect command.
65716
65717 Signed-off-by: Stefan Roese <sr@denx.de>
65718
65719 commit c64fb30e4c5976007d56fc1789c7a0666082b536
65720 Author: Stefan Roese <sr@denx.de>
65721 Date: Wed Aug 22 08:56:09 2007 +0200
65722
65723 ppc4xx: Remove unused option CFG_INIT_RAM_OCM
65724
65725 Signed-off-by: Stefan Roese <sr@denx.de>
65726
65727 commit 3ad63878737a5a2b1e60825bf0a7d601d7a695e7
65728 Author: Stefan Roese <sr@denx.de>
65729 Date: Tue Aug 21 16:27:57 2007 +0200
65730
65731 ppc4xx: Add matrix kbd support to lwmon5 board (440EPx based)
65732
65733 This patch adds support for the matrix keyboard on the lwmon5 board.
65734 Since the implementation in the dsPCI is kind of compatible with the
65735 "old" lwmon board, most of the code is copied from the lwmon
65736 board directory.
65737
65738 Signed-off-by: Stefan Roese <sr@denx.de>
65739
65740 commit 3e66c078003607a7d1d214c15a5f262bc1b4032f
65741 Author: Wolfgang Denk <wd@denx.de>
65742 Date: Sun Aug 19 10:27:34 2007 +0200
65743
65744 Fix some build errors.
65745
65746 Signed-off-by: Wolfgang Denk <wd@denx.de>
65747
65748 commit 05675735ef77dc23b5e0eb782bad1ff477b55e86
65749 Author: Wolfgang Denk <wd@denx.de>
65750 Date: Sat Aug 18 22:00:38 2007 +0200
65751
65752 Update CHANGELOG.
65753
65754 commit 79f240f7ecc0506b43ac50d1ea405ff6540d4d57
65755 Author: Kim Phillips <kim.phillips@freescale.com>
65756 Date: Thu Aug 16 22:52:39 2007 -0500
65757
65758 lib_ppc: make board_add_ram_info weak
65759
65760 platforms wishing to display RAM diagnostics in addition to size,
65761 can do so, on one line, in their own board_add_ram_info()
65762 implementation.
65763
65764 this consequently eliminates CONFIG_ADD_RAM_INFO.
65765
65766 Thanks to Stefan for the hint.
65767
65768 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65769
65770 commit 815b5bd5b18569917c3e04b9757511e6ed23b9f6
65771 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65772 Date: Fri Aug 17 12:43:44 2007 +0900
65773
65774 PCI_READ_VIA_DWORD_OP: Fix *val uninitialized bug
65775
65776 This patch has been sent on:
65777 - 6 Jun 2007
65778
65779 Many users of PCI config read routines tend to ignore the function
65780 ret value, and are only concerned about the contents of *val. Based
65781 on this, pci_hose_read_config_{byte,word}_via_dword should initialize
65782 the *val on dword read error.
65783
65784 Without this fix, for example, we'll go on scanning bus with vendor or
65785 header_type uninitialized. This brings many unnecessary config trials.
65786
65787 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65788
65789 commit 26667b7fa05a8bf2fc65fb9f3230b02b1a10c367
65790 Author: Stefan Roese <sr@denx.de>
65791 Date: Sat Aug 18 14:37:52 2007 +0200
65792
65793 ColdFire: Fix some remaining problems with CFG_CMD_
65794
65795 Signed-off-by: Stefan Roese <sr@denx.de>
65796
65797 commit 8280f6a1c43247616b68224675188e5ccd124650
65798 Author: Stefan Roese <sr@denx.de>
65799 Date: Sat Aug 18 14:33:02 2007 +0200
65800
65801 Coding style cleanup
65802
65803 Signed-off-by: Stefan Roese <sr@denx.de>
65804
65805 commit 4a442d3186b31893b4f77c6e82f63c4517a5224b
65806 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65807 Date: Thu Aug 16 19:23:50 2007 -0500
65808
65809 ColdFire: Add M5235EVB Platform for MCF523x
65810
65811 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65812
65813 commit 4cc1cd5941827a04cf5c51a07fcc42e8945894aa
65814 Author: Kim Phillips <kim.phillips@freescale.com>
65815 Date: Fri Aug 17 09:30:00 2007 -0500
65816
65817 mpc83xx: fix typo in DDR2 programming
65818
65819 introduced in the implement board_add_ram_info patch as I was cleaning out the
65820 magic numbers. sorry.
65821
65822 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65823
65824 commit e58fe95784d2514fc9c21028dc59f2b319a35d80
65825 Author: Kim Phillips <kim.phillips@freescale.com>
65826 Date: Thu Aug 16 22:53:09 2007 -0500
65827
65828 mpc83xx: move freescale boards to boards/freescale
65829
65830 includes build fixes.
65831
65832 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65833
65834 commit 5aa4ad8d8e7e9468219990c7875d5fdc9e962f47
65835 Author: Kim Phillips <kim.phillips@freescale.com>
65836 Date: Thu Aug 16 22:52:59 2007 -0500
65837
65838 mpc83xx: suppress unused variable 'val8' warning
65839
65840 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65841
65842 commit bbea46f76f767b919070b4829bf34c86bd223248
65843 Author: Kim Phillips <kim.phillips@freescale.com>
65844 Date: Thu Aug 16 22:52:48 2007 -0500
65845
65846 mpc83xx: implement board_add_ram_info
65847
65848 add board_add_ram_info, to make memory diagnostic output more
65849 consistent. u-boot banner output now looks like:
65850
65851 DRAM: 256 MB (DDR1, 64-bit, ECC on)
65852
65853 and for boards with SDRAM on the local bus, a line such as this is
65854 added:
65855
65856 SDRAM: 64 MB (local bus)
65857
65858 also replaced some magic numbers with their equivalent define names.
65859
65860 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65861
65862 commit 14778585d1389d86d5846efec29e5fce892680ce
65863 Author: Tony Li <tony.li@freescale.com>
65864 Date: Fri Aug 17 10:35:59 2007 +0800
65865
65866 mpc83xx: Split PIB init code from pci.c and add Qoc3 ATM card support
65867
65868 The patch split the PIB init code from pci.c to a single file board/freescale/common/pq-mds-pib.c
65869 And add Qoc3 ATM card support for MPC8360EMDS and MPC832XEMDS board.
65870
65871 Signed-off-by Tony Li <tony.li@freescale.com>
65872
65873 commit 8ae158cd87a4a25722b27835261b6ff0fa2aa6a7
65874 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65875 Date: Thu Aug 16 15:05:11 2007 -0500
65876
65877 ColdFire: Add M54455EVB for MCF5445x
65878
65879 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65880
65881 commit a1436a842654a8d3927d082a8ae9ee0a10da62d7
65882 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65883 Date: Thu Aug 16 13:20:50 2007 -0500
65884
65885 ColdFire: Add M5253EVBE platform for MCF52x2
65886
65887 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65888
65889 commit a605aacd8324094199402816cc6d9124aba57b8d
65890 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65891 Date: Thu Aug 16 05:04:31 2007 -0500
65892
65893 ColdFire: Add M5249EVB platform for MCF52x2
65894
65895 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65896
65897 commit f28e1bd9daa6de5eb33ae4822bda6b008ccb4e9e
65898 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65899 Date: Wed Aug 15 20:32:06 2007 -0500
65900
65901 ColdFire: Update Freescale MCF52x2 platforms
65902
65903 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65904
65905 commit 870470dbf6f4bb9864e0d97aeedbc17c167c6d1c
65906 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65907 Date: Wed Aug 15 19:55:10 2007 -0500
65908
65909 ColdFire: Update EB+MCF-EV123 platform
65910
65911 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65912
65913 commit aa93d859d9b1fcd8eea52d51b06e86c38f72111b
65914 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65915 Date: Wed Aug 15 19:46:38 2007 -0500
65916
65917 ColdFire: update TASREG platform for MCF52x2
65918
65919 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65920
65921 commit a9505510bf56a9b5558248dd8b73ec9d9a1556a2
65922 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65923 Date: Wed Aug 15 19:45:51 2007 -0500
65924
65925 ColdFire: update r5200 platform for MCF52x2
65926
65927 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65928
65929 commit 6cfd3c7bc813fb317ab7c0781f0d1874b1c0877c
65930 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65931 Date: Wed Aug 15 19:43:20 2007 -0500
65932
65933 ColdFire: idmr platform MCF52x2 update
65934
65935 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65936
65937 commit 6706424d0bb851fb52af00cd1c3301e91ee7f2b0
65938 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65939 Date: Wed Aug 15 19:41:06 2007 -0500
65940
65941 ColdFire: cobra5272 platform for MCF52x2 update
65942
65943 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65944
65945 commit 56115665b4a64c10c01440c57749b265e0908fa4
65946 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65947 Date: Wed Aug 15 19:38:15 2007 -0500
65948
65949 ColdFire: MCF52x2 Header files update
65950
65951 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65952
65953 commit 83ec20bc4380eebddfde45da6e3a69a92d4db21d
65954 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65955 Date: Wed Aug 15 19:21:21 2007 -0500
65956
65957 ColdFire: MCF52x2 update
65958
65959 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65960
65961 commit f52e78304dcc0ac459c0ea1fa5be275c7d1642cf
65962 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65963 Date: Wed Aug 15 18:46:11 2007 -0500
65964
65965 ColdFire: MCF5329 update cache
65966
65967 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65968
65969 commit 7171977fb8fd77cfb6676953fa9a05789c450513
65970 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65971 Date: Wed Aug 15 15:40:20 2007 -0500
65972
65973 ColdFire: MCF5329 header file clean up
65974
65975 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65976
65977 commit ab77bc547ba561c25ea34457ed17aa0b2f7c2723
65978 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65979 Date: Wed Aug 15 15:39:17 2007 -0500
65980
65981 ColdFire: MCF5329 Update and cleanup
65982
65983 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65984
65985 commit 10327dc5541f947c0cf7e31fef86c4706169607a
65986 Author: Andy Fleming <afleming@freescale.com>
65987 Date: Thu Aug 16 16:35:02 2007 -0500
65988
65989 Add CONFIG_HAS_ETH0 to all boards with TSEC
65990
65991 The 85xx code now relies on CONFIG_HAS_ETH0 to determine whether
65992 to update TSEC1's device-tree node, so we need to add it
65993 to all the boards with TSECs. Do this for 83xx and 86xx, too,
65994 since they will eventually do something similar.
65995
65996 Signed-off-by: Andy Fleming <afleming@freescale.com>
65997
65998 commit d64ee908a1b525e5bb2b4cbeb5c449ad6a469666
65999 Author: Kumar Gala <galak@kernel.crashing.org>
66000 Date: Thu Aug 16 15:05:04 2007 -0500
66001
66002 Update MPC8544 DS PCI memory map
66003
66004 The PCIe bus that the ULI M1575 is connected to has no possible way of
66005 needing more than the fixed amount of IO & Memory space needed by the ULI.
66006
66007 So make it use far less IO & memory space and have it use the shared LAW. This
66008 free's up a LAW for PCIe1 IO space. Also reduce the amount of IO space needed
66009 by each bus.
66010
66011 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
66012
66013 commit ea5877e31ed63ade948fd1293895ec23fe01472e
66014 Author: Kumar Gala <galak@kernel.crashing.org>
66015 Date: Thu Aug 16 11:01:21 2007 -0500
66016
66017 Fix up some fdt issues on 8544DS
66018
66019 It looks like we had a merge issue that duplicated a bit of code
66020 in ft_board_setup. Also, we need to set CONFIG_HAS_ETH0 to get
66021 the MAC address properly set in the device tree on boot for TSEC1
66022
66023 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
66024
66025 commit 07bc20560cb9d3d186cca268c05c82762e8c55ad
66026 Author: Niklaus Giger <niklaus.giger@netstal.com>
66027 Date: Thu Aug 16 15:16:03 2007 +0200
66028
66029 PPC4xx:HCU4/5 cleanup
66030
66031 Minor cleanups to confirm to the u-boot coding style.
66032 Some german expressions -> english.
66033 HCU5 enforces a unique IP adress for a given slot in the rack.
66034
66035 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
66036
66037 commit 1e6b07c64967c1eb2cd84faa4c32bf2a769bc8eb
66038 Author: Niklaus Giger <niklaus.giger@netstal.com>
66039 Date: Thu Aug 16 15:16:02 2007 +0200
66040
66041 PPC4xx:HCU4/5 cleanup ecc/sdram init
66042
66043 Make ecc initialisation robust, as DDR2-ECC errors may be generated
66044 while zeroing the RAM.
66045
66046 Return 16 bytes (a cacheline) less than the available memory, as the
66047 board and/or PPC440EPx might have problems accessing the last bytes.
66048
66049 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
66050
66051 commit d35b508a55508535b6e8445b718585d27df733d3
66052 Author: Kim Phillips <kim.phillips@freescale.com>
66053 Date: Wed Aug 15 22:29:56 2007 -0500
66054
66055 fdt: suppress unused variable 'bd' warning
66056
66057 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66058
66059 commit 82bd9ee77490588d4da785d75829ca63d0176baf
66060 Author: Andy Fleming <afleming@freescale.com>
66061 Date: Wed Aug 15 20:06:50 2007 -0500
66062
66063 Fix warnings from of_data copy fix
66064
66065 Forgot to cast of_flat_tree to ulong.
66066
66067 Signed-off-by: Andy Fleming <afleming@freescale.com>
66068
66069 commit 7613afda77d5eec0f47d303025b0c661b70e4c73
66070 Author: Andy Fleming <afleming@freescale.com>
66071 Date: Wed Aug 15 20:03:44 2007 -0500
66072
66073 Don't wait for disconnected TSECs
66074
66075 The TSEC driver's PHY code waits a long time for autonegotiation to
66076 complete, even if the link is down. The PHY knows the link is
66077 down or up before autonegotiation completes, so we can short-circuit
66078 the process if the link is down.
66079
66080 Signed-off-by: Andy Fleming <afleming@freescale.com>
66081
66082 commit b96c83d4ae475a70ef2635cd0e748174c44c8601
66083 Author: Andy Fleming <afleming@freescale.com>
66084 Date: Wed Aug 15 20:03:34 2007 -0500
66085
66086 Fix numerous bugs in the 8568 UEC support
66087
66088 Actually, fixed a large bug in the UEC for *all* platforms.
66089 How did this ever work?
66090
66091 uec_init() did not follow the spec for eth_init(), and returned
66092 0 on success. Switch it to return the link like tsec_init()
66093 (and 0 on error)
66094
66095 The immap for the 8568 was defined based on MPC8568, rather than
66096 CONFIG_MPC8568
66097
66098 CONFIG_QE was off
66099
66100 CONFIG_ETHPRIME was set to "Freescale GETH". Now is "FSL UEC0"
66101
66102 Fixed a comment about the ranges for CONFIG_ETHPRIME if TSEC_ENET is
66103 enabled
66104
66105 Signed-off-by: Andy Fleming <afleming@freescale.com>
66106
66107 commit 3a79013e2adda53332dfd0b511066a805e929a9d
66108 Author: Andy Fleming <afleming@freescale.com>
66109 Date: Wed Aug 15 20:03:25 2007 -0500
66110
66111 Define tsec flag values in config files
66112
66113 The tsec_info structure and array has a "flags" field for each
66114 ethernet controller. This field is the only reason there are
66115 settings. Switch to defining TSECn_FLAGS for each controller
66116 in the config header, and we can greatly simplify the array, and
66117 also simplify the addition of future boards.
66118
66119 Signed-off-by: Andy Fleming <afleming@freescale.com>
66120
66121 commit ec7238229507e7f47533a611ea8c53319d234cf3
66122 Author: Andy Fleming <afleming@freescale.com>
66123 Date: Wed Aug 15 20:03:13 2007 -0500
66124
66125 Add support for building all boards with a TSEC
66126
66127 Changes to the TSEC driver affect almost all 83xx, 85xx, and 86xx boards.
66128 Now we can do a MAKEALL test on all of them!
66129
66130 Signed-off-by: Andy Fleming <afleming@freescale.com>
66131
66132 commit 10aaf716cb0dc6614df54ef78bed5144afd23ef8
66133 Author: Andy Fleming <afleming@freescale.com>
66134 Date: Wed Aug 15 17:30:56 2007 -0500
66135
66136 Fix of_data copying for CONFIG_OF_FLAT_TREE-using boards
66137
66138 The fix, "Fix where the #ifdef CFG_BOOTMAPSZ is placed"
66139 neglected to *also* put the code inside the similar #ifdef
66140 for CONFIG_OF_FLAT_TREE.
66141
66142 Signed-off-by: Andy Fleming <afleming@freescale.com>
66143
66144 commit 78f9fef7f406078c8bf7191e665a73f795157746
66145 Author: Scott Wood <scottwood@freescale.com>
66146 Date: Wed Aug 15 15:46:46 2007 -0500
66147
66148 mpc885ads: Don't define CONFIG_BZIP2.
66149
66150 bzip2 requires a significant chunk of malloc space, and there isn't
66151 enough room on mpc885ads (with only 8MB RAM) for both bzip2's malloc area
66152 and a downloaded image at 0x400000.
66153
66154 Signed-off-by: Scott Wood <scottwood@freescale.com>
66155
66156 commit 002275a3ed8b114885f6702d6d544d0780dfe689
66157 Author: Michal Simek <Monstr@seznam.cz>
66158 Date: Thu Aug 16 08:54:10 2007 +0200
66159
66160 Bios emulator - fix microblaze toolchain problem
66161
66162 microblaze CPU have problem with bios_emulator code.
66163 Microblaze toolchain doesn't support PRAGMA PACK.
66164
66165 Signed-off-by: Michal Simek <monstr@monstr.eu>
66166
66167 commit a5a38f4fd7e5366d706ff6a985f9b6715ddbc98b
66168 Author: Wolfgang Denk <wd@denx.de>
66169 Date: Thu Aug 16 11:51:04 2007 +0200
66170
66171 Minor Coding Style fix; Update CHANGELOG file.
66172
66173 Signed-off-by: Wolfgang Denk <wd@denx.de>
66174
66175 commit 8fb6e80c06849e3013ac5c9350d8ed9e52967991
66176 Author: Stefan Roese <sr@denx.de>
66177 Date: Thu Aug 16 11:21:49 2007 +0200
66178
66179 ppc4xx: Remove #warning in esd auto_update.c
66180
66181 Signed-off-by: Stefan Roese <sr@denx.de>
66182
66183 commit 2d78074d2e806edc380c1464eb9e5df335ece65e
66184 Author: Stefan Roese <sr@denx.de>
66185 Date: Fri Jun 22 17:32:28 2007 +0200
66186
66187 ppc7xx: Update CPCI750 board
66188
66189 This small CPCI750 update extends the board specific command
66190 "show_config" to display the Marvell strapping registers and
66191 extends the PCI IDE controller.
66192
66193 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
66194 Signed-off-by: Stefan Roese <sr@denx.de>
66195
66196 commit 78cff50edba6b1508eb15c2f53ce966ac891eb9e
66197 Author: Michal Simek <monstr@monstr.eu>
66198 Date: Thu Aug 16 10:46:28 2007 +0200
66199
66200 [FIX] Changes for bios_emulator code for others architecture
66201
66202 commit 6e0e2253f039344f8ebd2787285fdba90e6714e8
66203 Author: Michal Simek <monstr@monstr.eu>
66204 Date: Thu Aug 16 10:45:09 2007 +0200
66205
66206 [FIX] Remove unused include file
66207
66208 commit 9de469bd960cc1870bb40d6672ed42726b8b50d7
66209 Author: Stefan Roese <sr@denx.de>
66210 Date: Thu Aug 16 10:18:33 2007 +0200
66211
66212 ppc4xx: Only enable POST FPU test on Sequoia and not Rainier
66213
66214 Signed-off-by: Stefan Roese <sr@denx.de>
66215
66216 commit 6da0c5bd4a53e40eb4f7eb72a4c051ecabad783c
66217 Author: Stefan Roese <sr@denx.de>
66218 Date: Thu Aug 16 09:54:51 2007 +0200
66219
66220 Add missing rainier (PPC440GRx) target to MAKEALL and MAINTAINERs files
66221
66222 Signed-off-by: Stefan Roese <sr@denx.de>
66223
66224 commit 02ba7022f62bb75908296c58c63866e1d294b69a
66225 Author: Stefan Roese <sr@denx.de>
66226 Date: Thu Aug 16 09:52:29 2007 +0200
66227
66228 ppc4xx: Update Sequoia/Rainier bootstrap command
66229
66230 As suggested by David Mitchell, here an update for the Sequoia/Rainier
66231 bootstrap command.
66232
66233 Signed-off-by: Stefan Roese <sr@denx.de>
66234
66235 commit 35cc4e4823668e8745854899cfaedd4489beb0ef
66236 Author: Kim Phillips <kim.phillips@freescale.com>
66237 Date: Wed Aug 15 22:30:39 2007 -0500
66238
66239 mpc83xx: enable libfdt by default on freescale boards
66240
66241 this enables libfdt code by default for the
66242 freescale mpc8313erdb, mpc832xemds, mpc8349emds,
66243 mpc8349itx and gp boards.
66244
66245 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66246
66247 commit 3fde9e8b22cfbd7af489214758f9839a206576cb
66248 Author: Kim Phillips <kim.phillips@freescale.com>
66249 Date: Wed Aug 15 22:30:33 2007 -0500
66250
66251 mpc83xx: migrate remaining freescale boards to libfdt
66252
66253 this adds libfdt support code for the freescale
66254 mpc8313erdb, mpc832xemds, mpc8349emds, mpc8349itx,
66255 and gp boards.
66256
66257 Boards remain compatible with OF_FLAT_TREE.
66258
66259 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66260
66261 commit 6a16e0dfcc4119b46adb1dce2d6c8fb3c5d108e1
66262 Author: Kim Phillips <kim.phillips@freescale.com>
66263 Date: Wed Aug 15 22:30:26 2007 -0500
66264
66265 mpc83xx: move common /memory node update mechanism to cpu.c
66266
66267 also adds common prototypes to include/common.h.
66268
66269 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66270
66271 commit 8f9e0e9f339aee4ce31a338d5f27356eb5457f85
66272 Author: Kim Phillips <kim.phillips@freescale.com>
66273 Date: Wed Aug 15 22:30:19 2007 -0500
66274
66275 mpc83xx: remaining 8360 libfdt fixes
66276
66277 PCI clocks and QE frequencies weren't being updated, and the core clock
66278 was being updated incorrectly. This patch also adds a /memory node if
66279 it doesn't already exist prior to update.
66280
66281 plus some cosmetic trimming to single line comments.
66282
66283 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66284
66285 commit f4b2ac5ed9aaff9920d487bff8a59696c083a524
66286 Author: Kim Phillips <kim.phillips@freescale.com>
66287 Date: Wed Aug 15 22:30:12 2007 -0500
66288
66289 mpc83xx: fix UEC2->1 typo in libfdt setup code
66290
66291 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66292
66293 commit 19fa1c35368484d4ed10ddce8a7793c21862e3a3
66294 Author: Kim Phillips <kim.phillips@freescale.com>
66295 Date: Wed Aug 15 22:30:05 2007 -0500
66296
66297 mpc83xx: add MAINTAINER and MAKEALL entries for the mpc8323erdb
66298
66299 and reorder the existing 83xx maintainers alpha.
66300
66301 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66302
66303 commit 5b4de9309d7a03aa1db2e5391ab696363391f460
66304 Author: Michal Simek <monstr@monstr.eu>
66305 Date: Wed Aug 15 21:15:05 2007 +0200
66306
66307 [FIX] Resolve problem with warnings
66308 microblaze toolchain don't support PRAGMA PACK.
66309
66310 commit d1ed28cf36ab6b1d4c479809de7252bf53d2f2d4
66311 Author: Michal Simek <monstr@monstr.eu>
66312 Date: Wed Aug 15 21:05:07 2007 +0200
66313
66314 [FIX] Correction command setting for Microblaze boards
66315
66316 commit 7aa63d8cd30ab20ac2fd1ab86e60471de8b1f1e5
66317 Author: Michal Simek <monstr@monstr.eu>
66318 Date: Wed Aug 15 21:03:41 2007 +0200
66319
66320 [FIX] Correction command definition
66321
66322 commit 30b52df9e906bf0e465916c2c6bb5192b438e0b8
66323 Author: Jon Loeliger <jdl@freescale.com>
66324 Date: Wed Aug 15 11:55:35 2007 -0500
66325
66326 86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
66327
66328 Remove a leftover in net/tftp.c while we're at it.
66329
66330 Signed-off-by: Jon Loeliger <jdl@freescale.com>
66331
66332 commit 4ce917742b1e48faa9bf9a9757545e56fb4cfe44
66333 Author: Jon Loeliger <jdl@freescale.com>
66334 Date: Wed Aug 15 12:20:40 2007 -0500
66335
66336 Move the MPC8641HPCN board under board/freescale.
66337
66338 Minor path corrections needed to ensure buildability.
66339
66340 Signed-off-by: Jon Loeliger <jdl@freescale.com>
66341
66342 commit 8662577fe36fdb6a44b55b998d9daac6392a736a
66343 Author: Jon Loeliger <jdl@freescale.com>
66344 Date: Wed Aug 15 11:46:22 2007 -0500
66345
66346 86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
66347
66348 Remove a leftover in net/tftp.c while we're at it.
66349
66350 Signed-off-by: Jon Loeliger <jdl@freescale.com>
66351
66352 commit 210f463c71917b7a4495c2103c228b9c179ae64d
66353 Author: Jerry Van Baren <gvb.uboot@gmail.com>
66354 Date: Wed Aug 15 11:13:15 2007 -0400
66355
66356 Fix where the #ifdef CFG_BOOTMAPSZ is placed.
66357
66358 Commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924 "Fix initrd/dtb
66359 interaction" put the new code outside of the #if defined(CONFIG_OF_LIBFDT)
66360 when it should have gone inside of the conditional. As a result, it
66361 broke non-LIBFDT board builds.
66362
66363 Also added a missing "not." to the comment.
66364
66365 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
66366
66367 commit 0e19209767194a97cec6d93dba9e64d1da8d548e
66368 Author: Niklaus Giger <niklaus.giger@netstal.com>
66369 Date: Wed Aug 15 12:14:23 2007 +0200
66370
66371 PPC4xx:HCU4/5-Board fix compile warning
66372
66373 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
66374
66375 commit 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7
66376 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
66377 Date: Tue Aug 14 14:06:45 2007 -0500
66378
66379 Fix malloc size error in ahci_init_one.
66380
66381 Typically this causes scsi init to corrupt the
66382 devlist and break the coninfo command.
66383 Fix a compiler size warning.
66384
66385 Signed-off-by: Jason Jin <jason.jin@freescale.com>
66386 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
66387 Acked-by: Andy Fleming <afleming@freescale.com>
66388
66389 commit b361acd64fd2525c081b9b288b0804efe209c0e9
66390 Author: ksi@koi8.net <ksi@koi8.net>
66391 Date: Tue Aug 14 10:02:16 2007 -0700
66392
66393 TI DaVinci - fix unsupported %hhx format
66394
66395 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
66396
66397 commit f01dbb5424a81453c81190dd30e945891466f621
66398 Author: Wolfgang Denk <wd@denx.de>
66399 Date: Tue Aug 14 18:42:36 2007 +0200
66400
66401 Coding style cleanup. Update CHANGELOG.
66402
66403 Signed-off-by: Wolfgang Denk <wd@denx.de>
66404
66405 commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924
66406 Author: Andy Fleming <afleming@freescale.com>
66407 Date: Tue Aug 14 10:32:59 2007 -0500
66408
66409 Fix initrd/dtb interaction
66410
66411 The original code would wrongly relocate the blob to be right before
66412 the initrd if it existed. The blob *must* be within CFG_BOOTMAPSZ,
66413 if it is defined. So we make two changes:
66414
66415 1) flag the blob for relocation whenever its address is above BOOTMAPSZ
66416
66417 2) If the blob is being relocated, relocate it before kbd, not initrd
66418
66419 Signed-off-by: Andy Fleming <afleming@freescale.com>
66420
66421 commit e54b970173769307a116bd34028b6d0c2eea2a4e
66422 Author: Peter Pearse <peter.pearse@arm.com>
66423 Date: Tue Aug 14 15:40:00 2007 +0100
66424
66425 Supply spi interface in at45.c
66426
66427 commit 4ce846ec59f36b85d6644a769690ad3feb667575
66428 Author: Stefan Roese <sr@denx.de>
66429 Date: Tue Aug 14 15:12:01 2007 +0200
66430
66431 POST: Fix merge problem
66432
66433 Signed-off-by: Stefan Roese <sr@denx.de>
66434
66435 commit 429d9571f60631ae8a2fe12b11be4c75b0c2b37c
66436 Author: Stefan Roese <sr@denx.de>
66437 Date: Tue Aug 14 15:03:17 2007 +0200
66438
66439 Coding style cleanup
66440
66441 Signed-off-by: Stefan Roese <sr@denx.de>
66442
66443 commit 779e975117a75e91fcebe226a63104dbfb924ab1
66444 Author: Stefan Roese <sr@denx.de>
66445 Date: Tue Aug 14 14:44:41 2007 +0200
66446
66447 ppc4xx: Add initial Zeus (PPC405EP) board support
66448
66449 Signed-off-by: Stefan Roese <sr@denx.de>
66450
66451 commit c5a172a5fd636c12467429e3f7910e53773979c6
66452 Author: Stefan Roese <sr@denx.de>
66453 Date: Tue Aug 14 14:41:55 2007 +0200
66454
66455 POST: Add option for external ethernet loopback test
66456
66457 When CFG_POST_ETHER_EXT_LOOPBACK is defined, the ethernet POST
66458 is not done using an internal loopback connection, but by assuming
66459 that an external loopback connector is plugged into the board.
66460
66461 Signed-off-by: Stefan Roese <sr@denx.de>
66462
66463 commit eb2b4010ae426245172988804ee8d9193fb41038
66464 Author: Stefan Roese <sr@denx.de>
66465 Date: Tue Aug 14 14:39:44 2007 +0200
66466
66467 POST: Add ppc405 support to cache and UART POST
66468
66469 Signed-off-by: Stefan Roese <sr@denx.de>
66470
66471 commit 0c42f36f15074bd9808a7dbd7ef611fad9bf537c
66472 Author: Peter Pearse <peter.pearse@arm.com>
66473 Date: Tue Aug 14 10:46:32 2007 +0100
66474
66475 Replace lost end of at45.c.
66476
66477 commit 65d7ada64557e76094b4fd3bad30a0f18f5fb2b2
66478 Author: Peter Pearse <peter.pearse@arm.com>
66479 Date: Tue Aug 14 10:30:06 2007 +0100
66480
66481 Update Makefiles for merged and split at45.c.
66482
66483 commit 3454cece2db57cb9eb7087995f7e73066a163f71
66484 Author: Peter Pearse <peter.pearse@arm.com>
66485 Date: Tue Aug 14 10:21:06 2007 +0100
66486
66487 Delete the merged files.
66488
66489 commit dcbfd2e5649f97aa04fbbc6ea2b008aa4486e225
66490 Author: Peter Pearse <peter.pearse@arm.com>
66491 Date: Tue Aug 14 10:14:05 2007 +0100
66492
66493 Add the files.
66494
66495 commit d4fc6012fd0a5c211b825691f44b06f8032c0551
66496 Author: Peter Pearse <peter.pearse@arm.com>
66497 Date: Tue Aug 14 10:10:52 2007 +0100
66498
66499 Add MACH_TYPE records for several AT91 boards.
66500 Merge to two at45.c files into a common file, split to at45.c and spi.c
66501 Fix spelling error in DM9161 PHY Support.
66502 Initialize at91rm9200 board (and set LED).
66503 Add PIO control for at91rm9200dk LEDs and Mux.
66504 Change dataflash partition boundaries to be compatible with Linux 2.6.
66505
66506 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
66507 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
66508
66509 commit 4ef35e53c693556c54b0c22d6f873de87bade253
66510 Author: Wolfgang Denk <wd@denx.de>
66511 Date: Tue Aug 14 09:54:46 2007 +0200
66512
66513 Coding style cleanup, update CHANGELOG
66514
66515 Signed-off-by: Wolfgang Denk <wd@denx.de>
66516
66517 commit 85eb5caf6b906f7ec5b54814e8c7c74f55986bb7
66518 Author: Wolfgang Denk <wd@denx.de>
66519 Date: Tue Aug 14 09:47:27 2007 +0200
66520
66521 Coding style cleanup; rebuild CHANGELOG
66522
66523 commit 7f3f2bd2dc08e0b05e185662ca2e2d283757104a
66524 Author: Randy Vinson <rvinson@linuxbox.(none)>
66525 Date: Tue Feb 27 19:42:22 2007 -0700
66526
66527 85xxCDS: Add make targets for legacy systems.
66528
66529 The PCI ID select values on the Arcadia main board differ depending
66530 on the version of the hardware. The standard configuration supports
66531 Rev 3.1. The legacy target supports Rev 2.x.
66532
66533 Signed-off-by Randy Vinson <rvinson@mvista.com>
66534
66535 commit e41094c7e38177c755fbd9b182018069614f080d
66536 Author: Andy Fleming <afleming@freescale.com>
66537 Date: Tue Aug 14 01:50:09 2007 -0500
66538
66539 85xxCDS: Enable the VIA PCI-to-ISA bridge.
66540
66541 Author: Randy Vinson <rvinson@linuxbox.(none)>
66542
66543 Enable the PCI-to-ISA bridge in the VIA Southbridge located on the
66544 Arcadia main board.
66545
66546 Signed-off-by: Randy Vinson <rvinson@mvista.com>
66547 Signed-off-by: York Sun <yorksun@freescale.com>
66548
66549 commit da9d4610d76e52c4d20a8f3d8433439a7fcf5b71
66550 Author: Andy Fleming <afleming@freescale.com>
66551 Date: Tue Aug 14 00:14:25 2007 -0500
66552
66553 Add support for UEC to 8568
66554
66555 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
66556 Signed-off-by: Andy Fleming <afleming@freescale.com>
66557
66558 commit c59e4091ffe0148398b9e9ff14a019ea038b7432
66559 Author: Haiying Wang <Haiying.Wang@freescale.com>
66560 Date: Tue Jun 19 14:18:34 2007 -0400
66561
66562 Add PCI support for MPC8568MDS board
66563
66564 This patch is against u-boot-mpc85xx.git of www.denx.com
66565
66566 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
66567 Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
66568
66569 commit d111d6382c99fdea08c2312eeeae8786945e189a
66570 Author: Haiying Wang <Haiying.Wang@freescale.com>
66571 Date: Tue Jun 19 14:18:32 2007 -0400
66572
66573 Empirically set cpo and clk_adjust for mpc85xx DDR2 support
66574
66575 This patch is against u-boot-mpc85xx.git of www.denx.com
66576
66577 Setting cpo to 0x9 for frequencies higher than 333MHz is verified on
66578 both MPC8548CDS board and MPC8568MDS board, especially for supporting
66579 533MHz DDR2.
66580
66581 Setting clk_adjust to 0x6(3/4 late cycle) for MPC8568MDS board is for
66582 DDR2 on all current board versions especially ver 1.92 or later to bring
66583 up.
66584
66585 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
66586
66587 commit 3db0bef59eab1155801618cef5c481e97553b597
66588 Author: Kumar Gala <galak@kernel.crashing.org>
66589 Date: Tue Aug 7 18:07:27 2007 -0500
66590
66591 Use an absolute address when jumping out of 4k boot page
66592
66593 On e500 when we leave the 4k boot page we should use an absolute address since
66594 we don't know where the board code may want us to be really running at.
66595
66596 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
66597
66598 commit 39980c610c9a4c381907c9e1d1b9c0e1c0dca57a
66599 Author: Andy Fleming <afleming@freescale.com>
66600 Date: Mon Aug 13 14:49:59 2007 -0500
66601
66602 MPC85xx BA bits not set for 3-bit bank address DIMM
66603
66604 The current implementation does not set the number of bank address bits
66605 (BA) in the processor. The default assumes 2 logical bank bits. This
66606 works fine for a DIMM that uses devices with 4 internal banks (SPD
66607 byte17 = 0x4) but needs to be set appropriately for a DIMM that uses
66608 devices with 8 internal banks (SPD byte17 = 0x8).
66609
66610 Signed-off-by: Greg Davis <DavisG@embeddedplanet.com>
66611
66612 commit 6c543597bb4b1ecf5d8589f7abb0f39929fb7fd1
66613 Author: Andy Fleming <afleming@freescale.com>
66614 Date: Mon Aug 13 14:38:06 2007 -0500
66615
66616 Fix minor 85xx warnings
66617
66618 Some patches had inserted warnings into the build:
66619 * mpc8560ads declared data without using it
66620 * cpu_init declared ecm and immap without using it in all CONFIGs
66621 * MPC8548CDS.h had its default filenames changed so that they contained
66622 "\m" in the paths. Made the defaults not Windows-specific (or
66623 anything-specific)
66624
66625 Signed-off-by: Andy Fleming <afleming@freescale.com>
66626
66627 commit f2cff6b104f82b993bef6086ce0c97159bbe1add
66628 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
66629 Date: Fri Jul 27 01:50:52 2007 -0500
66630
66631 8548cds PCIE support.
66632
66633 Make the early L1 cache stack region guarded to prevent speculative
66634 fetches outside the locked range.
66635
66636 Use _PHYS defines, not _MEM for cpu-side PCI memory mapped regions.
66637 init.S whitespace cleanup.
66638
66639 Allow TEXT_BASE value to be specified on command line. This allows it
66640 to be set to 0xfffc0000 which cuts the uboot binary in half.
66641
66642 Clear and enable lbc and ecm errors.
66643
66644 Update last_busno in device-tree for pci and pcie.
66645
66646 Remove load of obsolete cpu/mpc85xx/pci.0
66647
66648 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
66649 Acked-by: Andy Fleming <afleming@freescale.com>
66650
66651 commit 837f1ba05cfb248aba5ab8e1fb1bfeefa07d5962
66652 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
66653 Date: Fri Jul 27 01:50:51 2007 -0500
66654
66655 8544ds PCIE support
66656
66657 PCI1 LAW mapping should use CFG_PCI1_MEM_PHY and not _BASE address.
66658
66659 Enable LBC and ECM errors and clear error registers.
66660
66661 Add tftpflash env var to get uboot from tftp server and flash it.
66662
66663 Add pci/pcie convenience env vars to display register space:
66664 "run pcie3regs" to see all pcie3 ccsr registers
66665 "run pcie3cfg" to see all cfg registers
66666 Whitespace cleanup and MPC8544DS.h
66667
66668 Enable CONFIG_INTERRUPTS.
66669
66670 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
66671 Acked-by: Andy Fleming <afleming@freescale.com>
66672
66673 commit 61a21e980a7b9188424d04f1c265fdc5c21c7e85
66674 Author: Andy Fleming <afleming@freescale.com>
66675 Date: Tue Aug 14 01:34:21 2007 -0500
66676
66677 85xx start.S cleanup and exception support
66678
66679 From: Ed Swarthout <Ed.Swarthout@freescale.com>
66680
66681 Support external interrupts from platform to eliminate system hangs.
66682 Define CONFIG_INTERRUPTS board configure option to enable.
66683 Enable ecm, ddr, lbc, and pci/pcie error interrupts in PIC.
66684
66685 Remove extra cpu initialization redundant with hardware initialization.
66686 Whitespace cleanup.
66687
66688 Define and use _START_OFFSET consistent with other processors using
66689 ppc_asm.tmpl
66690
66691 Move additional code from .text to boot page to make room for
66692 exception vectors at start of image.
66693
66694 Handle Machine Check, External and Critical exceptions.
66695
66696 Fix e500 machine check error determination in traps.c
66697
66698 TEXT_BASE can now be 0xfffc_0000 - which cuts binary image in half.
66699
66700 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
66701 Acked-by: Andy Fleming <afleming@freescale.com>
66702
66703 commit 7bd30fc4a6475b41d6679ae3aafc9fa505260c47
66704 Author: Andy Fleming <afleming@freescale.com>
66705 Date: Tue Aug 14 01:33:18 2007 -0500
66706
66707 Add MPC8544DS README
66708
66709 Signed-off-by: Andy Fleming <afleming@freescale.com>
66710
66711 commit 40c7f9b0de4e300370adfc704128fa0f79a143b6
66712 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
66713 Date: Fri Jul 27 01:50:48 2007 -0500
66714
66715 85xx allow debugger to configure ddr.
66716
66717 Only check for mpc8548 rev 1 when compiled for 8548.
66718
66719 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
66720 Acked-by: Andy Fleming <afleming@freescale.com>
66721
66722 commit 29372ff38c5baab7d0e3a8c14fe11fa194a38704
66723 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
66724 Date: Fri Jul 27 01:50:47 2007 -0500
66725
66726 mpc85xx L2 cache reporting and SRAM relocation option.
66727
66728 Allow debugger to override flash cs0/cs1 settings to enable alternate
66729 boot regions
66730
66731 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
66732 Acked-by: Andy Fleming <afleming@freescale.com>
66733
66734 commit 41f0f8fb1ab92f0cba7d329de90070f822f8299f
66735 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
66736 Date: Fri Jul 27 01:50:46 2007 -0500
66737
66738 e500 needs ppc_asm.tmp MCK_EXCEPTION
66739
66740 Always define MCK_EXCEPTION macro - so e500 can use it too.
66741
66742 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
66743 Acked-by: Andy Fleming <afleming@freescale.com>
66744
66745 commit 53a5c424bf8655b7b4e2c305a441963259a26a81
66746 Author: David Updegraff <dave@cray.com>
66747 Date: Mon Jun 11 10:41:07 2007 -0500
66748
66749 multicast tftp: RFC2090
66750
66751 Implemented IETF RFC2090, Multicast TFTP. Initial implementation
66752 on Realtek RTL8139 and Freescale TSEC.
66753
66754 Signed-off-by: David Updegraff <dave@cray.com>
66755 Signed-off-by: Ben Warren <bwarren@qstreams.com>
66756
66757 commit 5d110f0aa69f065ee386ec1840dfee1e8cc46bc1
66758 Author: Wilson Callan <wcallan@savantav.com>
66759 Date: Sat Jul 28 10:56:13 2007 -0400
66760
66761 New CONFIG_BOOTP_SERVERIP option
66762
66763 Added CONFIG_BOOTP_SERVERIP to allow the tftp server to be different
66764 from the bootp server
66765
66766 Signed-off-by: Wilson Callan <wcallan@savantav.com>
66767 Signed-off-by: Ben Warren <bwarren@qstreams.com>
66768
66769 commit 50cca8b976ec74069860208c36e64ce8f4d5e4c1
66770 Author: Mike Rapoport <mike@compulab.co.il>
66771 Date: Sun Aug 12 08:48:27 2007 +0300
66772
66773 Add ability to take MAC address from the environment to DM9000 driver
66774
66775 Signed-off-by: Mike Rapoport <mike@compulab.co.il>
66776 Signed-off-by: Ben Warren <bwarren@qstreams.com>
66777
66778 commit be5d72d10d47609326226225181e301fb9a33b58
66779 Author: Wolfgang Denk <wd@denx.de>
66780 Date: Mon Aug 13 21:57:53 2007 +0200
66781
66782 Minor coding style cleanup. Update CHANGELOG.
66783
66784 Signed-off-by: Wolfgang Denk <wd@denx.de>
66785
66786 commit cca34967cbd13ff6bd352be29e3f1cc88ab24c05
66787 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
66788 Date: Sat Aug 11 06:54:58 2007 -0500
66789
66790 Modify SBC8641D to use new Freescale PCI routines
66791
66792 PCI-Express sockets 1 and 2 verified working with Intel Pro/1000 PT
66793 adapter.
66794
66795 Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
66796 Signde-off-by: Jon Loeliger <jdl@freescale.com>
66797
66798 commit a08458303e7f9db67f296980036d3292c35cb45c
66799 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66800 Date: Fri Jun 29 18:38:51 2007 +0200
66801
66802 atmel_mci: Fix data timeout value
66803
66804 Calculate the data timeout based on values from the CSD instead of
66805 just using a hardcoded DTOR value. This is a backport of a similar fix
66806 in BSP 2.0, with one additional fix: the DTOCYC value is rounded up
66807 instead of down.
66808
66809 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66810
66811 commit 0ba8eed28b575626b17e0a7882f923b83e0d7584
66812 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66813 Date: Mon Aug 13 17:22:31 2007 +0200
66814
66815 AVR32: Include <div64.h> instead of <asm/div64.h>
66816
66817 include/asm-avr32/div64.h was recently moved to include/div64.h, but
66818 cpu/at32ap/interrupts.c wasn't properly updated (an earlier version of
66819 the patch was merged perhaps?)
66820
66821 This patch updates cpu/at32ap/interrupts.c so that the avr32 port
66822 compiles again.
66823
66824 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66825
66826 commit f0d1246ed7cb5a88522244c596d7ae7e6f161283
66827 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66828 Date: Wed Jun 27 13:34:26 2007 +0200
66829
66830 atmel_mci: Use 512 byte blocksize if possible
66831
66832 Instead of always using the largest blocksize the card supports, check
66833 if it can support smaller block sizes and use 512 bytes if possible.
66834 Most cards do support this, and other parts of u-boot seem to have
66835 trouble with block sizes different from 512 bytes.
66836
66837 Also enable underrun/overrun protection.
66838
66839 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66840 Acked-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
66841
66842 commit 273db7e1bdd1937e32f1d4507321bb721ebd3118
66843 Author: Stefan Roese <sr@denx.de>
66844 Date: Mon Aug 13 09:05:33 2007 +0200
66845
66846 ppc4xx: Fix problem in PLL clock calculation
66847
66848 This patch was originall provided by David Mitchell <dmitchell@amcc.com>
66849 and fixes a bug in the PLL clock calculation.
66850
66851 Signed-off-by: Stefan Roese <sr@denx.de>
66852
66853 commit 9986bc3e40e899bea372a99a2bca4071bdf2e24b
66854 Author: Wolfgang Denk <wd@denx.de>
66855 Date: Sun Aug 12 21:34:50 2007 +0200
66856
66857 Update CHANGELOG
66858
66859 commit 77d19a8bf3b0b1e401cb9f23c81e2ef419705c1a
66860 Author: Wolfgang Denk <wd@denx.de>
66861 Date: Sun Aug 12 21:34:34 2007 +0200
66862
66863 Minor alignment of output, 2nd try.
66864 Also update CHANGELOG
66865
66866 Signed-off-by: Wolfgang Denk <wd@denx.de>
66867
66868 commit 6b309f22a724fad8418e811751a0741b893419cf
66869 Author: Wolfgang Denk <wd@denx.de>
66870 Date: Sun Aug 12 20:35:49 2007 +0200
66871
66872 Minor alignment of output
66873
66874 Signed-off-by: Wolfgang Denk <wd@denx.de>
66875
66876 commit 6f6d7b9c8559e241e8d232621542b8b59699b07b
66877 Author: Wolfgang Denk <wd@denx.de>
66878 Date: Sun Aug 12 18:28:18 2007 +0200
66879
66880 Cleanup output on ADS5121 board
66881
66882 Signed-off-by: Wolfgang Denk
66883
66884 commit a4d2636f2a859245ed3a401f26189da2dfda4ceb
66885 Author: Wolfgang Denk <wd@denx.de>
66886 Date: Sun Aug 12 15:11:38 2007 +0200
66887
66888 Adapt board configuration and fix kernel crash on MCC200 board.
66889
66890 The update procedure was modified to turn off the USB subsystem
66891 before exit for MCC200 and TRAB. This is necessary as otherwise the
66892 USB controller continues to write periodically to system memory!
66893
66894 MCC200-specific notes:
66895 - the patch disables the magic key check for MCC200
66896 - the patch contains the configuration changes made
66897 for the new revision of the board.
66898
66899 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
66900 Signed-off-by: Wolfgang Denk <wd@denx.de>
66901
66902 commit e27f3a6efb9db5a533223b05c629ff4ac8d921bf
66903 Author: Wolfgang Denk <wd@denx.de>
66904 Date: Sun Aug 12 14:47:54 2007 +0200
66905
66906 Adjust default configuration of ADS5121 board.
66907
66908 Signed-off-by: Wolfgang Denk <wd@denx.de>
66909
66910 commit afaac86fe2948ac84cd9a12bbed883b3c683e7d9
66911 Author: Wolfgang Denk <wd@denx.de>
66912 Date: Sun Aug 12 14:27:39 2007 +0200
66913
66914 Clean up some remaining CFG_CMD_ -> CONFIG_CMD_ issues.
66915
66916 Signed-off-by: Wolfgang Denk <wd@denx.de>
66917
66918 commit 5fe6be6208dda852c3564e384bd78d75784dea3e
66919 Author: Gerald Van Baren <vanbaren@cideas.com>
66920 Date: Tue Aug 7 21:14:22 2007 -0400
66921
66922 Improve error print messages.
66923
66924 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
66925
66926 commit 99dffca3b7590a16a00bc475c860b67b2a3f1462
66927 Author: Kim Phillips <kim.phillips@freescale.com>
66928 Date: Tue Jul 17 13:57:04 2007 -0500
66929
66930 fdt: allow for builds that don't want env and bd_t nodes
66931
66932 protect fdt_env and fdt_bd_t invocations, fix codingstyle while in the
66933 area.
66934
66935 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66936
66937 commit 91148bf7aeba142d6f348805db7625db7da64d6f
66938 Author: Kim Phillips <kim.phillips@freescale.com>
66939 Date: Tue Jul 17 13:56:53 2007 -0500
66940
66941 fdt: do board setup based on fdt address specified on bootm line
66942
66943 The last fdt patch to bootm did board setup based on the address
66944 specified by a prior fdt address command invocation. The bootm
66945 code, as its call to fdt_chosen does, should use the fdt specified
66946 by the user on the bootm command. Note this restores full
66947 functionality for the 8360's existing default boot environment
66948 values, e.g. 'run nfsboot' (i.e. no having to 'fdt addr $fdtaddr'
66949 before booting a kernel).
66950
66951 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66952
66953 commit e125a2ffc209dd34794e326c7175658253beadf3
66954 Author: Gerald Van Baren <vanbaren@cideas.com>
66955 Date: Tue Jul 10 20:40:39 2007 -0400
66956
66957 Call ft_board_setup() from the bootm command.
66958
66959 In the patch titled "Create new fdt boardsetup command..." I removed the
66960 call to ft_board_setup() from the routine fdt_chosen(), but I forgot
66961 to add a direct call back into cmd_bootm.c
66962
66963 This fixes the oversight by adding the direct call to the bootm command.
66964
66965 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
66966
66967 commit fd61e55dd8cb52ce3ff91b3917af26e24b6b0845
66968 Author: Gerald Van Baren <vanbaren@cideas.com>
66969 Date: Mon Jun 25 23:25:28 2007 -0400
66970
66971 Create new fdt boardsetup command, fix bug parsing [] form of set values.
66972
66973 Previously ft_board_setup() was called by fdt_chosen() which was not
66974 really correctly structured. This splits ft_board_setup() out by creating
66975 a new fdt boardsetup command.
66976
66977 Fix a bug when parsing fdt set command values which have the square
66978 bracket form [00 11 22 33] - the length was updated incorrectly in when
66979 parsing that form.
66980
66981 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
66982
66983 commit 6f35ded9e85493595e0eb66a82b502a95326d049
66984 Author: Gerald Van Baren <vanbaren@cideas.com>
66985 Date: Mon Jun 25 20:55:58 2007 -0400
66986
66987 Tighten up the error messages.
66988
66989 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
66990
66991 commit c45874b05aae897a6c29d1a97d4bb708fca2756c
66992 Author: Gerald Van Baren <vanbaren@cideas.com>
66993 Date: Mon Jun 25 19:52:23 2007 -0400
66994
66995 Asthetic improvements: error messages and line lengths.
66996
66997 Tighten up the error messages, split overlength lines.
66998
66999 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67000
67001 commit 35ec398f16e17df600edc1b38c1e9e62c15c9aa1
67002 Author: Gerald Van Baren <vanbaren@cideas.com>
67003 Date: Fri May 25 22:08:57 2007 -0400
67004
67005 Fix fdt_chosen() to call ft_board_setup(), clean up long lines.
67006
67007 The fdt_chosen() function was adding/seting some properties ad-hoc
67008 improperly and duplicated (poorly) what was done in ft_board_setup()
67009
67010 Clean up long lines (setting properties, printing errors).
67011
67012 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67013
67014 commit 06e19a07701c968f15d72c083b5872a1a11c7b01
67015 Author: Gerald Van Baren <vanbaren@cideas.com>
67016 Date: Mon May 21 23:27:16 2007 -0400
67017
67018 For fdt_find_node_by_path(), handle the root path properly.
67019
67020 Also removes the special case root path detection in cmd_fdt.c since it
67021 is no longer necessary.
67022
67023 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67024
67025 commit 9675ee7208ab965d13ea8d8262d77ac4160ef549
67026 Author: Gerald Van Baren <vanbaren@cideas.com>
67027 Date: Thu May 17 23:54:36 2007 -0400
67028
67029 Add fdt_find_node_by_type() and fdt_find_compatible_node() to LIBFDT
67030
67031 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
67032 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
67033
67034 commit 1a861169bc3758f9de3aead62b058736c6891246
67035 Author: Gerald Van Baren <vanbaren@cideas.com>
67036 Date: Wed Jun 6 22:47:58 2007 -0400
67037
67038 Replace fdt_node_offset() with fdt_find_node_by_path().
67039
67040 The new name matches more closely the kernel's name, which is also
67041 a much better description.
67042
67043 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
67044 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
67045
67046 commit addd8ce83078c25f0eca5f23adbdfc64ca50a243
67047 Author: Gerald Van Baren <vanbaren@cideas.com>
67048 Date: Wed May 16 22:39:59 2007 -0400
67049
67050 Fix cmd_fdt line lengths, refactor code.
67051
67052 Break lines that were greater than 80 characters in length.
67053 Move the fdt print and property parsing code to separate static functions
67054 to reduce coding clutter in the fdt_cmd handling body.
67055
67056 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67057
67058 commit 25114033ab21788810c48ba4df103b649da1223b
67059 Author: Gerald Van Baren <vanbaren@cideas.com>
67060 Date: Sat May 12 09:47:25 2007 -0400
67061
67062 FDT command improvements.
67063
67064 Fix "fdt set" so that it will create a non-existing property.
67065 Add "fdt mknode" to create nodes.
67066
67067 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67068
67069 commit 38eb508e8e811e2e57628f445de3a24a23c7d804
67070 Author: Gerald Van Baren <vanbaren@cideas.com>
67071 Date: Sat May 12 09:45:46 2007 -0400
67072
67073 Reorganize and fix problems (returns) in the bootm command.
67074
67075 Do *NOT* return after the "point of no return" has been passed.
67076 If something goes wrong, the board must be reset after that point.
67077 Move the "Transferring control to Linux" debug message back to where it
67078 belongs: just before transferring control to linux.
67079
67080 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67081
67082 commit 89c8757d8f213c47709bdc4efe0695263a6080a6
67083 Author: Gerald Van Baren <vanbaren@cideas.com>
67084 Date: Tue May 8 21:27:35 2007 -0400
67085
67086 Fix bugs in the CONFIG_OF_LIBFDT
67087
67088 Stupid coding mistakes (identified by Timur Tabi, thanks).
67089
67090 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67091
67092 commit 6be07cc1ca458278c85ecdbf1a0536cff4c701ec
67093 Author: Gerald Van Baren <vanbaren@cideas.com>
67094 Date: Wed Apr 25 22:47:15 2007 -0400
67095
67096 Improve fdt move length handling.
67097
67098 Make the length parameter optional: if not specified, do the move using
67099 the current size unchanged.
67100
67101 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67102
67103 commit bb930e76fea6cf89ca2d98e2f7c7a6043d79327d
67104 Author: Gerald Van Baren <vanbaren@cideas.com>
67105 Date: Wed Apr 25 22:23:36 2007 -0400
67106
67107 Minor code clean up.
67108
67109 Declare the variable fdt properly as extern.
67110 Call the "set_fn" function pointer the "short way" without the full
67111 dereferencing syntax.
67112
67113 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67114
67115 commit ba24e2ac3bdb5c489f3c787e7542b6474c4d65c6
67116 Author: Gerald Van Baren <vanbaren@cideas.com>
67117 Date: Wed Apr 25 21:24:27 2007 -0400
67118
67119 Improve error messages, more informative.
67120
67121 Print more than the raw libfdt error message strings. This is especially
67122 useful for cluing in the user when the bootm command aborts due to
67123 blob problems.
67124
67125 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67126
67127 commit 8096b3b8f772c1894ddeda9dbceff6a8826473a4
67128 Author: Gerald Van Baren <vanbaren@cideas.com>
67129 Date: Fri Apr 20 22:46:53 2007 -0400
67130
67131 libfdt: Conditionally compile based on CONFIG_OF_LIBFDT
67132
67133 This is the way u-boot reduces configured-out code. At Wolfgang
67134 Grandegger and Wolfgang Denk's request, make libfdt conform.
67135
67136 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67137
67138 commit 923efd286411ed052d9e074f59f8986d6081061c
67139 Author: Bruce Adler <bruce.adler@ccpu.com>
67140 Date: Fri Aug 10 14:54:47 2007 -0700
67141
67142 add image size and descriptors for Spartan 3E FPGA chips
67143
67144 Spartan 3E image sizes taken from Table 1-4 in Xilinx UG332 (v1.1)
67145
67146 Signed-off by: Bruce Adler <bruce.adler@ccpu.com>
67147
67148 commit fb56579ffe7ef3275b7036bb7b924e5a0d32bd70
67149 Author: Kim Phillips <kim.phillips@freescale.com>
67150 Date: Fri Aug 10 15:34:48 2007 -0500
67151
67152 make MAKEALL more immune to merge conflicts
67153
67154 ..by placing board entries one per line, as suggested by jdl.
67155
67156 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67157
67158 commit 2628114ec564f969f34b5f7105fbd168cb8c9c3f
67159 Author: Kim Phillips <kim.phillips@freescale.com>
67160 Date: Fri Aug 10 13:28:25 2007 -0500
67161
67162 README: Remove outdated cpu type, board type, and NAME_config lists
67163
67164 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67165
67166 commit 49bb59912d21aacb507eb81fd21fb7af650c706c
67167 Author: Dave Liu <r63238@freescale.com>
67168 Date: Fri Aug 10 15:48:59 2007 +0800
67169
67170 mpc83xx: Suppress the warning 'burstlen'
67171
67172 suppress the warning 'burstlen' of spd_sdram.
67173
67174 Signed-off-by: Dave Liu <daveliu@freescale.com>
67175
67176 commit c646bba6465a45c60746d4cc1602cd06c1960f2d
67177 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
67178 Date: Thu Aug 9 15:11:03 2007 -0500
67179
67180 Add support for SBC8641D. Config files.
67181
67182 Add support for Wind River's SBC8641D reference board.
67183
67184 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
67185 Acked-by: Wolfgang Denk <wd@denx.de>
67186 Acked-by: Jon Loeliger <jdl@freescale.com>
67187
67188 commit 8ac273271d57321f90505c7a51cdb1ef2113b628
67189 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
67190 Date: Thu Aug 9 15:10:53 2007 -0500
67191
67192 Add support for SBC8641D. Board files.
67193
67194 Add support for Wind River's SBC8641D reference board.
67195
67196 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
67197 Acked-by: Wolfgang Denk <wd@denx.de>
67198 Acked-by: Jon Loeliger <jdl@freescale.com>
67199
67200 commit c2c0ab4aff86622b837a48a0e560351f9afafb95
67201 Author: Stefan Roese <sr@denx.de>
67202 Date: Fri Aug 10 20:34:58 2007 +0200
67203
67204 Conding style cleanup
67205
67206 Signed-off-by: Stefan Roese <sr@denx.de>
67207
67208 commit c74b2108e31fe09bd1c5d291c3cf360510d4f13e
67209 Author: Sergey Kubushyn <ksi@koi8.net>
67210 Date: Fri Aug 10 20:26:18 2007 +0200
67211
67212 [ARM] TI DaVinci support, hopefully final
67213
67214 Add support for the following DaVinci boards:
67215 - DV_EVM
67216 - SCHMOOGIE
67217 - SONATA
67218
67219 Changes:
67220
67221 - Split into separate board directories
67222 - Removed changes to MTD_DEBUG (or whatever it's called)
67223 - New CONFIG_CMD party line followed
67224 - Some cosmetic fixes, cleanup etc.
67225 - Patches against the latest U-Boot tree as of now.
67226 - Fixed CONFIG_CMD_NET in net files.
67227 - Fixed CONFIG_CMD_EEPROM for schmoogie.
67228 - Made sure it compiles and works (forceenv() link problem) on SCHMOOGIE and
67229 DV_EVM. Can't check if it works on SONATA, don't have a board any more,
67230 but it at least compiles.
67231
67232 Here is an excerpt from session log on SCHMOOGIE...
67233
67234 U-Boot 1.2.0-g6c33c785-dirty (Aug 7 2007 - 13:07:17)
67235
67236 DRAM: 128 MB
67237 NAND: 128 MiB
67238 In: serial
67239 Out: serial
67240 Err: serial
67241 ARM Clock : 297MHz
67242 DDR Clock : 162MHz
67243 ETH PHY : DP83848 @ 0x01
67244 U-Boot > iprobe
67245 Valid chip addresses: 1B 38 3A 3D 3F 50 5D 6F
67246 U-Boot > ping 192.168.253.10
67247 host 192.168.253.10 is alive
67248 U-Boot >
67249
67250 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
67251 Acked-by: Dirk Behme <dirk.behme@gmail.com>
67252 Acked-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
67253 Acked-by: Stefan Roese <sr@denx.de>
67254
67255 commit 2e4d94f1e3c2961428967a33b6ff2520568391b3
67256 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
67257 Date: Fri Jul 27 01:50:45 2007 -0500
67258
67259 fsl_pci_init cleanup.
67260
67261 Do not enable normal errors created during probe (master abort, perr,
67262 and pcie Invalid Configuration access).
67263
67264 Add CONFIG_PCI_NOSCAN board option to prevent bus scan.
67265
67266 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
67267 Acked-by: Andy Fleming <afleming@freescale.com>
67268
67269 commit 936b3e69b667c3eb9a61ece4e78647d3fce9fc2a
67270 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
67271 Date: Fri Jul 27 01:50:44 2007 -0500
67272
67273 pciauto_setup_device bars_num fix
67274
67275 Passing bars_num=0 to pciauto_setup_device should assign no bars.
67276
67277 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
67278 Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
67279 Acked-by: Andy Fleming <afleming@freescale.com>
67280
67281 commit cf0b185e58ca0aec8ae2b2a8804ec0ef58ee21d4
67282 Author: Jon Loeliger <jdl@freescale.com>
67283 Date: Mon Aug 6 17:39:44 2007 -0500
67284
67285 8641hpcn: Do correct sized pointer math.
67286
67287 When I rebased Ed's patch and cleaned up a few compilation
67288 problems, I apparently rebased my brain on crack first.
67289 Fix that by doing (char *) sized pointer math as needed.
67290
67291 Signed-off-by: Jon Loeliger <jdl@freescale.com>
67292
67293 commit cfc7a7f5bb3273c9951173c788001d45118f141f
67294 Author: Jon Loeliger <jdl@freescale.com>
67295 Date: Thu Aug 2 14:42:20 2007 -0500
67296
67297 cpu/86xx fixes.
67298
67299 Remove rev 1 fixes.
67300 Always set PICGCR_MODE.
67301 Enable machine check and provide board config option
67302 to set and handle SoC error interrupts.
67303
67304 Include MSSSR0 in error message.
67305
67306 Isolate a RAMBOOT bit of code with #ifdef CFG_RAMBOOT.
67307
67308 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
67309 Signed-off-by: Jon Loeliger <jdl@freescale.com>
67310
67311 commit 35d22f957a85a22bb3cd1ad084fa5404620d1c42
67312 Author: Stefan Roese <sr@denx.de>
67313 Date: Fri Aug 10 10:42:25 2007 +0200
67314
67315 Coding style cleanup
67316
67317 Signed-off-by: Stefan Roese <sr@denx.de>
67318
67319 commit 3a6d56c20989fe27360afe743bd2a7ad4d76e48f
67320 Author: Dirk Behme <dirk.behme@googlemail.com>
67321 Date: Thu Aug 2 17:42:08 2007 +0200
67322
67323 Make use of generic 64bit division in nand_util.c
67324
67325 Use generic 64bit division in nand_util.c. This makes nand_util.c
67326 independent of any toolchain 64bit division.
67327
67328 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
67329
67330 commit f7c086e94e8ce9aad7268af97f73aa6884686f27
67331 Author: Dirk Behme <dirk.behme@googlemail.com>
67332 Date: Thu Aug 2 17:41:14 2007 +0200
67333
67334 Move 64bit division from avr32 to generic lib
67335
67336 Move the 64bit division from lib_avr32 to lib_generic. With this, all
67337 boards can do_div/__div64_32 if needed, not only avr one. Code is put
67338 to lib_generic, so no larger memory footprint if not used. No code
67339 modifications. Thanks for proposal by HÃ¥vard Skinnemoen.
67340
67341 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
67342
67343 commit 157cda4d0c3d592ccbb19bbfc07d9251894f0894
67344 Author: Niklaus Giger <niklausgiger@gmx.ch>
67345 Date: Fri Jul 27 11:31:22 2007 +0200
67346
67347 Add PPC4xx-HCU4 and HCU5 boards: HCU5 files
67348
67349 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
67350
67351 commit 6e5de26c6e7580faf16e87745cd488b92b492d0c
67352 Author: Niklaus Giger <niklausgiger@gmx.ch>
67353 Date: Fri Jul 27 11:30:33 2007 +0200
67354
67355 Add PPC4xx-HCU4 and HCU5 boards: HCU4 files
67356
67357 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
67358
67359 commit e8397fc78c9394d71de233a4d810fbc9047e4c76
67360 Author: Niklaus Giger <niklausgiger@gmx.ch>
67361 Date: Fri Jul 27 11:38:26 2007 +0200
67362
67363 Add PPC4xx-HCU4 and HCU5 boards: common files
67364
67365 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
67366
67367 commit ac982ea5a4f2f993efcf52dca122f5a59df047d8
67368 Author: Niklaus Giger <niklausgiger@gmx.ch>
67369 Date: Fri Jul 27 11:28:44 2007 +0200
67370
67371 Add PPC4xx-HCU4 and HCU5 boards: make related
67372
67373 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
67374
67375 commit 137fdd9f474ecb853efdace5200576308c67f18d
67376 Author: Niklaus Giger <niklausgiger@gmx.ch>
67377 Date: Fri Jul 27 11:28:03 2007 +0200
67378
67379 Add PPC4xx-HCU4 and HCU5 boards: HCU5 config
67380
67381 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
67382
67383 commit 714bc55b35b6f6a65cc8740a3842a543e88cdef2
67384 Author: Niklaus Giger <niklausgiger@gmx.ch>
67385 Date: Fri Jul 27 11:27:15 2007 +0200
67386
67387 Add PPC4xx-HCU4 and HCU5 boards: HCU4 config
67388
67389 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
67390
67391 commit 1894dd381124bdbfbdae7cf3a6ca52a8eb1f4421
67392 Author: Niklaus Giger <niklausgiger@gmx.ch>
67393 Date: Fri Jul 27 11:25:31 2007 +0200
67394
67395 Add PPC4xx-HCU4 and HCU5 boards: READMEs
67396
67397 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
67398
67399 commit 641cca9569ce351ddb287fd3343d8b1dcb591db4
67400 Author: Niklaus Giger <niklausgiger@gmx.ch>
67401 Date: Fri Jul 27 11:37:40 2007 +0200
67402
67403 Add PPC4xx-HCU4 and HCU5 boards: Infrastructure
67404
67405 This series of patches adds support for 2 boards from Netstal Maschinen.
67406
67407 The HCU4 has a PPC405Gpr and
67408 the HCU5 has a PPC440EPX.
67409
67410 The HCU4 has a somehow complicated flash setup, as the booteprom is
67411 only 8 bits and the CFI 16 bits wide, which makes it impossible to use a more
67412 elegant solution.
67413
67414 The HCU5 has only a booteprom as the whole code will be downloaded from a
67415 different board which has HD, CD-ROM, etc and where all code is stored.
67416
67417 This is my third try. I incorporated all suggestions made by Wolfgang and Stefan.
67418 Thanks them a lot.
67419
67420 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
67421
67422 commit 3e4c90c6233618fc1806e63fde68df5f3d6a0171
67423 Author: Stefan Roese <sr@denx.de>
67424 Date: Fri Aug 10 08:42:55 2007 +0200
67425
67426 ppc4xx: Update lwmon5 POST configuration
67427
67428 Signed-off-by: Stefan Roese <sr@denx.de>
67429
67430 commit 29cb25da56afe18cf5e7072a92a9d98ea8af1fd4
67431 Author: Yuri Tikhonov <yur@emcraft.com>
67432 Date: Fri Aug 10 08:25:22 2007 +0200
67433
67434 POST: Add ppc4xx UART POST support without external uart clock (lwmon5)
67435
67436 The patch adds support for UART POST on ppc44x-based boards with no
67437 external serial clocks installed.
67438
67439 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
67440 Acked-by: Stefan Roese <sr@denx.de>
67441
67442 commit 99c2fdab91bc633e46fb41dbaa629f87ccf6e00f
67443 Author: Kim Phillips <kim.phillips@freescale.com>
67444 Date: Mon Aug 6 18:18:34 2007 -0500
67445
67446 mpc83xx: fix ITX[GP] O=builddir builds
67447
67448 make: *** No rule to make target `/work/wd/tmp/board/mpc8349itx/u-boot.lds', needed by `/work/wd/tmp/u-boot'. Stop.
67449
67450 Both the ITX and ITX-GP fail when you use "make O=<some dir> ..." or
67451 "BUILD_DIR=<some dir> ./MAKEALL ..."
67452
67453 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67454
67455 commit 47e8bc846759e037b8af0e5f9c9f9cfa7a1050c3
67456 Author: Dave Liu <r63238@freescale.com>
67457 Date: Wed Aug 1 15:00:59 2007 +0800
67458
67459 mpc83xx: Correct the README for DDR ECC
67460
67461 Update the README for DDR ECC, change the name
67462 to README.mpc83xx.ddrecc.
67463
67464 Signed-off-by: Dave Liu <daveliu@freescale.com>
67465 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67466
67467 commit daab8c67d2defef73dc26ab07f0c3afd1b05d019
67468 Author: Dave Liu <r63238@freescale.com>
67469 Date: Wed Aug 1 15:00:15 2007 +0800
67470
67471 mpc83xx: Consolidate the ECC support of 83xx
67472
67473 Remove the duplicated source code of ecc command on the <board>.c,
67474 for reused, move these code to cpu/mpc83xx directory.
67475
67476 Signed-off-by: Dave Liu <daveliu@freescale.com>
67477 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67478
67479 commit 036575c544cf1b69654d8fb334bda69c6ff3da36
67480 Author: Dave Liu <r63238@freescale.com>
67481 Date: Sat Aug 4 13:37:39 2007 +0800
67482
67483 mpc83xx: Correct the burst length for DDR2 with 32 bits
67484
67485 The burst length should be 4 for DDR2 with 32 bits bus
67486
67487 Signed-off-by: Dave Liu <daveliu@freescale.com>
67488
67489 commit 1c274c4e05b6dc9b24edc8aa618b02f607ee6eed
67490 Author: Kim Phillips <kim.phillips@freescale.com>
67491 Date: Wed Jul 25 19:25:33 2007 -0500
67492
67493 mpc83xx: add support for the MPC8323E RDB
67494
67495 MPC8323E based board with 64MB fixed SDRAM, 16MB flash,
67496 five 10/100 ethernet ports connected via an ICPlus IP175C
67497 switch, one PCI slot, and serial. Features not supported
67498 in this patch are SD card interface, 2 USB ports, and the
67499 two phone ports.
67500
67501 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
67502 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67503
67504 commit 343d91009d55fc5b3ff8cc940597af6c6aa1d359
67505 Author: Kim Phillips <kim.phillips@freescale.com>
67506 Date: Wed Jul 25 19:25:28 2007 -0500
67507
67508 mpc83xx: fixup generic pci for libfdt
67509
67510 add libfdt support to the generic 83xx pci code
67511
67512 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67513
67514 commit f57ac7a7b37109245b69db80839ebee26179966a
67515 Author: Kim Phillips <kim.phillips@freescale.com>
67516 Date: Wed Jul 25 19:25:22 2007 -0500
67517
67518 mpc83xx: fix 8360 and cpu functions to update fdt being passed
67519
67520 ..and not the global fdt. Rename local fdt vars to blob so as not to
67521 be confused with the global var with the same three-letter name.
67522
67523 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67524
67525 commit 8be404459a6b7395415a57bb35e8377e3b2b5acb
67526 Author: Jerry Van Baren <gvb.uboot@gmail.com>
67527 Date: Wed Jul 4 21:34:24 2007 -0400
67528
67529 mpc83xx: Fix errors when CONFIG_OF_LIBFDT is enabled
67530
67531 Several node strings were not correct (trailing slashes and properties
67532 in the strings)
67533 Added setting of the timebase-frequency.
67534 Improved error messages and use debug() instead of printf().
67535
67536 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67537 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67538
67539 commit 26d02c9bbac1751c5e19294f000100b48d43a920
67540 Author: Jerry Van Baren <gvb.uboot@gmail.com>
67541 Date: Wed Jul 4 21:27:30 2007 -0400
67542
67543 mpc83xx: Replace fdt_node_offset() with fdt_find_node_by_path().
67544
67545 The new name matches more closely the kernel's name, which is also
67546 a much better description.
67547
67548 These are the mpc83xx changes made necessary by the function name change.
67549
67550 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
67551 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
67552 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67553
67554 commit 9be39a67c9f8fef7107f5df09d673005f04d0963
67555 Author: Dave Liu <daveliu@freescale.com>
67556 Date: Mon Jun 25 10:41:56 2007 +0800
67557
67558 mpc83xx: Add support for the display of reset status
67559
67560 83xx processor family has many reset sources, such as
67561 power on reset, software hard reset, software soft reset,
67562 JTAG, bus monitor, software watchdog, check stop reset,
67563 external hard reset, external software reset.
67564 sometimes, to figure out the fault of system, we need to
67565 know the cause of reset early before the prompt of
67566 u-boot present.
67567
67568 Signed-off-by: Dave Liu <daveliu@freescale.com>
67569 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67570
67571 commit ff9658d7049bf8c8e8e0a05dbe5e9f7e91aa5a5d
67572 Author: Dave Liu <daveliu@freescale.com>
67573 Date: Mon Jun 25 10:41:04 2007 +0800
67574
67575 mpc83xx: Fix the align bug of SDMA buffer
67576
67577 According to the latest user manual, the SDMA temporary
67578 buffer base address must be 4KB aligned.
67579
67580 Signed-off-by: Dave Liu <daveliu@freescale.com>
67581 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67582
67583 commit 66dc2c2dc51f8b88bb8e231bc80cd92eae1d6476
67584 Author: Dave Liu <daveliu@freescale.com>
67585 Date: Mon Jun 25 13:21:12 2007 +0800
67586
67587 mpc83xx: Revise the MPC8360EMDS readme doc
67588
67589 When the rev2.x silicon mount on the MPC8360EMDS baord,
67590 and if you are using the u-boot version after the commit
67591 3fc0bd159103b536e1c54c6f4457a09b3aba66ca.
67592 to make the ethernet interface usable, we have to setup
67593 the jumpers correctly.
67594
67595 Signed-off-by: Dave Liu <daveliu@freescale.com>
67596 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67597
67598 commit e739bc95797aac4fefc4c75b55c7c78e59d3ea9c
67599 Author: Timur Tabi <timur@freescale.com>
67600 Date: Tue Jul 3 13:46:32 2007 -0500
67601
67602 FSL I2C driver programs the two I2C busses differently
67603
67604 The i2c_init() function in fsl_i2c.c programs the two I2C busses differently.
67605 The second I2C bus has its slave address programmed incorrectly and is
67606 missing a 5-us delay.
67607
67608 Signed-off-by: Timur Tabi <timur@freescale.com>
67609 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67610
67611 commit df33f6b4d6d63693dd9200808b242de1b86cb8e8
67612 Author: Timur Tabi <timur@freescale.com>
67613 Date: Tue Jul 3 13:04:34 2007 -0500
67614
67615 Update SCCR programming in cpu_init_f() to support all 83xx processors
67616
67617 Update the cpu_init_f() function in cpu/mpc83xx/cpu_init.c to program the
67618 bitfields for all 83xx processors. The code to update some bitfields was
67619 compiled only on some processors. Now, the bitfields are programmed as long
67620 as the corresponding CFG_SCCR option is defined in the board header file.
67621 This means that the board header file should not define any CFG_SCCR macros
67622 for bitfields that don't exist on that processor, otherwise the SCCR will be
67623 programmed incorrectly.
67624
67625 Signed-off-by: Timur Tabi <timur@freescale.com>
67626 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67627
67628 commit 9546266999f0b9b51372636614211b88d90f0f25
67629 Author: Martin Krause <martin.krause@tqs.de>
67630 Date: Fri Jun 22 13:04:22 2007 +0200
67631
67632 TQM834x: cleanup configuraton
67633
67634 Remove irritating #undef DEBUG
67635
67636 Signed-off-by: Martin Krause <martin.krause@tqs.de>
67637 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67638
67639 commit 5d497e6bf0f5bf63729b4a47b3fd786d3c77a1bc
67640 Author: david.saada <David.Saada@ecitele.com>
67641 Date: Mon Jun 18 09:09:53 2007 -0700
67642
67643 MPC83xx: Fix makefile to generate config.h file in the build directory
67644
67645 MPC83xx: Fix the Makefile config sections to generate the include/config.h
67646 file in the build directory instead of the source directory.
67647
67648 Signed-off-by: David Saada <david.saada@ecitele.com>
67649 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67650
67651 commit 1ded0242e437259366792d52b7e9d1e1931d8fa5
67652 Author: Lee Nipper <Lee.Nipper@freescale.com>
67653 Date: Thu Jun 14 20:07:33 2007 -0500
67654
67655 mpc83xx: Add support for 8360 silicon revision 2.1
67656
67657 This change adds 8360 silicon revision 2.1 support to u-boot.
67658
67659 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
67660 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67661
67662 commit a22806469a8f2b69c829f4fd5361fdebd0cb01b4
67663 Author: Kumar Gala <galak@kernel.crashing.org>
67664 Date: Wed Aug 8 04:14:28 2007 -0500
67665
67666 Treat ppc64 host as ppc
67667
67668 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67669
67670 commit 0dc4279b08ff82472bec2e2c90858602459febe8
67671 Author: Jason Jin <Jason.jin@freescale.com>
67672 Date: Wed Aug 8 09:01:46 2007 +0800
67673
67674 Minor fix for bios emulator makefile
67675
67676 Add $(obj) to LIB avoiding objects be built in the source dir
67677
67678 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
67679
67680 commit ce981dc857adfc8036ca2f6d5d5a06c2a8aa77d6
67681 Author: Jason Jin <Jason.jin@freescale.com>
67682 Date: Wed Aug 8 08:33:11 2007 +0800
67683
67684 Add CONFIG_BIOSEMU define to guard all the bios emulator code
67685
67686 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
67687
67688 This patch fix the compile issue on the board that did not enable the bios emulator
67689
67690 commit ed8106433522f2ea8933e9808346860d061d7731
67691 Author: Zach Sadecki <Zach.Sadecki@ripcode.com>
67692 Date: Tue Jul 31 12:27:25 2007 -0500
67693
67694 tsec: fix multiple PHY support
67695
67696 The change entitled "Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx"
67697 broke multiple PHY support in tsec.c. This fixes it.
67698
67699 Signed-off-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
67700 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67701
67702 commit dcb84b7208ade0bbebbeb56bec9c2c64f8b2eede
67703 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
67704 Date: Thu Aug 9 09:08:18 2007 -0500
67705
67706 tsec: Allow Ten Bit Interface address to be configurable
67707
67708 Allow the address of the Ten Bit Interface (TBI) to be changed in the
67709 event of a conflict with another device.
67710
67711 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
67712
67713 commit 3ba4c2d68f6541db4677b4aea12071f56e6ff6e6
67714 Author: Stefan Roese <sr@denx.de>
67715 Date: Wed Aug 8 09:54:26 2007 +0200
67716
67717 Coding style cleanup
67718
67719 Signed-off-by: Stefan Roese <sr@denx.de>
67720
67721 commit a41de1f0d373e09c782dea558385a06247111ba5
67722 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67723 Date: Sun Aug 5 05:15:18 2007 -0500
67724
67725 Port enabled for I2C signals and chipselects port configuration.
67726
67727 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67728
67729 commit 1a33ce65a4c51a69190dd8c408f9e1c62a66e94f
67730 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67731 Date: Sun Aug 5 04:31:18 2007 -0500
67732
67733 Added NAND support
67734
67735 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67736
67737 commit eaf9e447beb3e498818ef8ad0b8c1597cd506149
67738 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67739 Date: Sun Aug 5 04:11:20 2007 -0500
67740
67741 Added I2C support
67742
67743 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67744
67745 commit 99c03c175d2689093176facf17c58ce2cb320001
67746 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67747 Date: Sun Aug 5 03:58:52 2007 -0500
67748
67749 Changed CFG_CLK to gd->bus_clk for CFG_TIMER_PRESCALER. Added DECLARE_GLOBAL_DATA_PTR for time.c
67750
67751 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67752
67753 commit 8d1d66af54d305de29d0bbf4aa8c9e6375f7f731
67754 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67755 Date: Sun Aug 5 03:55:21 2007 -0500
67756
67757 Added uart_gpio_conf() in serial_init(), seperated uart port configuration from cpu_init() to uart_gpio_conf()
67758
67759 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67760
67761 commit 6fde84a44b7e575ea80fe0e2d5be3b6f73d1e630
67762 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67763 Date: Sun Aug 5 03:43:30 2007 -0500
67764
67765 Moved sync() from board file to include/asm-m68k/io.h
67766
67767 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67768
67769 commit 9e737d8476e7d6a596d16caaf6a3853a9a1190a2
67770 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67771 Date: Sun Aug 5 03:30:44 2007 -0500
67772
67773 Declared attributes of void __mii_init(void) as an alias for int mii_init(void)
67774
67775 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67776
67777 commit 9998bd37ead85e93953559720710d3b0685c81e6
67778 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67779 Date: Sun Aug 5 03:19:10 2007 -0500
67780
67781 Renamed CONFIG_MCFSERIAL to CONFIG_MCFUART
67782
67783 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67784
67785 commit 7c4c3722a38d40b0cf537ddae72b04f4088b190c
67786 Author: Jason Jin <Jason.jin@freescale.com>
67787 Date: Tue Aug 7 16:17:06 2007 +0800
67788
67789 Add CONFIG_BIOSEMU define to guard all the bios emulator code
67790
67791 This patch fix the compile issue on the board that did not enable the bios emulator
67792
67793 commit bf1060ea4f9eaa7e7d164a70a7d6f28939882053
67794 Author: Wolfgang Denk <wd@denx.de>
67795 Date: Tue Aug 7 16:02:13 2007 +0200
67796
67797 Fix missing brace error in fs/fat/fat.c
67798 [pointed out by Roderik Wildenburg]
67799
67800 Signed-off-by: Wolfgang Denk <wd@denx.de>
67801
67802 commit 706714d97a0d08d59eda4de2268c39f504688329
67803 Author: Michal Simek <monstr@monstr.eu>
67804 Date: Mon Aug 6 23:41:53 2007 +0200
67805
67806 [FIX] remove cute code
67807
67808 commit f500d9fdeb576288656dac427052ad2c5ca0ad1a
67809 Author: Michal Simek <monstr@monstr.eu>
67810 Date: Mon Aug 6 23:35:26 2007 +0200
67811
67812 [FIX] Fix romfs code
67813
67814 commit ab4b956d3143f8f8174089053f5dfabbb04762b0
67815 Author: Michal Simek <monstr@monstr.eu>
67816 Date: Mon Aug 6 23:31:49 2007 +0200
67817
67818 [FIX] Coding style cleanup - Wolfgang's suggestions
67819
67820 commit 6c33c78557ca6f8da68c01ce33e278695197d3f4
67821 Author: Wolfgang Denk <wd@denx.de>
67822 Date: Mon Aug 6 23:21:05 2007 +0200
67823
67824 Fixed typo in README (pointed out by Martin Jost).
67825
67826 Signed-off-by: Wolfgang Denk <wd@denx.de>
67827
67828 commit 537223afa61f64480df31ce440a9cb386df4a814
67829 Author: Stefan Roese <sr@denx.de>
67830 Date: Mon Aug 6 21:10:17 2007 +0200
67831
67832 ppc4xx: Update AMCC Bamboo README doc/README.bamboo
67833
67834 As suggested by Eugene O'Brien <Eugene.O'Brien@advantechamt.com>,
67835 here an updated Bamboo README.
67836
67837 Signed-off-by: Stefan Roese <sr@denx.de>
67838
67839 commit 9c7e4b06214db61bb21f1bcbe57c97519669baae
67840 Author: Wolfgang Denk <wd@denx.de>
67841 Date: Mon Aug 6 02:17:36 2007 +0200
67842
67843 Coding style cleanup. Update CHANGELOG.
67844
67845 Signed-off-by: Wolfgang Denk <wd@denx.de>
67846
67847 commit 221838cc7eb178370ff62aa05920a582e12ac322
67848 Author: Jason Jin <Jason.jin@freescale.com>
67849 Date: Tue Jul 10 09:03:22 2007 +0800
67850
67851 Remove the bios emulator from MAI board.
67852
67853 The bios emulator in the MAI board can not pass compile
67854 and have a lot of crap in it. remove it and will have a
67855 clean and small bios emulator in the drivers directory
67856 which can be uesed for every board.
67857
67858 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
67859
67860 commit 5618332409bb96f4448d1712899369fc80c0b489
67861 Author: Jason Jin <Jason.jin@freescale.com>
67862 Date: Fri Jul 13 12:14:59 2007 +0800
67863
67864 Fix some compile issues for MAI board.
67865
67866 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
67867
67868 commit 0f460a1ee148b648ee242c3157650287d4296260
67869 Author: Jason Jin <Jason.jin@freescale.com>
67870 Date: Fri Jul 13 12:14:58 2007 +0800
67871
67872 Configurations for ATI video card BIOS emulator
67873
67874 This patch add definition of the BIOS emulator and the ATI framebuffer
67875 driver for MPC8641HPCN board.
67876
67877 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
67878 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
67879
67880 commit ece92f85053b8df613edcf05b26a416cbc3d629c
67881 Author: Jason Jin <Jason.jin@freescale.com>
67882 Date: Fri Jul 6 08:34:56 2007 +0800
67883
67884 This is a BIOS emulator, porting from SciTech for u-boot, mainly for
67885 ATI video card BIOS. and can be used for x86 code emulation by some
67886 modifications.
67887
67888 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
67889
67890 commit 5072188acabde3178fac7f5a597150e6e74fd40c
67891 Author: Jason Jin <Jason.jin@freescale.com>
67892 Date: Fri Jul 6 08:33:33 2007 +0800
67893
67894 This is a framebuffer driver for ATI video card, can work for PCI9200,
67895 X300, X700, X800 ATI video cards.
67896
67897 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
67898 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
67899
67900 commit 5728be389e65fd47f34b33c2596271eb4db751ae
67901 Author: Wolfgang Denk <wd@denx.de>
67902 Date: Mon Aug 6 01:01:49 2007 +0200
67903
67904 Coding style cleanup. Update CHANGELOG.
67905
67906 Signed-off-by: Wolfgang Denk <wd@denx.de>
67907
67908 commit 8092fef4c29b395958bb649647da7e3775731517
67909 Author: Martin Krause <Martin.Krause@tqs.de>
67910 Date: Tue Dec 12 14:26:01 2006 +0100
67911
67912 Add functions to list of exported functions
67913
67914 Additionally export the following fuctions (to make trab_config build again):
67915 - simple_strtol()
67916 - strcmp()
67917
67918 Also bump the ABI version to reflect this change
67919
67920 Signed-off-by: Martin Krause <martin.krause@tqs.de>
67921
67922 commit 63cec5814fab5d2b1c86982327433807a5ac0249
67923 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
67924 Date: Thu Aug 2 14:09:49 2007 -0500
67925
67926 Make MPC8641's PCI/PCI-E driver a common driver for many FSL parts.
67927
67928 All of the PCI/PCI-Express driver and initialization code that
67929 was in the MPC8641HPCN port has now been moved into the common
67930 drivers/fsl_pci_init.c. In a subsequent patch, this will be
67931 utilized by the 85xx ports as well.
67932
67933 Common PCI-E IMMAP register blocks for FSL 85xx/86xx are added.
67934
67935 Also enable the second PCI-Express controller on 8641
67936 by getting its BATS and CFG_ setup right.
67937
67938 Fixed a u16 vendor compiler warning in AHCI driver too.
67939
67940 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
67941 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
67942 Signed-off-by: Jon Loeliger <jdl@freescale.com>
67943
67944 commit a274ca4f6d68830e7c916f897561cff8c4101c38
67945 Author: Michal Simek <monstr@monstr.eu>
67946 Date: Sun Aug 5 22:33:05 2007 +0200
67947
67948 [FIX] Coding style cleanup
67949
67950 commit af8377d4eb3a0ac5a831830d5ce63fbf65fecb7f
67951 Author: Michal Simek <monstr@monstr.eu>
67952 Date: Sun Aug 5 16:13:31 2007 +0200
67953
67954 [FIX] Xilinx Uartlite driver
67955 Because PPC405 can use UARTLITE serial interface and
67956 Microblaze can use Uart16550 serial interface not only Uartlite.
67957
67958 commit 98889edd50aadf862071eb5664747ad0d568a20e
67959 Author: Michal Simek <monstr@monstr.eu>
67960 Date: Sun Aug 5 15:54:53 2007 +0200
67961
67962 [FIX] Change configuration for XUPV2P Microblaze board
67963
67964 commit 537091b4eed9302865d03fef3f7212b4fe5cf28f
67965 Author: Michal Simek <monstr@monstr.eu>
67966 Date: Sun Aug 5 15:53:50 2007 +0200
67967
67968 [PATCH] Added support for Xilinx Emac community driver
67969
67970 commit 86b116b1b1e165ca4840daefed36d2e3b8460173
67971 Author: Bartlomiej Sieka <tur@semihalf.com>
67972 Date: Fri Aug 3 12:08:16 2007 +0200
67973
67974 cm1_qp1 -> cm5200: single U-Boot image for modules from the cm5200 family.
67975
67976 Add the ability for modules from the Schindler cm5200 family to use a
67977 single U-Boot image:
67978 - rename cm1_qp1 to cm5200
67979 - add run-time module detection
67980 - parametrize SDRAM configuration according to the module we are running on
67981
67982 Few minor, board-specific fixes included in this patch:
67983 - better MAC address handling
67984 - updated default environment ('update' command uses +{filesize} now)
67985 - improved error messages in the auto-update code
67986 - allow booting U-Boot from RAM (CFG_RAMBOOT)
67987
67988 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
67989 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
67990 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
67991
67992 commit c7e717ebc2b044d7a71062552c9dc0f54ea9b779
67993 Author: Andy Fleming <afleming@freescale.com>
67994 Date: Fri Aug 3 04:05:25 2007 -0500
67995
67996 Add Marvell 1149 PHY support to the TSEC
67997
67998 commit b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86
67999 Author: Wolfgang Denk <wd@denx.de>
68000 Date: Thu Aug 2 21:27:46 2007 +0200
68001
68002 Coding style cleanup, update CHANGELOG
68003
68004 Signed-off-by: Wolfgang Denk <wd@denx.de>
68005
68006 commit 63e22764d2f8653f68888c667eb65b3996b52680
68007 Author: Wolfgang Denk <wd@denx.de>
68008 Date: Thu Aug 2 10:11:18 2007 +0200
68009
68010 Minor cleanup of <board>_nand build rules.
68011
68012 commit 9ca8d79de096c65b9b9c867259b3ff4685f775ef
68013 Author: Stefan Roese <sr@denx.de>
68014 Date: Thu Aug 2 08:33:56 2007 +0200
68015
68016 ppc4xx: Code cleanup
68017
68018 Signed-off-by: Stefan Roese <sr@denx.de>
68019
68020 commit c92409812206ac67a7fa7aae298539a9c3804a46
68021 Author: Grzegorz Bernacki <gjb@semihalf.com>
68022 Date: Tue Jul 31 18:51:48 2007 +0200
68023
68024 [ppc440SPe] Graceful recovery from machine check during PCIe configuration
68025
68026 During config transactions on the PCIe bus an attempt to scan for a
68027 non-existent device can lead to a machine check exception with certain
68028 peripheral devices. In order to avoid crashing in such scenarios the
68029 instrumented versions of the config cycle read routines are introduced, so
68030 the exceptions fixups framework can gracefully recover.
68031
68032 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
68033 Acked-by: Rafal Jaworowski <raj@semihalf.com>
68034
68035 commit dec99558b9ea75a37940d07f41a3565a50b54ad1
68036 Author: Rafal Jaworowski <raj@semihalf.com>
68037 Date: Tue Jul 31 18:19:54 2007 +0200
68038
68039 [ppc4xx] Separate settings for PCIe bus numbering on 440SPe rev.A
68040
68041 This brings back separate settings for PCIe bus numbers depending on chip
68042 revision, which got eliminated in 2b393b0f0af8402ef43b25c1968bfd29714ddffa
68043 commit. 440SPe rev. A does NOT work properly with the same settings as for
68044 the rev. B (no devices are seen on the bus during enumeration).
68045
68046 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
68047
68048 commit cdd917a43da6fa7fc8f54a3cc9f420ce5ecf3197
68049 Author: Wolfgang Denk <wd@denx.de>
68050 Date: Thu Aug 2 00:48:45 2007 +0200
68051
68052 Fix build errors and warnings / code cleanup.
68053
68054 Signed-off-by: Wolfgang Denk <wd@denx.de>
68055
68056 commit d2f68006627eda6cb6c7f364bddf621dbfd2fc68
68057 Author: Eugene OBrien <eugene.obrien@advantechamt.com>
68058 Date: Tue Jul 31 10:24:56 2007 +0200
68059
68060 ppc4xx: Update AMCC Bamboo 440EP support
68061
68062 Changed storage type of cfg_simulate_spd_eeprom to const
68063 Changed storage type of gpio_tab to stack storage
68064 (Cannot access global data declarations in .bss until afer code relocation)
68065
68066 Improved SDRAM tests to catch problems where data is not uniquely addressable
68067 (e.g. incorrectly programmed SDRAM row or columns)
68068
68069 Added CONFIG_PROG_SDRAM_TLB to support Bamboo SIMM/DIMM modules
68070 Fixed AM29LV320DT (OpCode Flash) sector map
68071
68072 Signed-off-by: Eugene OBrien <eugene.obrien@advantechamt.com>
68073 Signed-off-by: Stefan Roese <sr@denx.de>
68074
68075 commit ea9f6bce383cc9fbcdee28b5836109b1a6dba574
68076 Author: Stefan Roese <sr@denx.de>
68077 Date: Tue Jul 31 08:37:01 2007 +0200
68078
68079 ppc4xx: Update 440EPx lwmon5 board support
68080
68081 - Clear ECC status regs after ECC POST test
68082 - Set dcbz for ECC generation with caches enabled as default
68083 - Code cleanup
68084
68085 Signed-off-by: Stefan Roese <sr@denx.de>
68086
68087 commit 27a528fb41433c4c1e2b5d6bd3fd8d78606fc724
68088 Author: Stefan Roese <sr@denx.de>
68089 Date: Mon Jul 30 11:04:57 2007 +0200
68090
68091 ppc4xx: Only print ECC related info when the error bis are set
68092
68093 Signed-off-by: Stefan Roese <sr@denx.de>
68094
68095 commit e36220a4baf1f188ba60f17e9d0f043069b1362a
68096 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
68097 Date: Fri Jul 27 16:44:31 2007 +0200
68098
68099 new FPGA image for PLU405 board
68100
68101 new FPGA image for PLU405 board with improved CompactFlash timing
68102
68103 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
68104
68105 commit 8993e54b6f397973794f3d6f47d3b3c0c98dd4f6
68106 Author: Rafal Jaworowski <raj@semihalf.com>
68107 Date: Fri Jul 27 14:43:59 2007 +0200
68108
68109 [ADS5121] Support for the ADS5121 board
68110
68111 The following MPC5121e subsystems are supported:
68112
68113 - low-level CPU init
68114 - NOR Boot Flash (common CFI driver)
68115 - DDR SDRAM
68116 - FEC
68117 - I2C
68118 - Watchdog
68119
68120 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
68121 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
68122 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
68123
68124 commit 1863cfb7b100ba0ee3401799457a01dc058745f8
68125 Author: Rafal Jaworowski <raj@semihalf.com>
68126 Date: Fri Jul 27 14:22:04 2007 +0200
68127
68128 [PPC] Remove unused MSR_USER definition
68129
68130 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
68131
68132 commit d4024bb72dd81695ec099b2199eda0d27c623e62
68133 Author: John Otken <john@softadvances.com>
68134 Date: Thu Jul 26 17:49:11 2007 +0200
68135
68136 ppc4xx: Add support for AMCC 405EP Taihu board
68137
68138 Signed-off-by: John Otken <john@softadvances.com>
68139
68140 commit b66091de6c7390620312c2501db23d8391e7cabb
68141 Author: Anatolij Gustschin <agust@denx.de>
68142 Date: Thu Jul 26 15:08:01 2007 +0200
68143
68144 ppc4xx: lwmon5: Update Lime initialization
68145
68146 Change Lime SDRAM initialization to now support 100MHz and
68147 133MHz (if enabled). Also the framebuffer is initialized to
68148 display a blue rectangle with a white border.
68149
68150 Signed-off-by: Anatolij Gustschin <agust@denx.de>
68151 Signed-off-by: Stefan Roese <sr@denx.de>
68152
68153 commit 9f24a808f17fc0f37b7fb4805f734741335caecc
68154 Author: Stefan Roese <sr@denx.de>
68155 Date: Tue Jul 24 09:52:52 2007 +0200
68156
68157 ppc4xx: lwmon5: Support for 128 MByte NOR FLASH added
68158
68159 The used Intel NOR FLASH chips have internally two dies, and are now
68160 treated as two seperate chips.
68161
68162 Signed-off-by: Stefan Roese <sr@denx.de>
68163
68164 commit aedf5bde179ecfbd0a96130d18996a96518b785f
68165 Author: Stefan Roese <sr@denx.de>
68166 Date: Tue Jul 24 07:20:09 2007 +0200
68167
68168 ppc4xx: Fix lwmon5 interrupt controller setup (polarity, trigger...)
68169
68170 As suggested by Hakan Eryigit, here an updated setup for the lwmon5
68171 interrupt controller.
68172
68173 Signed-off-by: Stefan Roese <sr@denx.de>
68174
68175 commit a71d96eac8130b53a91f93cd10c70fca0db18d52
68176 Author: Stefan Roese <sr@denx.de>
68177 Date: Fri Jul 20 15:03:44 2007 +0200
68178
68179 ppc4xx: Fix bug with default GPIO output value
68180
68181 As spotted by Matthias Fuchs, the default output values for all GPIO1
68182 outputs were not setup correctly. This patch fixes this issue.
68183
68184 Signed-off-by: Stefan Roese <sr@denx.de>
68185
68186 commit 531e3e8b831f357056448fa573137d5fb37000fd
68187 Author: Pavel Kolesnikov <concord@emcraft.com>
68188 Date: Fri Jul 20 15:03:03 2007 +0200
68189
68190 POST: Add ECC POST for the lwmon5 board
68191
68192 This patch adds ECC Post test for the Lwmon5 board based
68193 on PPC440EPx to U-Boot.
68194
68195 Signed-off-by: Pavel Kolesnikov <concord@emcraft.com>
68196 Acked-by: Yuri Tikhonov <yur@emcraft.com>
68197 Acked-by: Stefan Roese <sr@denx.de>
68198
68199 commit cc3023b9f95d7ac959a764471a65001062aecf41
68200 Author: Rafal Jaworowski <raj@semihalf.com>
68201 Date: Thu Jul 19 17:12:28 2007 +0200
68202
68203 Fix breakage of 8xx boards from recent commit.
68204
68205 This patch fixes the negative consequences for 8xx of the recent
68206 "ppc4xx: Clean up 440 exceptions handling" commit.
68207
68208 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
68209
68210 commit c883f6ea32dce91f07670b3aafecf6c99b1e5341
68211 Author: Stefan Roese <sr@denx.de>
68212 Date: Mon Jul 16 13:11:12 2007 +0200
68213
68214 Coding style cleanup
68215
68216 Signed-off-by: Stefan Roese <sr@denx.de>
68217
68218 commit 8848ec858f74ed6dab06fb6d5ddc933e0a1328bf
68219 Author: Stefan Roese <sr@denx.de>
68220 Date: Mon Jul 16 10:02:12 2007 +0200
68221
68222 ppc4xx: Code cleanup
68223
68224 Signed-off-by: Stefan Roese <sr@denx.de>
68225
68226 commit 2a49fc17d09020e7ebd9536694d99d20e419fcb8
68227 Author: Stefan Roese <sr@denx.de>
68228 Date: Mon Jul 16 10:01:38 2007 +0200
68229
68230 ppc4xx: AMCC Luan uses the new boardspecific DDR2 controller setup
68231
68232 Signed-off-by: Stefan Roese <sr@denx.de>
68233
68234 commit df3f17422aeb03fb81a7ac8c78d2b05d05aa4cf9
68235 Author: Stefan Roese <sr@denx.de>
68236 Date: Mon Jul 16 10:00:43 2007 +0200
68237
68238 ppc4xx: Support for Yucca board with 440SPe Rev A added to 44x_spd_ddr2.c
68239
68240 The new boardspecific DDR2 controller configuration is used for the Yucca
68241 board. Now the Yucca board with 440SPe Rev. A chips is also supported.
68242
68243 Signed-off-by: Stefan Roese <sr@denx.de>
68244
68245 commit 6ed14addf97c8cd8f531e9ae7b2d3e222fffd53e
68246 Author: Stefan Roese <sr@denx.de>
68247 Date: Mon Jul 16 09:57:00 2007 +0200
68248
68249 ppc4xx: Add new weak functions to support boardspecific DDR2 configuration
68250
68251 The new "weak" functions ddr_wrdtr() and ddr_clktr() are added to better
68252 support non default, boardspecific DDR(2) controller configuration.
68253
68254 Signed-off-by: Stefan Roese <sr@denx.de>
68255
68256 commit 5743a9207a370b90f09b20ebd61167c806b937f3
68257 Author: Stefan Roese <sr@denx.de>
68258 Date: Mon Jul 16 08:53:51 2007 +0200
68259
68260 ppc4xx: Add remove_tlb() function to remove a mem area from TLB setup
68261
68262 The new function remove_tlb() can be used to remove the TLB's used to
68263 map a specific memory region. This is especially useful for the DDR(2)
68264 setup routines which configure the SDRAM area temporarily as a cached
68265 area (for speedup on auto-calibration and ECC generation) and later
68266 need this area uncached for normal usage.
68267
68268 Signed-off-by: Stefan Roese <sr@denx.de>
68269
68270 commit 0c0a9cda1bde37106520476ed486bd67eb8d30ae
68271 Author: Michal Simek <monstr@monstr.eu>
68272 Date: Mon Jul 16 00:31:07 2007 +0200
68273
68274 [PATCH] Support for Xilinx EmacLite controller
68275
68276 commit 3a6cab844cf74f76639d795e0be8717e02c86af7
68277 Author: Wolfgang Denk <wd@denx.de>
68278 Date: Sat Jul 14 22:51:02 2007 +0200
68279
68280 Update CHANGELOG
68281
68282 Signed-off-by: Wolfgang Denk <wd@denx.de>
68283
68284 commit 5280f352c8da33b1d7fbf448768717d9e16ff9a1
68285 Author: Michal Simek <monstr@monstr.eu>
68286 Date: Sat Jul 14 13:11:28 2007 +0200
68287
68288 [FIX] support for simply measuring time
68289
68290 commit 91bb4ca665d2e0cf7f60c4b5b370990250ec0c43
68291 Author: Michal Simek <monstr@monstr.eu>
68292 Date: Sat Jul 14 12:41:23 2007 +0200
68293
68294 [FS] Added support for ROMFS
68295
68296 commit 011595307731a7a67a7445d107c279d031e8ab97
68297 Author: Heiko Schocher <hs@pollux.denx.de>
68298 Date: Sat Jul 14 01:06:58 2007 +0200
68299
68300 [PCS440EP] - fix compile error, if BUILD_DIR is used
68301
68302 commit 5a2f1098d81ad58b309e5e558d0492643166a799
68303 Author: Michal Simek <monstr@monstr.eu>
68304 Date: Sat Jul 14 00:18:48 2007 +0200
68305
68306 [PATCH] Support time without timer
68307
68308 commit a476ca2ac2217ddd05a2bf0c514075814b10a3c0
68309 Author: Michal Simek <monstr@monstr.eu>
68310 Date: Fri Jul 13 21:43:55 2007 +0200
68311
68312 [PATCH] Remove problem with disabled BARREL SHIFTER
68313
68314 commit 55e26ad62107d2f14f757de3ae0b14b9aa7aed94
68315 Author: Michal Simek <monstr@monstr.eu>
68316 Date: Fri Jul 13 21:41:44 2007 +0200
68317
68318 [FIX] correct help for rspr
68319
68320 commit fad63407154f46246ce80d53a9c669a44362ac67
68321 Author: Heiko Schocher <hs@pollux.denx.de>
68322 Date: Fri Jul 13 09:54:17 2007 +0200
68323
68324 make show_boot_progress () weak.
68325
68326 Signed-off-by: Heiko Schocher <hs@denx.de>
68327
68328 commit 907902472391b6ca1876ec300687562ecaf459b1
68329 Author: Heiko Schocher <hs@pollux.denx.de>
68330 Date: Fri Jul 13 08:26:05 2007 +0200
68331
68332 [PCS440EP] - The DIAG LEDs are now blinking, if an error occur
68333 - fix compile error, if BUILD_DIR is used
68334
68335 Signed-off-by: Heiko Schocher <hs@denx.de>
68336
68337 commit a2e1c7098cf9574386b0c96841dfc8ea5cc93578
68338 Author: Stefan Roese <sr@denx.de>
68339 Date: Thu Jul 12 16:32:08 2007 +0200
68340
68341 ppc4xx: Change receive buffer handling in the 4xx emac driver
68342
68343 This change fixes a bug in the receive buffer handling, that
68344 could lead to problems upon high network traffic (broadcasts...).
68345
68346 Signed-off-by: Stefan Roese <sr@denx.de>
68347
68348 commit 239f05ee4dd4cfe0b50f251b533dcebe9e67c360
68349 Author: Wolfgang Denk <wd@denx.de>
68350 Date: Thu Jul 12 01:45:34 2007 +0200
68351
68352 Update CHANGELOG, minor coding style cleanup.
68353
68354 Signed-off-by: Wolfgang Denk <wd@denx.de>
68355
68356 commit 5a56af3b522ba47fb33a3fee84d23bf1e5429654
68357 Author: Andy Fleming <afleming@freescale.com>
68358 Date: Fri Jun 8 16:41:18 2007 -0500
68359
68360 Remove erroneous errata code from Marvel 88E1111S driver
68361
68362 The Marvel 88E1111S driver for the TSEC was copied from the
68363 88E1101 driver, and included a fix for an erratum which does not
68364 exist on that part. Now it is removed
68365
68366 Signed-off-by: Andy Fleming <afleming@freescale.com>
68367
68368 commit 982efcf23fd03647e01e2fbe28a7a36239156cc0
68369 Author: Andy Fleming <afleming@freescale.com>
68370 Date: Tue Jun 5 16:38:44 2007 -0500
68371
68372 From: eran liberty <eran.liberty@gmail.com>
68373
68374 adds the reset register to 85xx immap
68375
68376 Signed-off-by: Eran Liberty <eran.liberty@gmail.com>
68377 Signed-off-by: Andy Fleming <afleming@freescale.com>
68378
68379 commit d3ec0d943a045bdb99e159e7bbc77430e09f11d7
68380 Author: Andy Fleming <afleming@freescale.com>
68381 Date: Thu May 10 17:50:01 2007 -0500
68382
68383 Polished the 85xx ADS config files
68384
68385 Made the boot commands use device trees by default.
68386 Also moved the ramdisk to 1000000 (I think the previous address
68387 was getting overridden during boot).
68388
68389 Signed-off-by: Andy Fleming <afleming@freescale.com>
68390
68391 commit bfb37b32d1b0b03f18077dba49cc66a6e76fa038
68392 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
68393 Date: Wed May 9 11:03:32 2007 -0500
68394
68395 8544ds: Fix Makefile after moving pixis to board/freescale.
68396
68397 The OBJTREE != SRCTREE build scenario was broken.
68398 This fixes it.
68399
68400 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
68401 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68402
68403 commit 2a3cee43c3b71fa5b8d91db19f05067865290f3e
68404 Author: Andy Fleming <afleming@freescale.com>
68405 Date: Wed May 9 00:54:20 2007 -0500
68406
68407 tsec: Fix PHY code to match first driver
68408
68409 Jarrold Wen noticed that the generic PHY code always matches
68410 under the current implementation. Change it so the first match
68411 wins, and *only* unknown PHYs trigger the generic driver
68412
68413 Signed-off-by: Andy Fleming <afleming@freescale.com>
68414
68415 commit ccc091aac61a38cd998d575d92f7232e256d6312
68416 Author: Andy Fleming <afleming@freescale.com>
68417 Date: Tue May 8 17:27:43 2007 -0500
68418
68419 Add support for CPM device tree configuration to 8560 ADS
68420
68421 * Adds code to modify CPM frequencies
68422 * Cleans up the config file to #define TSEC and (for now) #undef FCC
68423 * Adds the MII command for all 8560 ADS configurations
68424 * Updates config file to provide convenience commands for booting
68425 with a device tree
68426
68427 Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
68428 Signed-off-by: Andy Fleming <afleming@freescale.com>
68429
68430 commit 7507d56ccaf7aae1c474342a9a5540165cd7e9d9
68431 Author: Andy Fleming <afleming@freescale.com>
68432 Date: Tue May 8 17:23:02 2007 -0500
68433
68434 Fix Marvell 88e1145 PHY init code
68435
68436 Fix a bug in the Marvell 88e1145 PHY init code in the TSEC driver
68437 where the reset was being done after the errata code instead of
68438 before.
68439
68440 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
68441 Signed-off-by: Andy Fleming <afleming@freescale.com>
68442
68443 commit 5dc210dec5bace98a50b6ba905347890091a9bb0
68444 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
68445 Date: Wed Jul 11 14:52:16 2007 -0500
68446
68447 Add simple agent/end-point configuration in PCI AutoConfig for PCI_CLASS_PROCESSOR_POWERPC.
68448
68449 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
68450
68451 commit e8b85f3ba4cd8930e0a2fea2100c815d64201765
68452 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
68453 Date: Wed Jul 11 14:52:08 2007 -0500
68454
68455 pciauto setup bridge
68456
68457 The P2P bridge bus numbers programmed into the device are relative to
68458 hose->first_busno.
68459
68460 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
68461
68462 commit 571f49fa717004ca4268b4e24057efc7bf9f987b
68463 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
68464 Date: Wed Jul 11 14:52:01 2007 -0500
68465
68466 Support PCIe extended config registers
68467
68468 FSL PCIe block has extended cfg registers in the 100 and 400 range.
68469 For example, to read the LTSSM register: pci display <busn>.0 404 1
68470
68471 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
68472
68473 commit ba5feb12581bb2912ce301e4866b71f846e9fc07
68474 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
68475 Date: Wed Jul 11 14:51:48 2007 -0500
68476
68477 Minor improvements to drivers/pci_auto.c
68478
68479 - Make pciauto_{pre,post}scan_setup_bridge non-static
68480 - Added physical address display in debug messages.
68481
68482 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
68483
68484 commit 40e81addab7bb74d20ddf681ce9babc880a828ee
68485 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
68486 Date: Wed Jul 11 14:51:35 2007 -0500
68487
68488 Start pci hose scan from hose->current_busno.
68489
68490 Ensure hose->current_busno is not less than first_busno. This fixes
68491 broken board code which leaves current_busno=0 when first_busno is
68492 greater than 0 for the cases with multiple controllers.
68493
68494 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
68495
68496 commit 3865b1fb7843a08ad49a6319a36415752276ff48
68497 Author: Stefan Roese <sr@denx.de>
68498 Date: Wed Jul 11 12:13:53 2007 +0200
68499
68500 Fix some compile problems introduced by the latest CFG_CMD_xxx cleanup
68501
68502 Signed-off-by: Stefan Roese <sr@denx.de>
68503
68504 commit fa1df308926a6f70e3504c57514ef27ac31fd13a
68505 Author: Bartlomiej Sieka <tur@semihalf.com>
68506 Date: Wed Jul 11 20:11:07 2007 +0200
68507
68508 CM1.QP1: Support for the Schindler CM1.QP1 board.
68509
68510 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
68511 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
68512
68513 commit 96e1d75be8193ca79e4215a368bf9d7f2362450f
68514 Author: Heiko Schocher <hs@pollux.denx.de>
68515 Date: Wed Jul 11 18:39:11 2007 +0200
68516
68517 [PCS440EP] - Show on the DIAG LEDs, if the SHA1 check failed
68518 - now the Flash ST M29W040B is supported (not tested)
68519 - fix the "led" command
68520 - fix compile error, if BUILD_DIR is used
68521
68522 Signed-off-by: Heiko Schocher <hs@denx.de>
68523
68524 commit e9514751cfa5cce61ea699fa0d3eb37898a5eeb5
68525 Author: Stefan Roese <sr@denx.de>
68526 Date: Sun Jul 8 13:44:27 2007 +0200
68527
68528 Fix malloc problem introduced with the relocation fixup for the PPC platform
68529
68530 The relocation fixup didn't handle the malloc pointer initialization
68531 correctly. This patch fixes this problem. Tested successfully on 4xx.
68532 The relocation fixup patches for 4xx will follow soon.
68533
68534 Signed-off-by: Stefan Roese <sr@denx.de>
68535
68536 commit 0dca874db62718e41253659e60f3a1de7eb418ce
68537 Author: TsiChung <tcliew@Goku.(none)>
68538 Date: Tue Jul 10 15:45:43 2007 -0500
68539
68540 Cache update and added CFG_UNIFY_CACHE
68541
68542 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.
68543
68544 Signed-off-by: TsiChung <tcliew@Goku.(none)>
68545
68546 commit 52b017604a8f4d4a795880ef6e7861d7f2f1b005
68547 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68548 Date: Thu Jul 5 23:36:16 2007 -0500
68549
68550 Update header file. Include dtimer_intr_setup(). Changed timer divider to global define.
68551
68552 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
68553
68554 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68555
68556 commit 5cdc07c7ef8f08ea55d3c47ed9221d91aa6d5fac
68557 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68558 Date: Thu Jul 5 23:31:25 2007 -0500
68559
68560 Update header files
68561
68562 Include immap.h and renamed mcfrtc.h to rtc.h
68563
68564 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68565
68566 commit 2870e98ac8e5553e9187b12a47e5f46babb53990
68567 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68568 Date: Thu Jul 5 23:29:21 2007 -0500
68569
68570 Add mcffec_initialize()
68571
68572 Added mcffec_initialize() in eth_initialize()
68573
68574 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68575
68576 commit 45a25bfd0c52f8a3fa137216bc94d32f90bedc5d
68577 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68578 Date: Thu Jul 5 23:27:40 2007 -0500
68579
68580 Update header file and clean up
68581
68582 Include immap.h
68583
68584 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68585
68586 commit 0cee9c66318602c856a899ae5fa7579ccba6443a
68587 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68588 Date: Thu Jul 5 23:23:15 2007 -0500
68589
68590 New uart structure and defines
68591
68592 Seperated from mcfuart.h
68593
68594 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68595
68596 commit a90e79de8d99e9c9d69d60bfff9f24c337165900
68597 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68598 Date: Thu Jul 5 23:22:31 2007 -0500
68599
68600 New timer structure and defines
68601
68602 Seperated from mcftimer.h
68603
68604 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68605
68606 commit e04acb2eba4782489417240eff76e20e176aec10
68607 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68608 Date: Thu Jul 5 23:21:09 2007 -0500
68609
68610 Rename mcfrtc to rtc
68611
68612 Since it is already in m68k folder, un-necessary to pad mcf. Replaced immap_5329.h and m5329.h to immap.h
68613
68614 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68615
68616 commit 2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5
68617 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68618 Date: Thu Jul 5 23:17:36 2007 -0500
68619
68620 Rename mcfserial.c. Update include header
68621
68622 Renamed mcfserial.c to mcfuart.c. Modified Makefile for mcfuart.o from mcfserial.o. Replace immap_5329.h and m5329.h to immap.h
68623
68624 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68625
68626 commit f2208fbc2eb9de3f4285bfaa021c6ebae16c9b0e
68627 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68628 Date: Thu Jul 5 23:13:58 2007 -0500
68629
68630 Header file update, clean up and cache handling
68631
68632 Replaced immap_5329.h and m5329.h with immap.h. Included cache_invalid.
68633
68634 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68635
68636 commit 2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97
68637 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68638 Date: Thu Jul 5 23:10:40 2007 -0500
68639
68640 Create interrupts.c and modify Makefile
68641
68642 interrupt_init() and dtimer_intr_setup() are placed in interrupts.c. Added interrupts.o to Makefile
68643
68644 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68645
68646 commit ddd104f1ed655eda50c06ba636237a83ed943f34
68647 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68648 Date: Thu Jul 5 23:06:55 2007 -0500
68649
68650 Enable Icache
68651
68652 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68653
68654 commit b9bf3de377b2bae70c983c9b97feae914999e735
68655 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68656 Date: Thu Jul 5 23:05:31 2007 -0500
68657
68658 Update header file and some clean up
68659
68660 Replaced immap_5329.h and m5329.h with immap.h. Removed whitespaces.
68661
68662 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68663
68664 commit 84a015b52ec820a5ae173717d78516de731c89c2
68665 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68666 Date: Thu Jul 5 23:03:28 2007 -0500
68667
68668 Update header file and enable icache
68669
68670 Replaced immap_5329.h and m5329.h with immap.h. Enabled icache_enable() in cpu_init_r().
68671
68672 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68673
68674 commit 7a17e759c7a8b58e910daf54df611e94fc8ca074
68675 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68676 Date: Thu Jul 5 23:01:22 2007 -0500
68677
68678 Update header file and removed interrupt_init()
68679
68680 Replace immap_5329.h and m5329.h with immap.h. Removed interrupt_init() and placed it in interrupts.c
68681
68682 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68683
68684 commit 3b635492c95bd0d6e08f93f699821cba1f602a64
68685 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68686 Date: Thu Jul 5 22:57:46 2007 -0500
68687
68688 Update for flash.o and mii.o
68689
68690 Removed flash.o and added mii.o
68691
68692 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68693
68694 commit c5ded275d839e4ff79f41718d50a835d989f57bc
68695 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68696 Date: Thu Jul 5 22:56:19 2007 -0500
68697
68698 MII functions calls.
68699
68700 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68701
68702 commit 427c814104560e29bda14955c67703245aaaa5b4
68703 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68704 Date: Thu Jul 5 22:54:42 2007 -0500
68705
68706 Removed MII functions and replaced immap_5329.h and m5329.h with immap.h.
68707
68708 The removed MII routines will be placed in mii.c.
68709
68710 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68711
68712 commit 01a793fda09c63df5a496f09dc1c7cb26e6751a2
68713 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68714 Date: Thu Jul 5 22:51:05 2007 -0500
68715
68716 Duplicate code
68717
68718 There is a Common Flash Interface Driver existed. To use the CFI driver, define CFG_FLASH_CFI in configuration file.
68719
68720 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68721
68722 commit 2744354a8437b8f78db178e30660215688bff570
68723 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68724 Date: Thu Jul 5 22:46:38 2007 -0500
68725
68726 Seperate old structure defines and new structure defines
68727
68728 Removed new uart structure and defines to uart.h
68729
68730 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68731
68732 commit 2bd58608dbcff8890ca9a0c59e861ac24f8bb230
68733 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68734 Date: Thu Jul 5 22:45:01 2007 -0500
68735
68736 Seperate old structure defines and new structure defines
68737
68738 New timer structure and defines will move to new timer.h
68739
68740 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68741
68742 commit 8cd5cd6de4ff92e03978338ed7aeb3ce7b7b9784
68743 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68744 Date: Thu Jul 5 22:42:23 2007 -0500
68745
68746 Clean up
68747
68748 Removed whitespace
68749
68750 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68751
68752 commit 514871f565dd8bd1121e4a3ac1665a790e20b8f2
68753 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68754 Date: Thu Jul 5 22:41:24 2007 -0500
68755
68756 Clean up
68757
68758 Replaced whitespace with tabs
68759
68760 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68761
68762 commit 48dbfeabc7afffe30609a4489f10c22cb67ef7dd
68763 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68764 Date: Thu Jul 5 22:39:07 2007 -0500
68765
68766 Create new header file and move peripherals base address from configs file to new header file.
68767
68768 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.
68769
68770 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68771
68772 commit be296e31c4411f96d9cb3d2afc8fcb006867abfa
68773 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68774 Date: Thu Jul 5 22:24:58 2007 -0500
68775
68776 Revert file mode
68777
68778 Changed MAKEALL file mode to executable, removed executable file mode from Makefile
68779
68780 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68781
68782 commit b3aff0cb9ecf236d7e8c93761dd1dadf6837a582
68783 Author: Jon Loeliger <jdl@freescale.com>
68784 Date: Tue Jul 10 11:19:50 2007 -0500
68785
68786 disk/ doc/ lib_*/ and tools/: Remove lingering references to CFG_CMD_* symbols.
68787
68788 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
68789 Those always evaluated TRUE, and thus were always compiled
68790 even when IDE really wasn't defined/wanted.
68791
68792 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68793
68794 commit ddb5d86f0215bcb6c293510c50eb050e92883b7a
68795 Author: Jon Loeliger <jdl@freescale.com>
68796 Date: Tue Jul 10 11:13:21 2007 -0500
68797
68798 drivers/: Remove lingering references to CFG_CMD_* symbols.
68799
68800 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
68801 Those always evaluated TRUE, and thus were always compiled
68802 even when IDE really wasn't defined/wanted.
68803
68804 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68805
68806 commit f40a7f3e3888b42a43674b099e5470022c8c544c
68807 Author: Jon Loeliger <jdl@freescale.com>
68808 Date: Tue Jul 10 11:07:56 2007 -0500
68809
68810 fs/: Remove lingering references to CFG_CMD_* symbols.
68811
68812 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
68813 Those always evaluated TRUE, and thus were always compiled
68814 even when IDE really wasn't defined/wanted.
68815
68816 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68817
68818 commit 610f2e9c28a9c101e09fa1b78143cf5f00ed1593
68819 Author: Jon Loeliger <jdl@freescale.com>
68820 Date: Tue Jul 10 11:05:02 2007 -0500
68821
68822 net/: Remove lingering references to CFG_CMD_* symbols.
68823
68824 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
68825 Those always evaluated TRUE, and thus were always compiled
68826 even when IDE really wasn't defined/wanted.
68827
68828 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68829
68830 commit 902531788376046da212afd1661cffb62f3daa1c
68831 Author: Jon Loeliger <jdl@freescale.com>
68832 Date: Tue Jul 10 11:02:44 2007 -0500
68833
68834 common/: Remove lingering references to CFG_CMD_* symbols.
68835
68836 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
68837 Those always evaluated TRUE, and thus were always compiled
68838 even when IDE really wasn't defined/wanted.
68839
68840 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68841
68842 commit d39b57415838c73fb0a37eca84de3c68ba990586
68843 Author: Jon Loeliger <jdl@freescale.com>
68844 Date: Tue Jul 10 10:48:22 2007 -0500
68845
68846 board/[j-z]*: Remove lingering references to CFG_CMD_* symbols.
68847
68848 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
68849 Those always evaluated TRUE, and thus were always compiled
68850 even when IDE really wasn't defined/wanted.
68851
68852 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68853
68854 commit 77a318545d57aefa844752465b94c7e09a3f26d0
68855 Author: Jon Loeliger <jdl@freescale.com>
68856 Date: Tue Jul 10 10:39:10 2007 -0500
68857
68858 board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols.
68859
68860 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
68861 Those always evaluated TRUE, and thus were always compiled
68862 even when IDE really wasn't defined/wanted.
68863
68864 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68865
68866 commit 068b60a0eb7e73b243ca55399f2a7df76e2c3f3d
68867 Author: Jon Loeliger <jdl@freescale.com>
68868 Date: Tue Jul 10 10:27:39 2007 -0500
68869
68870 cpu/ rtc/ include/: Remove lingering references to CFG_CMD_* symbols.
68871
68872 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68873
68874 commit 079a136c3588814784561d6e4856970ee82d6e2a
68875 Author: Jon Loeliger <jdl@freescale.com>
68876 Date: Tue Jul 10 10:12:10 2007 -0500
68877
68878 include/configs/[p-z]* + misc: Cleanup BOOTP and lingering CFG_CMD_*.
68879
68880 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
68881 used to be included but CONFIG_BOOTP_MASK was not defined.
68882
68883 Remove lingering references to CFG_CMD_* symbols.
68884
68885 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68886
68887 commit 7f5c01577400c74cc5bac74f41dd0d3c79df623c
68888 Author: Jon Loeliger <jdl@freescale.com>
68889 Date: Tue Jul 10 09:38:02 2007 -0500
68890
68891 include/configs/[g-o]*: Cleanup BOOTP and lingering CFG_CMD_*.
68892
68893 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
68894 used to be included but CONFIG_BOOTP_MASK was not defined.
68895
68896 Remove lingering references to CFG_CMD_* symbols.
68897
68898 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68899
68900 commit 80ff4f99b84b64edca3fd10da365ec1493be1c95
68901 Author: Jon Loeliger <jdl@freescale.com>
68902 Date: Tue Jul 10 09:29:01 2007 -0500
68903
68904 include/configs/[a-e]*: Cleanup BOOTP and lingering CFG_CMD_*.
68905
68906 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
68907 used to be included but CONFIG_BOOTP_MASK was not defined.
68908
68909 Remove lingering references to CFG_CMD_* symbols.
68910
68911 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68912
68913 commit a1aa0bb502e25fd598b5e0ccdfb2c174921d714a
68914 Author: Jon Loeliger <jdl@freescale.com>
68915 Date: Tue Jul 10 09:22:23 2007 -0500
68916
68917 include/configs/[P-Z]*: Cleanup BOOTP and lingering CFG_CMD_*.
68918
68919 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
68920 used to be included but CONFIG_BOOTP_MASK was not defined.
68921
68922 Remove lingering references to CFG_CMD_* symbols.
68923
68924 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68925
68926 commit 659e2f6736232a08acca8785c206e2b4d9cd07d7
68927 Author: Jon Loeliger <jdl@freescale.com>
68928 Date: Tue Jul 10 09:10:49 2007 -0500
68929
68930 include/configs/[J-O]*: Cleanup BOOTP and lingering CFG_CMD_*.
68931
68932 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
68933 used to be included but CONFIG_BOOTP_MASK was not defined.
68934
68935 Remove lingering references to CFG_CMD_* symbols.
68936
68937 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68938
68939 commit 11799434c5ff15a612577bb1ad1f4ea1a0595e4b
68940 Author: Jon Loeliger <jdl@freescale.com>
68941 Date: Tue Jul 10 09:02:57 2007 -0500
68942
68943 include/configs/[A-I]*: Cleanup BOOTP and lingering CFG_CMD_*.
68944
68945 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
68946 used to be included but CONFIG_BOOTP_MASK was not defined.
68947
68948 Remove lingering references to CFG_CMD_* symbols.
68949
68950 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68951
68952 commit 1fe80d79c5c4e52d3410a7ab4b8515da095cdab3
68953 Author: Jon Loeliger <jdl@freescale.com>
68954 Date: Mon Jul 9 22:08:34 2007 -0500
68955
68956 Finally retire cmd_confdefs.h and CONFIG_BOOTP_MASK!
68957
68958 All of the choices for CONFIG_BOOTP_ are now documented in
68959 the README file. You must now individually select exactly
68960 the set that you want using a series of
68961 #define CONFIG_BOOTP_<x>
68962 statements in the board port config files now.
68963
68964 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68965
68966 commit d3b8c1a743dcd31625c99e6a44590f207eb00028
68967 Author: Jon Loeliger <jdl@freescale.com>
68968 Date: Mon Jul 9 21:57:31 2007 -0500
68969
68970 include/configs/[m-z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
68971
68972 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68973
68974 commit 2fd90ce575b02d189cbf443c85309bcd001aa393
68975 Author: Jon Loeliger <jdl@freescale.com>
68976 Date: Mon Jul 9 21:48:26 2007 -0500
68977
68978 include/configs/[a-m]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
68979
68980 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68981
68982 commit 37d4bb70586659dedef1658ce1bed071be098aec
68983 Author: Jon Loeliger <jdl@freescale.com>
68984 Date: Mon Jul 9 21:38:02 2007 -0500
68985
68986 include/configs/[T-Z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
68987
68988 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68989
68990 commit 18225e8dd1950bd6dbf35011e436db7f474c187d
68991 Author: Jon Loeliger <jdl@freescale.com>
68992 Date: Mon Jul 9 21:31:24 2007 -0500
68993
68994 include/configs/[P-S]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
68995
68996 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68997
68998 commit 7be044e4ea644b0ef1c486dadc1a4c2665b4374d
68999 Author: Jon Loeliger <jdl@freescale.com>
69000 Date: Mon Jul 9 21:24:19 2007 -0500
69001
69002 include/configs/[H-N]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
69003
69004 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69005
69006 commit 5d2ebe1b3ef0055c661bb1a0d252bf252380069f
69007 Author: Jon Loeliger <jdl@freescale.com>
69008 Date: Mon Jul 9 21:16:53 2007 -0500
69009
69010 include/configs/[A-G]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
69011
69012 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69013
69014 commit f55f7f8d83f36021ab1f0e3d738f5d8c8083a7e3
69015 Author: Jon Loeliger <jdl@freescale.com>
69016 Date: Mon Jul 9 19:12:30 2007 -0500
69017
69018 Retire CONFIG_COMMANDS finally.
69019 Strip old CFG_CMD_* symbols out.
69020
69021 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69022
69023 commit b5501f7d720fed99ab0b42c83f5dea52868ce007
69024 Author: Jon Loeliger <jdl@freescale.com>
69025 Date: Mon Jul 9 19:10:03 2007 -0500
69026
69027 Update README.* to reference new CONFIG_CMD_* names now.
69028
69029 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69030
69031 commit 4431283c7e6d54ae180d466e51bf2d97471a0ad9
69032 Author: Jon Loeliger <jdl@freescale.com>
69033 Date: Mon Jul 9 19:06:00 2007 -0500
69034
69035 cpu/m*: Remove obsolete references to CONFIG_COMMANDS
69036
69037 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69038
69039 commit 3a1ed1e1f922c419bb71f7df4949d783ade369fa
69040 Author: Jon Loeliger <jdl@freescale.com>
69041 Date: Mon Jul 9 18:57:22 2007 -0500
69042
69043 cpu/[7a-ln-z]*: Remove obsolete references to CONFIG_COMMANDS
69044
69045 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69046
69047 commit ab3abcbabd840928fb1eb5122118ca466b5e5013
69048 Author: Jon Loeliger <jdl@freescale.com>
69049 Date: Mon Jul 9 18:45:16 2007 -0500
69050
69051 board/[q-z]*: Remove obsolete references to CONFIG_COMMANDS
69052
69053 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69054
69055 commit 3fe00109a5f12de55b6e25b1f98dfc24bc9090c9
69056 Author: Jon Loeliger <jdl@freescale.com>
69057 Date: Mon Jul 9 18:38:39 2007 -0500
69058
69059 board/[m-p]*: Remove obsolete references to CONFIG_COMMANDS
69060
69061 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69062
69063 commit c508a4cefd8a953fc64957650506a035e6e3d9d1
69064 Author: Jon Loeliger <jdl@freescale.com>
69065 Date: Mon Jul 9 18:31:28 2007 -0500
69066
69067 board/[f-l]*: Remove obsolete references to CONFIG_COMMANDS
69068
69069 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69070
69071 commit b9307262f8a9f3b5c9e15a6067eadc17407146f6
69072 Author: Jon Loeliger <jdl@freescale.com>
69073 Date: Mon Jul 9 18:24:55 2007 -0500
69074
69075 board/[d-e]*: Remove obsolete references to CONFIG_COMMANDS
69076
69077 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69078
69079 commit fcec2eb93e126400009729328e797f12bc94f1fd
69080 Author: Jon Loeliger <jdl@freescale.com>
69081 Date: Mon Jul 9 18:19:09 2007 -0500
69082
69083 board/[A-Za-c]*: Remove obsolete references to CONFIG_COMMANDS
69084
69085 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69086
69087 commit a593814f2be0c9cdc3133cd550b167b8a988328f
69088 Author: Jon Loeliger <jdl@freescale.com>
69089 Date: Mon Jul 9 18:10:50 2007 -0500
69090
69091 rtc/: Remove obsolete references to CONFIG_COMMANDS
69092
69093 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69094
69095 commit 67350568f9d46e66c21829f3513b3db0caeb948b
69096 Author: Jon Loeliger <jdl@freescale.com>
69097 Date: Mon Jul 9 18:05:38 2007 -0500
69098
69099 lib_{arm,avr32,blackfin,generic,i386}/: Remove obsolete references to CONFIG_COMMANDS
69100
69101 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69102
69103 commit 7def6b34f910f08d7ef0a14646da067719237ca2
69104 Author: Jon Loeliger <jdl@freescale.com>
69105 Date: Mon Jul 9 18:02:11 2007 -0500
69106
69107 lib_{m68k,microblaze,mips,ppc}/: Remove obsolete references to CONFIG_COMMANDS
69108
69109 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69110
69111 commit dd60d1223b99a88a7216f3e041fe40634ad4c2bb
69112 Author: Jon Loeliger <jdl@freescale.com>
69113 Date: Mon Jul 9 17:56:50 2007 -0500
69114
69115 fs/: Remove obsolete references to CONFIG_COMMANDS
69116
69117 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69118
69119 commit c91898bbc505aff3e12a807af88e76da18efb7ee
69120 Author: Jon Loeliger <jdl@freescale.com>
69121 Date: Mon Jul 9 17:46:09 2007 -0500
69122
69123 tools/: Remove obsolete references to CONFIG_COMMANDS
69124
69125 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69126
69127 commit 643d1ab23960950b52e0a2803c2d3ea4c558fa01
69128 Author: Jon Loeliger <jdl@freescale.com>
69129 Date: Mon Jul 9 17:45:14 2007 -0500
69130
69131 net/: Remove obsolete references to CONFIG_COMMANDS
69132
69133 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69134
69135 commit cb51c0bf88f95a1bca68324b0126f8eed8b43273
69136 Author: Jon Loeliger <jdl@freescale.com>
69137 Date: Mon Jul 9 17:39:42 2007 -0500
69138
69139 drivers/[n-z]*: Remove obsolete references to CONFIG_COMMANDS
69140
69141 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69142
69143 commit 07d38a17e964aec4c7827f0ee9a583bc8cc1ad6b
69144 Author: Jon Loeliger <jdl@freescale.com>
69145 Date: Mon Jul 9 17:30:01 2007 -0500
69146
69147 drivers/[a-m]*: Remove obsolete references to CONFIG_COMMANDS
69148
69149 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69150
69151 commit cde5c64d17cf4834aa7b5c373f288bc7dad27b29
69152 Author: Jon Loeliger <jdl@freescale.com>
69153 Date: Mon Jul 9 17:22:37 2007 -0500
69154
69155 disk/: Remove obsolete references to CONFIG_COMMANDS
69156
69157 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69158
69159 commit 639221c76c88215bd55af83ad174fc30d1940f8f
69160 Author: Jon Loeliger <jdl@freescale.com>
69161 Date: Mon Jul 9 17:15:49 2007 -0500
69162
69163 include/: Remove obsolete references to CONFIG_COMMANDS
69164 Mostly removed from comments here.
69165
69166 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69167
69168 commit 4ef218f6fdf8d747f4589da5252b004e7d2c2876
69169 Author: Wolfgang Denk <wd@denx.de>
69170 Date: Tue Jul 10 00:01:28 2007 +0200
69171
69172 Coding style cleanup; update CHANGELOG.
69173
69174 Signed-off-by: Wolfgang Denk <wd@denx.de>
69175
69176 commit c8603cfbd4573379a6076c9c208545ba2bbf019a
69177 Author: Stefan Roese <sr@denx.de>
69178 Date: Mon Jul 9 11:00:24 2007 +0200
69179
69180 Small coding style cleanup
69181
69182 Signed-off-by: Stefan Roese <sr@denx.de>
69183
69184 commit 0f92c7e7c9a62755b1457d3c46f93c8c1f6c19fc
69185 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
69186 Date: Mon Jul 9 10:10:08 2007 +0200
69187
69188 Migrate esd 405EP boards to new NAND subsystem
69189
69190 Remove unused CFG_NAND_LEGACY define
69191
69192 These boards to not have NAND.
69193
69194 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
69195
69196 commit bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803
69197 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
69198 Date: Mon Jul 9 10:10:06 2007 +0200
69199
69200 Migrate esd 405EP boards to new NAND subsystem
69201
69202 Migrate esd 405EP boards to new NAND subsystem
69203
69204 -cleanup
69205 -use correct io accessors (in/out_be32())
69206
69207 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
69208
69209 commit e09f7ab5749c345f924da272bea0521a73af5b11
69210 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
69211 Date: Mon Jul 9 10:10:04 2007 +0200
69212
69213 Migrate esd 405EP boards to new NAND subsystem
69214
69215 This patch prepares the migration from the legacy NAND driver
69216 to U-Boot's new NAND subsystem for esd boards.
69217
69218 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
69219
69220 commit c3517f919d0f61650cf3027fd4faf0f631142f6c
69221 Author: Jon Loeliger <jdl@freescale.com>
69222 Date: Sun Jul 8 18:10:08 2007 -0500
69223
69224 common/* non-cmd*: Remove obsolete references to CONFIG_COMMANDS
69225
69226 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69227
69228 commit fd9bcaa35be64fe41a4223fdb6ecdbad52470b39
69229 Author: Jon Loeliger <jdl@freescale.com>
69230 Date: Sun Jul 8 18:05:39 2007 -0500
69231
69232 common/cmd_[p-x]*: Remove obsolete references to CONFIG_COMMANDS.
69233
69234 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69235
69236 commit c76fe47425afc7d5d670ff0539823c85d65d9c42
69237 Author: Jon Loeliger <jdl@freescale.com>
69238 Date: Sun Jul 8 18:02:23 2007 -0500
69239
69240 common/cmd_[i-n]*: Remove obsolete references to CONFIG_COMMANDS.
69241
69242 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69243
69244 commit baa26db4113679b80970ff447d91cc10217742a6
69245 Author: Jon Loeliger <jdl@freescale.com>
69246 Date: Sun Jul 8 17:51:39 2007 -0500
69247
69248 common/cmd_[af]*: Remove obsolete references to CONFIG_COMMANDS.
69249
69250 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69251
69252 commit af075ee96e52dda7b6bca6c937588aeaaec5f2cd
69253 Author: Jon Loeliger <jdl@freescale.com>
69254 Date: Sun Jul 8 17:02:01 2007 -0500
69255
69256 Clear up confusion over the CMD_POST and POST_DIAG mess.
69257
69258 For some reason, CONFIG_POST permeated as CONFIG_CMD_POST_DIAG
69259 when it really means just CONFIG_CMD_DIAG. There is no CMD_POST.
69260 Clear this mess up some.
69261
69262 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69263
69264 commit b3631487105a57ab7cbadfc26efbaf9676275018
69265 Author: Jon Loeliger <jdl@freescale.com>
69266 Date: Sun Jul 8 15:45:08 2007 -0500
69267
69268 Remove references to the old cmd_confdefs.h include file.
69269
69270 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69271
69272 commit a22d4da95e20049b4daa1c2a022f61e8a72f2fb6
69273 Author: Jon Loeliger <jdl@freescale.com>
69274 Date: Sun Jul 8 15:42:59 2007 -0500
69275
69276 include/configs: Catch some CONFIG_CMD_* conversion stragglers.
69277
69278 Use new CONFIG_CMD_* in lwmon5.h board config file.
69279 Fix CONFIG_CMD_* typo braindamage in omap1510inn.h
69280
69281 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69282
69283 commit a5562901661bd428f7e5feb333f796372cb81019
69284 Author: Jon Loeliger <jdl@freescale.com>
69285 Date: Sun Jul 8 15:31:57 2007 -0500
69286
69287 include/configs: Use new CONFIG_CMD_* in various [TUVWZYZ]* named board config files.
69288
69289 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69290
69291 commit fe7f782d5b8c64a0195c68c31a0a11d4f641355e
69292 Author: Jon Loeliger <jdl@freescale.com>
69293 Date: Sun Jul 8 15:02:44 2007 -0500
69294
69295 include/configs: Use new CONFIG_CMD_* in various S* named board config files.
69296
69297 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69298
69299 commit e9a0f8f15c11f337967aa0600ad6e8af33037f50
69300 Author: Jon Loeliger <jdl@freescale.com>
69301 Date: Sun Jul 8 15:12:40 2007 -0500
69302
69303 include/configs: Use new CONFIG_CMD_* in various R* named board config files.
69304
69305 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69306
69307 commit 12aa9fd23d724bd6ab88e1baa0db35133a27303f
69308 Author: Jon Loeliger <jdl@freescale.com>
69309 Date: Sun Jul 8 14:55:07 2007 -0500
69310
69311 include/configs: Use new CONFIG_CMD_* in various Q* named board config files.
69312
69313 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69314
69315 commit acf0269779422f3e147d2ddfb499c9f6ff10ad5e
69316 Author: Jon Loeliger <jdl@freescale.com>
69317 Date: Sun Jul 8 14:49:44 2007 -0500
69318
69319 include/configs: Use new CONFIG_CMD_* in various P* named board config files.
69320
69321 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69322
69323 commit e18a1061a8630cb67995fdf99afd3fb50d1b187d
69324 Author: Jon Loeliger <jdl@freescale.com>
69325 Date: Sun Jul 8 14:21:43 2007 -0500
69326
69327 include/configs: Use new CONFIG_CMD_* in various [NO]* named board config files.
69328
69329 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69330
69331 commit 8353e139bfad9059c54f5b2421f1a3090e15a2e2
69332 Author: Jon Loeliger <jdl@freescale.com>
69333 Date: Sun Jul 8 14:14:17 2007 -0500
69334
69335 include/configs: Use new CONFIG_CMD_* in various M* named board config files.
69336
69337 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69338
69339 commit 348f258f24253433e4a2302a0bbceb6740a67246
69340 Author: Jon Loeliger <jdl@freescale.com>
69341 Date: Sun Jul 8 13:46:18 2007 -0500
69342
69343 include/configs: Use new CONFIG_CMD_* in various [IJKL]* named board config files.
69344
69345 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69346
69347 commit 6c4f4da9bfc9f9403f54fce678ed0364b7c86a6a
69348 Author: Jon Loeliger <jdl@freescale.com>
69349 Date: Sun Jul 8 10:09:35 2007 -0500
69350
69351 include/configs: Use new CONFIG_CMD_* in various H* named board config files.
69352
69353 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69354
69355 commit 60a0876b5106b34220e459c208bbf648073306c0
69356 Author: Jon Loeliger <jdl@freescale.com>
69357 Date: Sat Jul 7 21:04:26 2007 -0500
69358
69359 include/configs: Use new CONFIG_CMD_* in various F* and G* named board config files.
69360
69361 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69362
69363 commit dcaa71562826a2466e894c868d132509dcda8444
69364 Author: Jon Loeliger <jdl@freescale.com>
69365 Date: Sat Jul 7 20:56:05 2007 -0500
69366
69367 include/configs: Use new CONFIG_CMD_* in various E* named board config files.
69368
69369 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69370
69371 commit 3c3227f3c737502311b25b72084573901cbbf17d
69372 Author: Jon Loeliger <jdl@freescale.com>
69373 Date: Sat Jul 7 20:40:43 2007 -0500
69374
69375 include/configs: Use new CONFIG_CMD_* in various D* named board config files.
69376
69377 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69378
69379 commit 49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c
69380 Author: Jon Loeliger <jdl@freescale.com>
69381 Date: Thu Jul 5 19:52:35 2007 -0500
69382
69383 include/configs: Use new CONFIG_CMD_* in various C* named board config files.
69384
69385 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69386
69387 commit de8b2a6e33298dcdb10bdda48db25e53c3089eba
69388 Author: Jon Loeliger <jdl@freescale.com>
69389 Date: Thu Jul 5 19:32:07 2007 -0500
69390
69391 include/configs: Use new CONFIG_CMD_* in various B* named board config files.
69392
69393 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69394
69395 commit 498ff9a228485bd4b9f23d066bada268f9add1dd
69396 Author: Jon Loeliger <jdl@freescale.com>
69397 Date: Thu Jul 5 19:13:52 2007 -0500
69398
69399 include/configs: Use new CONFIG_CMD_* in various A* named board config files.
69400
69401 Since ADS860.h includes "board/fads/fads.h" with ramifications
69402 on the CONFIG_COMMAND treatment, it too has to be adjusted to
69403 exclude already configured commands in this same commit.
69404
69405 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69406
69407 commit 10e038932f22ee80ebd53de312531e70e6590a2f
69408 Author: Thomas Knobloch <knobloch@siemens.com>
69409 Date: Fri Jul 6 14:58:39 2007 +0200
69410
69411 [NAND] Bad block skipping for command nboot
69412
69413 The old implementation of command nboot does not support reading the image from
69414 NAND flash with skipping of bad blocks. The patch implements a new version of
69415 the nboot command: by calling nboot.jffs2 from the u-boot command line the
69416 command will load the image from NAND flash with respect to bad blocks (by using
69417 nand_read_opts()). This is similar to e.g. the NAND read command: "nand
69418 read.jffs2 ...".
69419
69420 Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
69421 Signed-off-by: Stefan Roese <sr@denx.de>
69422
69423 commit 334043f601a90ac53e5ecc846fbb73a1ef38cb1f
69424 Author: Stefan Roese <sr@denx.de>
69425 Date: Fri Jul 6 12:26:51 2007 +0200
69426
69427 ppc4xx: Update lwmon5 default environment
69428
69429 Signed-off-by: Stefan Roese <sr@denx.de>
69430
69431 commit 5d187430a055d62f17ca84d75e7245439d1f7e75
69432 Author: Stefan Roese <sr@denx.de>
69433 Date: Fri Jul 6 11:48:24 2007 +0200
69434
69435 ppc4xx: Update lwmon5 board
69436
69437 Add unlock=yes environment variable to default variables to unlock
69438 the CFI flash by default.
69439
69440 Signed-off-by: Stefan Roese <sr@denx.de>
69441
69442 commit 6b0a174a1e6f55e1f5a1fbb223cdad7645a4646e
69443 Author: Stefan Roese <sr@denx.de>
69444 Date: Fri Jul 6 09:45:47 2007 +0200
69445
69446 Fix problem with get/setdcr commands introduced by cfg patches
69447
69448 Signed-off-by: Stefan Roese <sr@denx.de>
69449
69450 commit f1152f8c28db4a22087c21c618a3f7baa48e9a4f
69451 Author: Wolfgang Denk <wd@denx.de>
69452 Date: Fri Jul 6 02:50:19 2007 +0200
69453
69454 Code cleanup and default config update for STC GP3 SSA board.
69455
69456 Signed-off-by: Wolfgang Denk <wd@denx.de>
69457
69458 commit e4dbe1b215f5c6c462e76909d240bd96472b84de
69459 Author: Wolfgang Denk <wd@denx.de>
69460 Date: Thu Jul 5 17:56:27 2007 +0200
69461
69462 Fixing some typos etc. introduced mainly by cfg patches.
69463
69464 Signed-off-by: Wolfgang Denk <wd@denx.de>
69465
69466 commit b6b4684546809f89c8bac72863ca49b5fd8ac0cd
69467 Author: Wolfgang Denk <wd@denx.de>
69468 Date: Thu Jul 5 11:12:16 2007 +0200
69469
69470 Minor coding style cleanup. Update CHANGELOG.
69471
69472 commit dca3b3d6d6396b67e5e84af53452164923c73443
69473 Author: Jon Loeliger <jdl@jdl.com>
69474 Date: Wed Jul 4 22:33:46 2007 -0500
69475
69476 include/configs: Use new CONFIG_CMD_* in various [v-z]* named board config files.
69477
69478 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69479
69480 commit 6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7
69481 Author: Jon Loeliger <jdl@jdl.com>
69482 Date: Wed Jul 4 22:33:38 2007 -0500
69483
69484 include/configs: Use new CONFIG_CMD_* in various t* and u* named board config files.
69485
69486 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69487
69488 commit 46da1e96b7db14f4fcd2c92544e7c0862024bc76
69489 Author: Jon Loeliger <jdl@jdl.com>
69490 Date: Wed Jul 4 22:33:30 2007 -0500
69491
69492 include/configs: Use new CONFIG_CMD_* in various s* named board config files.
69493
69494 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69495
69496 commit 90cc3eb6d2be856d9ddd81436de9cf343bc6b5c8
69497 Author: Jon Loeliger <jdl@jdl.com>
69498 Date: Wed Jul 4 22:33:23 2007 -0500
69499
69500 include/configs: Use new CONFIG_CMD_* in various q* and r* named board config files.
69501
69502 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69503
69504 commit 26a34560d56a9df5bc2ae23525d9229736134757
69505 Author: Jon Loeliger <jdl@jdl.com>
69506 Date: Wed Jul 4 22:33:17 2007 -0500
69507
69508 include/configs: Use new CONFIG_CMD_* in various p* named board config files.
69509
69510 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69511
69512 commit a5cb23092a7d31490a33d4ec871468b63babfa3c
69513 Author: Jon Loeliger <jdl@jdl.com>
69514 Date: Wed Jul 4 22:33:13 2007 -0500
69515
69516 include/configs: Use new CONFIG_CMD_* in various o* named board config files.
69517
69518 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69519
69520 commit 929a2bfd142737003a8fc32e1b86e1f2c1850257
69521 Author: Jon Loeliger <jdl@jdl.com>
69522 Date: Wed Jul 4 22:33:07 2007 -0500
69523
69524 include/configs: Use new CONFIG_CMD_* in various n* named board config files.
69525
69526 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69527
69528 commit 5dc11a511960d490f7f01ffd746edfe6277f99b0
69529 Author: Jon Loeliger <jdl@jdl.com>
69530 Date: Wed Jul 4 22:33:01 2007 -0500
69531
69532 include/configs: Use new CONFIG_CMD_* in various m* named board config files.
69533
69534 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69535
69536 commit 9bbb1c0820c1fbd3811ab6ee4ba0f6c6f76b27e4
69537 Author: Jon Loeliger <jdl@jdl.com>
69538 Date: Wed Jul 4 22:32:57 2007 -0500
69539
69540 include/configs: Use new CONFIG_CMD_* in various l* named board config files.
69541
69542 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69543
69544 commit bc234c129fa04fb9fa33530930e5cbc6084cd47a
69545 Author: Jon Loeliger <jdl@jdl.com>
69546 Date: Wed Jul 4 22:32:51 2007 -0500
69547
69548 include/configs: Use new CONFIG_CMD_* in various j* and k* named board config files.
69549
69550 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69551
69552 commit 1d2c6bc491969f8d8fb34c8e30e8bea7a2af9c31
69553 Author: Jon Loeliger <jdl@jdl.com>
69554 Date: Wed Jul 4 22:32:32 2007 -0500
69555
69556 include/configs: Use new CONFIG_CMD_* in various i* named board config files.
69557
69558 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69559
69560 commit 48d5d102a2f2e619c92050b9aedbb69689185bc0
69561 Author: Jon Loeliger <jdl@jdl.com>
69562 Date: Wed Jul 4 22:32:25 2007 -0500
69563
69564 include/configs: Use new CONFIG_CMD_* in various h* named board config files.
69565
69566 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69567
69568 commit 72eb0efaed7048afcc61fc6f0085c49394b5dc36
69569 Author: Jon Loeliger <jdl@jdl.com>
69570 Date: Wed Jul 4 22:32:19 2007 -0500
69571
69572 include/configs: Use new CONFIG_CMD_* in various g* named board config files.
69573
69574 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69575
69576 commit 1bec3d3002d3bbbae6f2468a0f7376db1120d33e
69577 Author: Jon Loeliger <jdl@jdl.com>
69578 Date: Wed Jul 4 22:32:10 2007 -0500
69579
69580 include/configs: Use new CONFIG_CMD_* in various e* named board config files.
69581
69582 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69583
69584 commit ab999ba1b31ebe78dd16374394a55d7c6e5aa6e4
69585 Author: Jon Loeliger <jdl@jdl.com>
69586 Date: Wed Jul 4 22:32:03 2007 -0500
69587
69588 include/configs: Use new CONFIG_CMD_* in various d* named board config files.
69589
69590 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69591
69592 commit 37e4f24b87fa255ae456d193b7cd23c18dd1d56b
69593 Author: Jon Loeliger <jdl@jdl.com>
69594 Date: Wed Jul 4 22:31:56 2007 -0500
69595
69596 include/configs: Use new CONFIG_CMD_* in various c* named board config files.
69597
69598 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69599
69600 commit ba2351f9d1e841bd00ea6dad1e3c16d0259ad264
69601 Author: Jon Loeliger <jdl@jdl.com>
69602 Date: Wed Jul 4 22:31:49 2007 -0500
69603
69604 include/configs: Use new CONFIG_CMD_* in various b* named board config files.
69605
69606 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69607
69608 commit 0b361c916617aff79e647b40f0e43361e0bbaccf
69609 Author: Jon Loeliger <jdl@jdl.com>
69610 Date: Wed Jul 4 22:31:42 2007 -0500
69611
69612 include/configs: Use new CONFIG_CMD_* in various a* named board config files.
69613
69614 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69615
69616 commit b730cda82e362df6a22f4c59c0a9b97e885b1014
69617 Author: Jon Loeliger <jdl@jdl.com>
69618 Date: Wed Jul 4 22:31:35 2007 -0500
69619
69620 include/configs: Use new CONFIG_CMD_* in mpc5xx board config files.
69621
69622 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69623
69624 commit d794cfefead5fc177cf4f41164e80382e9c9484a
69625 Author: Jon Loeliger <jdl@jdl.com>
69626 Date: Wed Jul 4 22:31:15 2007 -0500
69627
69628 include/configs: Use new CONFIG_CMD_* in various 5200 board config files.
69629
69630 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69631
69632 commit ef0df52ab49eea4a30c15087fd27d54c1d946f2c
69633 Author: Jon Loeliger <jdl@jdl.com>
69634 Date: Wed Jul 4 22:31:07 2007 -0500
69635
69636 include/configs: Use new CONFIG_CMD_* in STx board config files.
69637
69638 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69639
69640 commit 866e3089bfc826bb4dc74637f8aad87a3bab79fc
69641 Author: Jon Loeliger <jdl@jdl.com>
69642 Date: Wed Jul 4 22:30:58 2007 -0500
69643
69644 include/configs: Use new CONFIG_CMD_* in sbc* board config files.
69645
69646 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69647
69648 commit 2694690e285acaa34922f55f4b5ae030da60c55a
69649 Author: Jon Loeliger <jdl@jdl.com>
69650 Date: Wed Jul 4 22:30:50 2007 -0500
69651
69652 include/configs: Use new CONFIG_CMD_* in TQM board config files.
69653
69654 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69655
69656 commit 1cc4c458329765b58e584a19821e796b3c10e976
69657 Author: Jon Loeliger <jdl@jdl.com>
69658 Date: Wed Jul 4 22:30:28 2007 -0500
69659
69660 include/configs: Use new CONFIG_CMD_* in 82xx board config files.
69661
69662 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69663
69664 commit 8ea5499afdaba0acf60923dd99001c399d4a7c8e
69665 Author: Jon Loeliger <jdl@jdl.com>
69666 Date: Wed Jul 4 22:30:06 2007 -0500
69667
69668 include/configs: Use new CONFIG_CMD_* in 83xx board config files.
69669
69670 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69671
69672 commit b44896215a09c60fa40cae906f7ed207bbc2c492
69673 Author: Sergei Poselenov <sposelenov@emcraft.com>
69674 Date: Thu Jul 5 08:17:37 2007 +0200
69675
69676 Merged POST framework with the current TOT.
69677
69678 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
69679
69680 commit b24629fa377214d63bb40d1360e354b6d3e4af56
69681 Author: Jon Loeliger <jdl@jdl.com>
69682 Date: Wed Jun 13 13:23:15 2007 -0500
69683
69684 mpc86xx: Remove old CFG_CMD_* references.
69685
69686 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69687
69688 commit 46175d9764da129bb4fd341cd2554dc7d55f5b2a
69689 Author: Jon Loeliger <jdl@jdl.com>
69690 Date: Wed Jun 13 13:22:54 2007 -0500
69691
69692 Add MPC8568MDS to MAKEALL 85xx target.
69693
69694 It was missing from the original port submission.
69695
69696 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69697
69698 commit 2835e518c969e5124ba1174eef3e8375e12fa7d5
69699 Author: Jon Loeliger <jdl@jdl.com>
69700 Date: Wed Jun 13 13:22:08 2007 -0500
69701
69702 include/configs: Use new CONFIG_CMD_* in 85xx board config files.
69703
69704 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69705
69706 commit 56b304ac2091689506088a9ae67f63fd6300cf16
69707 Author: Jon Loeliger <jdl@jdl.com>
69708 Date: Wed Jun 13 13:21:37 2007 -0500
69709
69710 Fix #if typo in CONFIG_CMD_* changes.
69711
69712 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69713
69714 commit f780b83316d9af1f61d71cc88b1917b387b9b995
69715 Author: Niklaus Giger <niklausgiger@gmx.ch>
69716 Date: Wed Jun 27 18:11:38 2007 +0200
69717
69718 resubmit: ppc4xx: Remove sequoia/sequioa.h. Cleanup ppc440.h for PPC440EPX
69719
69720 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
69721
69722 commit 04e6c38b766eaa2f3287561563c9e215e0c3a0d4
69723 Author: Stefan Roese <sr@denx.de>
69724 Date: Wed Jul 4 10:06:30 2007 +0200
69725
69726 ppc4xx: Update lwmon5 board
69727
69728 - Add optional ECC generation routine to preserve existing
69729 RAM values. This is needed for the Linux log-buffer support
69730 - Add optional DDR2 setup with CL=4
69731 - GPIO50 not used anymore
69732 - Lime register setup added
69733
69734 Signed-off-by: Stefan Roese <sr@denx.de>
69735
69736 commit 6810a34677dbc446334f5e451f1682426dd33b49
69737 Author: Grant Likely <grant.likely@secretlab.ca>
69738 Date: Tue Jul 3 00:17:28 2007 -0600
69739
69740 Fix Makefile to use $(MKCONFIG) macro for all board ports
69741
69742 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69743
69744 commit 90b1b2d69b9396ff2f01165ebc16c9a594eb5926
69745 Author: Grant Likely <grant.likely@secretlab.ca>
69746 Date: Tue Jul 3 00:17:28 2007 -0600
69747
69748 Fix Makefile to use $(MKCONFIG) macro for all board ports
69749
69750 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69751
69752 commit 057004f4a4863554d56cc56268bfa7c7d9738e27
69753 Author: Grant Likely <grant.likely@secretlab.ca>
69754 Date: Tue Jul 3 00:34:49 2007 -0600
69755
69756 Correct fixup relocation for mpc83xx
69757
69758 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69759
69760 commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96
69761 Author: Grant Likely <grant.likely@secretlab.ca>
69762 Date: Tue Jul 3 00:34:44 2007 -0600
69763
69764 Correct fixup relocation for mpc8260
69765
69766 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69767
69768 commit f3a52fe05923935db86985daf9438e2f70ac39aa
69769 Author: Grant Likely <grant.likely@secretlab.ca>
69770 Date: Tue Jul 3 00:34:39 2007 -0600
69771
69772 Correct fixup relocation for mpc824x
69773
69774 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69775
69776 commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00
69777 Author: Grant Likely <grant.likely@secretlab.ca>
69778 Date: Tue Jul 3 00:34:34 2007 -0600
69779
69780 Correct fixup relocation for mpc8220
69781
69782 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69783
69784 commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90
69785 Author: Grant Likely <grant.likely@secretlab.ca>
69786 Date: Tue Jul 3 00:34:29 2007 -0600
69787
69788 Correct fixup relocation for MPC5xxx
69789
69790 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69791
69792 commit 3649cd99ba815b6601868735765602f00ef3692b
69793 Author: Grant Likely <grant.likely@secretlab.ca>
69794 Date: Tue Jul 3 00:34:24 2007 -0600
69795
69796 Correct relocation fixup for mpc5xx
69797
69798 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69799
69800 commit f82b3b6304b620ef7e28bfaa1ea887a2ad2fa325
69801 Author: Grant Likely <grant.likely@secretlab.ca>
69802 Date: Tue Jul 3 00:34:19 2007 -0600
69803
69804 Don't set gd->reloc_off if relocation of .fixup works correctly
69805
69806 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69807
69808 commit e1a6144c32dc7de73bcdd33995de0148cbd0bd28
69809 Author: Grant Likely <grant.likely@secretlab.ca>
69810 Date: Tue Jul 3 00:34:14 2007 -0600
69811
69812 Remove obsolete mpc83xx linker scripts
69813
69814 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69815
69816 commit 17e32fc3908bf7089d3f16fc82a1c3ae674dd65b
69817 Author: Grant Likely <grant.likely@secretlab.ca>
69818 Date: Tue Jul 3 00:34:09 2007 -0600
69819
69820 Consolidate mpc8260 linker scripts
69821
69822 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69823
69824 commit af7d38b393690d7eeaf418ac85a1e831a50d5fd0
69825 Author: Grant Likely <grant.likely@secretlab.ca>
69826 Date: Tue Jul 3 00:34:04 2007 -0600
69827
69828 Remove obsolete mpc824x linker scripts
69829
69830 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69831
69832 commit f94a3aecebc40ca0939c7d66d010009cf51be9e2
69833 Author: Grant Likely <grant.likely@secretlab.ca>
69834 Date: Tue Jul 3 00:33:59 2007 -0600
69835
69836 Remove obsolete mpc824x linker scripts (3 of 4)
69837
69838 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69839
69840 commit a71c084f3ac7fedf144537db2b2da47323068833
69841 Author: Grant Likely <grant.likely@secretlab.ca>
69842 Date: Tue Jul 3 00:33:53 2007 -0600
69843
69844 Remove obsolete mpc824x linker scripts (2 of 4)
69845
69846 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69847
69848 commit f670a15468d1365241d40022b9408e1004181f5e
69849 Author: Grant Likely <grant.likely@secretlab.ca>
69850 Date: Tue Jul 3 00:33:48 2007 -0600
69851
69852 Remove obsolete mpc824x linker scripts (1 of 4)
69853
69854 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69855
69856 commit 09555bd45a04c0e54f172528d21bc18896550d28
69857 Author: Grant Likely <grant.likely@secretlab.ca>
69858 Date: Tue Jul 3 00:33:43 2007 -0600
69859
69860 Remove obsolete mpc8220 linker scripts
69861
69862 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69863
69864 commit 5efb992f046e51225c93d52f80fecbe433abd789
69865 Author: Grant Likely <grant.likely@secretlab.ca>
69866 Date: Tue Jul 3 00:33:38 2007 -0600
69867
69868 Remove obsolete mpc5xxx linker scripts (3 of 3)
69869
69870 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69871
69872 commit 07c13dfef65b31647e69d8b61daa1eec598add1a
69873 Author: Grant Likely <grant.likely@secretlab.ca>
69874 Date: Tue Jul 3 00:33:33 2007 -0600
69875
69876 Remove obsolete mpc5xxx linker scripts (2 of 3)
69877
69878 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69879
69880 commit b4f67513a624ce85866c66c575bd2d9d7977d7f0
69881 Author: Grant Likely <grant.likely@secretlab.ca>
69882 Date: Tue Jul 3 00:33:28 2007 -0600
69883
69884 Remove obsolete mpc5xxx linker scripts (1 of 3)
69885
69886 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69887
69888 commit b7d8e05f8675249b5f208aa73babeed384a4519d
69889 Author: Grant Likely <grant.likely@secretlab.ca>
69890 Date: Tue Jul 3 00:33:23 2007 -0600
69891
69892 Remove obsolete mpc5xx linker scripts
69893
69894 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69895
69896 commit 416a0b6d40f6eba3a2fc547253c16bda28d922f7
69897 Author: Grant Likely <grant.likely@secretlab.ca>
69898 Date: Tue Jul 3 00:33:18 2007 -0600
69899
69900 Consolidate mpc83xx linker scripts
69901
69902 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69903
69904 commit 5fc59175b92883ed5d2666a04e6bc49e70a4a365
69905 Author: Grant Likely <grant.likely@secretlab.ca>
69906 Date: Tue Jul 3 00:33:13 2007 -0600
69907
69908 Consolidate mpc8260 linker scripts
69909
69910 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69911
69912 commit 737f9eb02d7335df2b3e4d7a4d3348784d1da207
69913 Author: Grant Likely <grant.likely@secretlab.ca>
69914 Date: Tue Jul 3 00:33:08 2007 -0600
69915
69916 Consolidate mpc824x linker scripts
69917
69918 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69919
69920 commit 9c757b789a59a855db57b448dd825329c4e9c4a0
69921 Author: Grant Likely <grant.likely@secretlab.ca>
69922 Date: Tue Jul 3 00:33:03 2007 -0600
69923
69924 Consolidate mpc8220 linker scripts
69925
69926 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69927
69928 commit d181c9a15cd41863fe24840d17848429f27d3c8c
69929 Author: Grant Likely <grant.likely@secretlab.ca>
69930 Date: Tue Jul 3 00:32:58 2007 -0600
69931
69932 Consolidate mpc5xxx linker scripts
69933
69934 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69935
69936 commit 287ac924adb7291bebe5086652a362a30ab28b13
69937 Author: Grant Likely <grant.likely@secretlab.ca>
69938 Date: Tue Jul 3 00:32:53 2007 -0600
69939
69940 Consolidate mpc5xx linker scripts
69941
69942 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69943
69944 commit 52b8704d0245e589f86d462e9ec25aeb7ecbbbdd
69945 Author: Wolfgang Denk <wd@denx.de>
69946 Date: Wed Jul 4 00:43:53 2007 +0200
69947
69948 Fix a few file permission problems.
69949
69950 Signed-off-by: Wolfgang Denk <wd@denx.de>
69951
69952 commit 78e0cf2de7be7f1eaeeb622eb61fd50e4d5e205c
69953 Author: Wolfgang Denk <wd@denx.de>
69954 Date: Wed Jul 4 00:38:38 2007 +0200
69955
69956 Minor coding style cleanup. Rebuild CHANGELOG file.
69957
69958 commit 2f9c19e496acb6bb50d9299e1aab377625d48c38
69959 Author: Jon Loeliger <jdl@jdl.com>
69960 Date: Mon Jun 11 19:03:44 2007 -0500
69961
69962 configs/ mpc86xx: Rewrite command line options using new CONFIG_CMD-* style.
69963
69964 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69965
69966 commit 602ad3b33d9ceef83dbab46be68646d645d637ee
69967 Author: Jon Loeliger <jdl@jdl.com>
69968 Date: Mon Jun 11 19:03:39 2007 -0500
69969
69970 README: Rewrite command line config to use CONFIG_CMD_* names.
69971
69972 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69973
69974 commit 72a074cec68e5bad60d63206c050974e08afd804
69975 Author: Jon Loeliger <jdl@jdl.com>
69976 Date: Mon Jun 11 19:03:34 2007 -0500
69977
69978 include/ non-config: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
69979
69980 This is a compatibility step that allows both the older form
69981 and the new form to co-exist for a while until the older can
69982 be removed entirely.
69983
69984 All transformations are of the form:
69985 Before:
69986 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
69987 After:
69988 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
69989
69990 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69991
69992 commit 5fcf543e0b6628c76ff48705b1b0566bfd11507b
69993 Author: Jon Loeliger <jdl@jdl.com>
69994 Date: Mon Jun 11 19:03:28 2007 -0500
69995
69996 tools/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
69997
69998 This is a compatibility step that allows both the older form
69999 and the new form to co-exist for a while until the older can
70000 be removed entirely.
70001
70002 All transformations are of the form:
70003 Before:
70004 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70005 After:
70006 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70007
70008 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70009
70010 commit 9107ebe0d352420895ab69b715697bdebc8caf50
70011 Author: Jon Loeliger <jdl@jdl.com>
70012 Date: Mon Jun 11 19:03:23 2007 -0500
70013
70014 board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70015
70016 This is a compatibility step that allows both the older form
70017 and the new form to co-exist for a while until the older can
70018 be removed entirely.
70019
70020 All transformations are of the form:
70021 Before:
70022 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70023 After:
70024 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70025
70026 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70027
70028 commit 5e378003d592ea828ec69d6defcd4de79096dd5c
70029 Author: Jon Loeliger <jdl@jdl.com>
70030 Date: Mon Jun 11 19:03:19 2007 -0500
70031
70032 board/[Ma-i]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70033
70034 This is a compatibility step that allows both the older form
70035 and the new form to co-exist for a while until the older can
70036 be removed entirely.
70037
70038 All transformations are of the form:
70039 Before:
70040 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70041 After:
70042 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70043
70044 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70045
70046 commit 737184114ec9c9e0ab94d6713536126073bd2472
70047 Author: Jon Loeliger <jdl@jdl.com>
70048 Date: Mon Jun 11 19:03:15 2007 -0500
70049
70050 cpu/ non-mpc*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70051
70052 This is a compatibility step that allows both the older form
70053 and the new form to co-exist for a while until the older can
70054 be removed entirely.
70055
70056 All transformations are of the form:
70057 Before:
70058 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70059 After:
70060 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70061
70062 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70063
70064 commit f48070fe5fe440dfb5ee5268c920de70e48ea327
70065 Author: Jon Loeliger <jdl@jdl.com>
70066 Date: Mon Jun 11 19:03:08 2007 -0500
70067
70068 cpu/mpc*/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70069
70070 This is a compatibility step that allows both the older form
70071 and the new form to co-exist for a while until the older can
70072 be removed entirely.
70073
70074 All transformations are of the form:
70075 Before:
70076 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70077 After:
70078 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70079
70080 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70081
70082 commit 0c505db0a0dc1f670b13ce3b4d3fbf1ec5b3cbd2
70083 Author: Jon Loeliger <jdl@jdl.com>
70084 Date: Mon Jun 11 19:03:03 2007 -0500
70085
70086 lib_*/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70087
70088 This is a compatibility step that allows both the older form
70089 and the new form to co-exist for a while until the older can
70090 be removed entirely.
70091
70092 All transformations are of the form:
70093 Before:
70094 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70095 After:
70096 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70097
70098 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70099
70100 commit 73f032021ec5f13cda8faa4e34b6de80960eb86f
70101 Author: Jon Loeliger <jdl@jdl.com>
70102 Date: Mon Jun 11 19:02:58 2007 -0500
70103
70104 lib_ppc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70105
70106 This is a compatibility step that allows both the older form
70107 and the new form to co-exist for a while until the older can
70108 be removed entirely.
70109
70110 All transformations are of the form:
70111 Before:
70112 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70113 After:
70114 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70115
70116 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70117
70118 commit 98b79003c21c2578206003256de4e781d6b36ca8
70119 Author: Jon Loeliger <jdl@jdl.com>
70120 Date: Mon Jun 11 19:02:53 2007 -0500
70121
70122 rtc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70123
70124 This is a compatibility step that allows both the older form
70125 and the new form to co-exist for a while until the older can
70126 be removed entirely.
70127
70128 All transformations are of the form:
70129 Before:
70130 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70131 After:
70132 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70133
70134 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70135
70136 commit 6e2115acb6a892d53a6881bf253ae41d3df39156
70137 Author: Jon Loeliger <jdl@jdl.com>
70138 Date: Mon Jun 11 19:02:49 2007 -0500
70139
70140 net/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70141
70142 This is a compatibility step that allows both the older form
70143 and the new form to co-exist for a while until the older can
70144 be removed entirely.
70145
70146 All transformations are of the form:
70147 Before:
70148 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70149 After:
70150 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70151
70152 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70153
70154 commit 45cdb9b72c94655c7308b464a2666057c0b286e0
70155 Author: Jon Loeliger <jdl@jdl.com>
70156 Date: Mon Jun 11 19:02:34 2007 -0500
70157
70158 disk/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70159
70160 This is a compatibility step that allows both the older form
70161 and the new form to co-exist for a while until the older can
70162 be removed entirely.
70163
70164 All transformations are of the form:
70165 Before:
70166 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70167 After:
70168 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70169
70170 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70171
70172 commit 4e109ae98294a5ca7ff848b7652c7bfd4023a94a
70173 Author: Jon Loeliger <jdl@jdl.com>
70174 Date: Mon Jun 11 19:02:20 2007 -0500
70175
70176 fs/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70177
70178 This is a compatibility step that allows both the older form
70179 and the new form to co-exist for a while until the older can
70180 be removed entirely.
70181
70182 All transformations are of the form:
70183 Before:
70184 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70185 After:
70186 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70187
70188 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70189
70190 commit d5be43de93ff905c465e509d45a3164ef48d26e7
70191 Author: Jon Loeliger <jdl@jdl.com>
70192 Date: Mon Jun 11 19:02:10 2007 -0500
70193
70194 drivers/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70195
70196 This is a compatibility step that allows both the older form
70197 and the new form to co-exist for a while until the older can
70198 be removed entirely.
70199
70200 All transformations are of the form:
70201 Before:
70202 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70203 After:
70204 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70205
70206 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70207
70208 commit b453960d4fdb87b3970d96119b90df2ed024fc4a
70209 Author: Jon Loeliger <jdl@jdl.com>
70210 Date: Mon Jun 11 19:02:05 2007 -0500
70211
70212 common/ non-cmd: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70213
70214 This is a compatibility step that allows both the older form
70215 and the new form to co-exist for a while until the older can
70216 be removed entirely.
70217
70218 All transformations are of the form:
70219 Before:
70220 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70221 After:
70222 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70223
70224 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70225
70226 commit 65c450b47a62659d522cfa8f4fa1e4e5c60dccd0
70227 Author: Jon Loeliger <jdl@jdl.com>
70228 Date: Mon Jun 11 19:01:54 2007 -0500
70229
70230 common/cmd_[i-z]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70231
70232 This is a compatibility step that allows both the older form
70233 and the new form to co-exist for a while until the older can
70234 be removed entirely.
70235
70236 All transformations are of the form:
70237 Before:
70238 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70239 After:
70240 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70241
70242 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70243
70244 commit a76adc8142c1d956385a109e0b70f9319ede4d66
70245 Author: Jon Loeliger <jdl@jdl.com>
70246 Date: Mon Jun 11 19:01:43 2007 -0500
70247
70248 common/cmd_[a-f]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70249
70250 This is a compatibility step that allows both the older form
70251 and the new form to co-exist for a while until the older can
70252 be removed entirely.
70253
70254 All transformations are of the form:
70255 Before:
70256 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70257 After:
70258 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70259
70260 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70261
70262 commit ec63b10b61fd68238d4c15c1cd04c0b38228e2c1
70263 Author: Jon Loeliger <jdl@jdl.com>
70264 Date: Mon Jun 11 19:01:34 2007 -0500
70265
70266 Introduce initial versions of new Command Config files.
70267
70268 Derive three new files from cmd_confdefs.h:
70269 config_bootp.h - Has BOOTP related config options, not commands
70270 config_cmd_all.h - Has a CONFIG_CMD_* definition for every command
70271 config_cmd_default.h - Has a CONFIG_CMD_* definition for default cmds.
70272
70273 For now, include "config_bootp.h" for compatability until all
70274 users of it directly include it properly.
70275
70276 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70277
70278 commit 1f2a05898658900dc5717761e27abf2052e67e13
70279 Author: Mushtaq Khan <mushtaqk_921@yahoo.co.in>
70280 Date: Sat Jun 30 18:50:48 2007 +0200
70281
70282 Fix S-ATA support.
70283
70284 Signed-off-by: mushtaq khan <mushtaqk_921@yahoo.co.in>
70285
70286 commit a5d71e290f3673269be8eefb4ec44f53412f9461
70287 Author: Heiko Schocher <hs@pollux.denx.de>
70288 Date: Mon Jun 25 19:11:37 2007 +0200
70289
70290 [PCS440EP] get rid of CONFIG_PPC4xx_USE_SPD_DDR_INIT_HANG
70291
70292 Signed-off-by: Heiko Schocher <hs@denx.de>
70293
70294 commit a1bd6200eccd3a02040a955d5f43d3ee1fc9f93b
70295 Author: Niklaus Giger <niklaus.giger@nestal.com>
70296 Date: Mon Jun 25 17:03:13 2007 +0200
70297
70298 ppc4xx: PPC440EPx Emit DDR0 registers on machine check interrupt
70299
70300 This patch prints the DDR status registers upon machine check
70301 interrupt on the 440EPx/GRx. This can be useful especially when
70302 ECC support is enabled.
70303
70304 I added some small changes to the original patch from Niklaus to
70305 make it compile clean.
70306
70307 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
70308 Signed-off-by: Stefan Roese <sr@denx.de>
70309
70310 commit 807018fb7faceb429ce0cb47baa2073746b33a4e
70311 Author: Niklaus Giger <niklaus.giger@nestal.com>
70312 Date: Mon Jun 25 16:50:55 2007 +0200
70313
70314 ppc4xx: Fix O=buildir builds
70315
70316 This patch fixes the problem to assemble cpu/ppc4xx/start.S
70317 experienced last week where building failed having specified
70318 O=../build.sequoia.
70319
70320 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
70321
70322 commit 466fff1a7bb5fe764a06450626f6098219f446b8
70323 Author: Stefan Roese <sr@denx.de>
70324 Date: Mon Jun 25 15:57:39 2007 +0200
70325
70326 ppc4xx: Add pci_pre_init() for 405 boards
70327
70328 This patch removes the CFG_PCI_PRE_INIT option completely, since
70329 it's not needed anymore with the patch from Matthias Fuchs with
70330 the "weak" pci_pre_init() implementation.
70331
70332 Signed-off-by: Stefan Roese <sr@denx.de>
70333
70334 commit 6f35c53166213c24a5a0e2390ed861136ff73870
70335 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
70336 Date: Sun Jun 24 17:41:21 2007 +0200
70337
70338 ppc4xx: Maintenance patch for esd's CPCI405 derivats
70339
70340 -add pci_pre_init() for pci interrupt fixup code
70341 -disable phy sleep mode via reset_phy() function
70342 -use correct io accessors
70343 -cleanup
70344
70345 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
70346
70347 commit 5a1c9ff0c44305b57cb4d8f9369bba90bcf0e1f8
70348 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
70349 Date: Sun Jun 24 17:23:41 2007 +0200
70350
70351 ppc4xx: Add pci_pre_init() for 405 boards
70352
70353 This patch adds support for calling a plattform dependant
70354 pci_pre_init() function for 405 boards. This can be used to
70355 move the current pci_405gp_fixup_irq() function into the
70356 board code.
70357
70358 This patch also makes the CFG_PCI_PRE_INIT define obsolete.
70359 A default function with 'weak' attribute is used when
70360 a board specific pci_pre_init() is not implemented.
70361
70362 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
70363
70364 commit 1636d1c8529c006d106287cfbc20cd0a246fe1cb
70365 Author: Wolfgang Denk <wd@denx.de>
70366 Date: Fri Jun 22 23:59:00 2007 +0200
70367
70368 Coding stylke cleanup; rebuild CHANGELOG
70369
70370 commit 2dc64451b4c08ffd619372abfdc2506a2e2363b9
70371 Author: Igor Lisitsin <igor@emcraft.com>
70372 Date: Wed Apr 18 14:55:19 2007 +0400
70373
70374 Adapt log buffer code to support Linux 2.6
70375
70376 A new environment variable, "logversion", selects the log buffer
70377 behaviour. If it is not set or set to a value other than 2, then the
70378 old, Linux 2.4.4, behaviour is selected.
70379
70380 Signed-off-by: Igor Lisitsin <igor@emcraft.com>
70381 --
70382
70383 commit a11e06965ec91270c51853407ff1261d3c740386
70384 Author: Igor Lisitsin <igor@emcraft.com>
70385 Date: Wed Mar 28 19:06:19 2007 +0400
70386
70387 Extend POST support for PPC440
70388
70389 Added memory, CPU, UART, I2C and SPR POST tests for PPC440.
70390
70391 Signed-off-by: Igor Lisitsin <igor@emcraft.com>
70392 --
70393
70394 commit 566a494f592ae3b3c0785d90d4e1ba45574880c4
70395 Author: Heiko Schocher <hs@pollux.denx.de>
70396 Date: Fri Jun 22 19:11:54 2007 +0200
70397
70398 [PCS440EP] upgrade the PCS440EP board:
70399 - Show on the Status LEDs, some States of the board.
70400 - Get the MAC addresses from the EEProm
70401 - use PREBOOT
70402 - use the CF on the board.
70403 - check the U-Boot image in the Flash with a SHA1
70404 checksum.
70405 - use dynamic TLB entries generation for the SDRAM
70406
70407 Signed-off-by: Heiko Schocher <hs@denx.de>
70408
70409 commit 3a1f5c81b0b9557817a789bece839905581c2205
70410 Author: Stefan Roese <sr@denx.de>
70411 Date: Fri Jun 22 16:58:40 2007 +0200
70412
70413 ppc4xx: Fix problem with extended program_tlb() funtion
70414
70415 The recently extended program_tlb() function had a problem when
70416 multiple TLB's had to be setup (for example with 512MB of SDRAM). The
70417 virtual address was not incremented. This patch fixes this issue
70418 and is tested on Katmai with 512MB SDRAM.
70419
70420 Signed-off-by: Stefan Roese <sr@denx.de>
70421
70422 commit 02032e8f14751a1a751b09240a4f1cf9f8a2077f
70423 Author: Rafal Jaworowski <raj@semihalf.com>
70424 Date: Fri Jun 22 14:58:04 2007 +0200
70425
70426 [ppc] Fix build breakage for all non-4xx PowerPC variants.
70427
70428 - adapt to the more generic EXCEPTION_PROLOG and CRIT_EXCEPTION macros
70429 - minor 4xx cleanup
70430
70431 commit d677b32855f577ae2690dcd64a172cdd706e0ffc
70432 Author: Mike Frysinger <vapier@gentoo.org>
70433 Date: Fri Jun 22 10:34:12 2007 +0200
70434
70435 [patch] add nand_init() prototype to nand.h
70436
70437 since nand_init() is expected to be called by other parts of u-boot, there
70438 should be a prototype for it in nand.h
70439
70440 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
70441 Signed-off-by: Stefan Roese <sr@denx.de>
70442
70443 commit 83b4cfa3d629dff0264366263c5e94d9a50ad80b
70444 Author: Wolfgang Denk <wd@denx.de>
70445 Date: Wed Jun 20 18:14:24 2007 +0200
70446
70447 Coding style cleanup. Refresh CHANGELOG.
70448
70449 commit b3f9ec86e388207fd03dcdf7b145b9ed080bf024
70450 Author: Stefan Roese <sr@denx.de>
70451 Date: Tue Jun 19 17:22:44 2007 +0200
70452
70453 ppc4xx: Add bootstrap command for AMCC Sequoia (440EPx) eval board
70454
70455 This patch adds a board command to configure the I2C bootstrap EEPROM
70456 values. Right now 533 and 667MHz are supported for booting either via NOR
70457 or NAND FLASH. Here the usage:
70458
70459 => bootstrap 533 nor ;to configure the board for 533MHz NOR booting
70460 => bootstrap 667 nand ;to configure the board for 667MHz NNAND booting
70461
70462 Signed-off-by: Stefan Roese <sr@denx.de>
70463
70464 commit df8a24cdd30151505cf57bbee5289e91bf53bd1b
70465 Author: Stefan Roese <sr@denx.de>
70466 Date: Tue Jun 19 16:42:31 2007 +0200
70467
70468 [ppc4xx] Fix problem with NAND booting on AMCC Acadia
70469
70470 The latest changes showed a problem with the location of the NAND-SPL
70471 image in the OCM and the init-data area (incl. cache). This patch
70472 fixes this problem.
70473
70474 Signed-off-by: Stefan Roese <sr@denx.de>
70475
70476 commit 86ba99e34194394052d24c04dc40d1263d29a26f
70477 Author: Stefan Roese <sr@denx.de>
70478 Date: Tue Jun 19 16:40:58 2007 +0200
70479
70480 [ppc4xx] Change board/amcc/acadia/cpr.c to pll.c
70481
70482 Signed-off-by: Stefan Roese <sr@denx.de>
70483
70484 commit 8e585f02f82c17cc66cd229dbf0fd3066bbbf658
70485 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
70486 Date: Mon Jun 18 13:50:13 2007 -0500
70487
70488 Added M5329AFEE and M5329BFEE Platforms
70489
70490 Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
70491 drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
70492 include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
70493 rtc/mcfrtc.c
70494
70495 Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
70496 common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
70497 include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
70498 include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
70499 include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
70500 lib_m68k/time.c, net/eth.c and rtc/Makefile
70501
70502 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
70503
70504 commit 093172f08d6afb3f34d8a2f26ee0ee874261cf27
70505 Author: Michal Simek <monstr@monstr.eu>
70506 Date: Sun Jun 17 19:04:11 2007 +0200
70507
70508 [fix] email reparation
70509
70510 commit 3666afffe7baf859c6ae0ce2bebbc8ab7e512ddc
70511 Author: Michal Simek <monstr@monstr.eu>
70512 Date: Sun Jun 17 19:03:21 2007 +0200
70513
70514 [FIX] fix microblaze file permitission
70515
70516 commit e73846b7cf1e29ae635bf9bb5570269663df2ee5
70517 Author: Stefan Roese <sr@denx.de>
70518 Date: Fri Jun 15 11:33:41 2007 +0200
70519
70520 [ppc4xx] Change lwmon5 port to work with recent 440 exception rework
70521
70522 Now CONFIG_440 has to be defined in all PPC440 board config files.
70523
70524 Signed-off-by: Stefan Roese <sr@denx.de>
70525
70526 commit efa35cf12d914d4caba942acd5a6c45f217de302
70527 Author: Grzegorz Bernacki <gjb@semihalf.com>
70528 Date: Fri Jun 15 11:19:28 2007 +0200
70529
70530 ppc4xx: Clean up 440 exceptions handling
70531
70532 - Introduced dedicated switches for building 440 and 405 images required
70533 for 440-specific machine instructions like 'rfmci' etc.
70534
70535 - Exception vectors moved to the proper location (_start moved away from
70536 the critical exception handler space, which it occupied)
70537
70538 - CriticalInput now serviced (with default handler)
70539
70540 - MachineCheck properly serviced (added a dedicated handler and return
70541 subroutine)
70542
70543 - Overall cleanup of exceptions declared with STD_EXCEPTION macro (unused,
70544 unhandled and those not relevant for 4xx were eliminated)
70545
70546 - Eliminated Linux leftovers, removed dead code
70547
70548 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
70549 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
70550 Signed-off-by: Stefan Roese <sr@denx.de>
70551
70552 commit b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2
70553 Author: Stefan Roese <sr@denx.de>
70554 Date: Fri Jun 15 08:18:01 2007 +0200
70555
70556 [ppc4xx] Add initial lwmon5 board support
70557
70558 This patch adds initial support for the Liebherr lwmon5 board euqipped
70559 with an AMCC 440EPx PowerPC.
70560
70561 Signed-off-by: Stefan Roese <sr@denx.de>
70562
70563 commit 85f737376d5ff3d5f0d45a8b657686326d175307
70564 Author: Stefan Roese <sr@denx.de>
70565 Date: Fri Jun 15 07:39:43 2007 +0200
70566
70567 [ppc4xx] Extend 44x GPIO setup with default output state
70568
70569 The board config array CFG_440_GPIO_TABLE for the ppc440 GPIO setup
70570 is extended with the default GPIO output state (level).
70571
70572 Signed-off-by: Stefan Roese <sr@denx.de>
70573
70574 commit dbca208518e5e7f01a6420588d1cd6e60db74c2b
70575 Author: Stefan Roese <sr@denx.de>
70576 Date: Thu Jun 14 11:14:32 2007 +0200
70577
70578 [ppc4xx] Extend program_tlb() with virtual & physical addresses
70579
70580 Now program_tlb() allows to program a TLB (or multiple) with
70581 different virtual and physical addresses. With this change, now one
70582 physical region (e.g. SDRAM) can be mapped 2 times, once with caches
70583 diabled and once with caches enabled.
70584
70585 Signed-off-by: Stefan Roese <sr@denx.de>
70586
70587 commit 9912121f7ed804ea58fd62f3f230b5dcfc357d88
70588 Author: Detlev Zundel <dzu@denx.de>
70589 Date: Wed May 23 19:02:41 2007 +0200
70590
70591 Change 'repeatable' attribute of some commands to sensible values.
70592
70593 Most prominently this changes 'erase' to be non-repeatable.
70594
70595 Signed-off-by: Detlev Zundel <dzu@denx.de>
70596
70597 commit 5afb202093f6a001797db92cf695b93a70ea9ab4
70598 Author: Detlev Zundel <dzu@denx.de>
70599 Date: Wed May 23 18:47:48 2007 +0200
70600
70601 Fix 'run' not to continue after interrupted command
70602
70603 Signed-off-by: Detlev Zundel <dzu@denx.de>
70604
70605 commit 9b7464a2c88614e1061f509c48930a3d240d1a35
70606 Author: Jason Jin <Jason.jin@freescale.com>
70607 Date: Mon Jun 11 15:14:24 2007 +0200
70608
70609 USB: This patch fix readl in ohci swap reg access.
70610
70611 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
70612
70613 commit 8f8416fada9faf94b9a92f21fe6000643cb521d5
70614 Author: Bartlomiej Sieka <tur@semihalf.com>
70615 Date: Fri Jun 8 14:52:22 2007 +0200
70616
70617 TQM5200: Add Flat Device Tree support, update default env. accordingly.
70618
70619 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
70620 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
70621
70622 commit 9045f33c023f698660a2e45d1b2194c0711abebc
70623 Author: Wolfgang Denk <wd@denx.de>
70624 Date: Fri Jun 8 10:24:58 2007 +0200
70625
70626 Fix config problems on SC3 board; make ide_reset_timeout work.
70627
70628 commit fba3fb0449b8a54542aed1e729de76e7f5a2ff1b
70629 Author: Benoît Monin <bmonin@adeneo.eu>
70630 Date: Fri Jun 8 09:55:24 2007 +0200
70631
70632 [PATCH] fix gpio setting when using CFG_440_GPIO_TABLE
70633
70634 Set the correct value in GPIOx_TCR when configuring the gpio
70635 with CFG_440_GPIO_TABLE.
70636
70637 Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
70638 Signed-off-by: Stefan Roese <sr@denx.de>
70639
70640 commit f539edc076cfe52bff919dd512ba8d7af0e22092
70641 Author: Vadim Bendebury <vbendeb@google.com>
70642 Date: Thu May 24 15:52:25 2007 -0700
70643
70644 cosmetic changes to bcm570x driver
70645
70646 This is a cosmetic only changes submission.
70647 It affects files relevant to bcm570x driver.
70648 the commands used to generate this change was
70649
70650 cd drivers
70651 Lindent -pcs -l80 bcm570x.c bcm570x_lm.h bcm570x_mm.h tigon3.c tigon3.h
70652
70653 The BMW target (the only one using this chip so far) builds cleanly, the
70654 `before and after' generated object files for drivers/bcm570x.c and
70655 drivers/tigon3.o are identical as reported by objdump -d
70656
70657 Signed-off-by: Vadim Bendebury <vbendeb@google.com>
70658 Signed-off-by: Ben Warren <bwarren@qstreams.com>
70659
70660 commit 725671ccd2cd04c9ebc50c9e5a94dd8cbade66b7
70661 Author: Wolfgang Denk <wd@denx.de>
70662 Date: Wed Jun 6 16:26:56 2007 +0200
70663
70664 Coding Style cleanup; generate new CHANGELOG file.
70665
70666 Signed-off-by: Wolfgang Denk <wd@denx.de>
70667
70668 commit 19d763c35e0b5568eaf0b8adbf7a68ccfe7fa243
70669 Author: Markus Klotzbuecher <mk@denx.de>
70670 Date: Wed Jun 6 11:49:44 2007 +0200
70671
70672 TRAB, USB: update trab board configuration for use of generic ohci driver
70673
70674 commit dace45acd1c1357daa9322099d07c9a9e08b0024
70675 Author: Markus Klotzbuecher <mk@denx.de>
70676 Date: Wed Jun 6 11:49:43 2007 +0200
70677
70678 USB: ohci fixes and cleanup for ppc4xx and yosemite board.
70679
70680 commit 72657570b61635c74fa0c3f0e9e7d0671a9d08df
70681 Author: Markus Klotzbuecher <mk@denx.de>
70682 Date: Wed Jun 6 11:49:43 2007 +0200
70683
70684 USB: ohci fixes and cleanup for mpc5xxx and IceCube board config
70685
70686 commit fc43be478f2aa37ce38acd85355038866e4162af
70687 Author: Markus Klotzbuecher <mk@denx.de>
70688 Date: Wed Jun 6 11:49:35 2007 +0200
70689
70690 USB/OHCI: endianness cleanup in the generic ohci driver
70691
70692 commit c440bfe6d6d92d66478a7e84402b31f48413617b
70693 Author: Stefan Roese <sr@denx.de>
70694 Date: Wed Jun 6 11:42:13 2007 +0200
70695
70696 ppc4xx: Add NAND booting support for AMCC Acadia (405EZ) eval board
70697
70698 This patch adds NAND booting support for the AMCC Acadia eval board.
70699
70700 Please make sure to configure jumper J7 to position 2-3 when booting
70701 from NOR, and to position 1-2 when booting for NAND.
70702
70703 I also added a board command to configure the I2C bootstrap EEPROM
70704 values. Right now only 267MHz is support for booting either via NOR
70705 or NAND FLASH. Here the usage:
70706
70707 => bootstrap 267 nor ;to configure the board for 267MHz NOR booting
70708 => bootstrap 267 nand ;to configure the board for 267MHz NNAND booting
70709
70710 Signed-off-by: Stefan Roese <sr@denx.de>
70711
70712 commit 18135125f909948b85d1d6881ab4ac0efb4a1c58
70713 Author: Rodolfo Giometti <giometti@linux.it>
70714 Date: Wed Jun 6 10:08:14 2007 +0200
70715
70716 Files include/linux/byteorder/{big,little}_endian.h define
70717 __BIG_ENDIAN and __LITTLE_ENDIAN.
70718
70719 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
70720
70721 commit a81d1c0b85b13e9d45f2d87de96a51a6e0ef0f82
70722 Author: Zhang Wei <wei.zhang@freescale.com>
70723 Date: Wed Jun 6 10:08:14 2007 +0200
70724
70725 Add USB PCI-OHCI, USB keyboard and event poll support to the
70726 MPC8641HPCN board config file.
70727
70728 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
70729
70730 commit 4dae14ce8fbdf380017dc54f172218e7d2acc889
70731 Author: Zhang Wei <wei.zhang@freescale.com>
70732 Date: Wed Jun 6 10:08:14 2007 +0200
70733
70734 USB PCI-OHCI, interrupt pipe and usb event poll support
70735
70736 This patch added USB PCI-OHCI chips support, interrupt pipe support
70737 and usb event poll support. For supporting the USB interrupt pipe, the
70738 globe urb_priv is moved to purb in ed struct. Now, we can process
70739 several urbs at one time. The interrupt pipe support codes are ported
70740 from Linux kernel 2.4.
70741
70742 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
70743
70744 commit fdcfaa1b02268b2899e374b35adf936c911a47eb
70745 Author: Zhang Wei <wei.zhang@freescale.com>
70746 Date: Wed Jun 6 10:08:13 2007 +0200
70747
70748 USB event poll support
70749
70750 This patch adds USB event poll support, which could be used in usbkbd
70751 and other usb devices driver when the asynchronous interrupt
70752 processing is supported.
70753
70754 Signed-off-by: Zhang Wei <wei.zhang@freescale.com
70755
70756 commit 9a1d00fa47c1e05e3fdb60b33213af4e18d4c18e
70757 Author: Rodolfo Giometti <giometti@linux.it>
70758 Date: Wed Jun 6 10:08:12 2007 +0200
70759
70760 ISP116x: delay for crappy USB keys
70761
70762 Using some (very) slow USB keys cause the USB host controller buffers
70763 are not ready to be read by the CPU so we need an extra delay before
70764 reading the USB storage data.
70765
70766 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
70767
70768 commit 09444143670c9c2243cb7aba9f70b3713d33bed1
70769 Author: Markus Klotzbuecher <mk@denx.de>
70770 Date: Wed Jun 6 10:08:12 2007 +0200
70771
70772 Change duplicate usb_cpu_init_fail to usb_board_init_fail
70773
70774 Thanks to Liew Tsi Chung <Tsi-chung.Liew@freescale.com> for pointing
70775 this out.
70776
70777 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
70778
70779 commit 32922cdc470fdfd39bea0c1c4f582d3fb340421e
70780 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
70781 Date: Tue Jun 5 12:30:52 2007 -0500
70782
70783 mpc8641 image size cleanup
70784
70785 e600 does not have a bootpg restriction.
70786 Move the version string to beginning of image at fff00000.
70787 Resetvec.S is not needed.
70788 Update flash copy instructions.
70789 Add tftpflash env variable
70790
70791 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
70792 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70793
70794 commit e3cbe1f93c5722f8ebbad468e30c069a2b511097
70795 Author: Benoît Monin <bmonin@adeneo.eu>
70796 Date: Mon Jun 4 08:36:05 2007 +0200
70797
70798 [PATCH] Fix ppc4xx bootstrap letter displayed on startup
70799
70800 The attached patch is mainly cosmetic, allowing u-boot to
70801 display the correct bootstrap option letter according to the
70802 datasheets.
70803
70804 The original patch was extended with 405EZ support by Stefan
70805 Roese.
70806
70807 Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
70808 Signed-off-by: Stefan Roese <sr@denx.de>
70809
70810 commit 5b1313fb2758ffce8b624457f777d8cc6709608d
70811 Author: Nikita V. Youshchenko <yoush@debian.org>
70812 Date: Wed May 23 12:45:19 2007 +0400
70813
70814 fix compilation problem for mpc8349itx CFG_RAMBOOT
70815
70816 Current include/configs/MPC8349ITX.h does contain some support for building
70817 image that will be started from memory (without putting in into flash).
70818 It could be triggered by building with TEXT_BASE set to a low value.
70819
70820 However, this support is incomplete: using of low TEXT_BASE causes
70821 defining configuration macros in inconsistent way, which later leads
70822 to compilation errors. In particular. flash support is being disabled,
70823 but then flash structures get referenced.
70824
70825 This patch fixes this, making it possible to build with low TEXT_BASE.
70826
70827 Signed-Off-By: Nikita Youshchenko <yoush@debian.org>
70828
70829 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
70830
70831 commit 8a364f0970de49949d635e60accf463c6443ef8c
70832 Author: Nikita V. Youshchenko <yoush@debian.org>
70833 Date: Wed May 23 12:45:25 2007 +0400
70834
70835 add missing 'console' var to default mpc8349itx config
70836
70837 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
70838
70839 commit 18d156eb37c90fadc8ec7a81a3b89176161f85b7
70840 Author: Stefan Roese <sr@denx.de>
70841 Date: Fri Jun 1 16:18:17 2007 +0200
70842
70843 ppc4xx: Add missing file for Bamboo NAND booting support
70844
70845 Signed-off-by: Stefan Roese <sr@denx.de>
70846
70847 commit 155a96478a0881e6da96cbbbcf34952d6a3b1b4b
70848 Author: Stefan Roese <sr@denx.de>
70849 Date: Fri Jun 1 15:58:19 2007 +0200
70850
70851 ppc4xx: Undo Sequoia patch for dynamic EBC speed support of 83MHz
70852
70853 This patch undoes the patch by Jeff Mann with commit-id ada4697d. As
70854 suggested by AMCC it is not recommended to dynamically change the EBC
70855 speed after bootup. So we undo this change to be on the safe side.
70856
70857 Signed-off-by: Stefan Roese <sr@denx.de>
70858
70859 commit 9d9096043e8f713d4bf1743d32e1459e6a11644b
70860 Author: Stefan Roese <sr@denx.de>
70861 Date: Fri Jun 1 15:29:04 2007 +0200
70862
70863 ppc4xx: Update Sequoia NAND booting support with ECC
70864
70865 Signed-off-by: Stefan Roese <sr@denx.de>
70866
70867 commit cf959c7d6687567c308e366e9581e1a5aff5cc5b
70868 Author: Stefan Roese <sr@denx.de>
70869 Date: Fri Jun 1 15:27:11 2007 +0200
70870
70871 ppc4xx: Add NAND booting support for AMCC Bamboo (440EP) eval board
70872
70873 This patch adds NAND booting support for the AMCC Bamboo eval board.
70874 Since the NAND-SPL boot image is limited to 4kbytes, this version
70875 only supports the onboard 64MBytes of DDR. The DIMM modules can't be
70876 supported, since the setup code for I2C DIMM autodetection and
70877 configuration is too big for this NAND bootloader.
70878
70879 Signed-off-by: Stefan Roese <sr@denx.de>
70880
70881 commit 42be56f53c8b107868e6125c8524ae84293e95a7
70882 Author: Stefan Roese <sr@denx.de>
70883 Date: Fri Jun 1 15:23:04 2007 +0200
70884
70885 NAND: Add ECC support to NAND booting support in nand_spl/nand_boot.c
70886
70887 The U-Boot NAND booting support is now extended to support ECC
70888 upon loading of the NAND U-Boot image.
70889
70890 Tested on AMCC Sequoia (440EPx) and Bamboo (440EP).
70891
70892 Signed-off-by: Stefan Roese <sr@denx.de>
70893
70894 commit a471db07fbb65a841ffc9f4f112562b945230f98
70895 Author: Stefan Roese <sr@denx.de>
70896 Date: Fri Jun 1 15:19:29 2007 +0200
70897
70898 ppc4xx: Prepare Bamboo port for NAND booting support
70899
70900 This patch updates the "normal" Bamboo NOR booting port, so
70901 that it is compatible with the coming soon NAND booting
70902 Bamboo port.
70903
70904 It also enables the 2nd NAND flash on the Bamboo.
70905
70906 Signed-off-by: Stefan Roese <sr@denx.de>
70907
70908 commit 53ad02103fb8be4138a9937a8ab91fcdff7b4987
70909 Author: Stefan Roese <sr@denx.de>
70910 Date: Fri Jun 1 15:16:58 2007 +0200
70911
70912 ppc4xx: Update in_be32() functions and friends to latest Linux version
70913
70914 Signed-off-by: Stefan Roese <sr@denx.de>
70915
70916 commit 91da09cfbce0c1de05d6d84aa8363d666fa7ea3c
70917 Author: Stefan Roese <sr@denx.de>
70918 Date: Fri Jun 1 15:15:12 2007 +0200
70919
70920 NAND: Add hardware ECC support to the PPC4xx NAND driver ndfc.c
70921
70922 This patch adds hardware ECC support to the NDFC driver. It also
70923 changes the register access from using the "simple" in32/out32
70924 functions to the in_be32/out_be32 functions, which make sure
70925 that the access is correctly synced. This is the only recommended
70926 access to SoC registers in the current Linux kernel.
70927
70928 Signed-off-by: Stefan Roese <sr@denx.de>
70929
70930 commit 17b5e862287cca76f19dcf8b741e61a7d06617f2
70931 Author: Stefan Roese <sr@denx.de>
70932 Date: Fri Jun 1 15:12:15 2007 +0200
70933
70934 NAND: Update nand_ecc.c to latest Linux version
70935
70936 This patch updates the nand_ecc code to the latest Linux version.
70937 The main reason for this is the more compact code. This makes
70938 it possible to include the ECC code into the NAND bootloader
70939 image (NAND_SPL) for PPC4xx.
70940
70941 Signed-off-by: Stefan Roese <sr@denx.de>
70942
70943 commit d2d432760d2199d0e8558fdd9d1789b8131abcf7
70944 Author: Stefan Roese <sr@denx.de>
70945 Date: Fri Jun 1 15:09:50 2007 +0200
70946
70947 ppc4xx: 44x DDR driver code cleanup and small fix for Bamboo
70948
70949 Signed-off-by: Stefan Roese <sr@denx.de>
70950
70951 commit e4bbed2803a2ad0521c7362f5d3e065f99abaedc
70952 Author: Stefan Roese <sr@denx.de>
70953 Date: Fri Jun 1 13:45:24 2007 +0200
70954
70955 ppc4xx: Change Luan config file to support ECC
70956
70957 With the updated 44x DDR2 driver the Luan board now supports
70958 ECC generation and checking.
70959
70960 Signed-off-by: Stefan Roese <sr@denx.de>
70961
70962 commit 7187db73491c8de0fb56efb5e5134ba5ec443089
70963 Author: Stefan Roese <sr@denx.de>
70964 Date: Fri Jun 1 13:45:00 2007 +0200
70965
70966 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
70967
70968 Add config option for 180 degree advance clock control as needed
70969 for the AMCC Luan eval board.
70970
70971 Signed-off-by: Stefan Roese <sr@denx.de>
70972
70973 commit ee1529838abbfaa35f14e3ffbeaaba693159475f
70974 Author: Wolfgang Denk <wd@denx.de>
70975 Date: Thu May 31 17:20:09 2007 +0200
70976
70977 Add support for STX GP3SSA (stxssa) Board with 4 MiB flash.
70978
70979 Signed-off-by: Wolfgang Denk <wd@denx.de>
70980
70981 commit 7049288fb1f16f1b317140226cdebd07bd416395
70982 Author: Bartlomiej Sieka <tur@semihalf.com>
70983 Date: Sun May 27 17:26:46 2007 +0200
70984
70985 Motion-PRO: Code cleanup, fix of a typo in OF_STDOUT_PATH.
70986
70987 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
70988
70989 commit 4520fd4d2c450da49637216aa0e53739b61c60ac
70990 Author: Bartlomiej Sieka <tur@semihalf.com>
70991 Date: Sun May 27 17:06:36 2007 +0200
70992
70993 Motion-PRO: Add support for redundant environment.
70994
70995 Enable redundant environment, add a MTD partition for it; also add env.
70996 variable command for passing MTD partitions to the kernel command line.
70997
70998 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
70999 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
71000
71001 commit a26eabeec31746f06d309103690892805696e344
71002 Author: Bartlomiej Sieka <tur@semihalf.com>
71003 Date: Sun May 27 17:05:11 2007 +0200
71004
71005 Motion-PRO: Change maximum console buffer size from 256 to 1024 bytes.
71006
71007 Allow passing longer command line to the kernel - useful especially
71008 for passing MTD partition layout.
71009
71010 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
71011 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
71012
71013 commit 9160b96f71483a116de81c68985e8ee306d36764
71014 Author: Bartlomiej Sieka <tur@semihalf.com>
71015 Date: Sun May 27 17:04:18 2007 +0200
71016
71017 Fix: Add missing NULL termination in strings expanded by macros parser.
71018
71019 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
71020 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
71021
71022 commit 630ec84aef7228fc1dbfb38dec78541403a786cd
71023 Author: Bartlomiej Sieka <tur@semihalf.com>
71024 Date: Sun May 27 17:03:37 2007 +0200
71025
71026 Motion-PRO: Update EEPROM's page write bits and write delay.
71027
71028 Change EEPROM configuration according to the datasheet: "The 24C01A and 24C02A
71029 have a page write capability of two bytes", and "This device offers fast (1ms)
71030 byte write". Add 3ms of extra delay.
71031
71032 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
71033 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
71034
71035 commit c00125e07c1ebc125bab40e1e18bceed8be0c162
71036 Author: Bartlomiej Sieka <tur@semihalf.com>
71037 Date: Sun May 27 16:58:45 2007 +0200
71038
71039 MPC5XXX, Motion-PRO: Fix PHY initialization problem.
71040
71041 After being reset in mpc5xxx_fec_init_phy(), PHY goes into FX mode, in which
71042 networking does not function. This commit switches PHY to TX mode by clearing
71043 the FX_SEL bit of Mode Control Register. It also reverses commit
71044 008861a2f3ef2c062744d733787c7e530a1b8761, i.e., a temporary workaround.
71045
71046 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
71047 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
71048
71049 commit 93b78f534a6e708b4cf1a4ffb4d8438c67a007db
71050 Author: Bartlomiej Sieka <tur@semihalf.com>
71051 Date: Sun May 27 16:57:15 2007 +0200
71052
71053 Motion-PRO: Add support for the temperature sensor.
71054
71055 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
71056 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
71057
71058 commit c75e639630cc132dc19cd1ecda5922c0db0bfbba
71059 Author: Bartlomiej Sieka <tur@semihalf.com>
71060 Date: Sun May 27 16:55:23 2007 +0200
71061
71062 Motion-PRO: Add displaying of CPLD revision information during boot.
71063
71064 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
71065 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
71066
71067 commit c99512d6bd3973f01ca2fc4896d829b46e68f150
71068 Author: Bartlomiej Sieka <tur@semihalf.com>
71069 Date: Sun May 27 16:53:43 2007 +0200
71070
71071 MPC5xxx: Change names of defines related to IPB and PCI clocks.
71072
71073 Both CFG_PCISPEED_66 and CFG_IPBSPEED_133 are misnamed, as defining
71074 them does not cause PCI or IPB clocks to run at the specified speed.
71075 Instead, they configure divisors used to calculate said clocks. This
71076 patch renames the defines according to their real function.
71077
71078 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
71079 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
71080
71081 commit a11c0b85dc3664bb3c1e781137118730c8f619ab
71082 Author: Bartlomiej Sieka <tur@semihalf.com>
71083 Date: Sun May 27 16:51:48 2007 +0200
71084
71085 Motion-PRO: Add LED support.
71086
71087 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
71088 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
71089 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
71090
71091 commit 7ebb4479b07ff294eb4d76e420753a0349f7c93b
71092 Author: Ulf Samuelsson <ulf@atmel.com>
71093 Date: Thu May 24 12:12:47 2007 +0200
71094
71095 [PATCH][NAND] Define the Vendor Id for Micron NAND Flash
71096
71097 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
71098 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
71099 Signed-off-by: Stefan Roese <sr@denx.de>
71100
71101 commit d756894722c888d09a9fa1df8323753772d3dcce
71102 Author: Stefan Roese <sr@denx.de>
71103 Date: Thu May 24 09:49:00 2007 +0200
71104
71105 ppc4xx: Fix small 405EZ OCM initilization bug in start.S
71106
71107 As pointed out by Bruce Adler <bruce.adler@acm.org> this patch
71108 fixes a small bug in the 405EZ OCM initialization. Thanks for
71109 spotting.
71110
71111 Signed-off-by: Stefan Roese <sr@denx.de>
71112
71113 commit 5d4a179013d59a76446462e1eb0a969fba63eb81
71114 Author: Stefan Roese <sr@denx.de>
71115 Date: Thu May 24 08:22:09 2007 +0200
71116
71117 ppc4xx: Update AMCC Acadia support for board revision 1.1
71118
71119 This patch updates the Acadia (405EZ) support for the new 1.1 board
71120 revision. It also adds support for NAND FLASH via the 4xx NDFC.
71121
71122 Please note that the jumper J7 must be in position 2-3 for this
71123 NAND support. Position 1-2 is for NAND booting only. NAND booting
71124 support will follow later.
71125
71126 Signed-off-by: Stefan Roese <sr@denx.de>
71127
71128 commit 822d55365bb557e084d0e33625a6dedcc866110b
71129 Author: Jon Loeliger <jdl@freescale.com>
71130 Date: Wed May 23 14:09:46 2007 -0500
71131
71132 Add LIST_86xx MAKEALL target for PowerPC builds.
71133
71134 Signed-off-by: Jon Loeliger <jdl@freescale.com>
71135
71136 commit 9f0077abd69f7a7c756a915b961037302be3e6f2
71137 Author: Stefan Roese <sr@denx.de>
71138 Date: Tue May 22 12:48:09 2007 +0200
71139
71140 ppc4xx: Use do { ... } while (0) for CPR & SDR access macros
71141
71142 Signed-off-by: Stefan Roese <sr@denx.de>
71143
71144 commit 6f3dfc139a838b0841c151efe00ad47db2366e79
71145 Author: Stefan Roese <sr@denx.de>
71146 Date: Tue May 22 12:46:10 2007 +0200
71147
71148 ppc4xx: Add 405 support to 4xx NAND driver ndfc.c
71149
71150 This patch adds support for 405 PPC's to the 4xx NAND driver
71151 ndfc.c. This is in preparation for the new AMCC 405EZ.
71152
71153 Signed-off-by: Stefan Roese <sr@denx.de>
71154
71155 commit 10603d76767426be803dadd4fb688b97eb69481c
71156 Author: Stefan Roese <sr@denx.de>
71157 Date: Mon May 21 07:41:22 2007 +0200
71158
71159 ppc4xx: Fix problem in 405EZ OCM initialization
71160
71161 As spotted by Bruce Adler this patch fixes an initialization problem
71162 for the 405EZ OCM.
71163
71164 Signed-off-by: Stefan Roese <sr@denx.de>
71165
71166 commit 3e3b956906eba9e4ad7931581ecedaad10eccce8
71167 Author: Peter Pearse <peter.pearse@arm.com>
71168 Date: Fri May 18 16:47:03 2007 +0100
71169
71170 Reduce line lengths to 80 characters max.
71171
71172 commit 93ef45c9ddfdd9fc17c4e74bd8e2f2456580eb72
71173 Author: Peter Pearse <peter.pearse@arm.com>
71174 Date: Fri May 18 14:34:07 2007 +0100
71175
71176 Makefile permissions
71177
71178 commit 1443a31457d68f7e8f0b9403e9832ec1e79dc59d
71179 Author: Peter Pearse <peter.pearse@arm.com>
71180 Date: Fri May 18 14:33:11 2007 +0100
71181
71182 Makefile permissions
71183
71184 commit 255a3577c848706441daee0174543efe205a77f8
71185 Author: Kim Phillips <kim.phillips@freescale.com>
71186 Date: Wed May 16 16:52:19 2007 -0500
71187
71188 Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx
71189
71190 For all practical u-boot purposes, TSECs don't differ throughout the
71191 mpc8[356]xx families; reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx.
71192
71193 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71194
71195 commit 70124c2602ae2d4c5d3dba05b482d91548242de8
71196 Author: Stefano Babic <sbabic@denx.de>
71197 Date: Wed May 16 14:49:12 2007 +0200
71198
71199 Fix compile problem cause my Microblaze merge
71200
71201 Signed-off-by: Stefano Babic <sbabic@denx.de>
71202
71203 commit ada4697d0230d6da552867777f98a67ec3ba2579
71204 Author: Jeffrey Mann <mannj@embeddedplanet.com>
71205 Date: Wed May 16 13:23:10 2007 +0200
71206
71207 [PATCH] Run new sequoia boards with an EBC speed of 83MHz
71208
71209 Because the Sequoia board does not boot with an EBC faster than 66MHz,
71210 the clock divider are changed after the initial boot process.
71211
71212 This allows for maximum clocking speeds to be achieved on newer boards.
71213 Sequoia boards with 666.66 MHz processors require that the EBC divider
71214 be set to 3 in order to start the initial boot process at a slower EBC
71215 speed. After the initial boot process, the divider can be set back to 2,
71216 which will cause the boards to run at 83.333MHz. This is backward
71217 compatible with boards with 533.33 MHz processors, as these boards will
71218 already be set with an EBC divider of 2.
71219
71220 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
71221
71222 commit a7676ea7732f3c596805079fed7e5c9fac652cfc
71223 Author: Wolfgang Denk <wd@denx.de>
71224 Date: Wed May 16 01:16:53 2007 +0200
71225
71226 Minor Coding Style cleanup, update CHANGELOG.
71227
71228 Signed-off-by: Wolfgang Denk <wd@denx.de>
71229
71230 commit d62f64cc23a940eafe712c776b3249e4160753d1
71231 Author: Wolfgang Denk <wd@denx.de>
71232 Date: Wed May 16 00:13:33 2007 +0200
71233
71234 Coding Style Cleanup, new CHANGELOG
71235
71236 commit 3162eb836903c8b247fdc7470dd39bfa6996f495
71237 Author: Wolfgang Denk <wd@denx.de>
71238 Date: Tue May 15 23:38:05 2007 +0200
71239
71240 Minor coding style cleanup.
71241
71242 commit 66d9dbec1cc27d6398ee6cf84639dbe14971251e
71243 Author: mushtaq khan <mushtaq_k@procsys.com>
71244 Date: Fri Apr 20 14:23:02 2007 +0530
71245
71246 Add driver for S-ATA-controller on Intel processors with South
71247 Bridge, ICH-5, ICH-6 and ICH-7.
71248
71249 Implementation:
71250
71251 1. Code is divided in to two files. All functions, which are
71252 controller specific are kept in "drivers/ata_piix.c" file and
71253 functions, which are not controller specific, are kept in
71254 "common/cmd_sata.c" file.
71255
71256 2. Reading and Writing from the S-ATA drive is done using PIO method.
71257
71258 3. Driver can be configured for 48-bit addressing by defining macro
71259 CONFIG_LBA48, if this macro is not defined driver uses the 28-bit
71260 addressing.
71261
71262 4. S-ATA read function is hooked to the File system, commands like
71263 ext2ls and ext2load file can be used. This has been tested.
71264
71265 5. U-Boot command "SATA_init" is added, which initializes the S-ATA
71266 controller and identifies the S-ATA drives connected to it.
71267
71268 6. U-Boot command "sata" is added, which is used to read/write, print
71269 partition table and get info about the drives present. This I have
71270 implemented in same way as "ide" command is implemented in U-Boot.
71271
71272 7. This driver is for S-ATA in native mode.
71273
71274 8. This driver does not support the Native command queuing and
71275 Hot-plugging.
71276
71277 Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
71278
71279 commit 644e6fb4eb8be90ea04ba34b643a8bf019d680e0
71280 Author: mushtaq khan <mushtaq_k@procsys.com>
71281 Date: Mon Apr 30 15:57:22 2007 +0530
71282
71283 Fixes bug clearing the bss section for i386
71284
71285 Hi,
71286 There is a bug in the code of clearing the bss section for processor
71287 i386.(File: cpu/i386/start.S)
71288 In the code, bss_start addr (starting addr of bss section) is put into
71289 the register %eax, but the code which clears the bss section refers to
71290 the addr pointed by %edi.
71291
71292 This patch fixes this bug by putting bss_start into %edi register.
71293
71294 Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
71295
71296 commit c3243cf7b490057277d61acffe4ad0946f9eb4a4
71297 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
71298 Date: Mon Apr 30 16:47:28 2007 -0500
71299
71300 Add support for BCM5464 Quad Phy
71301
71302 Added support for Broadcom's BCM5464 Quad Phy
71303
71304 Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
71305
71306 commit 1b305bdc754c8468e1d5d858f5dcf8a7a0a4bb7a
71307 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
71308 Date: Wed May 9 08:10:57 2007 +0800
71309
71310 Search the exception table with linear algorithm
71311
71312 Search the exception table with linear algorithm instead of
71313 bisecting algorithm.
71314 Because the exception table might be unsorted.
71315
71316 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
71317
71318 commit 5dfaa50eb819686bfba1927e8c5b8a70a4d65fd3
71319 Author: Aubrey.Li <aubrey.adi@gmail.com>
71320 Date: Mon May 14 11:47:35 2007 +0800
71321
71322 Fix compilation issues on MACOSX
71323
71324 Singed-off-by: Marc Hoffman <Marc.Hoffman@analog.com>
71325 Signed-off-by: Aubrey Li <aubrey.adi@gmail.com>
71326
71327 commit 56fd7162985c412317bbf763a225fba23c64fd31
71328 Author: Stephen Williams <steve@icarus.com>
71329 Date: Tue May 15 07:55:42 2007 -0700
71330
71331 Fix for compile of JSE target
71332
71333 The attached patch fixes the compile of the JSE board in the
71334 denx git as of 14 may 2007. It is an extremely simple patch,
71335 it just adds the missing define of CFG_SYSTEMACE_WIDTH.
71336
71337 Fix to compile JSE against 20070514 git of u-boot
71338
71339 commit 69df3c4da0c93017cceb25a366e794570bd0ed98
71340 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
71341 Date: Sun May 13 21:01:03 2007 +0900
71342
71343 sh: MS7750SE support.
71344
71345 This adds support for the Hitachi MS7750SE.
71346
71347 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
71348
71349 commit 0b135cfc2e524dc249b75057b55dd4cc09842e27
71350 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
71351 Date: Sun May 13 20:58:00 2007 +0900
71352
71353 sh: First support code of SuperH.
71354
71355 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
71356
71357 commit 61936667e86a250ae12fd2dc189d3588f0a59e0b
71358 Author: Stefan Roese <sr@denx.de>
71359 Date: Fri May 11 12:01:49 2007 +0200
71360
71361 ppc4xx: Add mtcpr/mfcpr access macros
71362
71363 Signed-off-by: Stefan Roese <sr@denx.de>
71364
71365 commit 343c48bd84606c4025c8a7c7263fda465d6e284c
71366 Author: Stefan Roese <sr@denx.de>
71367 Date: Fri May 11 12:01:06 2007 +0200
71368
71369 ppc4xx: Set bd->bi_pci_busfreq on 440EPx/GRx too
71370
71371 Signed-off-by: Stefan Roese <sr@denx.de>
71372
71373 commit 7d98ba770a7eaefa29ce927f31a0956df85bf650
71374 Author: Piotr Kruszynski <ppk@semihalf.com>
71375 Date: Thu May 10 16:55:52 2007 +0200
71376
71377 [Motion-PRO] Add MTD and JFFS2 support, also add default partition
71378 definition.
71379
71380 commit 65fb6a676e821f9570a2a376dc204bf611ce5f81
71381 Author: Peter Pearse <peter.pearse@arm.com>
71382 Date: Wed May 9 11:42:44 2007 +0100
71383
71384 Add the board directory for SMN42
71385
71386 commit 160131bf965785419626df6c388729fe0b597992
71387 Author: Peter Pearse <peter.pearse@arm.com>
71388 Date: Wed May 9 11:41:58 2007 +0100
71389
71390 Add the files for the SMN42 board
71391
71392 commit 5c6d2b5a500f8c49670de8910150b78a41f781fc
71393 Author: Peter Pearse <peter.pearse@arm.com>
71394 Date: Wed May 9 11:40:34 2007 +0100
71395
71396 Remove the deleted files for the SMN42 patch
71397
71398 commit b0d8f5bf0d215adc9424cb228b2484dbf07f7761
71399 Author: Peter Pearse <peter.pearse@arm.com>
71400 Date: Wed May 9 11:37:56 2007 +0100
71401
71402 New board SMN42 branch
71403
71404 commit 29f3be0caf0799ca6b89dfd9824c15619a50000f
71405 Author: Peter Pearse <peter.pearse@arm.com>
71406 Date: Wed May 9 10:24:38 2007 +0100
71407
71408 Makefile permissions
71409
71410 commit b84289b595731e8851df46e893845cc1322c9b9b
71411 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
71412 Date: Tue May 8 14:17:07 2007 -0500
71413
71414 8641hpcn: Fix Makefile after moving pixis to board/freescale.
71415
71416 The OBJTREE != SRCTREE build scenario was broken.
71417 This fixes it.
71418
71419 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
71420 Signed-off-by: Jon Loeliger <jdl@freescale.com>
71421
71422 commit e69f66c6ebe82bbbd1da766bc4eda40ec7ee5af1
71423 Author: Michal Simek <monstr@monstr.eu>
71424 Date: Tue May 8 15:57:43 2007 +0200
71425
71426 add: reading special purpose registers
71427
71428 commit 1a50f164beb065f360fbddb76029607d6b099698
71429 Author: Michal Simek <monstr@monstr.eu>
71430 Date: Tue May 8 14:52:52 2007 +0200
71431
71432 add: Microblaze V5 exception handling
71433
71434 commit ab874d5047e5d30dbc1e517ff26083efffa98ecb
71435 Author: Michal Simek <monstr@monstr.eu>
71436 Date: Tue May 8 14:39:11 2007 +0200
71437
71438 add: FSL control read and write
71439
71440 commit de1de02a7cbf05e6b63e0d8ffc624f12493f6ba3
71441 Author: Piotr Kruszynski <ppk@semihalf.com>
71442 Date: Tue May 8 13:05:44 2007 +0200
71443
71444 [Motion-PRO] Add support for I2C, EEPROM and RTC.
71445
71446 commit fa5c2ba123b1bf88455bfc21db5e786ca045029d
71447 Author: Bartlomiej Sieka <tur@semihalf.com>
71448 Date: Tue May 8 10:23:56 2007 +0200
71449
71450 [Motion-PRO] Add ATA support. Add CF-booting commands to the default
71451 environment.
71452
71453 commit 06241d50a3ab1b20a0b08baeeaffcaa23ae4b839
71454 Author: Bartlomiej Sieka <tur@semihalf.com>
71455 Date: Tue May 8 09:39:12 2007 +0200
71456
71457 [Motion-PRO] Change IPB clock frequency from 50MHz to 100MHz. This
71458 eliminates networking problems in Linux (timeouts).
71459
71460 commit 1f1369c34b629be94702684d41d3fddf0f6193e7
71461 Author: Bartlomiej Sieka <tur@semihalf.com>
71462 Date: Tue May 8 09:21:57 2007 +0200
71463
71464 [Motion-PRO] Enable Flat Device Tree support and modify default environment
71465 to allow booting of FDT-expecting kernels.
71466
71467 commit fb05f6da35ea1c15c553abe6f23f656bf18dc5db
71468 Author: Michal Simek <monstr@monstr.eu>
71469 Date: Mon May 7 23:58:31 2007 +0200
71470
71471 new: USE_MSR_INTR support
71472
71473 commit 008861a2f3ef2c062744d733787c7e530a1b8761
71474 Author: Bartlomiej Sieka <tur@semihalf.com>
71475 Date: Mon May 7 22:36:15 2007 +0200
71476
71477 [MPC5xxx] There are networking problems on the Motion-PRO board with
71478 current PHY initalization code (tftp timeouts all the time). This commit
71479 temporarily disables PHY initalization sequence to make the networking
71480 operational, until a fix is found.
71481
71482 commit abca901869c3760b6c5fecb825db6c1d91a78a93
71483 Author: Wolfgang Denk <wd@denx.de>
71484 Date: Mon May 7 22:10:36 2007 +0200
71485
71486 Get rid of duplicated file (see include/configs/sbc8560.h instead)
71487
71488 Signed-off-by: Wolfgang Denk <wd@denx.de>
71489
71490 commit 207b7b2c9d9752e0f6478c30c29b7087f6e6cbb6
71491 Author: Wolfgang Denk <wd@denx.de>
71492 Date: Mon May 7 22:07:08 2007 +0200
71493
71494 Get rid of duplicated file (see doc/README.SBC8560 instead)
71495
71496 Signed-off-by: Wolfgang Denk <wd@denx.de>
71497
71498 commit a7bac7e9b57ba948051beb19ec5be3a75ce75383
71499 Author: Michal Simek <monstr@monstr.eu>
71500 Date: Mon May 7 19:43:10 2007 +0200
71501
71502 fix: read and write MSR - repair number of parameters
71503
71504 commit 193b4a3bb3acaddf798da8de0da05d94ba8774ee
71505 Author: Jeffrey Mann <mannj@embeddedplanet.com>
71506 Date: Mon May 7 19:42:49 2007 +0200
71507
71508 [PATCH] ppc4xx: Fix CONFIG_SYS_CLK_FREQ definition in Sequoia config file
71509
71510 A '3' got cut off in the formatting of the last patch to automatically
71511 change the clock speed of the system clock on sequoia board.
71512
71513 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
71514 Signed-off-by: Stefan Roese <sr@denx.de>
71515
71516 commit 19bf1fbad7f19d5a120be9b1daf136e052fcab39
71517 Author: Michal Simek <monstr@monstr.eu>
71518 Date: Mon May 7 19:33:51 2007 +0200
71519
71520 new: fsl interrupt support
71521 FSL_Has_data is connected to INTC.
71522
71523 commit 792032baa7d625e34c981ab6df521911bd8dc861
71524 Author: Michal Simek <monstr@monstr.eu>
71525 Date: Mon May 7 19:30:12 2007 +0200
71526
71527 fix: interrupt handler
71528 remove asm code
71529
71530 commit f3f001a341ef185d0f13841be5b5dc3395aacc31
71531 Author: Michal Simek <monstr@monstr.eu>
71532 Date: Mon May 7 19:25:08 2007 +0200
71533
71534 fix: remove asm code
71535
71536 commit fb7c2dbef02c9f6f8d7b04ec4c2bfb91418b9c01
71537 Author: Michal Simek <monstr@monstr.eu>
71538 Date: Mon May 7 19:12:43 2007 +0200
71539
71540 fix: clean interrupt
71541
71542 commit 42efed6130c8fcf7da881385b5427065d2801757
71543 Author: Michal Simek <monstr@monstr.eu>
71544 Date: Mon May 7 17:22:25 2007 +0200
71545
71546 fix: interrupt handler for multiple sources
71547
71548 commit 48fbd3a4cdabbebc1debd7eed73c00c2caf914f6
71549 Author: Michal Simek <monstr@monstr.eu>
71550 Date: Mon May 7 17:11:09 2007 +0200
71551
71552 new: add writing to msr register
71553
71554 commit 3a619dd7bed03e8b4d22a3911f90fd12af5376c2
71555 Author: Markus Klotzbuecher <mk@denx.de>
71556 Date: Mon May 7 16:43:56 2007 +0200
71557
71558 Fix an ancient CHANGELOG conflict
71559
71560 commit ac4cd59d59c9bf3f89cb7a344abf8184d678f562
71561 Author: Timur Tabi <timur@freescale.com>
71562 Date: Sat May 5 08:12:30 2007 +0200
71563
71564 5xxx: write MAC address to mac-address and local-mac-address
71565
71566 Some device trees have a mac-address property, some have local-mac-address,
71567 and some have both. To support all of these device trees, ftp_cpu_setup()
71568 should write the MAC address to mac-address and local-mac-address, if they
71569 exist.
71570
71571 Signed-off-by: Timur Tabi <timur@freescale.com>
71572 Acked-by: Grant Likely <grant.likely@secretlab.ca>
71573
71574 commit a9d87e2707dcb249f6bb7f7ff7e00acd8cda9fd2
71575 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
71576 Date: Sun Apr 29 14:01:54 2007 +0200
71577
71578 [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
71579
71580 MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
71581 message. Use PVR to distinguish between the two variants, and print proper CPU
71582 information.
71583
71584 Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
71585 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
71586 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
71587
71588 commit 4ec5bd55ed1ffa91a774af298769621f4fbb18c1
71589 Author: Ladislav Michl <ladis@linux-mips.org>
71590 Date: Wed Apr 25 16:01:26 2007 +0200
71591
71592 [PATCH] simplify silent console
71593
71594 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
71595 Acked-by: Stefan Roese <sr@denx.de>
71596
71597 commit b7598a43f2b421a713d8135e98a42c37d9eb9df0
71598 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
71599 Date: Mon Apr 23 15:30:39 2007 +0200
71600
71601 [PATCH] Avoid assigning PCI resources from zero address
71602
71603 If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
71604 core complains and IDE drivers fails to work. Also, assigning zero to a BAR
71605 was illegal according to PCI 2.1 (the later revisions seem to have excluded the
71606 sentence about "0" being considered an invalid address) -- so, use a reasonable
71607 starting value of 0x1000 (that's what the most Linux archs are using).
71608
71609 Alternatively, one might have fixed the calls to pci_set_region() individually
71610 (some code even seems to have taken care of this issue) but that would have
71611 been a lot more work. :-)
71612
71613 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
71614 Acked-by: Stefan Roese <sr@denx.de>
71615
71616 commit 9ffd451afeb08e5be7ddae680487ec962b2bca25
71617 Author: Jeffrey Mann <mannj@embeddedplanet.com>
71618 Date: Mon Apr 23 14:00:11 2007 +0200
71619
71620 [patch] setenv(...) can delete environmentalvariables
71621
71622 update setenv() function so that entering a NULL value for the
71623 variable's value will delete the environmental variable
71624
71625 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
71626 Acked-by: Stefan Roese <sr@denx.de>
71627
71628 commit ebd0a0ae05a44769c4e27458ad4e9f3438250443
71629 Author: Mike Frysinger <vapier@gentoo.org>
71630 Date: Mon Apr 23 13:54:24 2007 +0200
71631
71632 [patch] use unsigned char in smc91111 driver for mac
71633
71634 the v_mac variable in the smc91111 driver is declared as a signed char ...
71635 this causes problems when one of the bytes in the MAC is "signed" like 0xE0
71636 because when it gets printed out, you get a display like:
71637 0xFFFFFFE0 and that's no good
71638
71639 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
71640
71641 commit ffc50f9bb194343c6303517a517708457a5eb6b8
71642 Author: Michal Simek <monstr@monstr.eu>
71643 Date: Sat May 5 18:54:42 2007 +0200
71644
71645 new: FSL and MSR support #2
71646
71647 commit f7e2e0eb0668136305f78bb9c21be79b48a34247
71648 Author: Michal Simek <monstr@monstr.eu>
71649 Date: Sat May 5 18:27:16 2007 +0200
71650
71651 new: FSL and MSR support
71652
71653 commit 2f15278c2eb911c668b4fe562130b78cf554d139
71654 Author: Wolfgang Denk <wd@denx.de>
71655 Date: Sat May 5 18:23:11 2007 +0200
71656
71657 Coding stylke cleanup; update CHANGELOG.
71658
71659 Signed-off-by: Wolfgang Denk <wd@denx.de>
71660
71661 commit 885ec89b648a899a2f32393fd3ffd9f7234c4402
71662 Author: Wolfgang Denk <wd@denx.de>
71663 Date: Sat May 5 18:05:02 2007 +0200
71664
71665 Add STX GP3 SSA board to MAKEALL script; update CHANGELOG.
71666
71667 Signed-off-by: Wolfgang Denk <wd@denx.de>
71668
71669 commit 5499645b3fe17a548af9dfc479ca6e2455f179a2
71670 Author: Wolfgang Denk <wd@denx.de>
71671 Date: Sat May 5 17:15:50 2007 +0200
71672
71673 Make "file" command happy with some config.mk files; update CHANGELOG
71674
71675 commit e3b8c78bc2489c27ae020986ef0eaca684866cef
71676 Author: Jeffrey Mann <mannj@embeddedplanet.com>
71677 Date: Sat May 5 08:32:14 2007 +0200
71678
71679 ppc4xx: Detect if the sysclk on Sequoia is 33 or 33.333 MHz
71680
71681 The AMCC Secquoia board has been changed in a new revision from using a
71682 33.000 MHz clock to a 33.333 MHz system clock. A bit in the CPLD
71683 indicates the difference. This patch reads that bit and uses the correct
71684 clock speed for the board. This code is backward compatable will all
71685 prior boards. All prior boards will be read as 33.000.
71686
71687 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
71688 Signed-off-by: Stefan Roese <sr@denx.de>
71689
71690 commit f544ff6656fca263ed1ebe39899b6d95da67c8b8
71691 Author: Stefan Roese <sr@denx.de>
71692 Date: Sat May 5 08:29:01 2007 +0200
71693
71694 ppc4xx: Sequoia: Remove cpu/ppc4xx/speed.c from NAND booting
71695
71696 Using cpu/ppc4xx/speed.c to calculate the bus frequency is too big
71697 for the 4k NAND boot image so define bus_frequency to 133MHz here
71698 which is save for the refresh counter setup.
71699
71700 Signed-off-by: Stefan Roese <sr@denx.de>
71701
71702 commit 2f550ab976405300f5b07bf2890800840d0aa05f
71703 Author: Timur Tabi <timur@freescale.com>
71704 Date: Sat May 5 08:12:30 2007 +0200
71705
71706 5xxx: write MAC address to mac-address and local-mac-address
71707
71708 Some device trees have a mac-address property, some have local-mac-address,
71709 and some have both. To support all of these device trees, ftp_cpu_setup()
71710 should write the MAC address to mac-address and local-mac-address, if they
71711 exist.
71712
71713 Signed-off-by: Timur Tabi <timur@freescale.com>
71714 Acked-by: Grant Likely <grant.likely@secretlab.ca>
71715
71716 commit a79886590593ba1d667c840caa4940c61639f18f
71717 Author: Thomas Knobloch <knobloch@siemens.com>
71718 Date: Sat May 5 07:04:42 2007 +0200
71719
71720 NAND: Wrong calculation of page number in nand_block_bad()
71721
71722 In case that there is no memory based bad block table available the
71723 function nand_block_checkbad() in drivers/mtd/nand/nand_base.c will call
71724 nand_block_bad() directly. When parameter 'getchip' is set to zero,
71725 nand_block_bad() will not right shift the offset to calculate the
71726 correct page number.
71727
71728 Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
71729 Signed-off-by: Stefan Roese <sr@denx.de>
71730
71731 commit 9877d7dcd1eebe61aa5d8b8ffe9c048ea426e6f6
71732 Author: Wolfgang Denk <wd@denx.de>
71733 Date: Fri May 4 10:02:33 2007 +0200
71734
71735 Fix initrd length corruption in bootm command.
71736
71737 When using FDT Images, the length of an inital ramdisk was
71738 overwritten (bug introduced by commit 87a449c8, 22 Aug 2006).
71739
71740 Patches by Timur Tabi & Johns Daniel.
71741
71742 Signed-off-by: Wolfgang Denk <wd@denx.de>
71743
71744 commit 068aab660bc3912b930be5540e6b3f3fd6ad3c96
71745 Author: Kim Phillips <kim.phillips@freescale.com>
71746 Date: Thu May 3 19:43:52 2007 -0500
71747
71748 mpc83xx: fix trivial error in MAKEALL
71749
71750 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71751
71752 commit c64a89d6ce8584b9fc64f4e85da9ecac3cfc2c2a
71753 Author: Wolfgang Denk <wd@denx.de>
71754 Date: Thu May 3 16:34:41 2007 +0200
71755
71756 Update board configuration for STX GP3SSA board:
71757
71758 Enable hush shell, environment in flash rather in EEPROM,
71759 more user-friendly default environment, etc.
71760 The simple EEPROM environment can be selected easily in the board
71761 config file.
71762
71763 Signed-off-by: Wolfgang Denk <wd@denx.de>
71764
71765 commit 2c6fb199dc5756fc72f49d1f4de105e089049d65
71766 Author: Wolfgang Denk <wd@denx.de>
71767 Date: Tue Apr 24 14:37:49 2007 +0200
71768
71769 Cleanup STX GP3SSA code; fix build and compile problems.
71770
71771 commit 35171dc04e028ecacc23ad916a66295472555dbf
71772 Author: Dan Malek <dan@embeddedalley.com>
71773 Date: Fri Jan 5 09:15:34 2007 +0100
71774
71775 Add support for STX GP3SSA (stxssa) Board
71776
71777 Signed-off-by Dan Malek, <dan@embeddedalley.com>
71778
71779 commit f2134f8e9eb006bdcd729e89f309c07b2fa45180
71780 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
71781 Date: Wed May 2 13:31:53 2007 +0200
71782
71783 macb: Don't restart autonegotiation if we already have link
71784
71785 Rework macb_phy_init so that it doesn't attempt to re-negotiate if the
71786 link is already up.
71787
71788 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
71789
71790 commit 04fcb5d38bc90779cd9a710d60702075986f0e29
71791 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
71792 Date: Wed May 2 13:22:38 2007 +0200
71793
71794 macb: Introduce a few barriers when dealing with DMA descriptors
71795
71796 There were a few theoretical possibilities that the compiler might
71797 optimize away DMA descriptor reads and/or writes and thus cause
71798 synchronization problems with the hardware. Insert barriers where
71799 we depend on reads/writes actually hitting memory.
71800
71801 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
71802
71803 commit ffa621a0d12a1ccd81c936c567f8917a213787a8
71804 Author: Andy Fleming <afleming@freescale.com>
71805 Date: Sat Feb 24 01:08:13 2007 -0600
71806
71807 Cleaned up some 85xx PCI bugs
71808
71809 * Cleaned up the CDS PCI Config Tables and added NULL entries to
71810 the end
71811 * Fixed PCIe LAWBAR assignemt to use the cpu-relative address
71812 * Fixed 85xx PCI code to assign powar region sizes based on the
71813 config values (rather than hard-coding them)
71814 * Fixed the 8548 CDS PCI2 IO to once again have 0 as the base address
71815
71816 Signed-off-by: Andy Fleming <afleming@freescale.com>
71817
71818 commit 6743105988fc44d5b0d30388c790607835aae7a6
71819 Author: Andy Fleming <afleming@freescale.com>
71820 Date: Mon Apr 23 02:54:25 2007 -0500
71821
71822 Add support for the 8568 MDS board
71823
71824 This included some changes to common files:
71825 * Add 8568 processor SVR to various places
71826 * Add support for setting the qe bus-frequency value in the dts
71827 * Add the 8568MDS target to the Makefile
71828
71829 Signed-off-by: Andy Fleming <afleming@freescale.com>
71830
71831 commit af1c2b84bf27c8565baddc82d1abb93700d10e2e
71832 Author: David Updegraff <dave@cray.com>
71833 Date: Fri Apr 20 14:34:48 2007 -0500
71834
71835 Add support for treating unknown PHYs as generic PHYs.
71836
71837 When bringing up u-boot on new boards, PHY support sometimes gets
71838 neglected. Most PHYs don't really need any special support,
71839 though. By adding a generic entry that always matches if nothing
71840 else does, we can provide support for "unsupported" PHYs for the
71841 tsec.
71842
71843 The generic PHY driver supports most PHYs, including gigabit.
71844
71845 Signed-off-by: David Updegraff <dave@cray.com>
71846 Signed-off-by: Andy Fleming <afleming@freescale.com>
71847
71848 commit a75af9bfd8fff0499efdbb90601cec5a2afef117
71849 Author: James Yang <James.Yang@freescale.com>
71850 Date: Wed Feb 7 15:28:04 2007 -0600
71851
71852 Conditionalize 8641 Rev1.0 MCM workarounds
71853
71854 Signed-off-by: James Yang <James.Yang@freescale.com>
71855 Signed-off-by: Jon Loeliger <jdl@freescale.com>
71856
71857 commit f64702b7fc8f8df39d31add770df6e372f9e9ce3
71858 Author: Timur Tabi <timur@freescale.com>
71859 Date: Mon Apr 30 13:59:50 2007 -0500
71860
71861 Fix memory initialization on MPC8349E-mITX
71862
71863 Define CFG_DDR_SDRAM_CLK_CNTL for the MPC8349E-mITX and MPC8349E-mITX-GP.
71864 This allows ddr->sdram_clk_cntl to be properly initialized. This is necessary
71865 on some ITX boards, notably those with a revision 3.1 CPU.
71866
71867 Also change spd_sdram() in cpu/mpc83xx/spd_sdram.c to not write anything into
71868 ddr->sdram_clk_cntl if CFG_DDR_SDRAM_CLK_CNTL is not defined.
71869
71870 Signed-off-by: Timur Tabi <timur@freescale.com>
71871 Acked-by: Michael Benedict <MBenedict@twacs.com>
71872 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71873
71874 commit 54b2d434ae9d01787936f34fe1759cf3d7624ae3
71875 Author: Kim Phillips <kim.phillips@freescale.com>
71876 Date: Mon Apr 30 15:26:21 2007 -0500
71877
71878 mpc83xx: replace elaborate boottime verbosity with 'clocks' command
71879
71880 and fix CPU: to align with Board: display text.
71881
71882 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71883
71884 commit c1ab82669d9525998c34e802a12cad662723f22a
71885 Author: James Yang <James.Yang@freescale.com>
71886 Date: Fri Mar 16 13:02:53 2007 -0500
71887
71888 Rewrote picos_to_clk() to avoid rounding errors.
71889 Clarified that conversion is to DRAM clocks rather than platform clocks.
71890 Made function static to spd_sdram.c.
71891
71892 Signed-off-by: James Yang <James.Yang@freescale.com>
71893 Signed-off-by: Jon Loeliger <jdl@freescale.com>
71894
71895 commit 8b39501d28754e72726ce7fb02310e56dbdf116a
71896 Author: Stefan Roese <sr@denx.de>
71897 Date: Sun Apr 29 14:13:01 2007 +0200
71898
71899 ppc4xx: Bamboo: Use current NAND driver and *not* the legacy driver
71900
71901 Signed-off-by: Stefan Roese <sr@denx.de>
71902
71903 commit 864aa6a6a466fcb92bf32b1d7dba79cd709b52c9
71904 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
71905 Date: Sun Apr 29 14:01:54 2007 +0200
71906
71907 [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
71908
71909 MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
71910 message. Use PVR to distinguish between the two variants, and print proper CPU
71911 information.
71912
71913 Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
71914 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
71915 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
71916
71917 commit 5c5d3242935cf3543af01142627494434834cf98
71918 Author: Kim Phillips <kim.phillips@freescale.com>
71919 Date: Wed Apr 25 12:34:38 2007 -0500
71920
71921 mpc83xx: minor fixups for 8313rdb introduction
71922
71923 commit ada4d40091f6ed4a4f0040e08d20db21967e4a67
71924 Author: Ladislav Michl <ladis@linux-mips.org>
71925 Date: Wed Apr 25 16:01:26 2007 +0200
71926
71927 [PATCH] simplify silent console
71928
71929 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
71930 Acked-by: Stefan Roese <sr@denx.de>
71931
71932 commit 144876a380f5756f57412caf74c1d6dc201dd796
71933 Author: Michal Simek <monstr@monstr.eu>
71934 Date: Tue Apr 24 23:01:02 2007 +0200
71935
71936 [PATCH] MTD partition support, JFFS2 support
71937
71938 commit 37ed6cdd4159195bfad68d8a237f6adda8f482cb
71939 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
71940 Date: Tue Apr 24 14:03:45 2007 +0200
71941
71942 ppc4xx: setup 440EPx/GRx ZMII/RGMII bridge depending on PFC register content.
71943
71944 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
71945
71946 commit 66ed6cca3f340f7a8a06d9272ae2ef8e96f0273d
71947 Author: Andy Fleming <afleming@freescale.com>
71948 Date: Mon Apr 23 02:37:47 2007 -0500
71949
71950 Reworked 85xx speed detection code
71951
71952 Changed the code to read the registers and calculate the clock
71953 rates, rather than using a "switch" statement.
71954
71955 Idea from Andrew Klossner <andrew@cesa.opbu.xerox.com>
71956
71957 Signed-off-by: Andy Fleming <afleming@freescale.com>
71958
71959 commit 81f481ca708ed6a56bf9c410e3191dbad581c565
71960 Author: Andy Fleming <afleming@freescale.com>
71961 Date: Mon Apr 23 02:24:28 2007 -0500
71962
71963 Enable 8544 support
71964
71965 * Add support to the Makefile
71966 * Add 8544 configuration support to the tsec driver
71967 * Add 8544 SVR numbers to processor.h
71968
71969 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
71970 Signed-off-by: Jon Loeliger <jdl@freescale.com>
71971
71972 commit 0d8c3a2096eaff8d7de89d45e9af4d4b0d4868fe
71973 Author: Andy Fleming <afleming@freescale.com>
71974 Date: Fri Feb 23 17:12:25 2007 -0600
71975
71976 Support 1G size on 8548
71977
71978 e500v2 and newer cores support 1G page sizes.
71979
71980 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
71981 Signed-off-by: Andy Fleming <afleming@freescale.com>
71982
71983 commit 45cef612cc601d2d1c890fbbd7cdc9609a189a46
71984 Author: Andy Fleming <afleming@freescale.com>
71985 Date: Fri Feb 23 17:11:16 2007 -0600
71986
71987 Changed BOOKE_PAGESZ_nGB to BOOKE_PAGESZ_nG
71988
71989 The other pagesz constants use one letter to specify order of
71990 magnitude. Also change the one reference to it in mpc8548cds/init.S
71991
71992 Signed-off-by: Andy Fleming <afleming@freescale.com>
71993
71994 commit 1f9a318cea14272edd10d63739e2d326c90f430e
71995 Author: Andy Fleming <afleming@freescale.com>
71996 Date: Fri Feb 23 16:28:46 2007 -0600
71997
71998 Only set ddrioovcr for 8548 rev1.
71999
72000 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72001 Signed-off-by: Andy Fleming <afleming@freescale.com>
72002
72003 commit 9343dbf85bc03033f2102d8e8543567c2c1ad2d2
72004 Author: Andy Fleming <afleming@freescale.com>
72005 Date: Sat Feb 24 01:16:45 2007 -0600
72006
72007 Tweak DDR ECC error counter
72008
72009 Enable single-bit error counter when memory was cleared by ddr controller.
72010
72011 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72012 Signed-off-by: Andy Fleming <afleming@freescale.com>
72013
72014 commit 85e7c7a45e3dd9c7ce3e722352ba60f8df1a7a4b
72015 Author: Timur Tabi <timur@freescale.com>
72016 Date: Mon Feb 12 13:34:55 2007 -0600
72017
72018 85xx: write MAC address to mac-address and local-mac-address
72019
72020 Some device trees have a mac-address property, some have local-mac-address,
72021 and some have both. To support all of these device trees, ftp_cpu_setup()
72022 should write the MAC address to mac-address and local-mac-address, if they
72023 exist.
72024
72025 Signed-off-by: Timur Tabi <timur@freescale.com>
72026
72027 commit 03b81b48eec0ad249ec97a4ae16c36fa2e014ff4
72028 Author: Andy Fleming <afleming@freescale.com>
72029 Date: Mon Apr 23 01:44:44 2007 -0500
72030
72031 Some 85xx cpu cleanups
72032
72033 * Cleaned up the TSR[WIS] clearing
72034 * Cleaned up DMA initialization
72035
72036 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72037 Signed-off-by: Jon Loeliger <jdl@freescale.com>
72038 Acked-by: Andy Fleming <afleming@freescale.com>
72039
72040 commit 151d5d992eab8c497b24c816c73dc1ad8bffb4eb
72041 Author: Andy Fleming <afleming@freescale.com>
72042 Date: Mon Apr 23 01:32:22 2007 -0500
72043
72044 Add cpu support for the 8544
72045
72046 Recognize new SVR values, and add a few register definitions
72047
72048 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72049 Signed-off-by: Jon Loeliger <jdl@freescale.com>
72050 Acked-by: Andy Fleming <afleming@freescale.com>
72051
72052 commit 25d83d7f4ac65727182d8ddaf7ba42fa74cf65ae
72053 Author: Jon Loeliger <jdl@freescale.com>
72054 Date: Wed Apr 11 16:51:02 2007 -0500
72055
72056 Add MPC8544DS basic port board files.
72057
72058 Add board port under new board/freescale directory
72059 structure and reuse existing PIXIS FPGA support there.
72060
72061 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72062 Signed-off-by: Jon Loeliger <jdl@freescale.com>
72063
72064 commit 0cde4b00fc7393b89f379d83a9d436dcb1334bfa
72065 Author: Jon Loeliger <jdl@freescale.com>
72066 Date: Wed Apr 11 16:50:57 2007 -0500
72067
72068 Add MPC8544DS main configuration file.
72069
72070 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72071 Signed-off-by: Jon Loeliger <jdl@freescale.com>
72072
72073 commit 362dd83077ac04c0296bca3e824ec2fb3d44d9d6
72074 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
72075 Date: Wed Dec 27 22:07:15 2006 +0300
72076
72077 Fix PCI I/O space mapping on Freescale MPC85x0ADS
72078
72079 The PCI I/O space mapping for Freescale MPC8540ADS board was broken by commit
72080 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc which failed to update the #define's
72081 describing the local address window used for the PCI I/O space accesses -- fix
72082 this and carry over the necessary changes into the MPC8560ADS code since the
72083 PCI I/O space mapping was also broken for this board (by the earlier commit
72084 087454609e47295443af793a282cddcd91a5f49c). Add the comments clarifying how
72085 the PCI I/O space must be mapped to all the MPC85xx board config. headers.
72086
72087 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
72088
72089 board/mpc8540ads/init.S | 4 ++--
72090 board/mpc8560ads/init.S | 4 ++--
72091 include/configs/MPC8540ADS.h | 5 ++---
72092 include/configs/MPC8541CDS.h | 2 +-
72093 include/configs/MPC8548CDS.h | 2 +-
72094 include/configs/MPC8560ADS.h | 8 ++++----
72095 6 files changed, 12 insertions(+), 13 deletions(-)
72096
72097 commit 96629cbabdb727d4a5e62542deefc01d498db6dc
72098 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
72099 Date: Tue Dec 5 16:42:30 2006 +0800
72100
72101 u-boot: Fix e500 v2 core reset bug
72102
72103 The following patch fixes the e500 v2 core reset bug.
72104 For e500 v2 core, a new reset control register is added to reset the
72105 processor.
72106
72107 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
72108
72109 commit 63247a5acd58032e6cf33f525bc3923b467bac88
72110 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
72111 Date: Wed Dec 20 11:01:00 2006 +0800
72112
72113 u-boot: v2: Remove the fixed TLB and LAW entrynubmer
72114
72115 Remove the fixed TLB and LAW entry nubmer. Use actually TLB and LAW
72116 entry number to control the loop. This can reduce the potential risk
72117 for the 85xx processor increasing its TLB adn LAW entry number.
72118
72119 Signed-off-by: Swarthout Edward <swarthout@freescale.com>
72120 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
72121
72122 commit 0b1934ba12fd408fcc3b8bd9f4b04864c42a42bf
72123 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
72124 Date: Mon Dec 18 17:01:04 2006 +0800
72125
72126 u-boot: Fix the 85xxcds tsec bug
72127
72128 Fix the 85xxcds tsec bug.
72129 When enable PCI, tsec.o should be added to u-boot.lds to make tsec work.
72130
72131 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
72132
72133 commit 7337b237ffc4aaf1b9467024fe472a880d852598
72134 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
72135 Date: Fri Dec 15 14:43:31 2006 +0800
72136
72137 u-boot: Fix CPU2 errata on MPC8548CDS board
72138
72139 This patch apply workaround of CPU2 errata on MPC8548CDS board.
72140
72141 Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
72142
72143 commit 39b18c4f3e0b6d0dc00f4e68bad2da3766c85f09
72144 Author: ebony.zhu@freescale.com <ebony.zhu@freescale.com>
72145 Date: Mon Dec 18 16:25:15 2006 +0800
72146
72147 u-boot: Disables MPC8548CDS 2T_TIMING for DDR by default
72148
72149 This patch disables MPC8548CDS 2T_TIMING for DDR by default.
72150
72151 Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
72152
72153 commit 41fb7e0f1ec9b91bdae2565bab5f2e3ee15039c7
72154 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
72155 Date: Thu Dec 14 14:14:55 2006 +0800
72156
72157 u-boot: Enable PCI function and add PEX & rapidio memory map on MPC8548CDS board
72158
72159 Enable PCI function and add PEX & rapidio memory map on MPC8548CDS
72160 board.
72161 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
72162
72163 commit 96b8a05432f346f36493535c85320b70ec9c7c1b
72164 Author: Scott Wood <scottwood@freescale.com>
72165 Date: Mon Apr 16 14:54:15 2007 -0500
72166
72167 mpc83xx: Add MPC8313ERDB support.
72168
72169 Signed-off-by: Scott Wood <scottwood@freescale.com>
72170
72171 commit 49ea3b6eafe606285ae4d5c378026153dde53200
72172 Author: Scott Wood <scottwood@freescale.com>
72173 Date: Mon Apr 16 14:34:21 2007 -0500
72174
72175 mpc83xx: Add generic PCI setup code.
72176
72177 Board code can now request the generic setup code rather than having to
72178 copy-and-paste it for themselves. Boards should be converted to use this
72179 once they're tested with it.
72180
72181 Signed-off-by: Scott Wood <scottwood@freescale.com>
72182
72183 commit 7c98e5193e93df6b9b651851d54b638a61ebb0ea
72184 Author: Scott Wood <scottwood@freescale.com>
72185 Date: Mon Apr 16 14:34:19 2007 -0500
72186
72187 mpc83xx: Add 831x support to speed.c.
72188
72189 Signed-off-by: Scott Wood <scottwood@freescale.com>
72190
72191 commit 0f253283a32d91e06844d7f87f9b33f4f4fbce8f
72192 Author: Scott Wood <scottwood@freescale.com>
72193 Date: Mon Apr 16 14:34:18 2007 -0500
72194
72195 mpc83xx: Add 831x support to global_data.h
72196
72197 Signed-off-by: Scott Wood <scottwood@freescale.com>
72198
72199 commit 95e7ef897e54591e615fc1b458b74c286fe1fb06
72200 Author: Scott Wood <scottwood@freescale.com>
72201 Date: Mon Apr 16 14:34:16 2007 -0500
72202
72203 mpc83xx: Change PVR_83xx to PVR_E300C1-3, and update checkcpu().
72204
72205 Rather than misleadingly define PVR_83xx as the specific type of 83xx
72206 being built for, the PVR of each core revision is defined. checkcpu() now
72207 prints the core that it detects, rather than aborting if it doesn't find
72208 what it thinks it wants.
72209
72210 Signed-off-by: Scott Wood <scottwood@freescale.com>
72211
72212 commit a35b0c4950d84cf9e3a9e32b916135956d1ac636
72213 Author: Scott Wood <scottwood@freescale.com>
72214 Date: Mon Apr 16 14:34:15 2007 -0500
72215
72216 mpc83xx: Recognize SPR values for MPC8311 and MPC8313.
72217
72218 Signed-off-by: Scott Wood <scottwood@freescale.com>
72219
72220 commit d87c57b201b4572d16f1b642998faa00c9912b16
72221 Author: Scott Wood <scottwood@freescale.com>
72222 Date: Mon Apr 16 14:31:55 2007 -0500
72223
72224 mpc83xx: Add register definitions for MPC831x.
72225
72226 Signed-off-by: Scott Wood <scottwood@freescale.com>
72227
72228 commit 7fc4c71a143be8666d70803fb25ae60379c95622
72229 Author: Stefan Roese <sr@denx.de>
72230 Date: Mon Apr 23 15:39:59 2007 +0200
72231
72232 Fix file mode
72233
72234 Signed-off-by: Stefan Roese <sr@denx.de>
72235
72236 commit 38257988abfe74d459ca2ad748b109ca04e4efe1
72237 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
72238 Date: Mon Apr 23 15:30:39 2007 +0200
72239
72240 [PATCH] Avoid assigning PCI resources from zero address
72241
72242 If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
72243 core complains and IDE drivers fails to work. Also, assigning zero to a BAR
72244 was illegal according to PCI 2.1 (the later revisions seem to have excluded the
72245 sentence about "0" being considered an invalid address) -- so, use a reasonable
72246 starting value of 0x1000 (that's what the most Linux archs are using).
72247
72248 Alternatively, one might have fixed the calls to pci_set_region() individually
72249 (some code even seems to have taken care of this issue) but that would have
72250 been a lot more work. :-)
72251
72252 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
72253 Acked-by: Stefan Roese <sr@denx.de>
72254
72255 commit afb903a2eb9436baa9270ccc0c27082d86497d89
72256 Author: Jeffrey Mann <mannj@embeddedplanet.com>
72257 Date: Mon Apr 23 14:00:11 2007 +0200
72258
72259 [patch] setenv(...) can delete environmentalvariables
72260
72261 update setenv() function so that entering a NULL value for the
72262 variable's value will delete the environmental variable
72263
72264 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
72265 Acked-by: Stefan Roese <sr@denx.de>
72266
72267 commit 36f104e5caa747d568eff26b369565af57c2ffa6
72268 Author: Mike Frysinger <vapier@gentoo.org>
72269 Date: Mon Apr 23 13:54:24 2007 +0200
72270
72271 [patch] use unsigned char in smc91111 driver for mac
72272
72273 the v_mac variable in the smc91111 driver is declared as a signed char ...
72274 this causes problems when one of the bytes in the MAC is "signed" like 0xE0
72275 because when it gets printed out, you get a display like:
72276 0xFFFFFFE0 and that's no good
72277
72278 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
72279
72280 commit d98c0885ad617fccf21e7c26ef8cb728fbfb2459
72281 Author: Rodolfo Giometti <giometti@enneenne.com>
72282 Date: Mon Apr 23 13:10:52 2007 +0200
72283
72284 USB: (Another) delay for crappy USB keys.
72285
72286 Some USB keys are slow in giving back an answer when the Root HUB
72287 enables power lines.
72288
72289 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
72290
72291 commit 323bfa8f436dc3bc57187c9b1488bc3146ff1522
72292 Author: Stefan Roese <sr@denx.de>
72293 Date: Mon Apr 23 12:00:22 2007 +0200
72294
72295 Remove BOARDLIBS usage completely
72296
72297 Signed-off-by: Stefan Roese <sr@denx.de>
72298
72299 commit 32556443840f127170e4baa8bdd5b567039f6c36
72300 Author: Michal Simek <monstr@monstr.eu>
72301 Date: Sat Apr 21 21:07:22 2007 +0200
72302
72303 [PATCH] SystemACE support for Microblaze
72304
72305 commit 0643631aa1036cd746bf5d15f5a34bc7bc01ea4f
72306 Author: Michal Simek <monstr@monstr.eu>
72307 Date: Sat Apr 21 21:02:40 2007 +0200
72308
72309 16bit read/write little endian
72310
72311 commit 9d1d6a34d26c5933bc097ce73c9348f95573cdd4
72312 Author: Michal Simek <monstr@monstr.eu>
72313 Date: Sat Apr 21 20:53:31 2007 +0200
72314
72315 Change ML401 parameters - Xilinx BSP
72316
72317 commit 2e343b9a57f32e1bd08c35c9976910333fb4e13d
72318 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
72319 Date: Wed Feb 28 05:37:29 2007 -0600
72320
72321 mpc8641hpcn: Fix LAW and TLB setup to use the IO_PHYS #defines.
72322
72323 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72324
72325 commit 79cb47391eebef85acadb3f6961ef6c55cace6ac
72326 Author: Zhang Wei <wei.zhang@freescale.com>
72327 Date: Fri Jan 19 10:42:37 2007 +0800
72328
72329 Enable LAWs for MPC8641 PCI-Ex2.
72330
72331 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
72332 Signed-off-by: Jon Loeliger <jdl@freescale.com>
72333
72334 commit bd7851ce1e1f140665b520026abf1042968b1102
72335 Author: Jon Loeliger <jdl@freescale.com>
72336 Date: Fri Apr 20 14:12:26 2007 -0500
72337
72338 mpc86xx; Write MAC address to mac-address and local-mac-address
72339
72340 Some device trees have a mac-address property, some have local-mac-address,
72341 and some have both. To support all of these device trees, ftp_cpu_setup()
72342 should write the MAC address to mac-address and local-mac-address, if they
72343 exist.
72344
72345 Signed-off-by: Timur Tabi <timur@freescale.com>
72346 Signed-off-by: Jon Loeliger <jdl@freescale.com>
72347
72348 commit 7dbdf28b8bd855a8530dc3292e4982575a197060
72349 Author: Jon Loeliger <jdl@freescale.com>
72350 Date: Fri Apr 20 14:11:38 2007 -0500
72351
72352 mpc86xx: protect memcpy to bad address if a mac-address is missing from dt
72353
72354 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72355 Signed-off-by: Jon Loeliger <jdl@freescale.com>
72356
72357 commit 14da5f7675bbb427c469e3f45006e027b6e21db9
72358 Author: Wolfgang Denk <wd@denx.de>
72359 Date: Fri Apr 20 17:43:28 2007 +0200
72360
72361 Cleanup compiler warnings, update CHANGELOG
72362
72363 Signed-off-by: Wolfgang Denk <wd@denx.de>
72364
72365 commit 6923565db12af34fd5e02d354ee65a8c78ac460f
72366 Author: Detlev Zundel <dzu@denx.de>
72367 Date: Fri Apr 20 12:01:47 2007 +0200
72368
72369 Fix breakage of NC650 board with respect to nand support.
72370
72371 Signed-off-by: Detlev Zundel <dzu@denx.de>
72372
72373 commit 39f23cd90947639ac278a18ff277ec786b5ac167
72374 Author: Domen Puncer <domen.puncer@telargo.com>
72375 Date: Fri Apr 20 11:13:16 2007 +0200
72376
72377 [RFC PATCH] icecube/lite5200b: fix OF_TBCLK (timebase-frequency) calculation
72378
72379 G2 core reference manual says decrementer and time base
72380 are decreasing/increasing once every 4 bus clock cycles.
72381 Lets fix it, so time in Linux won't run twice as fast
72382
72383 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
72384 Acked-by: Grant Likely <grant.likely@secretlab.ca>
72385
72386 commit 7651f8bdbba03bb0b4f241e2d2c4cb65b230bd56
72387 Author: Gerald Van Baren <vanbaren@cideas.com>
72388 Date: Thu Apr 19 23:14:39 2007 -0400
72389
72390 Fix serious pointer bug with bootm and reserve map.
72391
72392 What was suppose to be a stack variable was declared as a pointer,
72393 overwriting random memory.
72394 Also moved the libfdt.a requirement into the main Makefile. That is
72395 The U-Boot Way.
72396
72397 commit d21686263574e95cb3e9e9b0496f968b1b897fdb
72398 Author: Stefan Roese <sr@denx.de>
72399 Date: Thu Apr 19 09:53:52 2007 +0200
72400
72401 ppc4xx: Fix chip select timing for SysACE access on AMCC Katmai
72402
72403 Previous versions used full wait states for the chip select #1 which
72404 is connected to the Xilinix SystemACE controller on the AMCC Katmai
72405 evaluation board. This leads to really slow access and therefore low
72406 performance. This patch now sets up the chip select a lot faster
72407 resulting in much better read/write performance of the Linux driver.
72408
72409 Signed-off-by: Stefan Roese <sr@denx.de>
72410
72411 commit 37837828d89084879bee2f2b8c7c68d4695940df
72412 Author: Wolfgang Denk <wd@denx.de>
72413 Date: Wed Apr 18 17:49:29 2007 +0200
72414
72415 Clenaup, update CHANGELOG
72416
72417 Signed-off-by: Wolfgang Denk <wd@denx.de>
72418
72419 commit fd094c6379e2ef8a4d0ceb5640b24cb0c8d04449
72420 Author: Wolfgang Denk <wd@denx.de>
72421 Date: Wed Apr 18 17:20:58 2007 +0200
72422
72423 Update CHANGELOG
72424
72425 Signed-off-by: Wolfgang Denk <wd@denx.de>
72426
72427 commit 2a26ec4732efd7a308d0bbc97714c1d75ef1173b
72428 Author: Wolfgang Denk <wd@denx.de>
72429 Date: Wed Apr 18 17:07:26 2007 +0200
72430
72431 Cleanup, update CHANGELOG
72432
72433 Sigend-off-by: Wolfgang Denk <wd@denx.de>
72434
72435 commit 5f6c732affea9647762d27a4617a2ae64c52dceb
72436 Author: Wolfgang Denk <wd@denx.de>
72437 Date: Wed Apr 18 16:17:46 2007 +0200
72438
72439 Update CHANGELOG
72440
72441 commit ad4eb555671d97f96dc56eab55103b1f86874b01
72442 Author: Wolfgang Denk <wd@denx.de>
72443 Date: Wed Apr 18 14:30:39 2007 +0200
72444
72445 MCC200 board: remove warning which is obsolete after PSoC firmware changes
72446
72447 Signed-off-by: Wolfgang Denk <wd@denx.de>
72448
72449 commit 3747a3f010b2b1442dec3e871c69788b6017aaae
72450 Author: Domen Puncer <domen.puncer@telargo.com>
72451 Date: Wed Apr 18 12:11:05 2007 +0200
72452
72453 [PATCH] icecube/lite5200b: document wakeup from low-power support
72454
72455 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
72456
72457 commit e673226ff9d6aa91b47ceac74b8c13770b06bb37
72458 Author: Stefan Roese <sr@denx.de>
72459 Date: Wed Apr 18 12:07:47 2007 +0200
72460
72461 ppc4xx: Update Acadia to not setup PLL when booting via bootstrap EEPROM
72462
72463 Signed-off-by: Stefan Roese <sr@denx.de>
72464
72465 commit 90e6f41cf09fc98f6ccb510e183d53ab8546cf2f
72466 Author: Stefan Roese <sr@denx.de>
72467 Date: Wed Apr 18 12:05:59 2007 +0200
72468
72469 ppc4xx: Add output for bootrom location to 405EZ ports
72470
72471 Now 405EZ ports also show upon bootup from which boot device
72472 they are configured to boot:
72473
72474 U-Boot 1.2.0-gd3832e8f-dirty (Apr 18 2007 - 07:47:05)
72475
72476 CPU: AMCC PowerPC 405EZ Rev. A at 199.999 MHz (PLB=133, OPB=66, EBC=66 MHz)
72477 Bootstrap Option E - Boot ROM Location EBC (32 bits)
72478 16 kB I-Cache 16 kB D-Cache
72479 Board: Acadia - AMCC PPC405EZ Evaluation Board
72480
72481 Signed-off-by: Stefan Roese <sr@denx.de>
72482
72483 commit 9c00dfb0bf89c8c23e8af5b5bdf49cf66d769f85
72484 Author: Peter Pearse <peter.pearse@arm.com>
72485 Date: Tue Apr 17 13:30:33 2007 +0100
72486
72487 Move ppearse to ARM board list
72488 Add Konstantin Kletschke for scb9328.
72489 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
72490
72491 commit d3832e8fe1b214ec62424eac36cfda9fc56d21b3
72492 Author: Domen Puncer <domen.puncer@telargo.com>
72493 Date: Mon Apr 16 14:00:13 2007 +0200
72494
72495 [PATCH] icecube/lite5200b: wakeup from low-power support
72496
72497 U-Boot part of Lite5200b low power mode support.
72498 Puts SDRAM out of self-refresh and transfers control to
72499 address saved at physical 0x0.
72500
72501 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
72502 Acked-by: Grant Likely <grant.likely@secretlab.ca>
72503
72504 commit f35a53fc7b0c79fcfe7bdc01163c4b34aaba1460
72505 Author: Gerald Van Baren <vanbaren@cideas.com>
72506 Date: Sun Apr 15 13:54:26 2007 -0400
72507
72508 Fix the ft_cpu_setup() property settings.
72509
72510 Use "setter" functions instead of flags, cleaner and more flexible.
72511 It also fixes the problem noted by Timur Tabi that the ethernet MAC
72512 addresses were all being set incorrectly to the same MAC address.
72513
72514 commit c28abb9c614f65ce2096cc4a66fc886c77d0e5a4
72515 Author: Gerald Van Baren <vanbaren@cideas.com>
72516 Date: Sat Apr 14 22:51:24 2007 -0400
72517
72518 Improve the bootm command for CONFIG_OF_LIBFDT
72519
72520 In bootm, create the "/chosen" node only if it doesn't already exist
72521 (better matches the previous behavior).
72522 Update for proper reserved memory map handling for initrd.
72523
72524 commit 3f9f08cf91c8a6949a5d78a18bd3d8df7b86d888
72525 Author: Gerald Van Baren <vanbaren@cideas.com>
72526 Date: Sat Apr 14 22:46:41 2007 -0400
72527
72528 Add some utilities to manipulate the reserved memory map.
72529
72530 commit 8048cdd56f04a756eeea4951f402bf5cc33785db
72531 Author: Wolfgang Denk <wd@denx.de>
72532 Date: Sat Apr 14 21:16:54 2007 +0200
72533
72534 Update CHANGELOG
72535
72536 commit 8e6875183cdca91c134408d119d4abcd48ef6856
72537 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72538 Date: Sun Dec 17 18:56:46 2006 +0100
72539
72540 AVR32: Enable MMC support
72541
72542 Set up the portmux for the MMC interface and enable the MMC driver
72543 along with support for DOS partitions, ext2 and FAT filesystems.
72544
72545 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72546
72547 commit fc26c97bb6df41b4a95662c34054fe912387bf38
72548 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72549 Date: Fri Jan 20 10:03:53 2006 +0100
72550
72551 Atmel MCI driver
72552
72553 Driver for the Atmel MCI controller (MMC interface) for AT32AP CPUs.
72554
72555 The AT91 ARM-based CPUs use basically the same hardware, so it should
72556 be possible to share this driver, but no effort has been made so far.
72557
72558 Hardware documentation can be found in the AT32AP7000 data sheet,
72559 which can be downloaded from
72560
72561 http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
72562
72563 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72564
72565 commit 05fdab1ef6a10d049a50021a86f1226f444d9b9f
72566 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72567 Date: Sun Dec 17 18:55:37 2006 +0100
72568
72569 AVR32: Add clk and gpio infrastructure for mmci
72570
72571 Implement functions for configuring the mmci pins, as well as
72572 functions for getting the clock rate of the mmci controller.
72573
72574 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72575
72576 commit 7fac3f69e9f05c5e5326681976c35d129324c4de
72577 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72578 Date: Sun Dec 17 18:53:56 2006 +0100
72579
72580 Enable partition support with MMC
72581
72582 Include implementations of init_part() and get_partition_info() when
72583 CONFIG_MMC is set.
72584
72585 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72586
72587 commit 9a24f477a1ed5bb0f74377c985d754ebbfa44872
72588 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72589 Date: Sun Dec 17 17:14:30 2006 +0100
72590
72591 AVR32: Enable networking
72592
72593 Implement MACB initialization for AVR32 and ATSTK1000, and turn
72594 everything on, including the MACB driver.
72595
72596 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72597
72598 commit 5c1fe1ffffd1750a7e47e5a2e2cd600c00e4f009
72599 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72600 Date: Fri Jan 20 10:03:34 2006 +0100
72601
72602 Atmel MACB ethernet driver
72603
72604 Driver for the Atmel MACB on-chip ethernet controller.
72605
72606 This driver has been tested on the ATSTK1000 board with a AT32AP7000
72607 CPU. It should probably work on AT91SAM926x as well with some minor
72608 modifications.
72609
72610 Hardware documentation can be found in the AT32AP7000 data sheet,
72611 which can be downloaded from
72612
72613 http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
72614
72615 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72616
72617 commit b4ec9c2d43d894729bb633bfdbdfa95a962c1556
72618 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72619 Date: Sun Dec 17 16:56:14 2006 +0100
72620
72621 AVR32: Add clk and gpio infrastructure for macb0 and macb1
72622
72623 Implement functions for configuring the macb0 and macb1 pins, as
72624 well as functions for getting the clock rate of the various
72625 busses the macb ethernet controllers are connected to.
72626
72627 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72628
72629 commit d5acb95b16a0a74c643524342c3437e765426d05
72630 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72631 Date: Sun Dec 17 15:39:15 2006 +0100
72632
72633 AVR32: Implement simple DMA memory allocator
72634
72635 Implement dma_alloc_coherent() which returns cache-aligned
72636 uncacheable memory.
72637
72638 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72639
72640 commit 91975b0fea773c9e681fea8cf3349669f27685ee
72641 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72642 Date: Sun Dec 17 15:46:02 2006 +0100
72643
72644 Import <linux/mii.h> from the Linux kernel
72645
72646 Instead of creating yet another set of MII register definitions
72647 in the macb driver, here's a complete set of definitions for everyone
72648 to use.
72649
72650 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72651
72652 commit 1b804b229556a4d862da93c0ec94e79419364b2c
72653 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72654 Date: Wed Mar 21 19:47:36 2007 +0100
72655
72656 AVR32: Include more commands for ATSTK1000
72657
72658 Include the imi, imls and jffs commands sets by default on ATSTK1000.
72659 Also define CONFIG_BOOTARGS to something more useful, define
72660 CONFIG_BOOTCOMMAND and enable autoboot by default.
72661
72662 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72663
72664 commit 9c0deb5ae3ea0189f2e08ac29ef1316f1fb8548d
72665 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72666 Date: Wed Mar 21 19:44:48 2007 +0100
72667
72668 AVR32: Provide a definition of struct stat
72669
72670 Copy the definition of struct stat from the Linux kernel.
72671
72672 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72673
72674 commit 12f099c08167a7a51aeee623bc16dafd0841271c
72675 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72676 Date: Sun Dec 17 14:46:06 2006 +0100
72677
72678 AVR32: Use initdram() instead of board_init_memories()
72679
72680 Conform to the "standard" interface and use initdram() instead of
72681 board_init_memories() on AVR32. This enables us to get rid of the
72682 sdram_size member of the global_data struct as well.
72683
72684 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72685
72686 commit 1f4f2121c2685182eb87fa9a9b799d1917387a1c
72687 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72688 Date: Mon Nov 20 15:53:10 2006 +0100
72689
72690 AVR32: Relocate u-boot to SDRAM
72691
72692 Relocate the u-boot image into SDRAM like everyone else does. This
72693 means that we can handle much larger .data and .bss than we used to.
72694
72695 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72696
72697 commit df548d3c3e2bbc40258713167859ffc2ce99a900
72698 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72699 Date: Sun Nov 19 18:06:53 2006 +0100
72700
72701 AVR32: Resource management rewrite
72702
72703 Rewrite the resource management code (i.e. I/O memory, clock gating,
72704 gpio) so it doesn't depend on any global state. This is necessary
72705 because this code is heavily used before relocation to RAM, so we
72706 can't write to any global variables.
72707
72708 As an added bonus, this makes u-boot's memory footprint a bit smaller,
72709 although some functionality has been left out; all clocks are enabled
72710 all the time, and there's no checking for gpio line conflicts.
72711
72712 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72713
72714 commit 03d1e1365796cd15d1726e8a51fd8b5be50b2fe9
72715 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72716 Date: Sat Nov 18 18:01:13 2006 +0100
72717
72718 AVR32: Clean up memory-map.h for at32ap7000
72719
72720 Convert spaces to tabs (must have missed this one last time around),
72721 sort the entries by address and group them together by bus
72722 connectivity.
72723
72724 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72725
72726 commit 28c699ef69f4b6cdf252e4747b7b590028a88981
72727 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72728 Date: Sat Nov 18 17:32:31 2006 +0100
72729
72730 AVR32: Build position-independent u-boot
72731
72732 Add -fPIC -mno-init-got to the avr32-specific CFLAGS to make u-boot
72733 position independent. This will make relocation a lot easier.
72734
72735 -mno-init-got means that gcc shouldn't emit code to load the GOT
72736 address into r6 in every function prologue. We do it once and for
72737 all in the early startup assembly code, so enabling this option
72738 makes u-boot a bit faster and smaller.
72739
72740 The assembly parts have always been position-independent, so no code
72741 changes should be necessary.
72742
72743 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72744
72745 commit 5374b36de91d006d1df9536259fa9f66b01aa3aa
72746 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72747 Date: Sat Nov 18 17:24:31 2006 +0100
72748
72749 AVR32: Use avr32-linux- cross-compilation prefix by default
72750
72751 It doesn't really matter which toolchain you use to compile u-boot,
72752 but the avr32-linux one is probably what most people have installed.
72753
72754 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72755
72756 commit c841beeddebece0039e724fb27f4d1a39ee1c6b6
72757 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72758 Date: Sat Nov 18 17:15:30 2006 +0100
72759
72760 AVR32: Split start_u_boot into board_init_f and board_init_r
72761
72762 Split the avr32 initialization code into a function to run before
72763 relocation, board_init_f and a function to run after relocation,
72764 board_init_r. For now, board_init_f simply calls board_init_r
72765 at the end.
72766
72767 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72768
72769 commit 37403005cfe6bb13964d450f6a48a0b0f2f7017e
72770 Author: Heiko Schocher <hs@pollux.denx.de>
72771 Date: Sat Apr 14 05:26:48 2007 +0200
72772
72773 [Fix] Set the LED status register on the UC101 for the LXT971 PHY.
72774 clear the Display after reset.
72775
72776 Signed-off-by: Heiko Schocher <hs@denx.de>
72777
72778 commit 7882751c78b7ecabfd49b0eff8de27661c71f16c
72779 Author: Denis Peter <d.peter@mpl.ch>
72780 Date: Fri Apr 13 09:13:33 2007 +0200
72781
72782 [PATCH] Fix bugs in cmd_ide.c and cmd_scsi.c
72783
72784 Fix bug introduced by "Fix get_partition_info() parameter error in all
72785 other calls" from 2005-03-04 in cmd_ide.c and cmd_scsi.c, which prevented
72786 to use diskboot or scsiboot form another device than 0.
72787
72788 Signed-off-by: Denis Peter <d.peter@mpl.ch>
72789
72790 commit 0b94504d22e70f537c17a0d38c87edb6e370977d
72791 Author: Greg Lopp <lopp@pobox.com>
72792 Date: Fri Apr 13 08:02:24 2007 +0200
72793
72794 [PATCH] Fix use of "void *" for block dev read/write buffer pointers
72795
72796 Signed-of-by: Greg Lopp <lopp@pobox.com>
72797 Acked-by: Grant Likely <grant.likely@secretlab.ca>
72798
72799 commit 6fbf261f8df294e589cfadebebe5468e3c0f29e9
72800 Author: Xie Xiaobo <r63061@freescale.com>
72801 Date: Fri Mar 9 19:08:25 2007 +0800
72802
72803 Fix two bugs for MPC83xx DDR2 controller SPD Init
72804
72805 There are a few bugs in the cpu/mpc83xx/spd_sdram.c
72806 the first bug is that the picos_to_clk routine introduces a huge
72807 rounding error in 83xx.
72808 the second bug is that the mode register write recovery field is
72809 tWR-1, not tWR >> 1.
72810
72811 commit 2ad3aba01d37b72e7c957b07e102fccd64fe6d13
72812 Author: Jeffrey Mann <mannj@embeddedplanet.com>
72813 Date: Thu Apr 12 14:15:59 2007 +0200
72814
72815 ppc4xx: Fix i2c divisor calcularion for PPC4xx
72816
72817 This patch fixes changes the i2c_init(...) function to use the function
72818 get_OPB_freq() rather than calculating the OPB speed by
72819 sysInfo.freqPLB/sysInfo.pllOpbDiv. The get_OPB_freq() function is
72820 specific per processor. The prior method was not and so was calculating
72821 the wrong speed for some PPC4xx processors.
72822
72823 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
72824 Signed-off-by: Stefan Roese <sr@denx.de>
72825
72826 commit 6c9ba919375db977aaad9146bf320c7afd07ae7a
72827 Author: Wolfgang Denk <wd@denx.de>
72828 Date: Wed Apr 11 17:25:01 2007 +0200
72829
72830 Update CHANGELOG
72831
72832 Signed-off-by: Wolfgang Denk <wd@denx.de>
72833
72834 commit 51056dd9863e6a1bc363afbbe1775c58cd967418
72835 Author: Wolfgang Denk <wd@denx.de>
72836 Date: Wed Apr 11 17:22:55 2007 +0200
72837
72838 Update for SC3 board
72839
72840 * Make IDE timeout configurable through ide_reset_timeout variable.
72841 * Use Newline as "password" string
72842 * Use just a single partition in NAND flash
72843
72844 commit 3d98b85800c80dc68227c8f10bf5c93456d6d054
72845 Author: Haiying Wang <haiying.wang@freescale.com>
72846 Date: Mon Jan 22 12:37:30 2007 -0600
72847
72848 Add PIXIS FPGA support for MPC8641HPCN board.
72849
72850 Move the 8641HPCN's PIXIS code to the new directory
72851 board/freescale/common/ as it will be shared by
72852 future boards not in the same processor family.
72853
72854 Write a "pixis_reset" command that utilizes the FPGA
72855 reset sequencer to support alternate soft-reset options
72856 such as using the "alternate" flash bank, enabling
72857 the watch dog, or choosing different CPU frequencies.
72858
72859 Add documentation for the pixis_reset to README.mpc8641hpcn.
72860
72861 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
72862 Signed-off-by: Jon Loeliger <jdl@freescale.com>
72863
72864 commit 64dbbd40c58349b64f43fd33dbb5ca0adb67d642
72865 Author: Gerald Van Baren <vanbaren@cideas.com>
72866 Date: Fri Apr 6 14:19:43 2007 -0400
72867
72868 Moved fdt command support code to fdt_support.c
72869
72870 ...in preparation for improving the bootm command's handling of fdt blobs.
72871 Also cleaned up some coding sloppiness.
72872
72873 commit 6679f9299534e488a171a9bb8f9bb891de247aab
72874 Author: Gerald Van Baren <vanbaren@cideas.com>
72875 Date: Fri Apr 6 14:17:14 2007 -0400
72876
72877 libfdt: Make fdt_check_header() public
72878
72879 Changed _fdt_check_header() to fdt_check_header() and made it part of
72880 the interface - it is a useful routine.
72881
72882 Also did some asthetics cleanup to the include files (headers).
72883
72884 commit c0707ce65677650b5ceab0500ee50ae5168afef2
72885 Author: Aubrey Li <aubrey.adi@gmail.com>
72886 Date: Thu Apr 5 18:34:06 2007 +0800
72887
72888 [Blackfin][PATCH] Kill off a bunch of common local prototypes
72889
72890 commit 7b7e30aa64bb6657a1bfd32fdbdbfeb561e6a48d
72891 Author: Aubrey Li <aubrey.adi@gmail.com>
72892 Date: Thu Apr 5 18:33:04 2007 +0800
72893
72894 [Blackfin][PATCH] Fix dynamic CPLB generation issue
72895
72896 commit 0445e3a264251d75b1be45ef713c70726a2952f0
72897 Author: Aubrey Li <aubrey.adi@gmail.com>
72898 Date: Thu Apr 5 18:31:47 2007 +0800
72899
72900 [Blackfin][PATCH] minior cleanup
72901
72902 commit 155fd766573981090e638b493d5857562151862e
72903 Author: Aubrey Li <aubrey.adi@gmail.com>
72904 Date: Thu Apr 5 18:31:18 2007 +0800
72905
72906 [Blackfin][PATCH] Fix copyright and update license
72907
72908 commit 9fd437bbd75d282f899e1da50be20a2bf38450bc
72909 Author: Aubrey Li <aubrey.adi@gmail.com>
72910 Date: Thu Apr 5 18:30:25 2007 +0800
72911
72912 [Blackfin][PATCH] Add BF537 EMAC driver initialization
72913
72914 commit 889256e8604e0c68db1d866d720894dffede9df6
72915 Author: Aubrey Li <aubrey.adi@gmail.com>
72916 Date: Thu Apr 5 18:29:55 2007 +0800
72917
72918 [Blackfin][PATCH] call real the system synchronize instruction
72919
72920 commit e0df1c921b788289564e4c1ee7120a6a9cd3ab05
72921 Author: Aubrey Li <aubrey.adi@gmail.com>
72922 Date: Thu Apr 5 18:29:17 2007 +0800
72923
72924 [Blackfin][PATCH] remove asm/page.h as we do not actually use/want any of these definitions nor does any other arch include it
72925
72926 commit dfeeab2cd680df047e68e723b246adf6f33bb556
72927 Author: Aubrey Li <aubrey.adi@gmail.com>
72928 Date: Thu Apr 5 18:28:34 2007 +0800
72929
72930 [Blackfin][PATCH]: fix flash unaligned copy issue
72931
72932 commit 443feb740584e406efa203af909fe2926608e8d5
72933 Author: Igor Marnat <marny@rambler.ru>
72934 Date: Wed Mar 21 09:55:01 2007 +0300
72935
72936 Update usage of 'nc' in README.NetConsole
72937
72938 Added information about usage of NetConsole on systems where the -l and -p
72939 switches are mutually exclusive.
72940
72941 Signed-off-by: Igor Marnat <marny@rambler.ru>
72942 Signed-off-by: Ben Warren <bwarren@qstreams.com>
72943
72944 commit 31c98a88228021b314c89ebb8104fb6473da4471
72945 Author: Wolfgang Denk <wd@denx.de>
72946 Date: Wed Apr 4 02:09:30 2007 +0200
72947
72948 Minor coding style cleanup.
72949
72950 commit 94abd7c0583ebe01e799b25f451201deeaab550d
72951 Author: Wolfgang Denk <wd@denx.de>
72952 Date: Wed Apr 4 01:49:15 2007 +0200
72953
72954 Minor cleanup.
72955
72956 commit 822af351ad2babc7d99033361a5fcacd30f6bc78
72957 Author: Rodolfo Giometti <giometti@enneenne.com>
72958 Date: Tue Apr 3 14:27:18 2007 +0200
72959
72960 Support for the Philips ISP116x HCD (Host Controller Driver)
72961
72962 Signed-off-by: Rodolfo Giometti <giometti@enneenne.com>
72963
72964 commit edf5851be6c17c031d4f71dd5b0a12040b7c50c8
72965 Author: Markus Klotzbuecher <mk@denx.de>
72966 Date: Tue Apr 3 14:27:08 2007 +0200
72967
72968 USB: cleanup monahans usb support. Remove dead code.
72969
72970 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
72971
72972 commit a65c5768e5537530bd1780af3d3fddc3113a163c
72973 Author: Stefan Roese <sr@denx.de>
72974 Date: Mon Apr 2 10:09:30 2007 +0200
72975
72976 ppc4xx: Change SysACE address on Katmai
72977
72978 With this new base address of the Xilinx SystemACE controller
72979 the Linux driver will be easier to adapt, since it can now be
72980 mapped via the "normal" ioremap() call.
72981
72982 Signed-off-by: Stefan Roese <sr@denx.de>
72983
72984 commit aea03c4e8c3a21ce43d3faf48a6e6d474c8bdf73
72985 Author: Gerald Van Baren <vanbaren@cideas.com>
72986 Date: Sat Mar 31 14:30:53 2007 -0400
72987
72988 Fix some minor whitespace violations.
72989
72990 commit 213bf8c822de8eecaf69860684469cdaba2e9e6a
72991 Author: Gerald Van Baren <vanbaren@cideas.com>
72992 Date: Sat Mar 31 12:23:51 2007 -0400
72993
72994 Add a flattened device tree (fdt) command (2 of 2)
72995
72996 Modifications to the existing code to support the new fdt command.
72997
72998 commit 781e09ee6e3e3e392ab362c1f0ef1068adc76e3e
72999 Author: Gerald Van Baren <vanbaren@cideas.com>
73000 Date: Sat Mar 31 12:22:10 2007 -0400
73001
73002 Add a flattened device tree (fdt) command (1 of 2)
73003
73004 The fdt command uses David Gibson's libfdt library to manipulate as well
73005 as print the flattened device tree. This patch is the new command,
73006 the second part is the modifications to the existing code.
73007
73008 commit 3af0d587d93e0be5f96e1b30fa41e662f8b0803e
73009 Author: Gerald Van Baren <vanbaren@cideas.com>
73010 Date: Sat Mar 31 12:13:43 2007 -0400
73011
73012 libfdt: Enhanced and published fdt_next_tag()
73013
73014 Enhanced the formerly private function _fdt_next_tag() to allow stepping
73015 through the tree, used to produce a human-readable dump, and made
73016 it part of the published interface.
73017 Also added some comments.
73018
73019 commit fa3a74cec73dfd06a5ae35a9a3368200273aaa71
73020 Author: Gerald Van Baren <vanbaren@cideas.com>
73021 Date: Sat Mar 31 12:05:39 2007 -0400
73022
73023 libfdt: Customizations for use by u-boot.
73024
73025 Changes to David Gibson's original source to fit into u-boot's
73026 environment. No functionality changes.
73027
73028 commit 35748177c64a4a83a00057e93bb33e40278a2a96
73029 Author: Gerald Van Baren <vanbaren@cideas.com>
73030 Date: Sat Mar 31 12:00:56 2007 -0400
73031
73032 libfdt: Import libfdt source (2 of 2)
73033
73034 This adds the applicable libfdt source files (unmodified) and a README
73035 to explain where the source came from.
73036
73037 commit 7cd5da0fe877e7171a4cdd44880bce783132871a
73038 Author: Gerald Van Baren <vanbaren@cideas.com>
73039 Date: Sat Mar 31 11:59:59 2007 -0400
73040
73041 libfdt: Import libfdt source (1 of 2)
73042
73043 This adds the applicable libfdt source files (unmodified) and a README
73044 to explain where the source came from.
73045
73046 commit da6ebc1bc082cbe3b6bbde079cafe09f7ebbad4b
73047 Author: Stefan Roese <sr@denx.de>
73048 Date: Sat Mar 31 13:16:23 2007 +0200
73049
73050 ppc4xx: Update Katmai bootstrap command
73051
73052 Now the DDR2 frequency is also 2*PLB frequency when 166MHz PLB
73053 is selected.
73054
73055 Signed-off-by: Stefan Roese <sr@denx.de>
73056
73057 commit cabee756a6532986729477c3cc1ea16ef8517ad2
73058 Author: Stefan Roese <sr@denx.de>
73059 Date: Sat Mar 31 13:15:06 2007 +0200
73060
73061 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
73062
73063 Additional RAM information is now printed upon powerup, like
73064 DDR2 frequency and CAS latency.
73065
73066 Signed-off-by: Stefan Roese <sr@denx.de>
73067
73068 commit 60723803431ac75cad085690789e433d5ab9174e
73069 Author: Stefan Roese <sr@denx.de>
73070 Date: Sat Mar 31 08:48:36 2007 +0200
73071
73072 ppc4xx: Change Yucca config file to support ECC
73073
73074 With the updated 44x DDR2 driver the Yucca board now supports
73075 ECC generation and checking.
73076
73077 Signed-off-by: Stefan Roese <sr@denx.de>
73078
73079 commit 490e5730c674b20d708b783a2c5ffd7208f83873
73080 Author: Stefan Roese <sr@denx.de>
73081 Date: Sat Mar 31 08:47:34 2007 +0200
73082
73083 ppc4xx: Fix "bootstrap" command for Katmai board
73084
73085 The board specific "bootstrap" command is now fixed and can
73086 be used for the AMCC Katmai board to configure different
73087 CPU/PLB/OPB frequencies.
73088
73089 Signed-off-by: Stefan Roese <sr@denx.de>
73090
73091 commit 94f54703c3a776ec23e427ca2a16e0a79a5d50c1
73092 Author: Stefan Roese <sr@denx.de>
73093 Date: Sat Mar 31 08:46:08 2007 +0200
73094
73095 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
73096
73097 Fix a bug in the auto calibration routine. This driver now runs
73098 more reliable with the tested modules. It's also tested with
73099 167MHz PLB frequency (667MHz DDR2 frequency) on the Katmai.
73100
73101 Signed-off-by: Stefan Roese <sr@denx.de>
73102
73103 commit 342cd097be1e7affe82f42ab3da220959a699e64
73104 Author: Michal Simek <monstr@monstr.eu>
73105 Date: Fri Mar 30 22:52:09 2007 +0200
73106
73107 [PATCH] Clean include dependence
73108
73109 commit 6f934210fb293fde2cfb4251c6d96fdc58b6a906
73110 Author: Michal Simek <monstr@monstr.eu>
73111 Date: Fri Mar 30 22:42:45 2007 +0200
73112
73113 [CLEAN] Remove inefficient Suzaku code
73114
73115 commit 430f1b0f9a670c2f13eaa52e66a10db96dd3647d
73116 Author: Stefan Roese <sr@denx.de>
73117 Date: Wed Mar 28 15:03:16 2007 +0200
73118
73119 Merge some AMCC make targets to keep the top-level Makefile smaller
73120
73121 Signed-off-by: Stefan Roese <sr@denx.de>
73122
73123 commit 0c75c9d84307a9f1cbe1ff0c4d8937ee3a96475e
73124 Author: Stefan Roese <sr@denx.de>
73125 Date: Wed Mar 28 14:52:12 2007 +0200
73126
73127 i2c: Enable "old" i2c commands even when CONFIG_I2C_CMD_TREE is defined
73128
73129 The "old" i2c commands (iprobe, imd...) are now compiled in again,
73130 even when the i2c command tree is enabled via the CONFIG_I2C_CMD_TREE
73131 config option.
73132
73133 Signed-off-by: Stefan Roese <sr@denx.de>
73134
73135 commit 5da048adf44bea5e3b94080d02903c2e3fe7aa4a
73136 Author: Michal Simek <monstr@monstr.eu>
73137 Date: Tue Mar 27 00:32:16 2007 +0200
73138
73139 PATCH: Resolve GPL license problem
73140
73141 commit ae00bb4b2944dc64a485ed72a19754b11af7c223
73142 Author: Rodolfo Giometti <giometti@enneenne.com>
73143 Date: Mon Mar 26 12:03:36 2007 +0200
73144
73145 PXA: pxa27x USB OHCI support
73146
73147 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
73148
73149 commit ae79f60677c208326535647dcbd5c3ec40dbcb0b
73150 Author: Markus Klotzbuecher <mk@denx.de>
73151 Date: Mon Mar 26 11:21:05 2007 +0200
73152
73153 USB: remove the S3C24X0_merge #define, which was introduced while
73154 merging OHCI drivers.
73155
73156 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
73157
73158 commit 1798049522f594013aea29457d46794298c6ae15
73159 Author: Michal Simek <root@monstr.eu>
73160 Date: Mon Mar 26 01:39:07 2007 +0200
73161
73162 Support for XUPV2P board
73163 Reset support
73164 BSP autoconfig support
73165
73166 commit 0d974d5297349504a2ddfa09314be573b5df320a
73167 Author: Stefan Roese <sr@denx.de>
73168 Date: Sat Mar 24 15:57:09 2007 +0100
73169
73170 [PATCH] Add 4xx GPIO functions
73171
73172 This patch adds some 4xx GPIO functions. It also moves some of the
73173 common code and defines into a common 4xx GPIO header file.
73174
73175 Signed-off-by: Stefan Roese <sr@denx.de>
73176
73177 commit 2db633658bbf366ab0c8dad7a0727e1fb2ae6b11
73178 Author: Stefan Roese <sr@denx.de>
73179 Date: Sat Mar 24 15:55:58 2007 +0100
73180
73181 [PATCH] Small Sequoia cleanup
73182
73183 Signed-off-by: Stefan Roese <sr@denx.de>
73184
73185 commit 3cb86f3e40d2a80356177434a99f75bc8baa9caf
73186 Author: Stefan Roese <sr@denx.de>
73187 Date: Sat Mar 24 15:45:34 2007 +0100
73188
73189 [PATCH] Clean up 40EZ/Acadia support
73190
73191 This patch cleans up all the open issue of the preliminary
73192 Acadia support.
73193
73194 Signed-off-by: Stefan Roese <sr@denx.de>
73195
73196 commit 6eb1df835191d8ce4b81d5af40fa8e0fbe78e997
73197 Author: Jon Loeliger <jdl@freescale.com>
73198 Date: Tue Dec 12 11:02:20 2006 -0600
73199
73200 Fix 8641HPCN problem with ld version 2.16
73201
73202 (Dot outside sections problem).
73203
73204 This fix is in the spirit of 807d5d7319330e336ab34a5623c5e0d73b87d540.
73205
73206 Signed-off-by: Jon Loeliger <jdl@freescale.com>
73207
73208 commit 9964a4dd0d4ef5a037febaebf1aa494b1a72991c
73209 Author: Haiying Wang <haiying.wang@freescale.com>
73210 Date: Thu Dec 7 10:35:55 2006 -0600
73211
73212 Set Rev 2.x 86xx PIC in mixed mode.
73213
73214 Prevent false interrupt from hanging Linux as MSR[EE] is set
73215 to enable interrupts by changing the PIC out of the default
73216 pass through mode into mixed mode.
73217
73218 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
73219 Signed-off-by: Jon Loeliger <jdl@freescale.com>
73220
73221 commit 5a58a73ceb0a4059c42ef64cedbc1a45e0aaa00e
73222 Author: Jason Jin <jason.jin@freescale.com>
73223 Date: Thu Dec 7 10:32:35 2006 -0600
73224
73225 Add flash cmd function to 8641HPCN ramboot
73226
73227 Also fixes some commmand for 8641 HPCN ramboot case.
73228
73229 Signed-off-by: Jason Jin <jason.jin@freescale.com>
73230 Signed-off-by: Jon Loeliger <jdl@freescale.com>
73231
73232 commit 2ccceacc04b009d923afb7c26189ba2f8a2a5d46
73233 Author: Ed Swarthout <ed.swarthout@freescale.com>
73234 Date: Thu Dec 7 10:34:14 2006 -0600
73235
73236 Add support for 8641 Rev 2 silicon.
73237
73238 Without this patch, I am unable to get to the prompt on rev 2 silicon.
73239 Only set ddrioovcr for rev1.
73240
73241 Signed-off-by: Ed Swarthout<ed.swarthout@freescale.com>
73242 Signed-off-by: Jon Loeliger <jdl@freescale.com>
73243
73244 commit 44ba464b99001f8bd1c456a1e9d59726252f707a
73245 Author: Wolfgang Denk <wd@denx.de>
73246 Date: Thu Mar 22 00:13:12 2007 +0100
73247
73248 Code cleanup / re-insert previous Copyright entries.
73249
73250 Signed-off-by: Wolfgang Denk <wd@denx.de>
73251
73252 commit 2a8dfe08359a1b663418b2faa1da1d7bce34d302
73253 Author: Wolfgang Denk <wd@denx.de>
73254 Date: Wed Mar 21 23:26:15 2007 +0100
73255
73256 Code cleanup. Update CHANGELOG
73257
73258 commit e6615ecf4eaf4dd52696934aed8f5c6474cfd286
73259 Author: Stefan Roese <sr@denx.de>
73260 Date: Wed Mar 21 14:54:29 2007 +0100
73261
73262 ppc4xx: Fix file mode of include/configs/acadia.h
73263
73264 Signed-off-by: Stefan Roese <sr@denx.de>
73265
73266 commit d5f4614c9350d9333e575100fb250aab774d0258
73267 Author: Markus Klotzbuecher <mk@denx.de>
73268 Date: Wed Mar 21 14:41:46 2007 +0100
73269
73270 SPC1920: fix small clock routing bug
73271
73272 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
73273
73274 commit 16c0cc1c82081a493ab87c51980b28336ce1bce8
73275 Author: Stefan Roese <sr@denx.de>
73276 Date: Wed Mar 21 13:39:57 2007 +0100
73277
73278 [PATCH] Add AMCC Acadia (405EZ) eval board support
73279
73280 This patch adds support for the new AMCC Acadia eval board.
73281
73282 Please note that this Acadia/405EZ support is still in a beta stage.
73283 Still lot's of cleanup needed but we need a preliminary release now.
73284
73285 Signed-off-by: Stefan Roese <sr@denx.de>
73286
73287 commit e01bd218b00af73499331a1a701625a852cd286f
73288 Author: Stefan Roese <sr@denx.de>
73289 Date: Wed Mar 21 13:38:59 2007 +0100
73290
73291 [PATCH] Add AMCC PPC405EZ support
73292
73293 This patch adds support for the new AMCC 405EZ PPC. It is in
73294 preparation for the AMCC Acadia board support.
73295
73296 Please note that this Acadia/405EZ support is still in a beta stage.
73297 Still lot's of cleanup needed but we need a preliminary release now.
73298
73299 Signed-off-by: Stefan Roese <sr@denx.de>
73300
73301 commit 07e82cb2e284a893df6693f2a1337ab2c47bf6a1
73302 Author: Heiko Schocher <hs@pollux.denx.de>
73303 Date: Wed Mar 21 08:45:17 2007 +0100
73304
73305 [PATCH] TQM8272: dont change the bits given from the HRCW
73306 for the SIUMCR and BCR Register.
73307 Fix the calculation for the EEprom Size
73308
73309 Signed-off-by: Heiko Schocher <hs@denx.de>
73310
73311 commit 654589873dbafcf104dff133ce0d03a4506e9cc3
73312 Author: Aubrey Li <aubrey.adi@gmail.com>
73313 Date: Tue Mar 20 18:16:24 2007 +0800
73314
73315 [Blackfin][PATCH] Add BF561 EZKIT board support
73316
73317 commit a6154fd1cfd020f6da8527e0365b1020a11a71d0
73318 Author: Aubrey Li <aubrey.adi@gmail.com>
73319 Date: Mon Mar 19 22:55:58 2007 +0800
73320
73321 [Blackfin][PATCH] minor cleanup
73322
73323 commit 389b6bb50f745bf5038ce030300d8a8512e96f79
73324 Author: Wolfgang Denk <wd@denx.de>
73325 Date: Mon Mar 19 13:10:08 2007 +0100
73326
73327 Remove obsoleted POST files.
73328
73329 Signed-off-by: Wolfgang Denk <wd@denx.de>
73330
73331 commit 8e709bbb2636b5670a8f2b575e138eb1f55773f6
73332 Author: Aubrey Li <aubrey.adi@gmail.com>
73333 Date: Mon Mar 19 01:26:11 2007 +0800
73334
73335 [PATCH] Add flash chip M29W320ET/B support
73336
73337 commit 26bf7deca364a5b33f39e8f14ddd3f4081345015
73338 Author: Aubrey Li <aubrey.adi@gmail.com>
73339 Date: Mon Mar 19 01:24:52 2007 +0800
73340
73341 [Blackfin][PATCH] Add BF537 stamp board support
73342
73343 commit 8423e5e31a7235d05a482627315fb11d49c17bd7
73344 Author: Stefan Roese <sr@denx.de>
73345 Date: Fri Mar 16 21:11:42 2007 +0100
73346
73347 [PATCH] Use dynamic SDRAM TLB setup on AMCC Ebony eval board
73348
73349 Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
73350 DDR memory are dynamically programmed matching the total size
73351 of the equipped memory (DIMM modules).
73352
73353 Signed-off-by: Stefan Roese <sr@denx.de>
73354
73355 commit 76d1466f918b881cda2d259254761e73885093c2
73356 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73357 Date: Tue Mar 13 13:38:05 2007 +0100
73358
73359 [PATCH] renamed environment variable 'addcon' to 'addcons' for PCI405
73360 boards in terms of unification.
73361
73362 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73363
73364 commit a7090b993d3d4d2221ac3f33e6cb1d1b2ccc6bf0
73365 Author: Wolfgang Denk <wd@denx.de>
73366 Date: Tue Mar 13 16:05:55 2007 +0100
73367
73368 Make SC3 board build with 'make O='; use 'addcons' consistently
73369 (SC3 and Jupiter used to use 'addcon' instead).
73370
73371 Signed-off-by: Wolfgang Denk wd@denx.de
73372
73373 commit 8502e30a28e492c756ea2d7df0ace026388fce4b
73374 Author: Heiko Schocher <hs@pollux.denx.de>
73375 Date: Tue Mar 13 09:40:59 2007 +0100
73376
73377 [PATCH] update board config for jupiter Board:
73378 added Hush Shell,
73379 CONFIG_CMDLINE_EDITING,
73380 CFG_ENV_ADDR_REDUND activated
73381
73382 Signed-off-by: Heiko Schocher <hs@denx.de>
73383
73384 commit 0d93de11449390a5984b0236c3612e50f6dbb7e8
73385 Author: Aubrey Li <aubrey.adi@gmail.com>
73386 Date: Mon Mar 12 12:11:55 2007 +0800
73387
73388 [Blackfin][PATCH] minor cleanup
73389
73390 commit bfa5754a58477ac917d21527cd0f079d87cf188e
73391 Author: Aubrey Li <aubrey.adi@gmail.com>
73392 Date: Mon Mar 12 01:42:06 2007 +0800
73393
73394 [Blackfin][PATCH] Fix BUILD_DIR option of MAKEALL building issue
73395
73396 commit 8440bb14581a294375c34b91b42512f9753d1130
73397 Author: Aubrey Li <aubrey.adi@gmail.com>
73398 Date: Mon Mar 12 00:25:14 2007 +0800
73399
73400 [Blackfin][PATCH] code cleanup
73401
73402 commit cfc67116a706fd18b8f6a9c11a16753c5626d689
73403 Author: Michal Simek <monstr@monstr.eu>
73404 Date: Sun Mar 11 13:48:24 2007 +0100
73405
73406 [Microblaze][PATCH] part 2
73407 timer support
73408 interrupt controller support
73409 flash support
73410 ethernet support
73411 cache support
73412 board information support
73413 env support
73414 booting image support
73415
73416 adding support for Xilinx ML401
73417
73418 commit 76316a318de91f6184e7c22a10e02d275ade2441
73419 Author: Michal Simek <monstr@monstr.eu>
73420 Date: Sun Mar 11 13:42:58 2007 +0100
73421
73422 [Microblaze][PATCH]
73423 timer support
73424 interrupt controller support
73425 flash support
73426 ethernet support
73427 cache support
73428 board information support
73429 env support
73430 booting image support
73431
73432 adding support for Xilinx ML401
73433
73434 commit 8db13d63157811c839d15a313d9f2d2f5fd10af3
73435 Author: Aubrey Li <aubrey.adi@gmail.com>
73436 Date: Sat Mar 10 23:49:29 2007 +0800
73437
73438 [Blackfin][PATCH] code cleanup
73439
73440 commit ef26a08fef928b7bc11ae2c109e638dc3a016d91
73441 Author: Aubrey.Li <aubrey.adi@gmail.com>
73442 Date: Fri Mar 9 13:40:56 2007 +0800
73443
73444 [Blackfin][PATCH-2/2] Common files changed to support bf533 platform
73445
73446 commit 3f0606ad0b5639f7f22848fe5b4574e754d0470f
73447 Author: Aubrey.Li <aubrey.adi@gmail.com>
73448 Date: Fri Mar 9 13:38:44 2007 +0800
73449
73450 [Blackfin]PATCH-1/2]: Remove obsolete blackfin port and add bf533 platform support
73451
73452 commit 992423ab43c2bcf6b704853bd00af77450915e20
73453 Author: Stefan Roese <sr@denx.de>
73454 Date: Thu Mar 8 23:00:08 2007 +0100
73455
73456 ppc4xx: Fix file mode of sequoia.c
73457
73458 Signed-off-by: Stefan Roese <sr@denx.de>
73459
73460 commit eb92f613556800f7483666db09d9a237ad911d4a
73461 Author: Wolfgang Denk <wd@pollux.denx.de>
73462 Date: Thu Mar 8 22:52:51 2007 +0100
73463
73464 Minor cleanup.
73465
73466 commit 8ce16f55c7b9752af3d8bed84521aec5337e2de1
73467 Author: John Otken john@softadvances.com <john@softadvances.com>
73468 Date: Thu Mar 8 09:39:48 2007 -0600
73469
73470 ppc4xx: Clear Sequoia/Rainier security engine reset bits
73471
73472 Signed-off-by: John Otken john@softadvances.com <john@softadvances.com>
73473
73474 commit 650a330dd2539130c8c324791e2f9f75aed79d4e
73475 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73476 Date: Thu Mar 8 16:26:52 2007 +0100
73477
73478 [PATCH] I2C: add some more SPD eeprom decoding for DDR2 modules
73479
73480 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73481
73482 commit d9fc703246840c4b268debf48c334ba55c597dc0
73483 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73484 Date: Thu Mar 8 16:25:47 2007 +0100
73485
73486 [PATCH] I2C: disable flat i2c commands when CONFIG_I2C_CMD_TREE is defined
73487
73488 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73489
73490 commit ced5b9029043397348cdc88e0cfcd6b1f629250b
73491 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73492 Date: Thu Mar 8 16:23:11 2007 +0100
73493
73494 [PATCH] 4xx: allow CONFIG_I2C_CMD_TREE without CONFIG_I2C_MULTI_BUS
73495
73496 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73497
73498 commit d8a8ea5c476d37006fc7f85b7f903142795c8b14
73499 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73500 Date: Thu Mar 8 16:20:32 2007 +0100
73501
73502 [PATCH] I2C: Add missing default CFG_SPD_BUS_NUM
73503
73504 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73505
73506 commit f9fc6a5852a6335840882fa2111925010eea1abe
73507 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73508 Date: Wed Mar 7 15:32:01 2007 +0100
73509
73510 fixed ethernet phy configuration for plu405 board
73511
73512 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73513
73514 commit 769104c9356594deb2092e204a39c05b33202d6c
73515 Author: Wolfgang Denk <wd@pollux.denx.de>
73516 Date: Thu Mar 8 21:49:27 2007 +0100
73517
73518 Minor cleanup
73519
73520 commit 00cdb4ce5e1b42248e7e6522ad0da3421b988afa
73521 Author: Stefan Roese <sr@denx.de>
73522 Date: Thu Mar 8 10:13:16 2007 +0100
73523
73524 [PATCH] Update AMCC Luan 440SP eval board support
73525
73526 The AMCC Luan now uses the common 440SP(e) DDR SPD code for DDR
73527 inititializition. This includes DDR auto calibration and support
73528 for different DIMM modules, instead of the fixed setup used in
73529 the earlier version.
73530
73531 This patch also enables the cache in FLASH for the startup
73532 phase of U-Boot (while running from FLASH). After relocating to
73533 SDRAM the cache is disabled again. This will speed up the boot
73534 process, especially the SDRAM setup, since there are some loops
73535 for memory testing (auto calibration).
73536
73537 Signed-off-by: Stefan Roese <sr@denx.de>
73538
73539 commit 2f5df47351910a2936c7741cf111855829200943
73540 Author: Stefan Roese <sr@denx.de>
73541 Date: Thu Mar 8 10:10:18 2007 +0100
73542
73543 [PATCH] Update AMCC Yucca 440SPe eval board support
73544
73545 The AMCC Yucca now uses the common 440SP(e) DDR SPD code for DDR
73546 inititializition. This includes DDR auto calibration and support
73547 for different DIMM modules, instead of the fixed setup used in
73548 the earlier version.
73549
73550 Signed-off-by: Stefan Roese <sr@denx.de>
73551
73552 commit 2721a68a9ea91f1e494649ce68b2577261f578e2
73553 Author: Stefan Roese <sr@denx.de>
73554 Date: Thu Mar 8 10:07:18 2007 +0100
73555
73556 ppc4xx: Small AMCC Katmai 440SPe update
73557
73558 Signed-off-by: Stefan Roese <sr@denx.de>
73559
73560 commit df294497479b1dca6dd86318b2a912f72fede0df
73561 Author: Stefan Roese <sr@denx.de>
73562 Date: Thu Mar 8 10:06:09 2007 +0100
73563
73564 ppc4xx: Update 440SP/440SPe DDR SPD setup code to support 440SP
73565
73566 Signed-off-by: Stefan Roese <sr@denx.de>
73567
73568 commit 83853178bd36bca6f0f8f1331476620c84a587fc
73569 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
73570 Date: Wed Mar 7 12:14:50 2007 -0600
73571
73572 net - Support ping reply when processing net-loop
73573
73574 Add ICMP_ECHO_REQUEST packet support by responding with a ICMP_ECHO_REPLY.
73575
73576 This permits the ping command to test the phy interface when the phy
73577 is put in loopback mode (typically by setting register 0 bit 14).
73578
73579 It also allows the port to respond to an external ping when u-boot is
73580 processing some other net command (such as tftp). This is useful when
73581 tftp appears to hang.
73582
73583 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
73584 Signed-off-by: Ben Warren <bwarren@qstreams.com>
73585
73586 commit fa1aef15bcd47736687be1af544506e90fba545d
73587 Author: Stefan Roese <sr@denx.de>
73588 Date: Wed Mar 7 16:43:00 2007 +0100
73589
73590 [PATCH] Use dynamic SDRAM TLB setup on AMCC Ocotea eval board
73591
73592 Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
73593 DDR memory are dynamically programmed matching the total size
73594 of the equipped memory (DIMM modules).
73595
73596 Signed-off-by: Stefan Roese <sr@denx.de>
73597
73598 commit e2ebe696818939e2b974628be9c921ea3fe9de13
73599 Author: Stefan Roese <sr@denx.de>
73600 Date: Wed Mar 7 16:39:36 2007 +0100
73601
73602 [PATCH] Fix AMCC 44x SPD SDRAM init code to support 2 DIMM's
73603
73604 This patch fixes a problem that occurs when 2 DIMM's are
73605 used. This problem was first spotted and fixed by Gerald Jackson
73606 <gerald.jackson@reaonixsecurity.com> but this patch fixes the
73607 problem in a little more clever way.
73608
73609 This patch also adds the nice functionality to dynamically
73610 create the TLB entries for the SDRAM (tlb.c). So we should
73611 never run into such problems with wrong (too short) TLB
73612 initialization again on these platforms.
73613
73614 As this feature is new to the "old" 44x SPD DDR driver, it
73615 has to be enabled via the CONFIG_PROG_SDRAM_TLB define.
73616
73617 Signed-off-by: Stefan Roese <sr@denx.de>
73618
73619 commit 39218433983417b9df087976a79e3f80dd5e83d6
73620 Author: Wolfgang Denk <wd@denx.de>
73621 Date: Wed Mar 7 16:33:44 2007 +0100
73622
73623 UC101: fix compiler warnings
73624
73625 commit 8d7e2732221bc2d64df14f700c64c23e0a4c3dce
73626 Author: Wolfgang Denk <wd@pollux.denx.de>
73627 Date: Wed Mar 7 16:19:46 2007 +0100
73628
73629 HMI1001: fix build error, cleanup compiler warnings.
73630
73631 commit ad5bb451ade552c44bef9119d907929ebc2c126f
73632 Author: Wolfgang Denk <wd@pollux.denx.de>
73633 Date: Tue Mar 6 18:08:43 2007 +0100
73634
73635 Restructure POST directory to support of other CPUs, boards, etc.
73636
73637 commit a5284efd125967675b2e9c6ef7b95832268ad360
73638 Author: Wolfgang Denk <wd@pollux.denx.de>
73639 Date: Tue Mar 6 18:01:47 2007 +0100
73640
73641 Fix HOSTARCH handling.
73642 Patch by Mike Frysinger, Mar 05 2007
73643
73644 commit 07b7b0037aac5102939917d7cbe561b5c0d5aa44
73645 Author: Stefan Roese <sr@denx.de>
73646 Date: Tue Mar 6 07:47:04 2007 +0100
73647
73648 [PATCH] Speed optimization of AMCC Sequoia/Rainier DDR2 setup
73649
73650 As provided by the AMCC applications team, this patch optimizes the
73651 DDR2 setup for 166MHz bus speed. The values provided are also save
73652 to use on a "normal" 133MHz PLB bus system. Only the refresh counter
73653 setup has to be adjusted as done in this patch.
73654
73655 For this the NAND booting version had to include the "speed.c" file
73656 from the cpu/ppc4xx directory. With this addition the NAND SPL image
73657 will just fit into the 4kbytes of program space. gcc version 4.x as
73658 provided with ELDK 4.x is needed to generate this optimized code.
73659
73660 Signed-off-by: Stefan Roese <sr@denx.de>
73661
73662 commit 647d3c3eed0da1d1505eecabe0b0fab96f956e68
73663 Author: Wolfgang Denk <wd@pollux.denx.de>
73664 Date: Sun Mar 4 01:36:05 2007 +0100
73665
73666 Some code cleanup.
73667
73668 commit 781e026c8aa6f7e9eb5f0e72cc4d20971219b148
73669 Author: Kim Phillips <kim.phillips@freescale.com>
73670 Date: Wed Feb 28 00:02:04 2007 -0600
73671
73672 mpc83xx: fix implicit declaration of function 'ft_get_prop' warnings
73673
73674 (cherry picked from c5bf13b02284c3204a723566a9bab700e5059659 commit)
73675
73676 commit 4feab4de7bfc2cb2fed36ad76f93c3a69659bbaf
73677 Author: Kumar Gala <galak@kernel.crashing.org>
73678 Date: Tue Feb 27 23:51:42 2007 -0600
73679
73680 mpc83xx: Fix config of Arbiter, System Priority, and Clock Mode
73681
73682 The config value for:
73683 * CFG_ACR_PIPE_DEP
73684 * CFG_ACR_RPTCNT
73685 * CFG_SPCR_TSEC1EP
73686 * CFG_SPCR_TSEC2EP
73687 * CFG_SCCR_TSEC1CM
73688 * CFG_SCCR_TSEC2CM
73689
73690 Were not being used when setting the appropriate register
73691
73692 Added:
73693 * CFG_SCCR_USBMPHCM
73694 * CFG_SCCR_USBDRCM
73695 * CFG_SCCR_PCICM
73696 * CFG_SCCR_ENCCM
73697
73698 To allow full config of the SCCR.
73699
73700 Also removed random CFG_SCCR settings in MPC8349EMDS, TQM834x, and sbc8349
73701 that were just bogus.
73702
73703 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
73704
73705 commit d51b3cf371cd441030460ef19d36b2924c361b1a
73706 Author: Kim Phillips <kim.phillips@freescale.com>
73707 Date: Thu Feb 22 20:06:57 2007 -0600
73708
73709 mpc83xx: update [local-]mac-address properties on UEC based devices
73710
73711 8360 and 832x weren't updating their [local-]mac-address
73712 properties. This patch fixes that.
73713
73714 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73715
73716 commit 61f4f912acbe60776c5e00df1ec94094ce672957
73717 Author: Timur Tabi <timur@freescale.com>
73718 Date: Tue Feb 13 10:41:42 2007 -0600
73719
73720 mpc83xx: write MAC address to mac-address and local-mac-address
73721
73722 Some device trees have a mac-address property, some have local-mac-address,
73723 and some have both. To support all of these device trees, this patch
73724 updates ftp_cpu_setup() to write the MAC address to mac-address if it exists.
73725 This function already updates local-mac-address.
73726
73727 Signed-off-by: Timur Tabi <timur@freescale.com>
73728
73729 commit 22d71a71f57fd5d38b27ac3848e50d790360a598
73730 Author: Kim Phillips <kim.phillips@freescale.com>
73731 Date: Tue Feb 27 18:41:08 2007 -0600
73732
73733 mpc83xx: add command line editing by default
73734
73735 commit 3fc0bd159103b536e1c54c6f4457a09b3aba66ca
73736 Author: Kim Phillips <kim.phillips@freescale.com>
73737 Date: Wed Feb 14 19:50:53 2007 -0600
73738
73739 mpc83xx: Disable G1TXCLK, G2TXCLK h/w buffers
73740
73741 Disable G1TXCLK, G2TXCLK h/w buffers. This patch
73742 fixes a networking timeout issue with MPC8360EA (Rev.2) PBs.
73743
73744 Verified on Rev. 1.1, Rev. 1.2, and Rev. 2.0 boards.
73745
73746 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73747 Signed-off-by: Emilian Medve <Emilian.Medve@freescale.com>
73748
73749 commit d61853cf2472e0b8bcbd131461a93d1c49ff0c1f
73750 Author: Xie Xiaobo <r63061@freescale.com>
73751 Date: Wed Feb 14 18:27:17 2007 +0800
73752
73753 mpc83xx: Add DDR2 controller fixed/SPD Init for MPC83xx
73754
73755 The code supply fixed and SPD initialization for MPC83xx DDR2 Controller.
73756 it pass DDR/DDR2 compliance tests.
73757
73758 Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
73759
73760 commit b110f40bd180c6b560276589beedf753e97c46ce
73761 Author: Xie Xiaobo <r63061@freescale.com>
73762 Date: Wed Feb 14 18:27:06 2007 +0800
73763
73764 mpc83xx: Add the cpu specific code for MPC8360E rev2.0 MDS
73765
73766 MPC8360E rev2.0 have new spridr,and PVR value,
73767 The MDS board for MPC8360E rev2.0 has 32M bytes Flash and 256M DDR2 DIMM.
73768
73769 Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
73770
73771 commit 8d172c0f0d85998a256a95b7459a5403a30380ed
73772 Author: Xie Xiaobo <r63061@freescale.com>
73773 Date: Wed Feb 14 18:26:44 2007 +0800
73774
73775 mpc83xx: Add the cpu and board specific code for MPC8349E rev3.1 MDS
73776
73777 MPC8349E rev3.1 have new spridr,and PVR value,
73778 The MDS board for MPC8349E rev3.1 has 32M bytes Flash and 256M DDR2 DIMM.
73779
73780 Signed-off-by: Xie Xiaobo<X.Xie@freescale.com>
73781
73782 commit f6f5f709e5c8e4564c4dfeecfdf2279244f9c83b
73783 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
73784 Date: Wed Jan 31 11:04:19 2007 +0100
73785
73786 mpc83xx: Fix empty i2c reads/writes in fsl_i2c.c
73787
73788 Fix empty i2c reads/writes, i2c_write(0x50, 0x00, 0, NULL, 0)
73789 which is used to se if an slave will ACK after receiving its address.
73790
73791 Correct i2c probing to use this method as the old method could upset
73792 a slave as it wrote a data byte to it.
73793
73794 Add a small delay in i2c_init() to let the controller
73795 shutdown any ongoing I2C activity.
73796
73797 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
73798
73799 commit 7a78f148d6a7298e4fface680dc7eacd877b1aba
73800 Author: Timur Tabi <timur@freescale.com>
73801 Date: Wed Jan 31 15:54:29 2007 -0600
73802
73803 mpc83xx: Add support for the MPC8349E-mITX-GP
73804
73805 Add support for the MPC8349E-mITX-GP, a stripped-down version of the
73806 MPC8349E-mITX. Bonus features include support for low-boot (BMS bit in
73807 HRCW is 0) for the ITX and a README for the ITX and the ITX-GP.
73808
73809 Signed-off-by: Timur Tabi <timur@freescale.com>
73810
73811 commit fab16807adad350f618024350c6950165c247c72
73812 Author: Timur Tabi <timur@freescale.com>
73813 Date: Wed Jan 31 15:54:20 2007 -0600
73814
73815 mpc83xx: Delete sdram_init() for MPC8349E-mITX
73816
73817 There is no SDRAM on any of the 8349 ITX variants, so function sdram_init()
73818 never does anything. This patch deletes it.
73819
73820 Signed-off-by: Timur Tabi <timur@freescale.com>
73821
73822 commit a87c856eb411b9365937d0d4b9c21e46adbe1c14
73823 Author: Dave Liu <daveliu@freescale.com>
73824 Date: Fri Jan 19 10:43:26 2007 +0800
73825
73826 mpc83xx: Fix the LAW1/3 bug
73827
73828 The patch solves the alignment problem of the local bus access windows to
73829 render accessible the memory bank and PHY registers of UPC 1 (starting at
73830 0xf801 0000). What we actually did was to adjust the sizes of the bus
73831 access windows so that the base address alignment requirement would be met.
73832
73833 Signed-off-by: Chereji Marian <marian.chereji@freescale.com>
73834 Signed-off-by: Gridish Shlomi <gridish@freescale.com>
73835 Signed-off-by: Dave Liu <daveliu@freescale.com>
73836
73837 commit 97c4b397dce236a7318b304667bf89e59d08b17c
73838 Author: Kim Phillips <kim.phillips@freescale.com>
73839 Date: Tue Jan 30 16:15:31 2007 -0600
73840
73841 mpc83xx: don't hang if watchdog configured on 8360, 832x
73842
73843 don't hang if watchdog configured on 8360, 832x
73844
73845 The watchdog programming model is the same across all 83xx devices;
73846 make the code reflect that.
73847
73848 commit b70047478570e371ce7223be342ce98afea0f7d6
73849 Author: Kim Phillips <kim.phillips@freescale.com>
73850 Date: Tue Jan 30 16:15:21 2007 -0600
73851
73852 mpc83xx: protect memcpy to bad address if a local-mac-address is missing from dt
73853
73854 protect memcpy to bad address if a local-mac-address is missing from dt
73855
73856 commit 6752ed088c75c26a89b70c46b7326a4cd6015f29
73857 Author: Kim Phillips <kim.phillips@freescale.com>
73858 Date: Tue Jan 30 16:15:04 2007 -0600
73859
73860 mpc83xx: make 8360 default environment fdt be 8360 (not 8349)
73861
73862 make 8360 default environment fdt be 8360 (not 8349)
73863
73864 commit a28899c910024a0226331df07207b1038c300c93
73865 Author: Emilian Medve <Emilian.Medve@freescale.com>
73866 Date: Tue Jan 30 16:14:50 2007 -0600
73867
73868 mpc83xx: Fix alternating tx error / tx buffer not ready bug in QE UEC
73869
73870 The problem is not gcc4 but the code itself. The BD_STATUS() macro can't
73871 be used for busy-waiting since it strips the 'volatile' property from
73872 the bd variable. gcc3 was working by pure luck.
73873
73874 This is a follow on patch to "Fix the UEC driver bug of QE"
73875
73876 commit 3e78a31cfe3d3022f46f67eb88e1281d5cc2eb89
73877 Author: Kumar Gala <galak@kernel.crashing.org>
73878 Date: Tue Jan 30 14:08:30 2007 -0600
73879
73880 mpc83xx: Replace CONFIG_MPC8349 and use CONFIG_MPC834X instead
73881
73882 The code that is ifdef'd with CONFIG_MPC8349 is actually applicable to all
73883 MPC834X class processors. Change the protections from CONFIG_MPC8349 to
73884 CONFIG_MPC834X so they are more generic.
73885
73886 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
73887
73888 commit ae246dc6c1937c291014eadd90b6d48c438c7cb0
73889 Author: Kim Phillips <kim.phillips@freescale.com>
73890 Date: Thu Jan 25 13:40:55 2007 -0600
73891
73892 mpc83xx: add MPC832XEMDS and sbc8349 to MAKEALL
73893
73894 commit 4decd84e8f04279c5cfff7f8e907465ef8d8a3fb
73895 Author: Kim Phillips <kim.phillips@freescale.com>
73896 Date: Wed Jan 24 17:18:37 2007 -0600
73897
73898 mpc83xx: sort Makefile targets
73899
73900 reordered targets alphabetically
73901
73902 commit 91e25769771c1164ed63ffca0add49f934ae3343
73903 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
73904 Date: Tue Jan 16 11:38:14 2007 -0500
73905
73906 mpc83xx: U-Boot support for Wind River SBC8349
73907
73908 I've redone the SBC8349 support to match git-current, which
73909 incorporates all the MPC834x updates from Freescale since the 1.1.6
73910 release, including the DDR changes.
73911
73912 I've kept all the SBC8349 files as parallel as possible to the
73913 MPC8349EMDS ones for ease of maintenance and to allow for easy
73914 inspection of what was changed to support this board. Hence the SBC8349
73915 U-Boot has FDT support and everything else that the MPC8349EMDS has.
73916
73917 Fortunately the Freescale updates added support for boards using CS0,
73918 but I had to change spd_sdram.c to allow for board specific settings for
73919 the sdram_clk_cntl (it is/was hard coded to zero, and that remains the
73920 default if the board doesn't specify a value.)
73921
73922 Hopefully this should be mergeable as-is and require no whitespace
73923 cleanups or similar, but if something doesn't measure up then let me
73924 know and I'll fix it.
73925
73926 Thanks,
73927 Paul.
73928
73929 commit 05031db456ab227f3e3752f37b9b812b65bb83ad
73930 Author: Sam Song <samsongshu@yahoo.com.cn>
73931 Date: Thu Dec 14 19:03:21 2006 +0800
73932
73933 mpc83xx: Remove a redundant semicolon in mpc8349itx.c
73934
73935 A redundant semicolon existed in mpc8349itx.c
73936 should be removed.
73937
73938 Signed-off-by: Sam Song <samsongshu@yahoo.com.cn>
73939
73940 commit f35f358241c549be3f75cfe2eaa642914275b7ba
73941 Author: Jerry Van Baren <gerald.vanbaren@comcast.net>
73942 Date: Wed Dec 6 21:23:55 2006 -0500
73943
73944 mpc83xx: Put the version (and magic) after the HRCW.
73945
73946 Put the version (and magic) after the HRCW. This puts it in a fixed
73947 location in flash, not at the start of flash but as close as we can get.
73948
73949 Signed-off-by: Jerry Van Baren <vanbaren@cideas.com>
73950
73951 commit 48aecd969171a6e99a55fae04933857787f9a5bd
73952 Author: Dave Liu <r63238@freescale.com>
73953 Date: Thu Dec 7 21:14:51 2006 +0800
73954
73955 mpc83xx: Add the MPC832XEMDS board readme
73956
73957 Add the MPC832XEMDS board readme
73958
73959 Signed-off-by: Dave Liu <daveliu@freescale.com>
73960
73961 commit 24c3aca3f1358b113d3215adb5433b156e99f72b
73962 Author: Dave Liu <r63238@freescale.com>
73963 Date: Thu Dec 7 21:13:15 2006 +0800
73964
73965 mpc83xx: Add support for the MPC832XEMDS board
73966
73967 This patch supports DUART, ETH3/4 and PCI etc.
73968
73969 Signed-off-by: Dave Liu <daveliu@freescale.com>
73970
73971 commit e080313c32322e15ab5a18eb896a252858c57284
73972 Author: Dave Liu <r63238@freescale.com>
73973 Date: Thu Dec 7 21:11:58 2006 +0800
73974
73975 mpc83xx: streamline the 83xx immr head file
73976
73977 For better format and style, I streamlined the 83xx head files,
73978 including immap_83xx.h and mpc83xx.h. In the old head files, 1)
73979 duplicated macro definition appear in the both files; 2) the structure
73980 of QE immr is duplicated in the immap_83xx.h and immap_qe.h; 3) The
73981 macro definition put inside the each structure. So, I cleaned up the
73982 structure of QE immr from immap_83xx.h, deleted the duplicated stuff and
73983 moved the macro definition to mpc83xx.h, Just like MPC8260.
73984
73985 CHANGELOG
73986
73987 *streamline the 83xx immr head file
73988
73989 Signed-off-by: Dave Liu <daveliu@freescale.com>
73990
73991 commit ddd02492f43db5408f5ab9f823b0ba5796e28ef0
73992 Author: Dave Liu <r63238@freescale.com>
73993 Date: Wed Dec 6 11:38:17 2006 +0800
73994
73995 mpc83xx: Fix the UEC driver bug of QE
73996
73997 The patch prevents the GCC tool chain from striping useful code for
73998 optimization. It will make UEC ethernet driver workable, Otherwise the
73999 UEC will fail in tx when you are using gcc4.x. but the driver can work
74000 when using gcc3.4.3.
74001
74002 CHANGELOG
74003
74004 *Prevent the GCC from striping code for optimization, Otherwise the UEC
74005 will tx failed when you are using gcc4.x.
74006
74007 Signed-off-by: Dave Liu <daveliu@freescale.com>
74008
74009 commit ba58e4c9a9a917ce795dd16d4ec8d515f9f7aa35
74010 Author: Stefan Roese <sr@denx.de>
74011 Date: Thu Mar 1 21:11:36 2007 +0100
74012
74013 [PATCH] Update AMCC Katmai 440SPe eval board support
74014
74015 This patch updates the recently added Katmai board support. The biggest
74016 change is the support of ECC DIMM modules in the 440SP(e) SPD DDR2
74017 driver.
74018
74019 Please note, that still some problems are left with some memory
74020 configurations. See the driver for more details.
74021
74022 Signed-off-by: Stefan Roese <sr@denx.de>
74023
74024 commit 8c12045a3b06c5b6675d3fe02fbc9f545988129a
74025 Author: Stefan Roese <sr@denx.de>
74026 Date: Thu Mar 1 07:03:25 2007 +0100
74027
74028 [PATCH] I2C: Add missing default CFG_RTC_BUS_NUM & CFG_DTT_BUS_NUM
74029
74030 Signed-off-by: Stefan Roese <sr@denx.de>
74031
74032 commit ccbc7036648e465697ca298ba51e0e76dda352a0
74033 Author: Wolfgang Denk <wd@pollux.denx.de>
74034 Date: Wed Feb 28 01:28:53 2007 +0100
74035
74036 SC3: fix typo in default environment
74037
74038 commit e344568b1b46af85ec32d815586f91bc115d6223
74039 Author: Sergei Poselenov <sposelenov@emcraft.com>
74040 Date: Tue Feb 27 20:15:30 2007 +0300
74041
74042 MCC200: Fixes for update procedure
74043
74044 - fix logic error in image type handling
74045 - make sure file system images (cramfs etc.) get stored in flash
74046 with image header stripped so they can be mounted through MTD
74047
74048 commit 743571145b37182757d4e688a77860b36ee77573
74049 Author: Wolfgang Denk <wd@pollux.denx.de>
74050 Date: Tue Feb 27 14:26:04 2007 +0100
74051
74052 Minor code cleanup.
74053
74054 commit 638dd1458bbdc2a55d4b9e25c5c4e1f838a5dc72
74055 Author: Sergei Poselenov <sposelenov@emcraft.com>
74056 Date: Tue Feb 27 12:40:16 2007 +0300
74057
74058 MCC200 update - add LCD Progress Indicator
74059
74060 commit 6c7cac8c4fce0ea2bf8e15ed8658d87974155b44
74061 Author: Stefan Roese <sr@denx.de>
74062 Date: Thu Feb 22 07:43:34 2007 +0100
74063
74064 [PATCH] get_dev() now unconditionally uses manual relocation
74065
74066 Since the relocation fix is not included yet and we're not sure how
74067 it will be added, this patch removes code that required relocation
74068 to be fixed for now.
74069
74070 Signed-off-by: Stefan Roese <sr@denx.de>
74071
74072 commit 8274ec0bd01d2feb2c7f095eba78d42ea009798b
74073 Author: Stefan Roese <sr@denx.de>
74074 Date: Thu Feb 22 07:40:23 2007 +0100
74075
74076 [PATCH] Change systemace driver to select 8 & 16bit mode
74077
74078 As suggested by Grant Likely this patch enables the Xilinx SystemACE
74079 driver to select 8 or 16bit mode upon startup.
74080
74081 Signed-off-by: Stefan Roese <sr@denx.de>
74082
74083 commit 3a197b2fe49d6fa03978e60af2394efe9c70b527
74084 Author: Haiying Wang <Haiying.Wang@freescale.com>
74085 Date: Wed Feb 21 16:52:31 2007 +0100
74086
74087 [PATCH v3] Add sync to ensure flash_write_cmd is fully finished
74088
74089 Some CPUs like PPC, BLACKFIN need sync() to ensure cfi flash write command
74090 is fully finished. The sync() is defined in each CPU's io.h file. For
74091 those CPUs which do not need sync for now, a dummy sync() is defined in
74092 their io.h as well.
74093
74094 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
74095
74096 commit da04995c7dc6772013a9a0dc5c767f190c402478
74097 Author: Stefan Roese <sr@denx.de>
74098 Date: Wed Feb 21 13:44:34 2007 +0100
74099
74100 [PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)
74101
74102 Signed-off-by: Stefan Roese <sr@denx.de>
74103
74104 commit 751bb57107d78978ae08e697c3deba816f5be091
74105 Author: Stefan Roese <sr@denx.de>
74106 Date: Tue Feb 20 13:21:57 2007 +0100
74107
74108 [PATCH] Fix relocation problem with "new" get_dev() function
74109
74110 This patch enables the "new" get_dev() function for block devices
74111 introduced by Grant Likely to be used on systems that still suffer
74112 from the relocation problems (manual relocation neede because of
74113 problems with linker script).
74114
74115 Hopefully we can resolve this relocation issue soon for all platform
74116 so we don't need this additional code anymore.
74117
74118 Signed-off-by: Stefan Roese <sr@denx.de>
74119
74120 commit d93e2212f962668b3dce091ff5edc33f2347fe37
74121 Author: Stefan Roese <sr@denx.de>
74122 Date: Tue Feb 20 13:17:42 2007 +0100
74123
74124 [PATCH] Update SystemACE driver for 16bit access
74125
74126 This patch removes some problems when the Xilinx SystemACE driver
74127 is used with 16bit access on an big endian platform (like the
74128 AMCC Katmai).
74129
74130 Signed-off-by: Stefan Roese <sr@denx.de>
74131
74132 commit 874bb7b88fe9b4648e1288a387af2e31014a72f3
74133 Author: Stefan Roese <sr@denx.de>
74134 Date: Tue Feb 20 13:15:40 2007 +0100
74135
74136 [PATCH] Clean up Katmai (440SPe) linker script
74137
74138 Signed-off-by: Stefan Roese <sr@denx.de>
74139
74140 commit 4745acaa1a603b67f6b9b7970365ebadd7d6586f
74141 Author: Stefan Roese <sr@denx.de>
74142 Date: Tue Feb 20 10:57:08 2007 +0100
74143
74144 [PATCH] Add support for the AMCC Katmai (440SPe) eval board
74145
74146 Signed-off-by: Stefan Roese <sr@denx.de>
74147
74148 commit 0dc018ece13effc689e47479ea9ebf1c98a507f5
74149 Author: Stefan Roese <sr@denx.de>
74150 Date: Tue Feb 20 10:51:26 2007 +0100
74151
74152 [PATCH] I2C: Add support for multiple I2C busses for RTC & DTT
74153
74154 This patch switches to the desired I2C bus when the date/dtt
74155 commands are called. This can be configured using the
74156 CFG_RTC_BUS_NUM and/or CFG_DTT_BUS_NUM defines.
74157
74158 Signed-off-by: Stefan Roese <sr@denx.de>
74159
74160 commit 4037ed3b63923cfcec27f784a89057c3cbabcedb
74161 Author: Stefan Roese <sr@denx.de>
74162 Date: Tue Feb 20 10:43:34 2007 +0100
74163
74164 [PATCH] PPC4xx: Add 440SP(e) DDR2 SPD DIMM support
74165
74166 This patch adds support for the DDR2 controller used on the
74167 440SP and 440SPe. It is tested on the Katmai (440SPe) eval
74168 board and works fine with the following DIMM modules:
74169
74170 - Corsair CM2X512-5400C4 (512MByte per DIMM)
74171 - Kingston ValueRAM KVR667D2N5/512 (512MByte per DIMM)
74172 - Kingston ValueRAM KVR667D2N5K2/2G (1GByte per DIMM)
74173
74174 This patch also adds the nice functionality to dynamically
74175 create the TLB entries for the SDRAM (tlb.c). So we should
74176 never run into such problems with wrong (too short) TLB
74177 initialization again on these platforms.
74178
74179 Signed-off-by: Stefan Roese <sr@denx.de>
74180
74181 commit 36d830c9830379045f5daa9f542ac1c990c70068
74182 Author: Stefan Roese <sr@denx.de>
74183 Date: Tue Feb 20 10:35:42 2007 +0100
74184
74185 [PATCH] PPC4xx: Split 4xx SPD SDRAM init routines into 2 files
74186
74187 Since the existing 4xx SPD SDRAM initialization routines for the
74188 405 SDRAM controller and the 440 DDR controller don't have much in
74189 common this patch splits both drivers into different files.
74190
74191 This is in preparation for the 440 DDR2 controller support (440SP/e).
74192
74193 Signed-off-by: Stefan Roese <sr@denx.de>
74194
74195 commit 79b2d0bb2eae09602448f7a7cb56530d2f31e6c6
74196 Author: Stefan Roese <sr@denx.de>
74197 Date: Tue Feb 20 10:27:08 2007 +0100
74198
74199 [PATCH] PPC4xx: Add support for multiple I2C busses
74200
74201 This patch adds support for multiple I2C busses on the PPC4xx
74202 platforms. Define CONFIG_I2C_MULTI_BUS in the board config file
74203 to make use of this feature.
74204
74205 It also merges the 405 and 440 i2c header files into one common
74206 file 4xx_i2c.h.
74207
74208 Also the 4xx i2c reset procedure is reworked since I experienced
74209 some problems with the first access on the 440SPe Katmai board.
74210
74211 Signed-off-by: Stefan Roese <sr@denx.de>
74212
74213 commit eb867a76238fb38e952c37871b16d0d7fd61c95f
74214 Author: Grant Likely <grant.likely@secretlab.ca>
74215 Date: Tue Feb 20 09:05:45 2007 +0100
74216
74217 [PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write buffer pointers
74218
74219 Block device read/write is anonymous data; there is no need to use a
74220 typed pointer. void * is fine. Also add a hook for block_read functions
74221
74222 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
74223
74224 commit 53758fa20e935cc87eeb0519ed365df753a6f289
74225 Author: Grant Likely <grant.likely@secretlab.ca>
74226 Date: Tue Feb 20 09:05:38 2007 +0100
74227
74228 [PATCH 8_9] Add block_write hook to block_dev_desc_t
74229
74230 Preparation for future patches which support block device writing
74231
74232 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
74233
74234 commit f4852ebe6ca946a509667eb68be42026f837be76
74235 Author: Grant Likely <grant.likely@secretlab.ca>
74236 Date: Tue Feb 20 09:05:31 2007 +0100
74237
74238 [PATCH 7_9] Replace ace_readw_ace_writeb functions with macros
74239
74240 Register read/write does not need to be wrapped in a full function. The
74241 patch replaces them with macros.
74242
74243 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
74244
74245 commit 3a8ce9af6fcb5744a7851b4440c07688acc40844
74246 Author: Grant Likely <grant.likely@secretlab.ca>
74247 Date: Tue Feb 20 09:05:23 2007 +0100
74248
74249 [PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.c
74250
74251 The code in this file is not a command; it is a device driver. Put it in
74252 the correct place. There are zero functional changes in this patch, it
74253 only moves the file.
74254
74255 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
74256
74257 commit 984618f3e7794c783ec8d1511e74c6ee2d69bfe4
74258 Author: Grant Likely <grant.likely@secretlab.ca>
74259 Date: Tue Feb 20 09:05:16 2007 +0100
74260
74261 [PATCH 5_9] Whitespace fixup on common_cmd_ace.c (using Lindent)
74262
74263 This patch is in preparation of additional changes to the sysace driver.
74264 May as well take this opportunity to fixup the inconsistent whitespace since
74265 this file is about to undergo major changes anyway.
74266
74267 There are zero functional changes in this patch. It only cleans up the
74268 the whitespace.
74269
74270 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
74271
74272 commit 80ba981d940471fe7e539e64fa3d2bd80002beda
74273 Author: Grant Likely <grant.likely@secretlab.ca>
74274 Date: Tue Feb 20 09:05:07 2007 +0100
74275
74276 [PATCH 4_4] Remove local implementation of isprint() in ft_build.c
74277
74278 isprint is already defined in ctype.c
74279
74280 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
74281
74282 commit c95c4280d751ca078c2ff58228d2f2b44ccf0600
74283 Author: Grant Likely <grant.likely@secretlab.ca>
74284 Date: Tue Feb 20 09:05:00 2007 +0100
74285
74286 [PATCH 3_9] Move buffer print code from md command to common function
74287
74288 Printing a buffer is a darn useful thing. Move the buffer print code
74289 into print_buffer() in lib_generic/
74290
74291 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
74292
74293 commit 99b0f0fd3fbf2572ae1a7723dd90cffc8e85130a
74294 Author: Grant Likely <grant.likely@secretlab.ca>
74295 Date: Tue Feb 20 09:04:52 2007 +0100
74296
74297 [PATCH 2_4] Use config.h, not xparameters.h, for xilinx targets
74298
74299 Change the xilinx device drivers and board code to include config.h
74300 instead of xparameters.h directly. config.h always includes the
74301 correct xparameters file. This change reduces the posibility of
74302 including the wrong file when adding a new xilinx board port
74303
74304 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
74305
74306 commit 735dd97b1b20e777d059c7b389fe9d70cd3f80c7
74307 Author: Grant Likely <grant.likely@secretlab.ca>
74308 Date: Tue Feb 20 09:04:34 2007 +0100
74309
74310 [PATCH 1_4] Merge common get_dev() routines for block devices
74311
74312 Each of the filesystem drivers duplicate the get_dev routine. This change
74313 merges them into a single function in part.c
74314
74315 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
74316
74317 commit f5fcc3c20b65554e98a165542c36ee0c610a2d81
74318 Author: Wolfgang Denk <wd@pollux.denx.de>
74319 Date: Mon Feb 19 23:09:51 2007 +0100
74320
74321 MCC200: Software Updater: allow both "ramdisk" and "filesystem" types
74322 as root file system images.
74323
74324 commit 489c696ae7211218961d159e43e722d74c36fcbc
74325 Author: Sergei Poselenov <sposelenov@emcraft.com>
74326 Date: Wed Feb 14 14:30:28 2007 +0300
74327
74328 MCC200: Extensions to Software Update Mechanism
74329
74330 Update / extend Software Update Mechanism for MCC200 board:
74331
74332 - Add support for rootfs image added. The environment variables
74333 "rootfs_st" and "rootfs_nd" can be used to override the default
74334 values of the image start and end.
74335 - Remove excessive key check code.
74336 - Code cleanup.
74337
74338 commit 4be23a12f23f1372634edc3215137b09768b7949
74339 Author: Stefan Roese <sr@denx.de>
74340 Date: Mon Feb 19 08:23:15 2007 +0100
74341
74342 [PATCH] Update Sequoia EBC configuration (NOR FLASH)
74343
74344 As spotted by Matthias Fuchs, the READY input should not be
74345 enabled for the NOR FLASH on the Sequoia board.
74346
74347 Signed-off-by: Stefan Roese <sr@denx.de>
74348
74349 commit 2605e90bf676d48123afe5719a846d2b52b24aac
74350 Author: Heiko Schocher <hs@pollux.denx.de>
74351 Date: Fri Feb 16 07:57:42 2007 +0100
74352
74353 [PATCH] Added support for the jupiter board.
74354
74355 Signed-off-by: Heiko Schocher <hs@denx.de>
74356
74357 commit 497d012e5be0194e1084073d0081eb1a844796b2
74358 Author: Gary Jennejohn <garyj@pollux.denx.de>
74359 Date: Mon Feb 12 13:11:50 2007 +0100
74360
74361 LPC2292: patch from Siemens.
74362
74363 commit b0b1a920aebead0d44146e73676ae9d80fffc8e2
74364 Author: Stefan Roese <sr@denx.de>
74365 Date: Sat Feb 10 08:49:31 2007 +0100
74366
74367 [PATCH] Add missing p3mx.h file to repository (ups)
74368
74369 Signed-off-by: Stefan Roese <sr@denx.de>
74370
74371 commit 53d4a4983fb9b3ae5f7b2f10c599aca2b1b4034a
74372 Author: Bartlomiej Sieka <tur@semihalf.com>
74373 Date: Fri Feb 9 10:45:42 2007 +0100
74374
74375 [Motion-PRO] Preliminary support for the Motion-PRO board.
74376
74377 commit 5a753f98c6a01bd1c61a9a3f95e8329a35f62994
74378 Author: Stefan Roese <sr@denx.de>
74379 Date: Wed Feb 7 16:51:08 2007 +0100
74380
74381 [PATCH] Update some AMCC 4xx board config files (set initrd_high)
74382
74383 Some boards that can have more than 768MBytes of SDRAM need to
74384 set "initrd_high", so that the initrd can be accessed by the
74385 Linux kernel.
74386
74387 Signed-off-by: Stefan Roese <sr@denx.de>
74388
74389 commit 7372ca68227930d03cffa548310524cad5b96733
74390 Author: Stefan Roese <sr@denx.de>
74391 Date: Fri Feb 2 12:44:22 2007 +0100
74392
74393 [PATCH] Correctly display PCI arbiter en-/disabled on some 4xx boards
74394
74395 Previously the strapping DCR/SDR was read to determine if the internal PCI
74396 arbiter is enabled or not. This strapping bit can be overridden, so now
74397 the current status is read from the correct DCR/SDR register.
74398
74399 Signed-off-by: Stefan Roese <sr@denx.de>
74400
74401 commit 2aa54f651a42d198673318f07a20c89a43e4d197
74402 Author: Stefan Roese <sr@denx.de>
74403 Date: Fri Feb 2 12:42:08 2007 +0100
74404
74405 [PATCH] Change configuration output of Sycamore, Yellowstone & Rainier
74406
74407 Signed-off-by: Stefan Roese <sr@denx.de>
74408
74409 commit 23744d6b5bf17592eb6a0ef4f318f6089f55993b
74410 Author: Stefan Roese <sr@denx.de>
74411 Date: Thu Feb 1 13:22:41 2007 +0100
74412
74413 [PATCH] Remove PCI-PNP configuration from Sequoia/Rainier config file
74414
74415 When PCI PNP is enabled the pci pnp configuration routine is called
74416 which sets the PCI_CACHE_SIZE_LINE to 8. This seems to generate some
74417 problems with some PCI cards. For now disable the PCI PNP configuration.
74418
74419 Signed-off-by: Stefan Roese <sr@denx.de>
74420
74421 commit 2902fadade3be7659467e8d074048c6b7068f5c0
74422 Author: Stefan Roese <sr@denx.de>
74423 Date: Wed Jan 31 16:56:10 2007 +0100
74424
74425 [PATCH] Update 440EPx/440GRx cpu detection
74426
74427 Signed-off-by: Stefan Roese <sr@denx.de>
74428
74429 commit d5ea287b02a6945c3977410e364a879dd1a555c8
74430 Author: Stefan Roese <sr@denx.de>
74431 Date: Wed Jan 31 16:38:04 2007 +0100
74432
74433 [PATCH] Update esd cpci5200 files
74434
74435 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
74436
74437 commit 8b7d1f0ab7d7c4fe3160bbf74a7e9690d9f3a3ab
74438 Author: Stefan Roese <sr@denx.de>
74439 Date: Wed Jan 31 16:37:34 2007 +0100
74440
74441 [PATCH] Add support for esd mecp5200 board
74442
74443 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
74444
74445 commit 71a4e5fda8b60044ab9f46069fa1cfa26bdd07ff
74446 Author: Stefan Roese <sr@denx.de>
74447 Date: Wed Jan 31 12:38:50 2007 +0100
74448
74449 [PATCH] Remove unneccessary yellowstone board config file
74450
74451 Signed-off-by: Stefan Roese <sr@denx.de>
74452
74453 commit e802594b6fa1b166308820c276b96dc0d7cc731c
74454 Author: Stefan Roese <sr@denx.de>
74455 Date: Tue Jan 30 17:06:10 2007 +0100
74456
74457 [PATCH] Update Sequoia (440EPx) config file
74458
74459 The config file now handles the 2nd target, the Rainier (440GRx)
74460 evaluation board better. Additionally the PPC input clock was
74461 adjusted to match the correct value of 33.0 MHz.
74462
74463 Signed-off-by: Stefan Roese <sr@denx.de>
74464
74465 commit 700200c67e73b83751418abe7815840dca8fd6cb
74466 Author: Stefan Roese <sr@denx.de>
74467 Date: Tue Jan 30 17:04:19 2007 +0100
74468
74469 [PATCH] Merge Yosemite & Yellowstone board ports
74470
74471 Now the AMCC eval boards Yosemite (440EP) and Yellowstone (440GR)
74472 share one config file and all board specific files. This way we
74473 don't have to maintain two different sets of files for nearly
74474 identical boards.
74475
74476 Signed-off-by: Stefan Roese <sr@denx.de>
74477
74478 commit 1bbf5eae322f5f1f6427ecc3ac13a0cb7dba8ad6
74479 Author: Stefan Roese <sr@denx.de>
74480 Date: Tue Jan 30 15:01:49 2007 +0100
74481
74482 [PATCH] Update Prodrive SCPU (PDNB3 variant) board
74483
74484 SCPU doesn't use redundant environment in flash.
74485
74486 Signed-off-by: Stefan Roese <sr@denx.de>
74487
74488 commit 6304430ed642ea8fa15c9e5af965ac2e033eec45
74489 Author: Stefan Roese <sr@denx.de>
74490 Date: Tue Jan 30 12:51:07 2007 +0100
74491
74492 [PATCH] alpr: Update alpr board config file
74493
74494 Signed-off-by: Stefan Roese <sr@denx.de>
74495
74496 commit f8db84f132b1e335f20f96138a1f09ed97b08664
74497 Author: Wolfgang Denk <wd@pollux.denx.de>
74498 Date: Tue Jan 30 00:50:40 2007 +0100
74499
74500 LPC2292 SODIMM port coding style cleanup.
74501
74502 commit 6bd2447ee47ee23c18d2b3c7ccd5a20f7626f5b3
74503 Author: Gary Jennejohn <garyj@pollux.denx.de>
74504 Date: Wed Jan 24 12:16:56 2007 +0100
74505
74506 Add port for the lpc2292sodimm evaluation board from EmbeddedArtists
74507
74508 commit 2daf046ba627f85f44195815778140039636244e
74509 Author: Bartlomiej Sieka <tur@semihalf.com>
74510 Date: Tue Jan 23 17:22:06 2007 +0100
74511
74512 [iDMR] Add MTD and JFFS2 support, also add default partition definition.
74513
74514 commit f7db33101fbc9c8f0a10738ce87034875a17aeb9
74515 Author: Bartlomiej Sieka <tur@semihalf.com>
74516 Date: Tue Jan 23 14:21:14 2007 +0100
74517
74518 [iDMR] Flash driver on initialisation write-protects some sectors,
74519 currently sectors 0-3. Sector 3 does not need to be protected, though
74520 (U-boot occupies sectors 0-1 and the environment sector 2). This commit
74521 fixes this, i.e., only sectors 0-2 are protected.
74522
74523 commit 0ed47bb119cd2c4c16edb2548789148f9e6dc9de
74524 Author: Bartlomiej Sieka <tur@semihalf.com>
74525 Date: Tue Jan 23 14:11:22 2007 +0100
74526
74527 [iDMR] Using MII-related commands on iDRM board doesn't work now (e.g.,
74528 "mii device" results in "Unexpected exception"). Fixing this properly
74529 requires some clean-up in the FEC drivers infrastructure for ColdFire, so
74530 this commit disables MII commads for now.
74531
74532 commit 363d1d8f9c99b63daef81f5985cab3fc00edde5c
74533 Author: Bartlomiej Sieka <tur@semihalf.com>
74534 Date: Tue Jan 23 13:25:22 2007 +0100
74535
74536 [ColdFire MCF5271 family] Add CPU detection based on the value of Chip
74537 Identification Register (CIR).
74538
74539 commit fdef388758506765d4d6a7155c8f1584c63ff581
74540 Author: roy zang <tie-fei.zang@freescale.com>
74541 Date: Mon Jan 22 13:19:21 2007 +0800
74542
74543 use CFG_WRITE_SWAPPED_DATA define instead of define CFG_FLASH_CFI_SWAP
74544 The patch by Heiko Schocher <hs@pollux.denx.de> on Jan, 19, 2007
74545 fixes cfi_driver bug for mpc7448hpc2 board. The default cfi_driver can support
74546 mpc7448hpc2 board.
74547
74548 commit a4012396645533aef218354eeba754dff0deace8
74549 Author: Wolfgang Denk <wd@pollux.denx.de>
74550 Date: Fri Jan 19 23:08:39 2007 +0100
74551
74552 Minor code cleanup.
74553
74554 commit f539b7ba7d7ef6dd187c8209609001cb1cd95e39
74555 Author: Heiko Schocher <hs@pollux.denx.de>
74556 Date: Fri Jan 19 19:57:10 2007 +0100
74557
74558 [PATCH] SC3 board: added CFG_CMD_AUTOSCRIPT.
74559
74560 Signed-off-by: Heiko Schocher <hs@denx.de>
74561
74562 commit d0b6e14087ddd8789f224a48e1d33f2a5df4d167
74563 Author: Heiko Schocher <hs@pollux.denx.de>
74564 Date: Fri Jan 19 18:05:26 2007 +0100
74565
74566 [PATCH] CFI: define CFG_WRITE_SWAPPED_DATA for the CFI-Flash driver
74567 if you must swap the bytes between reading/writing.
74568 (Needed for the SC3 board)
74569
74570 Signed-off-by: Heiko Schocher <hs@denx.de>
74571
74572 commit 9d8d5a5bfb64768f29a0cb47fc37cd6f4c40e276
74573 Author: Stefan Roese <sr@denx.de>
74574 Date: Thu Jan 18 16:05:47 2007 +0100
74575
74576 [PATCH] Add support for Prodrive SCPU (PDNB3 variant) board
74577
74578 Signed-off-by: Stefan Roese <sr@denx.de>
74579
74580 commit 0057d758e3e874cbe7f24745d0cce8c1cb6c207e
74581 Author: Stefan Roese <sr@denx.de>
74582 Date: Thu Jan 18 11:54:52 2007 +0100
74583
74584 [PATCH] Update Prodrive P3Mx support
74585
74586 Signed-off-by: Stefan Roese <sr@denx.de>
74587
74588 commit 34167a36c29ee946b727465db5c014746a08e978
74589 Author: Stefan Roese <sr@denx.de>
74590 Date: Thu Jan 18 11:48:10 2007 +0100
74591
74592 [PATCH] Add missing Taishan config file
74593
74594 Signed-off-by: Stefan Roese <sr@denx.de>
74595
74596 commit cb4820725e9fc409c5cbc8e83054a6ed522d2111
74597 Author: Heiko Schocher <hs@pollux.denx.de>
74598 Date: Thu Jan 18 11:28:51 2007 +0100
74599
74600 [PATCH] Fix: Compilerwarnings for SC3 board.
74601 The EBC Configuration Register is now by CFG_EBC_CFG definable
74602 Added JFFS2 support for the SC3 board.
74603
74604 Signed-off-by: Heiko Schocher <hs@denx.de>
74605
74606 commit 5fb692cae57d1710c8f52a427cf7f39a37383fcd
74607 Author: Stefan Roese <sr@denx.de>
74608 Date: Thu Jan 18 10:25:34 2007 +0100
74609
74610 [PATCH] Add support for AMCC Taishan PPC440GX eval board
74611
74612 Signed-off-by: Stefan Roese <sr@denx.de>
74613
74614 commit 6d3e0107235aa0e6a6dcb77f9884497280bf85ad
74615 Author: Wolfgang Denk <wd@pollux.denx.de>
74616 Date: Tue Jan 16 18:30:50 2007 +0100
74617
74618 Raname solidcard3 into sc3; add redundant env for sc3
74619
74620 commit 1bbbbdd20fcec9933697000dcf55ff7972622596
74621 Author: Wolfgang Denk <wd@pollux.denx.de>
74622 Date: Tue Jan 16 12:46:35 2007 +0100
74623
74624 Update default environment for Solidcard3
74625
74626 commit 5a5c56986a9ccf71642c8b6374eb18487b15fecd
74627 Author: Stefan Roese <sr@denx.de>
74628 Date: Mon Jan 15 09:46:29 2007 +0100
74629
74630 [PATCH] Fix 440SPe rev B detection from previous patch
74631
74632 Signed-off-by: Stefan Roese <sr@denx.de>
74633
74634 commit a443d31410c571ee8f970da819a44d698fdd6b1f
74635 Author: Heiko Schocher <hs@pollux.denx.de>
74636 Date: Sun Jan 14 13:35:31 2007 +0100
74637
74638 [FIX] correct I2C Writes for the LM81 Sensor.
74639
74640 Signed-off-by: Heiko Schocher <hs@denx.de>
74641
74642 commit 0bba5452835f19a61204edcda3a58112fd8e2208
74643 Author: Wolfgang Denk <wd@pollux.denx.de>
74644 Date: Sat Jan 13 11:17:10 2007 +0100
74645
74646 Undo commit 3033ebb2: reset command does not take any arguments
74647
74648 Haiying Wang's modification to the reset command was broken, undo it.
74649
74650 Signed-off-by: Wolfgang Denk <wd@denx.de>
74651
74652 commit 95981778cff0038fd9941044d6a3eda810e33258
74653 Author: Stefan Roese <sr@denx.de>
74654 Date: Sat Jan 13 08:01:03 2007 +0100
74655
74656 [PATCH] Update 440SP(e) cpu revisions
74657
74658 Also display enabled/disabled RAID 6 support for 440SP/440SPe PPC's.
74659
74660 Signed-off-by: Stefan Roese <sr@denx.de>
74661
74662 commit 77ddc5b9afb325262fd88752ba430a1dded1f0c7
74663 Author: Stefan Roese <sr@denx.de>
74664 Date: Sat Jan 13 07:59:56 2007 +0100
74665
74666 [PATCH] Update Yellowstone (440GR) to display board rev and PCI bus speed
74667
74668 Now the board revision and the current PCI bus speed are printed after
74669 the board message.
74670
74671 Also the EBC initialising is now done via defines in the board config
74672 file.
74673
74674 Signed-off-by: Stefan Roese <sr@denx.de>
74675
74676 commit 36adff362c2c0141ff8a810d42a7e478f779130f
74677 Author: Stefan Roese <sr@denx.de>
74678 Date: Sat Jan 13 07:59:19 2007 +0100
74679
74680 [PATCH] Update Yosemite (440EP) to display board rev and PCI bus speed
74681
74682 Now the board revision and the current PCI bus speed are printed after
74683 the board message.
74684
74685 Also the EBC initialising is now done via defines in the board config
74686 file.
74687
74688 Signed-off-by: Stefan Roese <sr@denx.de>
74689
74690 commit e0b9ea8c8a294de6a5350ae638879d24b5b709d6
74691 Author: Stefan Roese <sr@denx.de>
74692 Date: Sat Jan 13 07:57:51 2007 +0100
74693
74694 [PATCH] Update Sequoia (440EPx) to display board rev and PCI bus speed
74695
74696 Now the board revision and the current PCI bus speed are printed after
74697 the board message.
74698
74699 Signed-off-by: Stefan Roese <sr@denx.de>
74700
74701 commit ca43ba18e910206ef8063e4b22d282630bff3fd2
74702 Author: Heiko Schocher <hs@pollux.denx.de>
74703 Date: Thu Jan 11 15:44:44 2007 +0100
74704
74705 Added support for the SOLIDCARD III board from Eurodesign
74706
74707 Signed-off-by: Heiko Schocher <hs@denx.de>
74708
74709 commit 6abaee42621c07e81a2cd189ad4368b5e8c50280
74710 Author: Reinhard Thies <Reinhard.Thies@web.de>
74711 Date: Wed Jan 10 14:41:14 2007 +0100
74712
74713 Adjusted default environment for cam5200 board.
74714
74715 commit bab5a90d4ccc1a46a8127b867fa59028cc623ad9
74716 Author: Wolfgang Denk <wd@pollux.denx.de>
74717 Date: Wed Jan 10 15:35:52 2007 +0100
74718
74719 Update CHANGELOG
74720
74721 commit 787fa15860a57833e50bd30555079a9cd4e519b8
74722 Author: Wolfgang Denk <wd@pollux.denx.de>
74723 Date: Wed Jan 10 01:28:39 2007 +0100
74724
74725 Fix auto_update for MCC200 board.
74726
74727 The invocation of do_auto_update() is moved to the end of the
74728 misc_init_r() function, after the flash mappings have been
74729 initialized. Please find attached a patch that implements that
74730 change.
74731
74732 Also correct the decoding of the keypad status. With this update, the
74733 key that will trigger the update is Column 2, Row 2.
74734
74735 commit d9384de2f571046e71081bae22b49e3d5ca2e3d5
74736 Author: Marian Balakowicz <m8@semihalf.com>
74737 Date: Wed Jan 10 00:26:15 2007 +0100
74738
74739 CAM5200 flash driver modifications:
74740 - use CFI driver (replaces custom flash driver) for main 'cam5200' target
74741 - add second build target 'cam5200_niosflash' which still uses custom driver
74742
74743 commit 67fea022fa957f59653b5238c7496f80a6b70432
74744 Author: Markus Klotzbuecher <mk@denx.de>
74745 Date: Tue Jan 9 16:02:48 2007 +0100
74746
74747 SPC1920: cleanup memory contoller setup
74748
74749 commit 8fc2102faa23593c80381437c09f7745a14deb40
74750 Author: Markus Klotzbuecher <mk@denx.de>
74751 Date: Tue Jan 9 14:57:14 2007 +0100
74752
74753 Fix the cpu speed setup to work with all boards.
74754
74755 commit 9295acb77481cf099ef9b40e1fa2d145b3c7490c
74756 Author: Markus Klotzbuecher <mk@denx.de>
74757 Date: Tue Jan 9 14:57:13 2007 +0100
74758
74759 SPC1920: add support for the FM18L08 Ramtron FRAM
74760
74761 commit 38ccd2fdf3364a53fe80e9b365303ecdafc9e223
74762 Author: Markus Klotzbuecher <mk@denx.de>
74763 Date: Tue Jan 9 14:57:13 2007 +0100
74764
74765 SPC1920: update the HPI register addresses to work with the second
74766 generation of hardware
74767
74768 commit 5921e5313fc3eadd42770c2b99badd7fae5ecf1e
74769 Author: Markus Klotzbuecher <mk@creamnet.de>
74770 Date: Tue Jan 9 14:57:13 2007 +0100
74771
74772 Miscellanious spc1920 related cleanups
74773
74774 commit e4c2d37adc8bb1bf69dcf600cbc6c75f916a6120
74775 Author: Markus Klotzbuecher <mk@denx.de>
74776 Date: Tue Jan 9 14:57:12 2007 +0100
74777
74778 SPC1920 GO/NOGO led should be set to color red in U-Boot
74779
74780 commit 0be62728aac459ba268d6d752ed49ec0e2bc7348
74781 Author: Markus Klotzbuecher <mk@creamnet.de>
74782 Date: Tue Jan 9 14:57:12 2007 +0100
74783
74784 Add support for the DS3231 RTC
74785
74786 commit 8139567b60d678584b05f0718a681f2047c5e14f
74787 Author: Markus Klotzbuecher <mk@creamnet.de>
74788 Date: Tue Jan 9 14:57:11 2007 +0100
74789
74790 SMC1 uses external CLK4 instead of BRG on spc1920
74791
74792 commit d8d9de1a02fbd880b613d607143d1f57342affc7
74793 Author: Markus Klotzbuecher <mk@creamnet.de>
74794 Date: Tue Jan 9 14:57:10 2007 +0100
74795
74796 Update the SPC1920 CMB PLD driver
74797
74798 commit 3f34f869162750e5e999fd140f884f5de952bcfe
74799 Author: Markus Klotzbuecher <mk@creamnet.de>
74800 Date: Tue Jan 9 14:57:10 2007 +0100
74801
74802 Add / enable I2C support on the spc1920 board
74803
74804 commit d28707dbce1e9ac2017ad051da4133bf22b4204f
74805 Author: Markus Klotzbuecher <mk@creamnet.de>
74806 Date: Tue Jan 9 14:57:10 2007 +0100
74807
74808 Add support for the tms320671x host port interface (HPI)
74809
74810 commit f4eb54529bb3664c3a562e488b460fe075f79d67
74811 Author: Wolfgang Denk <wd@pollux.denx.de>
74812 Date: Sun Jan 7 00:13:11 2007 +0100
74813
74814 Prepare for release 1.2.0
74815
74816 commit f07ae7a9daef27a3d0213a4f3fe39d5342173c02
74817 Author: Stefan Roese <sr@denx.de>
74818 Date: Sat Jan 6 15:58:09 2007 +0100
74819
74820 [PATCH] 44x: Fix problem with DDR controller setup (refresh rate)
74821
74822 This patch fixes a problem with an incorrect setup for the refresh
74823 timer of the 44x DDR controller in the file cpu/ppc4xx/sdram.c
74824
74825 Signed-off-by: Stefan Roese <sr@denx.de>
74826
74827 commit f16c1da9577f06c5fc08651a4065537407de4635
74828 Author: Stefan Roese <sr@denx.de>
74829 Date: Sat Jan 6 15:56:13 2007 +0100
74830
74831 [PATCH] Update ALPR board files
74832
74833 This update brings the ALPR board support to the newest version.
74834 It also fixes a problem with the NAND driver.
74835
74836 Signed-off-by: Stefan Roese <sr@denx.de>
74837
74838 commit cd1d937f90250a32988c37b2b4af8364d25de8ed
74839 Author: Stefan Roese <sr@denx.de>
74840 Date: Fri Jan 5 11:46:05 2007 +0100
74841
74842 [PATCH] nand: Fix problem with oobsize calculation
74843
74844 Here the description from Brian Brelsford <Brian_Brelsford@dell.com>:
74845
74846 The Hynix part returns a 0x1d in the 4th ID byte. The Samsung part
74847 returns a 0x15. In the code fragment below bits [1:0] determine the
74848 page size, it is ANDed via "(extid & 0x3)" then shifted out. The
74849 next field is also ANDed with 0x3. However this is a one bit field
74850 as defined in the Hynix and Samsung parts in the 4th ID byte that
74851 determins the oobsize, not a two bit field. It works on Samsung as
74852 bits[3:2] are 01. However for the Hynix there is a 11 in these two
74853 bits, so the oob size gets messed up.
74854
74855 I checked the correct linux code and the suggested fix from Brian is
74856 also available in the linux nand mtd driver.
74857
74858 Signed-off-by: Stefan Roese <sr@denx.de>
74859
74860 commit a78bc443ae5a4a8ba87590587d5e35bf5a787b2e
74861 Author: Stefan Roese <sr@denx.de>
74862 Date: Fri Jan 5 10:40:36 2007 +0100
74863
74864 [PATCH] Clear PLB4A0_ACR[WRP] on Sequoia (440EPx)
74865
74866 This fix will make the MAL burst disabling patch for the Linux
74867 EMAC driver obsolete.
74868
74869 Signed-off-by: Stefan Roese <sr@denx.de>
74870
74871 commit 023889838282b6237b401664f22dd22dfba2c066
74872 Author: Stefan Roese <sr@denx.de>
74873 Date: Fri Jan 5 10:38:05 2007 +0100
74874
74875 [PATCH] Add DDR2 optimization code for Sequoia (440EPx) board
74876
74877 This code will optimize the DDR2 controller setup on a board specific
74878 basis.
74879
74880 Note: This code doesn't work right now on the NAND booting image for the
74881 Sequoia board, since it doesn't fit into the 4kBytes for the SPL image.
74882
74883 Signed-off-by: Stefan Roese <sr@denx.de>
74884
74885 commit cce4acbb68398634b8d011ed7bb0d12269c84230
74886 Author: Bartlomiej Sieka <tur@semihalf.com>
74887 Date: Thu Dec 28 19:08:21 2006 +0100
74888
74889 Few V38B changes:
74890 - fix a typo in V38B config file
74891 - move watchdog initialisation earlier in the boot process
74892 - add "wdt=off" to default kernel command line (disables kernel watchdog)
74893
74894 commit 92eb729bad876725aeea908d2addba0800620840
74895 Author: Wolfgang Denk <wd@pollux.denx.de>
74896 Date: Wed Dec 27 01:26:13 2006 +0100
74897
74898 Fix bug in adaption of Stefano Babic's CFI driver patch.
74899
74900 commit 9c0f42ecfe25f7ffce8ec7a815f03864d723ffe3
74901 Author: Wolfgang Denk <wd@pollux.denx.de>
74902 Date: Sun Dec 24 01:42:57 2006 +0100
74903
74904 Minor code cleanup.
74905
74906 commit d784fdb05900ada3686d5778783e1fb328e9fb66
74907 Author: Stefano Babic <sbabic@denx.de>
74908 Date: Tue Dec 12 00:22:42 2006 +0100
74909
74910 Fix cfi failure with Spansion Flash (Spansion Flash Devices have a different offset to go into CFI mode)
74911
74912 commit 1b3c360c235dc684ec06c2d5f183f0a282ce45e2
74913 Author: Stefan Roese <sr@denx.de>
74914 Date: Fri Dec 22 14:29:40 2006 +0100
74915
74916 [PATCH] Fix sequoia flash autodetection (finally correct)
74917
74918 Now 32MByte and 64MByte FLASH is know to work and other
74919 configurations should work too.
74920
74921 Signed-off-by: Stefan Roese <sr@denx.de>
74922
74923 commit 82e5236a8b719543643fd26d5827938ab2b94818
74924 Author: Wolfgang Denk <wd@pollux.denx.de>
74925 Date: Fri Dec 22 10:30:26 2006 +0100
74926
74927 Minor code cleanup; update CHANGELOG.
74928
74929 commit fa23044564091f05d9695beb7b5b9a931e7f41a4
74930 Author: Heiko Schocher <hs@pollux.denx.de>
74931 Date: Thu Dec 21 17:17:02 2006 +0100
74932
74933 Added support for the TQM8272 board from TQ
74934
74935 Signed-off-by: Heiko Schocher <hs@denx.de>
74936
74937 commit 6dedf3d49dd14c3bf541c8ecee7ffaac5f0e1d6c
74938 Author: Heiko Schocher <hs@pollux.denx.de>
74939 Date: Thu Dec 21 16:14:48 2006 +0100
74940
74941 [PATCH] Add support for the UC101 board from MAN.
74942
74943 Signed-off-by: Heiko Schocher <hs@denx.de>
74944
74945 commit c84bad0ef60e7055ab0bd49b93069509cecc382a
74946 Author: Bartlomiej Sieka <tur@semihalf.com>
74947 Date: Wed Dec 20 00:29:43 2006 +0100
74948
74949 Fix to make the baudrate changes immediate for the MCF52x2 family.
74950
74951 commit daa6e418bcc0c717752e8de939c213c790286096
74952 Author: Bartlomiej Sieka <tur@semihalf.com>
74953 Date: Wed Dec 20 00:27:32 2006 +0100
74954
74955 Preliminary support for the iDMR board (ColdFire).
74956
74957 commit cdb97a6678826f85e7c69eae6a1c113d034c9b10
74958 Author: Andrei Safronov <safronov@pollux.denx.de>
74959 Date: Fri Dec 8 16:23:08 2006 +0100
74960
74961 automatic update mechanism
74962
74963 commit 9d27b3a0685ff99fc477983f315c04d49f657a8a
74964 Author: roy zang <tie-fei.zang@freescale.com>
74965 Date: Mon Dec 4 17:56:59 2006 +0800
74966
74967 Slight code clean up.
74968 Add comments, delete duplicate define and remove spaces.
74969 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
74970
74971 commit 4dbcd69e3e2776ea334590d5768e3692c5fae5c1
74972 Author: roy zang <tie-fei.zang@freescale.com>
74973 Date: Mon Dec 4 17:54:21 2006 +0800
74974
74975 Introduce PLL_CFG[0:4] table for processor 7448/7447A/7455/7457. The original
74976 multiplier table can not refect the real PLL clock behavior of these
74977 processors. Please refer to the hardware specification for detailed
74978 information of the corresponding processors.
74979 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
74980
74981 commit 4efe20c9579011d9987f62ed7d35ee8cdc1cf0e0
74982 Author: roy zang <tie-fei.zang@freescale.com>
74983 Date: Mon Dec 4 14:46:23 2006 +0800
74984
74985 Remove the static MAC address, ip address, server ip, netmask and
74986 gateway ip for network setting.
74987 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
74988
74989 commit 6f12c61cf31ed73d72ddfcfc712a854a3a177aaf
74990 Author: roy zang <tie-fei.zang@freescale.com>
74991 Date: Mon Dec 4 14:33:08 2006 +0800
74992
74993 Remove the duplicate memory test code for mpc744ihpc2 board.
74994 If a memory test is needed, please use the functions in
74995 post/memory.c or memtest command.
74996 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
74997
74998 commit c9c1eeed7dd193fa65fb194654132040d49d4d3a
74999 Author: roy zang <tie-fei.zang@freescale.com>
75000 Date: Fri Dec 1 19:01:25 2006 +0800
75001
75002 Fix the exception occuring in RAM table search issue.
75003 The original search_one_table() function code can only processes the search
75004 for the exception occurring in FLASH/ROM, because the exception and fixup
75005 table usually locate in FLASH. If the exception address is also in
75006 FLASH, it will be OK.
75007 If the exception occurs in RAM, after the u-boot relocation, a
75008 relocation offset should be added.
75009
75010 clean up the code in cpu/74xx_7xx/cpu.c
75011
75012 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75013
75014 commit ee311214e0d216f904feea269599d0934bf71f23
75015 Author: roy zang <tie-fei.zang@freescale.com>
75016 Date: Fri Dec 1 11:47:36 2006 +0800
75017
75018 Clean up the code according to codestyle:
75019 (1) remove some C++ comments.
75020 (2) remove trailing white space.
75021 (3) remove trailing empty line.
75022 (4) Indentation by table.
75023 (5) remove {} in one line condition.
75024 (6) add space before '(' in function call.
75025 Remove some weird printf () output.
75026 Add necessary comments.
75027 Modified Makefile to support building in a separate directory.
75028
75029 commit dd520bf314c7add4183c5191692180f576f96b60
75030 Author: Wolfgang Denk <wd@pollux.denx.de>
75031 Date: Thu Nov 30 18:02:20 2006 +0100
75032
75033 Code cleanup.
75034
75035 commit 8d9a8610b8256331132227e9e6585c6bd5742787
75036 Author: Wolfgang Denk <wd@pollux.denx.de>
75037 Date: Thu Nov 30 01:54:07 2006 +0100
75038
75039 Code cleanup. Update CHANGELOG.
75040
75041 commit 726e90aacf0b1ecb0e7055be574622fbe3e450ba
75042 Author: Grant Likely <grant.likely@secretlab.ca>
75043 Date: Wed Nov 29 16:23:42 2006 +0100
75044
75045 [PATCH] [MPC52xx] Use IPB bus frequency for SOC peripherals
75046
75047 The soc node of the mpc52xx needs to be loaded with the IPB bus frequency,
75048 not the XLB frequency.
75049
75050 This patch depends on the previous patches for MPC52xx device tree support
75051
75052 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75053 Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
75054
75055 commit 1eac2a71417b6675b11aace72102a2e7fde8f5c6
75056 Author: Stefan Roese <sr@denx.de>
75057 Date: Wed Nov 29 15:42:37 2006 +0100
75058
75059 [PATCH] Add support for Prodrive P3M750 & P3M7448 (P3Mx) boards
75060
75061 This patch adds support for the Prodrive P3M750 (PPC750 & MV64460)
75062 and the P3M7448 (MPC7448 & MV64460) PMC modules. Both modules are
75063 quite similar and share the same board directory "prodrive/p3mx"
75064 and the same config file "p3mx.h".
75065
75066 Signed-off-by: Stefan Roese <sr@denx.de>
75067
75068 commit 1bdd46832aeb569f5e04b1f20f64318525b6525a
75069 Author: Stefan Roese <sr@denx.de>
75070 Date: Wed Nov 29 12:53:15 2006 +0100
75071
75072 [PATCH] common/cmd_elf.c: Enable loadaddr as parameter in bootvx command
75073
75074 In the bootvx command the load address was only read from the env
75075 variable "loadaddr" and not optionally passed as paramter as described
75076 in the help. This is fixed with this patch. The behaviour is now the
75077 same as in the bootelf command.
75078
75079 Signed-off-by: Stefan Roese <sr@denx.de>
75080
75081 commit 4e26f1074c3ac1bd8fd094f0dc4a1c4a0b15a592
75082 Author: Stefan Roese <sr@denx.de>
75083 Date: Wed Nov 29 12:03:57 2006 +0100
75084
75085 [PATCH] include/ppc440.h minor error affecting interrupts
75086
75087 Fixed include/ppc440.c for UIC address Bug
75088
75089 Corrects bug affecting the addresses for the universal interrupt
75090 controller UIC2 and UIC3 on the PPC440 Epx, GRx, and SPE chips.
75091
75092 Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
75093 Signed-off-by: Stefan Roese <sr@denx.de>
75094
75095 commit 1939d969443ccf316cab2bf32ab1027d4db5ba1a
75096 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
75097 Date: Tue Nov 28 16:17:27 2006 -0600
75098
75099 Make fsl-i2c not conflict with SOFT I2C
75100
75101 Signed-off-by: Timur Tabi <timur@freescale.com>
75102
75103 commit 14198bf768fdc958e3c1afd2404e5262208e98d7
75104 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
75105 Date: Tue Nov 28 16:17:18 2006 -0600
75106
75107 Fix I2C master address initialization.
75108
75109 Signed-off-by: Timur Tabi <timur@freescale.com>
75110
75111 commit cf3d045e51ca8dcc6cf759827140861d6ac25c04
75112 Author: Kim Phillips <kim.phillips@freescale.com>
75113 Date: Tue Nov 28 23:31:19 2006 -0600
75114
75115 Assign maintainers for mpc8349emds and mpc8360emds
75116
75117 Dave for mpc8360emds, and me for mpc8349emds.
75118
75119 commit 1aa934c81b77f2080d3ca4b226eab67b17a33961
75120 Author: Kim Phillips <kim.phillips@freescale.com>
75121 Date: Tue Nov 28 23:28:33 2006 -0600
75122
75123 Eliminate gcc 4 'used uninitialized' warnings in drivers/qe/uccf.c
75124
75125 give initial values for reg_num, shift, p_cmxucr in ucc_set_clk_src
75126 since they are passed by reference to ucc_get_cmxucr_reg and assigned.
75127
75128 commit e857a5bdb3954b896c0920cb9d8d2b1b9c107ce5
75129 Author: Timur Tabi <timur@freescale.com>
75130 Date: Tue Nov 28 12:09:35 2006 -0600
75131
75132 mpc83xx: Miscellaneous code style fixes
75133
75134 Implement various code style fixes and similar changes.
75135
75136 Signed-off-by: Timur Tabi <timur@freescale.com>
75137
75138 commit e59581c56ab5d6e0207ddac3b2c1d55cb36ec706
75139 Author: Stefan Roese <sr@denx.de>
75140 Date: Tue Nov 28 17:55:49 2006 +0100
75141
75142 [PATCH] Enable the IceCube/lite5200 variants to pass a device tree to Linux.
75143
75144 This patch adds the code and configuration necessary to boot with an
75145 arch/powerpc Linux kernel.
75146
75147 Signed-off-by: Grant Likely <grant.likely@gmail.com>
75148 Acked-by: Jon Loeliger <jdl@freescale.com>
75149
75150 commit e732faec95a83cb468b4850ae807c8301dde8f6a
75151 Author: Stefan Roese <sr@denx.de>
75152 Date: Tue Nov 28 16:09:24 2006 +0100
75153
75154 [PATCH] PPC4xx: 440SP Rev. C detection added
75155
75156 Signed-off-by: Stefan Roese <sr@denx.de>
75157
75158 commit e7f3e9ff01fbd7fa72eb42a9675fbed6bc4736b0
75159 Author: Stefan Roese <sr@denx.de>
75160 Date: Tue Nov 28 11:04:45 2006 +0100
75161
75162 [PATCH] nand: Fix patch merge problem
75163
75164 Signed-off-by: Stefan Roese <sr@denx.de>
75165
75166 commit 58e3b14c18ed3288ceef8d086946dbf3df64ccf2
75167 Author: Stefan Roese <sr@denx.de>
75168 Date: Tue Nov 28 11:04:45 2006 +0100
75169
75170 [PATCH] nand: Fix patch merge problem
75171
75172 Signed-off-by: Stefan Roese <sr@denx.de>
75173
75174 commit 4f4b602ec7524a032bdf3c6d28c7f525a4a67eaa
75175 Author: Wolfgang Denk <wd@pollux.denx.de>
75176 Date: Mon Nov 27 22:53:53 2006 +0100
75177
75178 Update CHANGELOG
75179
75180 commit f6e495f54cdb8fe340b9c03deab40ad746d52fae
75181 Author: Stefan Roese <sr@denx.de>
75182 Date: Mon Nov 27 17:43:25 2006 +0100
75183
75184 [PATCH] 4xx_enet.c: Correct the setting of zmiifer register
75185
75186 Patch below corrects the setting of the zmiifer register, it was
75187 overwritting the register rather than ORing the settings.
75188
75189 Signed-off-by: Neil Wilson <NWilson@airspan.com>
75190 Signed-off-by: Stefan Roese <sr@denx.de>
75191
75192 commit d1a72545296800b7e219f93104ad5836f0003d66
75193 Author: Stefan Roese <sr@denx.de>
75194 Date: Mon Nov 27 17:34:10 2006 +0100
75195
75196 [PATCH] Select NAND embedded environment from board configuration
75197
75198 The current NAND Bootloader setup forces the environment
75199 variables to be in line with the bootloader. This change
75200 enables the configuration to be made in the board include
75201 file instead so that it can be individually enabled.
75202
75203 Signed-off-by: Nick Spence <nick.spence@freescale.com>
75204 Signed-off-by: Stefan Roese <sr@denx.de>
75205
75206 commit 15784862857c3c2214498defcfed84ff137fb81e
75207 Author: Stefan Roese <sr@denx.de>
75208 Date: Mon Nov 27 17:22:19 2006 +0100
75209
75210 [PATCH] nand_wait() timeout fixes
75211
75212 Two fixes for the nand_wait() function in
75213 drivers/nand/nand_base.c:
75214
75215 1. Use correct timeouts. The original timeouts in Linux
75216 source are 400ms and 20ms not 40s and 20s
75217
75218 2. Return correct error value in case of timeout. 0 is
75219 interpreted as OK.
75220
75221 Signed-off-by: Rui Sousa <rui.sousa@laposte.net>
75222 Signed-off-by: Stefan Roese <sr@denx.de>
75223
75224 commit da5553b095bf04f4f109ad7e565dae3aba47b230
75225 Author: Stefan Roese <sr@denx.de>
75226 Date: Mon Nov 27 17:04:06 2006 +0100
75227
75228 [PATCH] Allow CONFIG_OF_FLAT_TREE to boot a non-arch/powerpc kernel
75229
75230 This patch allows an arch/ppc kernel to be booted by just passing 1 or 2
75231 arguments to bootm. It removes the getenv("disable_of") test that used
75232 to be used for this purpose.
75233
75234 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75235 Acked-by: Jon Loeliger <jdl@freescale.com>
75236
75237 commit a9398e018593782c5fa7d0741955fc1256b34c1e
75238 Author: Wolfgang Denk <wd@pollux.denx.de>
75239 Date: Mon Nov 27 15:32:42 2006 +0100
75240
75241 Minor code cleanup. Update CHANGELOG.
75242
75243 commit 1729b92cde575476684bffe819d0b7791b57bff2
75244 Author: Stefan Roese <sr@denx.de>
75245 Date: Mon Nov 27 14:52:04 2006 +0100
75246
75247 [PATCH] 4xx: Fix problem with board specific reset code (now for real)
75248
75249 Signed-off-by: Stefan Roese <sr@denx.de>
75250
75251 commit cc5ee8a92a0e3ca6f727af71b8fd206460c7afd7
75252 Author: Stefan Roese <sr@denx.de>
75253 Date: Mon Nov 27 14:49:51 2006 +0100
75254
75255 [PATCH] alpr: remove unused board specific flash driver
75256
75257 Signed-off-by: Stefan Roese <sr@denx.de>
75258
75259 commit 1f94d162e2b5f0edc28d9fb11482502c44d218e1
75260 Author: Stefan Roese <sr@denx.de>
75261 Date: Mon Nov 27 14:48:41 2006 +0100
75262
75263 [PATCH] 4xx: Fix problem with board specific reset code
75264
75265 Signed-off-by: Stefan Roese <sr@denx.de>
75266
75267 commit ec0c2ec725aec9524a177a77ce75559e644a931a
75268 Author: Stefan Roese <sr@denx.de>
75269 Date: Mon Nov 27 14:46:06 2006 +0100
75270
75271 [PATCH] Remove testing 4xx enet PHY setup
75272
75273 Signed-off-by: Stefan Roese <sr@denx.de>
75274
75275 commit 1c2ce2262069510f31c7d3fd7efd3d58b8c0c148
75276 Author: Stefan Roese <sr@denx.de>
75277 Date: Mon Nov 27 14:12:17 2006 +0100
75278
75279 [PATCH] Update Prodrive ALPR board support (440GX)
75280
75281 Signed-off-by: Stefan Roese <sr@denx.de>
75282
75283 commit 58b485776698c3d71ec5a215e392123b4c15afa3
75284 Author: Markus Klotzbuecher <mk@denx.de>
75285 Date: Mon Nov 27 11:51:21 2006 +0100
75286
75287 Add a small README with information on the generic ohci driver.
75288
75289 commit ae3b770e4eae8e98b6e9e29662e18c47fdf0171f
75290 Author: Markus Klotzbuecher <mk@denx.de>
75291 Date: Mon Nov 27 11:46:46 2006 +0100
75292
75293 Fix some endianness issues related to the generic ohci driver
75294
75295 commit 7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418
75296 Author: Markus Klotzbuecher <mk@denx.de>
75297 Date: Mon Nov 27 11:44:58 2006 +0100
75298
75299 Introduced the configuration option CONFIG_USB_OHCI_NEW in order to be able
75300 to choose between the old and the generic OHCI drivers.
75301
75302 commit 53e336e9ffc51035bdc4e5867631b3378761b4df
75303 Author: Markus Klotzbuecher <mk@denx.de>
75304 Date: Mon Nov 27 11:43:09 2006 +0100
75305
75306 Modified the mpc5xxx and the ppc4xx cpu to use the generic OHCI driver
75307 and adapted board configs TQM5200 and yosemite accordingly. This commit
75308 also makes the maximum number of root hub ports configurable
75309 (CFG_USB_OHCI_MAX_ROOT_PORTS).
75310
75311 commit 78d620ebb5871d252270dedfad60c6568993b780
75312 Author: Wolfgang Denk <wd@atlas.denx.de>
75313 Date: Thu Nov 23 22:58:58 2006 +0100
75314
75315 Updates for TQM5200 modules:
75316 - fix off-by-one error in board/tqm5200/cam5200_flash.c error message
75317 - simplify "udate" definitions
75318
75319 commit 2053283304eeddf250d109e6791eb6fa4cad14f7
75320 Author: Stefan Roese <sr@denx.de>
75321 Date: Wed Nov 22 13:20:50 2006 +0100
75322
75323 [PATCH] PPC4xx start.S: Fix for processor errata
75324
75325 Fixed cpu/ppc4xx/start.S for 440EPx Errata: further corrects PPC440EPx
75326 errata 1.12: 440_33 by moving patch up in code.
75327
75328 Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
75329 Signed-off-by: Stefan Roese <sr@denx.de>
75330
75331 commit 4ef6251403f637841000e0fef9e832aa01339822
75332 Author: Stefan Roese <sr@denx.de>
75333 Date: Mon Nov 20 20:39:52 2006 +0100
75334
75335 [PATCH] Update AMCC Sequoia config file to support 64MByte NOR FLASH
75336
75337 Signed-off-by: Stefan Roese <sr@denx.de>
75338
75339 commit e4bbd8da164b976d38616bd9c69c5e86e193cdf0
75340 Author: Wolfgang Denk <wd@pollux.denx.de>
75341 Date: Mon Nov 20 10:28:30 2006 +0100
75342
75343 Update CHANGELOG
75344
75345 commit 260421a21e934a68d31fb6125b0fbd2631a8ca20
75346 Author: Stefan Roese <sr@denx.de>
75347 Date: Mon Nov 13 13:55:24 2006 +0100
75348
75349 [PATCH] CFI driver AMD Command Set Top boot geometry reversal, etc. [Updated]
75350
75351 * Adds support for AMD command set Top Boot flash geometry reversal
75352 * Adds support for reading JEDEC Manufacturer ID and Device ID
75353 * Adds support for displaying command set, manufacturer id and
75354 device ids (flinfo)
75355 * Makes flinfo output to be consistent when CFG_FLASH_EMPTY_INFO defined
75356 * Removes outdated change history (refer to git log instead)
75357
75358 Signed-off-by: Tolunay Orkun <listmember@orkun.us>
75359 Signed-off-by: Stefan Roese <sr@denx.de>
75360
75361 commit b21b511d4c50408f4853f46f06b601272196223f
75362 Author: Wolfgang Denk <wd@pollux.denx.de>
75363 Date: Sun Nov 12 21:13:23 2006 +0100
75364
75365 Update CHANGELOG
75366
75367 commit ce3f1a40c507afbab06c5eb58ccdc6713eda3245
75368 Author: Bartlomiej Sieka <tur@semihalf.com>
75369 Date: Sat Nov 11 22:48:22 2006 +0100
75370
75371 Disable the watchdog in the default config for the V38B board.
75372
75373 commit 44a47e6db2694841211f1c8fdbafd36992e9cd1a
75374 Author: Bartlomiej Sieka <tur@semihalf.com>
75375 Date: Sat Nov 11 22:43:00 2006 +0100
75376
75377 Change the GPIO pin multiplexing configuration for V38B. The USB GPIO pin
75378 group is enabled for USB earlier (in cpu_init_f() instead of
75379 usb_lowlevel_init()).
75380
75381 commit 91650b3e4de688038d4f71279c44858e3e2c6870
75382 Author: Wolfgang Denk <wd@pollux.denx.de>
75383 Date: Mon Nov 6 17:06:36 2006 +0100
75384
75385 Sequential accesses to non-existent memory must be synchronized,
75386 at least on G2 cores.
75387
75388 This fixes get_ram_size() problems on MPC5200 Rev. B boards.
75389
75390 commit be5e61815d5a1fac290ce9c0ef09cb6a8e4288fa
75391 Author: Timur Tabi <timur@freescale.com>
75392 Date: Fri Nov 3 19:15:00 2006 -0600
75393
75394 mpc83xx: Update 83xx to use fsl_i2c.c
75395
75396 Update the 83xx tree to use I2C support in drivers/fsl_i2c.c. Delete
75397 cpu/mpc83xx/i2c.c, include/asm-ppc/i2c.h, and all references to those files.
75398 Added multiple I2C bus support to fsl_i2c.c.
75399
75400 Signed-off-by: Timur Tabi <timur@freescale.com>
75401
75402 commit d239d74b1c937984bc519083a8e7de373a390f06
75403 Author: Timur Tabi <timur@freescale.com>
75404 Date: Fri Nov 3 12:00:28 2006 -0600
75405
75406 mpc83xx: Replace CFG_IMMRBAR with CFG_IMMR
75407
75408 Replace all instances of CFG_IMMRBAR with CFG_IMMR, so that the 83xx
75409 tree matches the other 8xxx trees.
75410
75411 Signed-off-by: Timur Tabi <timur@freescale.com>
75412
75413 commit f7fb2e703ec9688541416962724adff70a7322cb
75414 Author: Kim Phillips <kim.phillips@freescale.com>
75415 Date: Thu Nov 2 19:47:11 2006 -0600
75416
75417 mpc83xx: Lindent and clean up cpu/mpc83xx/speed.c
75418
75419 commit 90f30a710a3c619b5405860a686c4ddfc495d4b6
75420 Author: Dave Liu <daveliu@freescale.com>
75421 Date: Thu Nov 2 18:05:50 2006 -0600
75422
75423 mpc83xx: Fix the incorrect dcbz operation
75424
75425 The 834x rev1.x silicon has one CPU5 errata.
75426
75427 The issue is when the data cache locked with
75428 HID0[DLOCK], the dcbz instruction looks like no-op inst.
75429
75430 The right behavior of the data cache is when the data cache
75431 Locked with HID0[DLOCK], the dcbz instruction allocates
75432 new tags in cache.
75433
75434 The 834x rev3.0 and later and 8360 have not this bug inside.
75435
75436 So, when 834x rev3.0/8360 are working with ECC, the dcbz
75437 instruction will corrupt the stack in cache, the processor will
75438 checkstop reset.
75439
75440 However, the 834x rev1.x can work with ECC with these code,
75441 because the sillicon has this cache bug. The dcbz will not
75442 corrupt the stack in cache.
75443 Really, it is the fault code running on fault sillicon.
75444
75445 This patch fix the incorrect dcbz operation. Instead of
75446 CPU FP writing to initialise the ECC.
75447
75448 CHANGELOG:
75449 * Fix the incorrect dcbz operation instead of CPU FP
75450 writing to initialise the ECC memory. Otherwise, it
75451 will corrupt the stack in cache, The processor will checkstop
75452 reset.
75453
75454 Signed-off-by: Dave Liu <daveliu@freescale.com>
75455
75456 commit bf0b542d6773a5a1cbce77691f009b06d9aeb57d
75457 Author: Kim Phillips <kim.phillips@freescale.com>
75458 Date: Wed Nov 1 00:10:40 2006 -0600
75459
75460 mpc83xx: add OF_FLAT_TREE bits to 83xx boards
75461
75462 add ft_pci_setup, OF_CPU, OF_SOC, OF_TBCLK, and
75463 STDOUT_PATH configuration bits to mpc8349emds,
75464 mpc8349itx, and mpc8360emds board code.
75465
75466 redo environment to use bootm with the fdtaddr
75467 for booting ARCH=powerpc kernels by default,
75468 and provide default fdtaddr values.
75469
75470 commit 48041365b3420589ad464ebc7752e0053538b729
75471 Author: Kim Phillips <kim.phillips@freescale.com>
75472 Date: Wed Nov 1 00:07:25 2006 -0600
75473
75474 mpc83xx: change ft code to modify local-mac-address property
75475
75476 Update 83xx OF code to update local-mac-address properties
75477 for ethernet instead of the obsolete 'address' property.
75478
75479 commit 9ca880a250870a7d55754291b5591d2b5fe89b54
75480 Author: Timur Tabi <timur@freescale.com>
75481 Date: Tue Oct 31 21:23:16 2006 -0600
75482
75483 mpc83xx: Fix dual I2C support for the MPC8349ITX, MPC8349EMDS, TQM834x, and MPC8360EMDS
75484
75485 This patch also adds an improved I2C set_speed(), which handles all clock
75486 frequencies.
75487
75488 Signed-off-by: Timur Tabi <timur@freescale.com>
75489
75490 commit ac4b5622ce050b5ee1e154b98df630d778661632
75491 Author: Dave Liu <daveliu@freescale.com>
75492 Date: Tue Oct 31 19:54:59 2006 -0600
75493
75494 mpc83xx: add the README.mpc8360emds
75495
75496 add doc/README.mpc8360emds to accompany the new board support
75497
75498 commit 7737d5c658c606f999dfbe3e86b0fed49e5c50ef
75499 Author: Dave Liu <daveliu@freescale.com>
75500 Date: Fri Nov 3 12:11:15 2006 -0600
75501
75502 mpc83xx: add QE ethernet support
75503
75504 this patch adds support for the QUICC Engine based UCC gigabit ethernet device.
75505
75506 commit 5f8204394e39bbe8cd9f08b8f8d145b6c01f7c73
75507 Author: Dave Liu <daveliu@freescale.com>
75508 Date: Fri Nov 3 19:33:44 2006 -0600
75509
75510 mpc83xx: Add MPC8360EMDS basic board support
75511
75512 Add support for the Freescale MPC8360EMDS board.
75513 Includes DDR, DUART, Local Bus, PCI.
75514
75515 commit 23892e49352de74f7fac36ff90bb1be143d195e3
75516 Author: Dave Liu <daveliu@freescale.com>
75517 Date: Tue Oct 31 19:30:40 2006 -0600
75518
75519 mpc83xx: add the QUICC Engine (QE) immap file
75520
75521 common QE immap file. Also required for 8360.
75522
75523 commit b701652a4992bdcc62fb1a6038a85beef9e55da4
75524 Author: Dave Liu <daveliu@freescale.com>
75525 Date: Tue Oct 31 19:25:38 2006 -0600
75526
75527 mpc83xx: Add 8360 specifics to 83xx immap
75528
75529 Mainly add QE device dependencies, with appropriate 8360 protection.
75530 Lindent also run.
75531
75532 commit 988833324a7fda482c8ac3ca23eb539f8232e404
75533 Author: Timur Tabi <timur@freescale.com>
75534 Date: Tue Oct 31 19:14:41 2006 -0600
75535
75536 mpc83xx: Fix PCI, USB, bootargs for MPC8349E-mITX
75537
75538 PREREQUISITE PATCHES:
75539
75540 * This patch can only be applied after the following patches have been applied:
75541
75542 1) DNX#2006092142000015 "Add support for the MPC8349E-mITX 1/2"
75543 2) DNX#2006092142000024 "Add support for the MPC8349E-mITX 2/2"
75544
75545 CHANGELOG:
75546
75547 * For the 8349E-mITX, fix some size values in pci_init_board(), enable
75548 the clock for the 2nd USB board (Linux kernel will hang otherwise),
75549 and fix the CONFIG_BOOTARGS macro.
75550
75551 Signed-off-by: Timur Tabi <timur@freescale.com>
75552
75553 commit 2ad6b513b31070bd0c003792ed1c3e7f5d740357
75554 Author: Timur Tabi <timur@freescale.com>
75555 Date: Tue Oct 31 18:44:42 2006 -0600
75556
75557 mpc83xx: Add support for the MPC8349E-mITX
75558
75559 PREREQUISITE PATCHES:
75560
75561 * This patch can only be applied after the following patches have been applied:
75562
75563 1) DNX#2006090742000024 "Add support for multiple I2C buses"
75564 2) DNX#2006090742000033 "Multi-bus I2C implementation of MPC834x"
75565 3) DNX#2006091242000041 "Additional MPC8349 support for multibus i2c"
75566 4) DNX#2006091242000078 "Add support for variable flash memory sizes on 83xx systems"
75567 5) DNX#2006091242000069 "Add support for Errata DDR6 on MPC 834x systems"
75568
75569 CHANGELOG:
75570
75571 * Add support for the Freescale MPC8349E-mITX reference design platform.
75572 The second TSEC (Vitesse 7385 switch) is not supported at this time.
75573
75574 Signed-off-by: Timur Tabi <timur@freescale.com>
75575
75576 commit 183da6d9b446cc12123455844ad1187e2375626f
75577 Author: Ben Warren <bwarren@qstreams.com>
75578 Date: Tue Sep 12 10:15:53 2006 -0400
75579
75580 Additional MPC8349 support for multibus i2c
75581
75582 Hello,
75583
75584 Here is a patch for a file that was accidentally left out of a previous
75585 attempt.
75586
75587 It accompanies the patch with ticket DNX#2006090742000024
75588
75589 CHANGELOG:
75590 Change PCI initialization to use new multi-bus I2C API.
75591
75592 regards,
75593 Ben
75594
75595 commit b24f119d672b709d153ff2ac091d4aa63ec6877d
75596 Author: Ben Warren <bwarren@qstreams.com>
75597 Date: Thu Sep 7 16:51:04 2006 -0400
75598
75599 Multi-bus I2C implementation of MPC834x
75600
75601 Hello,
75602
75603 Attached is a patch implementing multiple I2C buses on the MPC834x CPU
75604 family and the MPC8349EMDS board in particular.
75605 This patch requires Patch 1 (Add support for multiple I2C buses).
75606 Testing was performed on a 533MHz board.
75607
75608 /*** Note: This patch replaces ticket DNX#2006083042000027 ***/
75609
75610 Signed-off-by: Ben Warren <bwarren@qstreams.com>
75611
75612 CHANGELOG:
75613 Implemented driver-level code to support two I2C buses on the
75614 MPC834x CPU family and the MPC8349EMDS board. Available I2C bus speeds
75615 are 50kHz, 100kHz and 400kHz on each bus.
75616
75617 regards,
75618 Ben
75619
75620 commit bb99ad6d8257bf828f150d40f507b30d80a4a7ae
75621 Author: Ben Warren <bwarren@qstreams.com>
75622 Date: Thu Sep 7 16:50:54 2006 -0400
75623
75624 Add support for multiple I2C buses
75625
75626 Hello,
75627
75628 Attached is a patch providing support for multiple I2C buses at the
75629 command level. The second part of the patch includes an implementation
75630 for the MPC834x CPU and MPC8349EMDS board.
75631
75632 /*** Note: This patch replaces ticket DNX#2006083042000018 ***/
75633
75634 Signed-off-by: Ben Warren <bwarren@qstreams.com>
75635
75636 Overview:
75637
75638 1. Include new 'i2c' command (based on USB implementation) using
75639 CONFIG_I2C_CMD_TREE.
75640
75641 2. Allow multiple buses by defining CONFIG_I2C_MULTI_BUS. Note that
75642 the commands to change bus number and speed are only available under the
75643 new 'i2c' command mentioned in the first bullet.
75644
75645 3. The option CFG_I2C_NOPROBES has been expanded to work in multi-bus
75646 systems. When CONFIG_I2C_MULTI_BUS is used, this option takes the form
75647 of an array of bus-device pairs. Otherwise, it is an array of uchar.
75648
75649 CHANGELOG:
75650 Added new 'i2c' master command for all I2C interaction. This is
75651 conditionally compiled with CONFIG_I2C_CMD_TREE. New commands added for
75652 setting I2C bus speed as well as changing the active bus if the board
75653 has more than one (conditionally compiled with
75654 CONFIG_I2C_MULTI_BUS). Updated NOPROBE logic to handle multiple buses.
75655 Updated README.
75656
75657 regards,
75658 Ben
75659
75660 commit bed85caf872714ebf53013967a695c9d63acfc68
75661 Author: Timur Tabi <timur@freescale.com>
75662 Date: Tue Oct 31 18:13:36 2006 -0600
75663
75664 mpc83xx: Add support for Errata DDR6 on MPC 834x systems
75665
75666 CHANGELOG:
75667
75668 * Errata DDR6, which affects all current MPC 834x processors, lists changes
75669 required to maintain compatibility with various types of DDR memory. This
75670 patch implements those changes.
75671
75672 Signed-off-by: Timur Tabi <timur@freescale.com>
75673
75674 commit afd6e470f639883002c7c59d562690a5cb0f4865
75675 Author: Timur Tabi <timur@freescale.com>
75676 Date: Wed Oct 25 18:45:23 2006 -0500
75677
75678 mpc83xx: fix TQM build by defining a CFG_FLASH_SIZE for it
75679
75680 commit 31068b7c4abeefcb2c8fd4fbeccc8ec6c6d0475a
75681 Author: Timur Tabi <timur@freescale.com>
75682 Date: Tue Aug 22 17:07:00 2006 -0500
75683
75684 mpc83xx: Add support for variable flash memory sizes on 83xx systems
75685
75686 CHANGELOG:
75687
75688 * On 83xx systems, use the CFG_FLASH_SIZE macro to program the LBC local access
75689 window registers, instead of using a hard-coded value of 8MB.
75690
75691 Signed-off-by: Timur Tabi <timur@freescale.com>
75692
75693 commit 2fc34ae66e73fa7841d1a006dc1b5dcbc1f78965
75694 Author: Tanya Jiang <tanya.jiang@freescale.com>
75695 Date: Thu Aug 3 18:38:13 2006 +0800
75696
75697 mpc83xx: Unified TQM834x variable names with 83xx and consolidated macros
75698
75699 Unified TQM834x variable names with 83xx and consolidated macro
75700 in preparation for the 8360 and other upcoming 83xx devices.
75701
75702 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
75703
75704 commit f6eda7f80ccc13d658020268c507d7173cf2e8aa
75705 Author: Dave Liu <daveliu@freescale.com>
75706 Date: Wed Oct 25 14:41:21 2006 -0500
75707
75708 mpc83xx: Changed to unified mpx83xx names and added common 83xx changes
75709
75710 Incorporated the common unified variable names and the changes in preparation
75711 for releasing mpc8360 patches.
75712
75713 Signed-off-by: Dave Liu <daveliu@freescale.com>
75714
75715 commit 3894c46c27c64891f93ac04edde86a9fa9758d92
75716 Author: Tanya Jiang <tanya.jiang@freescale.com>
75717 Date: Thu Aug 3 18:36:02 2006 +0800
75718
75719 mpc83xx: Fix missing build for mpc8349emds pci.c
75720
75721 Make pci build for mpc8349emds
75722
75723 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
75724
75725 commit 09a81ff740b29deea1e2ab08a3c2ac136c2e6219
75726 Author: Tanya Jiang <tanya.jiang@freescale.com>
75727 Date: Thu Aug 3 18:39:49 2006 +0800
75728
75729 mpc83xx: Removed unused file resetvec.S for mpc83xx cpu
75730
75731 Removed unused file resetvec.S for mpc83xx cpu
75732
75733 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
75734
75735 commit 04f899fc465c3e44f2b55ecc70618f5696fc0ddf
75736 Author: Nick Spence <Nick.Spence@freescale.com>
75737 Date: Sat Sep 30 00:32:59 2006 -0700
75738
75739 NAND Flash verify across block boundaries
75740
75741 This patch addresses a problem when CONFIG_MTD_NAND_VERIFY_WRITE is
75742 defined
75743 and the write crosses a block boundary. The pointer to the verification
75744 buffer (bufstart) is not being updated to reflect the starting of the
75745 new
75746 block so the verification of the second block fails.
75747
75748 CHANGELOG:
75749
75750 * Fix NAND FLASH page verification across block boundaries
75751
75752 commit f484dc791a3932537213c43c654cc1295c64b84c
75753 Author: Nick Spence <nick.spence@freescale.com>
75754 Date: Thu Sep 7 07:39:46 2006 -0700
75755
75756 Added RGMII support to the TSECs and Marvell 881111 Phy
75757
75758 Added a phy initialization to adjust the RGMII RX and TX timing
75759 Always set the R100 bit in 100 BaseT mode regardless of the TSEC mode
75760
75761 Signed-off-by: Nick Spence <nick.spence@freescale.com>
75762
75763 commit 4831c8b8a97799da77923d6bbb4c260c0d45521c
75764 Author: roy zang <tie-fei.zang@freescale.com>
75765 Date: Fri Nov 3 13:10:00 2006 +0800
75766
75767 Remove some unused CFG define.
75768 undef CFG_DRAM_TEST
75769
75770 commit 99c09c4dec34f77c243bf51bea532e3f339410ad
75771 Author: roy zang <tie-fei.zang@freescale.com>
75772 Date: Fri Nov 3 13:07:36 2006 +0800
75773
75774 Change the TEXT_BASE from 0xFFF00000 to 0xFF000000.
75775 Both work. 0xFF000000 seems more reasonable.
75776
75777 commit c59200443072353044aa4bf737a5a60f9a9af231
75778 Author: Wolfgang Denk <wd@pollux.denx.de>
75779 Date: Thu Nov 2 15:15:01 2006 +0100
75780
75781 Release U-Boot 1.1.6
75782
75783 commit c1fbe4103a0d6c8957f912af902d705ba67836f2
75784 Author: roy zang <tie-fei.zang@freescale.com>
75785 Date: Thu Nov 2 19:14:48 2006 +0800
75786
75787 This patch comes from Yuli's posted patch on 8/8/2006
75788 titled "CFI Driver Little-Endian write Issue".
75789
75790 http://sourceforge.net/mailarchive/message.php?msg_id=36311999
75791
75792 If that patch applied, please discard this one.
75793 Until now , I do not see his patch is applied. So please apply this one.
75794
75795 Signed-off-by: Yuli Barcohen <yuli@arabellasw.com>
75796 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75797
75798 commit b825f158e449e1e9cf74c08e572955e122394c96
75799 Author: roy zang <tie-fei.zang@freescale.com>
75800 Date: Thu Nov 2 19:12:31 2006 +0800
75801
75802 Tsi108 on chip i2c support.
75803
75804 The i2c Interface provides a master-only, serial interface that can be
75805 used for initializing Tsi108/Tsi109 registers from an EEPROM after a
75806 device reset.
75807
75808 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
75809 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75810
75811 commit 9226e7d6f09b9a1ac074cd918c81225a4689bba8
75812 Author: roy zang <tie-fei.zang@freescale.com>
75813 Date: Thu Nov 2 19:11:06 2006 +0800
75814
75815 Tsi108 on chip pci controller support.
75816
75817 If there is no pci card, the tsi108/109 pci configure read will
75818 cause a machine check exception to the processor. PCI error should
75819 also be cleared after the read.
75820
75821 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
75822 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75823
75824 commit d1927cee977126e547ceeba23e4f978f377cfb8f
75825 Author: roy zang <tie-fei.zang@freescale.com>
75826 Date: Thu Nov 2 19:08:55 2006 +0800
75827
75828 Tundra tsi108 on chip Ethernet controller support.
75829
75830 The following is a brief description of the Ethernet controller:
75831 The Tsi108/9 Ethernet Controller connects Switch Fabric to two independent
75832 Gigabit Ethernet ports,E0 and E1. It uses a single Management interface
75833 to manage the two physical connection devices (PHYs). Each Ethernet port
75834 has its own statistics monitor that tracks and reports key interface
75835 statistics. Each port supports a 256-entry hash table for address
75836 filtering. In addition, each port is bridged to the Switch Fabric
75837 through a 2-Kbyte transmit FIFO and a 4-Kbyte Receive FIFO.
75838
75839 Each Ethernet port also has a pair of internal Ethernet DMA channels to
75840 support the transmit and receive data flows. The Ethernet DMA channels
75841 use descriptors set up in memory, the memory map of the device, and
75842 access via the Switch Fabric. The Ethernet Controller?s DMA arbiter
75843 handles arbitration for the Switch Fabric. The Controller also
75844 has a register businterface for register accesses and status monitor
75845 control.
75846
75847 The PMD (Physical Media Device) interface operates in MII, GMII, or TBI
75848 modes. The MII mode is used for connecting with 10 or 100 Mbit/s PMDs.
75849 The GMII and TBI modes are used to connect with Gigabit PMDs. Internal
75850 data flows to and from the Ethernet Controller through the Switch Fabric.
75851
75852 Each Ethernet port uses its transmit and receive DMA channels to manage
75853 data flows through buffer descriptors that are predefined by the
75854 system (the descriptors can exist anywhere in the system memory map).
75855 These descriptors are data structures that point to buffers filled
75856 with data ready to transmit over Ethernet, or they point to empty
75857 buffers ready to receive data from Ethernet.
75858
75859 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
75860 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75861
75862 commit 78aa0c3427f3ecdeb34aabfbbe2dd23b6ad8f40e
75863 Author: roy zang <tie-fei.zang@freescale.com>
75864 Date: Thu Nov 2 19:01:33 2006 +0800
75865
75866 Tundra tsi108 header file.
75867
75868 The Tundra Semiconductor Corporation (Tundra) Tsi108 is a host bridge for
75869 PowerPC processors that offers numerous system interconnect options for
75870 embedded application designers. The Tsi108 can interconnect 60x or
75871 MPX processors to PCI/X peripherals, DDR2-400 memory, Gigabit Ethernet,
75872 and Flash. Provided the macro define for tsi108 chip.
75873
75874 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
75875 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75876
75877 commit 87c4db09699c6b89176b31004afcb83eb1585d47
75878 Author: roy zang <tie-fei.zang@freescale.com>
75879 Date: Thu Nov 2 18:59:15 2006 +0800
75880
75881 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
75882 mpc7448hpc2 board support high level code:tsi108 init + mpc7448hpc2.
75883
75884 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
75885 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75886
75887 commit 27801b8ab11c61b577e45742a515bb3b23b80241
75888 Author: roy zang <tie-fei.zang@freescale.com>
75889 Date: Thu Nov 2 18:57:21 2006 +0800
75890
75891 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
75892 Make ,config.mk and link file for the mpc7448hpc2 board.
75893
75894 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
75895 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75896
75897 commit c6411c0c3bbc79f9ba8aef58296a42d8f9d8a0a6
75898 Author: roy zang <tie-fei.zang@freescale.com>
75899 Date: Thu Nov 2 18:55:04 2006 +0800
75900
75901 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
75902 The mpc7448hpc2 board support header file.
75903
75904 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
75905 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75906
75907 commit 625bb5ddb50b243f931262ca8c46956409471917
75908 Author: roy zang <tie-fei.zang@freescale.com>
75909 Date: Thu Nov 2 18:52:21 2006 +0800
75910
75911 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
75912 The mpc7448hpc2 board support low level assemble language init code.
75913
75914 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
75915 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75916
75917 commit 4c52783b3d024e153c4972b97332e314bc3bdc46
75918 Author: roy zang <tie-fei.zang@freescale.com>
75919 Date: Thu Nov 2 18:49:51 2006 +0800
75920
75921 General code modification for mpc7448hpc2 board support.
75922 1. Add 7447A and 7448 processor support.
75923 2. Add the following flags.
75924
75925 CFG_CONFIG_BUS_CLK : If the 74xx bus frequency can be configured dynamically
75926 (such as by switch on board), this flag should be set.
75927
75928 CFG_EXCEPTION_AFTER_RELOCATE: If an exception occurs after the u-boot
75929 relocates to RAM, this flag should be set.
75930
75931 CFG_SERIAL_HANG_IN_EXCEPTION: If the print out function will cause the
75932 system hang in exception, this flag should be set.
75933
75934 There is a design issue for tsi108/109 pci configure read. When pci scan
75935 the slots, if there is no pci card, the tsi108/9 will cause a machine
75936 check exception for mpc7448 processor.
75937
75938 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
75939 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75940
75941 commit 69366bf42f22d67efce8da3f8c40a43d4a3c2695
75942 Author: roy zang <tie-fei.zang@freescale.com>
75943 Date: Thu Nov 2 18:34:47 2006 +0800
75944
75945 Add README file for mpc7448hpc2 board.
75946 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75947
75948 commit 25721b5cec2be4bce79cfade17ec8f6aa1e67526
75949 Author: Bartlomiej Sieka <tur@semihalf.com>
75950 Date: Wed Nov 1 02:04:38 2006 +0100
75951
75952 Finish up support for MarelV38B board
75953 - add watchdog support
75954 - enable GPIO_WKUP_7 pin for input
75955 - code cleanup
75956
75957 commit ffa150bc90c943ca265170bd1be3f293674dd5c7
75958 Author: Bartlomiej Sieka <tur@semihalf.com>
75959 Date: Wed Nov 1 01:45:46 2006 +0100
75960
75961 - Fix issues related to the use of ELDK 4 when compiling for MarelV38B:
75962 * remove warnings when compiling ethaddr.c
75963 * adjust linker script (fixes a crash resulting from incorrect
75964 definition of __u_boot_cmd_start)
75965 - Some MarelV38B code cleanup.
75966
75967 commit dae80f3caf9754a6dd3ddf3cf903d0c46cbd4385
75968 Author: Bartlomiej Sieka <tur@semihalf.com>
75969 Date: Wed Nov 1 01:38:16 2006 +0100
75970
75971 - Add MPC5XXX register definition MPC5XXX_WU_GPIO_DATA_I and change the
75972 MPC5XXX_WU_GPIO_DATA macro to MPC5XXX_WU_GPIO_DATA_O (per MPC5200 User's
75973 Manual). Replace the uses of MPC5XXX_WU_GPIO_DATA with
75974 MPC5XXX_WU_GPIO_DATA_O for affected boards.
75975
75976 - Add defintions for some MPC5XXX GPIO pins.
75977
75978 commit 82d9c9ec29a1bec1b03ba616425ebaed231072c8
75979 Author: Bartlomiej Sieka <tur@semihalf.com>
75980 Date: Wed Nov 1 01:34:29 2006 +0100
75981
75982 Changed MarelV38B board make target to lowercase. Config file cleanup.
75983
75984 commit 1954be6e9c9421b45d0a9d05b10356acc7563150
75985 Author: Wolfgang Denk <wd@pollux.denx.de>
75986 Date: Sun Oct 29 01:03:51 2006 +0200
75987
75988 Automatically adjust ARFLAGS so "make -s" is really silent.
75989
75990 commit fae684e89844856383bdf101440889557df3e6b1
75991 Author: Stefan Roese <sr@denx.de>
75992 Date: Sat Oct 28 16:45:00 2006 +0200
75993
75994 [PATCH] omap925.c: Remove unused functions
75995
75996 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
75997 Signed-off-by: Stefan Roese <sr@denx.de>
75998
75999 commit 1265581502ab8ea8c08e8edbe9bf64fbd62fd776
76000 Author: Stefan Roese <sr@denx.de>
76001 Date: Sat Oct 28 17:12:58 2006 +0200
76002
76003 [PATCH] Add some missing machtypes for netstar & voiceblue boards
76004
76005 Use MACH_TYPE_NETSTAR and MACH_TYPE_VOICEBLUE defines instead of
76006 numbers in code.
76007
76008 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
76009 Signed-off-by: Stefan Roese <sr@denx.de>
76010
76011 commit 856f054410cef52d868feb330168b2a4c4091328
76012 Author: Stefan Roese <sr@denx.de>
76013 Date: Sat Oct 28 15:55:52 2006 +0200
76014
76015 [PATCH] NAND: Partition name support added to NAND subsystem
76016
76017 chpart, nboot and NAND subsystem related commands now accept also partition
76018 name to specify offset.
76019
76020 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
76021 Signed-off-by: Stefan Roese <sr@denx.de>
76022
76023 commit 07a69a18c2ecfda904231fdf23e2523ea7792eb6
76024 Author: Wolfgang Denk <wd@pollux.denx.de>
76025 Date: Sat Oct 28 02:29:44 2006 +0200
76026
76027 Update CHANGELOG.
76028
76029 commit 2751a95abd1b96911081c357e96a12fa97b40dee
76030 Author: Wolfgang Denk <wd@pollux.denx.de>
76031 Date: Sat Oct 28 02:29:14 2006 +0200
76032
76033 Enable commandline editing and hush shell on all TQM boards.
76034
76035 commit 8078f1a5f63a739b8533478f6c2b62fb1e2f79d7
76036 Author: Wolfgang Denk <wd@pollux.denx.de>
76037 Date: Sat Oct 28 02:28:02 2006 +0200
76038
76039 README says CFG_AUTO_COMPLETE, but ocde uses CONFIG_AUTO_COMPLETE
76040
76041 commit 471a7be7a042e95e440f5de969c9765214ae8d6e
76042 Author: Wolfgang Denk <wd@denx.de>
76043 Date: Sat Oct 28 01:14:32 2006 +0200
76044
76045 Check for illegal character '=' in environment variable names.
76046
76047 Make sure the string passed as variable name does not contain a '='
76048 character. This not only prevents the common error or typing
76049 "setenv foo=bar" instead of "setenv foo bar", but (more importantly)
76050 also closes a backdoor which allowed to delete write-protected
76051 environment variables, for example by using "setenv ethaddr=".
76052
76053 commit 19973b6ad9863a56f5c5fbcfd90e20ab2490a2c2
76054 Author: Wolfgang Denk <wd@pollux.denx.de>
76055 Date: Sat Oct 28 00:38:39 2006 +0200
76056
76057 Minor code cleanup.
76058
76059 commit e11887a77d81077416a2d1c5e0354916fee8c034
76060 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
76061 Date: Thu Oct 26 17:55:31 2006 +0200
76062
76063 Don't pass any debug options directly to the assembler
76064
76065 When passing the -g option to gcc, gcc automatically selects a
76066 suitable --g<format> option to pass on to the assembler.
76067 Thus, there's no point in forcing a specific debug option on the
76068 assembler using the -Wa mechanism.
76069
76070 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
76071
76072 commit ea08ff6e14f9ebb8c07cfa79c51ef540eb087393
76073 Author: Jon Loeliger <jdl@freescale.com>
76074 Date: Fri Oct 27 07:47:22 2006 -0500
76075
76076 MPC86xx: Cleaned up unused and conditionally used local variables.
76077
76078 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76079
76080 commit d38936cdae46bfd2623ff83f6ce9b616d36ab0f9
76081 Author: Wolfgang Denk <wd@pollux.denx.de>
76082 Date: Fri Oct 27 11:55:21 2006 +0200
76083
76084 Fix "ar" flags in some Makefiles to allow for silent "make -s"
76085
76086 commit 4653f91c13ed51c21cc4c3855745d69a3fb1817f
76087 Author: Ben Warren <bwarren@qstreams.com>
76088 Date: Thu Oct 26 14:38:25 2006 -0400
76089
76090 Fix TSEC driver (now for real): avoid crashes if PHY is not attached
76091 to a TSEC (e.g. a switch is connected via RMII) or
76092 if the PHY is defective/incorrectly configured.
76093
76094 Signed-off-by: Ben Warren <bwarren@qstreams.com>
76095
76096 commit b985b5d6e4fb88f508f7aa0f126c2e27ada2b999
76097 Author: Ben Warren <bwarren@qstreams.com>
76098 Date: Thu Oct 26 14:38:25 2006 -0400
76099
76100 Fix TSEC driver: avoid crashes if PHY is not attached
76101 to a TSEC (e.g. a switch is connected via RMII) or
76102 if the PHY is defective/incorrectly configured.
76103
76104 Signed-off-by: Ben Warren <bwarren@qstreams.com>
76105
76106 commit 2b2a40bebbf1822506e80e631d7253e60f0e0fe6
76107 Author: Wolfgang Denk <wd@pollux.denx.de>
76108 Date: Thu Oct 26 16:24:31 2006 +0200
76109
76110 Code cleanup.
76111
76112 commit 5e3b0bc19f07ed277d85324ad0427642c8981baf
76113 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
76114 Date: Wed Oct 25 15:48:59 2006 +0200
76115
76116 Finish up support for the ATSTK1000/ATSTK1002 boards
76117
76118 Add atstk1002_config target to Makefile and move the AVR32 section
76119 down below Blackfin so that it doesn't end up in the middle of
76120 MIPS.
76121
76122 Drop the autogenerated linker script thing for now. Will have to
76123 revisit how to handle chips with different flash and RAM layout
76124 later.
76125
76126 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
76127
76128 commit c76f951a747cfb87ba826ef45b5aea82d5b5dbb4
76129 Author: Kumar Gala <galak@kernel.crashing.org>
76130 Date: Tue Oct 24 23:47:37 2006 -0500
76131
76132 Added support for Multi-Image files that contain a device tree
76133
76134 If a Multi-Image file contains a third image we try to use it as a
76135 device tree. The device tree image is assumed to be uncompressed in the
76136 image file. We automatically allocate space for the device tree in memory
76137 and provide an 8k pad to allow more than a reasonable amount of growth.
76138
76139 Additionally, a device tree that was contained in flash will now automatically
76140 get copied to system memory as part of boot. Previously an error was
76141 reported if one tried to boot a device tree that was in flash.
76142
76143 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
76144
76145 commit 7c52c4b943ff52bbe8796a7e2d3e476ceaf3f512
76146 Author: Wolfgang Denk <wd@denx.de>
76147 Date: Tue Oct 24 21:35:55 2006 +0200
76148
76149 Switch to automatically generated CHANGELOG file.
76150 (use "make CHANGELOG" to update it from time to time)
76151
76152 commit 7ade0c634a979c32fa91a74e8f5775f24651fbe6
76153 Author: Stefan Roese <sr@denx.de>
76154 Date: Tue Oct 24 18:06:48 2006 +0200
76155
76156 Fix bug in PPC440 NAND driver cpu/ppc4xx/ndfc.c
76157 Patch by Stefan Roese, 24 Oct 2006
76158
76159 commit 8ae3b713b2286e0c3213b7802062e4c1599010de
76160 Author: Wolfgang Denk <wd@pollux.denx.de>
76161 Date: Tue Oct 24 17:24:55 2006 +0200
76162
76163 Merge with /home/wd/git/u-boot/master
76164
76165 commit 47a6989c10685d2ab3efcf95228ce50d2a496d3e
76166 Author: Wolfgang Denk <wd@pollux.denx.de>
76167 Date: Tue Oct 24 15:32:57 2006 +0200
76168
76169 Code cleanup
76170
76171 commit 3a78e3e75b633ecb6413114ffd11e2f000c4f11e
76172 Author: Wolfgang Denk <wd@pollux.denx.de>
76173 Date: Tue Oct 24 14:51:36 2006 +0200
76174
76175 Move atstk1000 files into vendor specific directory.
76176 Patch by Haavard Skinnemoen, 12 Sep 2006
76177
76178 commit 6ccec4492e77428fd6eafd3dfe94fbdf08e91d37
76179 Author: Wolfgang Denk <wd@pollux.denx.de>
76180 Date: Tue Oct 24 14:42:37 2006 +0200
76181
76182 Add ATSTK1000 and ATSTK1002 board support
76183 Patch by Haavard Skinnemoen, 06 Sep 2006
76184
76185 This patch adds support for the ATSTK1000 with the ATSTK1002 CPU
76186 daughterboard.
76187
76188 ATSTK1000 is a full-featured development board for AT32AP CPUs. It
76189 has two ethernet ports, a high quality QVGA LCD panel, a loudspeaker,
76190 and connectors for USART, PS/2, VGA, USB, MMC/SD cards and
76191 CompactFlash cards. For more information, please see this page:
76192
76193 http://www.atmel.com/dyn/products/tools.asp?family_id=682
76194
76195 The ATSTK1002 is a daughterboard for the ATSTK1000 supporting the
76196 AT32AP7000 chip.
76197
76198 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
76199
76200 commit f93ae788c3640fcde5db383471d45548ff4060d0
76201 Author: Wolfgang Denk <wd@pollux.denx.de>
76202 Date: Tue Oct 24 14:31:24 2006 +0200
76203
76204 Add common serial driver for Atmel AT32 and AT91 chips
76205 Patch by Haavard Skinnemoen, 06 Sep 2006
76206
76207 This is a first attempt at creating a common serial driver for Atmel
76208 chips. For now, it supports the AT32AP7000 AVR32 chip, but it should
76209 be possible to support AT91RM9200 and other ARM-based chips with some
76210 minor modifications.
76211
76212 There's nothing fundamentally AVR32-specific in this driver, but it
76213 does use some features which are currently only defined for the
76214 AT32AP CPU port:
76215 * pm_get_clock_freq: Obtain the clock frequency of a given domain
76216 * gd->console_uart: A "struct device" containing information about
76217 register mappings, gpio resources and clocks associated with the
76218 UART device.
76219
76220 For more information about these features, please see the "AT32AP
76221 CPU" patch.
76222
76223 commit 72a087e04705c26cad982879ebd06b5281bf825a
76224 Author: Wolfgang Denk <wd@pollux.denx.de>
76225 Date: Tue Oct 24 14:27:35 2006 +0200
76226
76227 Add AT32AP CPU and AT32AP7000 SoC support
76228 Patch by Haavard Skinnemoen, 06 Sep 2006
76229
76230 This patch adds support for the AT32AP CPU family and the AT32AP7000
76231 chip, which is the first chip implementing the AVR32 architecture.
76232
76233 The AT32AP CPU core is a high-performance implementation featuring a
76234 7-stage pipeline, separate instruction- and data caches, and a MMU.
76235 For more information, please see the "AVR32 AP Technical Reference":
76236
76237 http://www.atmel.com/dyn/resources/prod_documents/doc32001.pdf
76238
76239 In addition to this, the AT32AP7000 chip comes with a large set of
76240 integrated peripherals, many of which are shared with the AT91 series
76241 of ARM-based microcontrollers from Atmel. Full data sheet is
76242 available here:
76243
76244 http://www.atmel.com/dyn/resources/prod_documents/doc32003.pdf
76245
76246 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
76247
76248 commit 7b64fef33c66be648826c0ff9758298ef13d0604
76249 Author: Wolfgang Denk <wd@pollux.denx.de>
76250 Date: Tue Oct 24 14:21:16 2006 +0200
76251
76252 Add AVR32 architecture support
76253 Patch by Haavard Skinnemoen, 6 Sep 2006 16:23:02 +0200
76254
76255 This patch adds common infrastructure code for the Atmel AVR32
76256 architecture. See doc/README.AVR32 for details.
76257
76258 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
76259
76260 commit 2da2d9a4766063b9848f3a35ad6025499cf87265
76261 Author: Wolfgang Denk <wd@pollux.denx.de>
76262 Date: Tue Oct 24 13:57:33 2006 +0200
76263
76264 Use -g instead of -gstabs in AFLAGS_DEBUG
76265 Patch by Haavard Skinnemoen, 30 Aug 2006
76266
76267 In config.mk, -Wa,-gstabs is unconditionally appended to AFLAGS no
76268 matter what the target's preferred debugging format is. This patch
76269 simply replaces -gstabs with -g, so that the default debugging format
76270 for the architecture is used.
76271
76272 commit 965829872169c2996023840d98e1d85ad148d629
76273 Author: Wolfgang Denk <wd@pollux.denx.de>
76274 Date: Tue Oct 24 13:55:18 2006 +0200
76275
76276 Fix/workaround broken dependency handling with make 3.81
76277 Based on patch by Haavard Skinnemoen, 29 Aug 2006 11:20:39 +0200
76278
76279 commit 8318fbf8cc30418b621ea9f39b84b4c1a08f003a
76280 Author: Marian Balakowicz <m8@semihalf.com>
76281 Date: Mon Oct 23 22:17:05 2006 +0200
76282
76283 Fix sequoia separate object direcory building problems.
76284
76285 commit 3dfa9cfdcee78b30da3432318b32821ffabe974b
76286 Author: Jon Loeliger <jdl@freescale.com>
76287 Date: Fri Oct 20 17:16:35 2006 -0500
76288
76289 Use generic I2C register block on 85xx and 86xx.
76290
76291 Replace private IMMAP I2C structures with generic reg block
76292 and allow 86xx to have multiple I2C device busses.
76293
76294 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76295
76296 commit f5012827df11ca0c9be1df5f8b153e188dc2fa7c
76297 Author: Jon Loeliger <jdl@freescale.com>
76298 Date: Fri Oct 20 15:54:34 2006 -0500
76299
76300 Fix compilation warnings on a few 85xx boards.
76301
76302 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76303
76304 commit 2047672684cf85cb6f96a1fbc993180aaaf19a99
76305 Author: Jon Loeliger <jdl@freescale.com>
76306 Date: Fri Oct 20 15:50:15 2006 -0500
76307
76308 Converted all 85xx boards to use a common FSL I2C driver.
76309 Introduced COFIG_FSL_I2C to select the common FSL I2C driver.
76310 And removed hard i2c path from a few u-boot.lds scipts too.
76311 Minor whitespace cleanups along the way.
76312
76313 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76314
76315 commit 4d45f69e362b05892c9e92a7907e5820995612aa
76316 Author: Jon Loeliger <jdl@freescale.com>
76317 Date: Thu Oct 19 12:02:24 2006 -0500
76318
76319 Rewrite a series of goto statements as a sequences of
76320 conditional expressions instead.
76321
76322 Use consistent return code 0/-1 for good/bad indicators.
76323
76324 Include one fewer file if the driver isn't used at all.
76325
76326 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76327
76328 commit 7237c033b02fe295880435f1eb80819a0c987532
76329 Author: Jon Loeliger <jdl@freescale.com>
76330 Date: Thu Oct 19 11:02:16 2006 -0500
76331
76332 Moved i2c driver out of cpu/mpc86xx/i2c.c into drivers/fsl_i2c.c
76333
76334 in an effort to begin to unify the umpteen FSL I2C drivers that
76335 are all otherwise very similar.
76336
76337 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76338
76339 commit 13a7fcdf37f6ea9429ae04c9df67f893364cfe4b
76340 Author: Jon Loeliger <jdl@freescale.com>
76341 Date: Thu Oct 19 11:33:52 2006 -0500
76342
76343 * Fix a bunch of compiler warnings for gcc 4.0
76344
76345 Signed-off-by: Matthew McClintock <msm@freescale.com>
76346
76347 commit af9e1f5b9e6f9ce810f5e8bf2961c9542a5865c2
76348 Author: Stefan Roese <sr@denx.de>
76349 Date: Tue Oct 17 06:14:31 2006 +0200
76350
76351 Add monitor functions for indirect access to PPC440 DCR's
76352 Patch by Leonid Baryudin, 12 Oct 2006
76353
76354 commit 5f3249a0a168e446a4cc9669b2bce0bc456f0a09
76355 Author: Jon Loeliger <jdl@freescale.com>
76356 Date: Fri Oct 13 16:47:53 2006 -0500
76357
76358 Fixed leading whitespace issues.
76359 Removed spurious LAWAR thing.
76360
76361 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76362
76363 commit 0ee90cb77e01d6e8ccd37e1bd96678597875c391
76364 Author: Jon Loeliger <jdl@freescale.com>
76365 Date: Thu Oct 12 10:42:36 2006 -0500
76366
76367 Remove unneeded include files and local variable.
76368
76369 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76370
76371 commit 1eaf3a5ff4960a46f3a9063568ba2af7883f07c5
76372 Author: Grant Likely <grant.likely@secretlab.ca>
76373 Date: Tue Oct 10 00:23:32 2006 -0600
76374
76375 Fix possible uninitialized variable compiler warning.
76376
76377 When CONFIG_OF_FLAG_TREE is set, the compiler complains that 'len' in
76378 do_bootm_linux() may be uninitialized. There is no possibility in the
76379 current code that len will get used uninitialized, but this fix follows
76380 the existing convention of setting both len and data to zero at the same
76381 time.
76382
76383 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76384
76385 commit 7376eb87aaa601f728f9b8e5e9cd2711a67f529e
76386 Author: Matthew McClintock <msm@freescale.com>
76387 Date: Wed Oct 11 15:13:01 2006 -0500
76388
76389 * Fix a bunch of compiler warnings for gcc 4.0
76390
76391 Signed-off-by: Matthew McClintock <msm@freescale.com>
76392
76393 commit bf651baa365e5447246aad6a633ccd667cf24a39
76394 Author: Jon Loeliger <jdl@freescale.com>
76395 Date: Wed Oct 11 10:10:43 2006 -0500
76396
76397 Move "ar" flags to config.mk to allow for silent "make -s"
76398
76399 commit 1fd5699a4a24f5c1dab1b32f480bace1ebb9fc3e
76400 Author: Jon Loeliger <jdl@freescale.com>
76401 Date: Tue Oct 10 17:19:03 2006 -0500
76402
76403 Coding style changes to remove local varible blocks
76404 and reformat a bit nicer.
76405
76406 commit 8b283dbb3a08d1b8d406bc15f119e081b3e2606a
76407 Author: Jon Loeliger <jdl@freescale.com>
76408 Date: Tue Oct 10 17:16:04 2006 -0500
76409
76410 Fix whitespace issues.
76411
76412 commit 7b382b7125f2397cce63253df62f183e3dfa2770
76413 Author: Jon Loeliger <jdl@freescale.com>
76414 Date: Tue Oct 10 17:14:45 2006 -0500
76415
76416 Fix whitespace issues.
76417
76418 commit e10390ddd736b0dad1528eec4b0fe35c0827139a
76419 Author: Jon Loeliger <jdl@freescale.com>
76420 Date: Tue Oct 10 17:06:53 2006 -0500
76421
76422 Fix whitespace issues.
76423
76424 commit 89875e96ba3f023157bf50d5f8e33bf254964a76
76425 Author: Jon Loeliger <jdl@freescale.com>
76426 Date: Tue Oct 10 17:03:43 2006 -0500
76427
76428 Ran lindent and cleaned up whitespace issues.
76429 Format for 80-columns too.
76430
76431 commit 333961ae7095fc66d8a041fce1ac9ee873b09d86
76432 Author: Jon Loeliger <jdl@freescale.com>
76433 Date: Tue Oct 10 17:02:22 2006 -0500
76434
76435 Fix whitespace and 80-col issues.
76436
76437 commit 5c912cb1c31266c66ca59b36f9b6f87296421d75
76438 Author: Stefan Roese <sr@denx.de>
76439 Date: Sat Oct 7 11:36:51 2006 +0200
76440
76441 CFG_NAND_QUIET_TEST added to not warn upon missing NAND device
76442 Patch by Stefan Roese, 07 Oct 2006
76443
76444 commit 5bc528fa4da751d472397b308137238a6465afd2
76445 Author: Stefan Roese <sr@denx.de>
76446 Date: Sat Oct 7 11:35:25 2006 +0200
76447
76448 Update ALPR code (NAND support working now)
76449 Patch by Stefan Roese, 07 Oct 2006
76450
76451 commit 77d5034847d328753b80c46b83f960a14a26f40e
76452 Author: Stefan Roese <sr@denx.de>
76453 Date: Sat Oct 7 11:33:03 2006 +0200
76454
76455 Remove compile warnings in fpga code
76456 Patch by Stefan Roese, 07 Oct 2006
76457
76458 commit f3443867e90d2979a7dd1c65b0d537777e1f9850
76459 Author: Stefan Roese <sr@denx.de>
76460 Date: Sat Oct 7 11:30:52 2006 +0200
76461
76462 Add CONFIG_BOARD_RESET to configure board specific reset function
76463 Patch by Stefan Roese, 07 Oct 2006
76464
76465 commit f55df18187e7a45cb73fec4370d12135e6691ae1
76466 Author: John Traill <john.traill@freescale.com>
76467 Date: Fri Sep 29 08:23:12 2006 +0100
76468
76469 Fix missing tCycle/modfreq calculation.
76470
76471 Signed-off-by: John Traill <john.traill@freescale.com>
76472
76473 commit 8272dc2f58f2473d8995fcc9b916440cfba080f0
76474 Author: Andy Fleming <afleming@freescale.com>
76475 Date: Wed Sep 13 10:33:35 2006 -0500
76476
76477 Updated config headers to add default FDT-based booting
76478
76479 commit 09f3e09e9ebcfa7919ca8931a4b5504fadd1f1d3
76480 Author: Andy Fleming <afleming@freescale.com>
76481 Date: Wed Sep 13 10:34:18 2006 -0500
76482
76483 Add support for eTSEC 3 & 4 on 8548 CDS
76484
76485 * Added support for using eTSEC 3 and eTSEC 4 on the 8548 CDS.
76486 This will only work on rev 1.3 boards (but doesn't break older boards)
76487 * Cleaned up some comments to reflect the expanded role of tsec
76488 in other systems
76489
76490 commit 084d648b109c8984f83674043c1a7fa3885ef801
76491 Author: Andy Fleming <afleming@freescale.com>
76492 Date: Wed Sep 13 10:33:56 2006 -0500
76493
76494 Added code to support 2.6.18 PCI changes in u-boot
76495
76496 * Added code to swizzle the IRQ map for the PCI
76497
76498 commit afbdc649f8751e4f4f1a6f527edfe139773f2c15
76499 Author: Jon Loeliger <jdl@freescale.com>
76500 Date: Tue Sep 19 09:34:10 2006 -0500
76501
76502 Modified makefile for new build mechanism.
76503
76504 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76505
76506 commit d14ba6a798beb753e7a864500414fcc2d198b8bc
76507 Author: Jon Loeliger <jdl@freescale.com>
76508 Date: Thu Sep 14 08:40:36 2006 -0500
76509
76510 Handle 86xx SVR values according to the new Reference Manual.
76511 Both 8641 and 8641D have SVR == 0x8090, and are distinguished
76512 by the byte in bits 16-23 instead.
76513 Thanks to Jason Jin for noticing.
76514
76515 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76516
76517 commit 88c8f4921fc47fb0eb2384b16586f1bd7f275be7
76518 Author: Zhang Wei <wei.zhang@freescale.com>
76519 Date: Mon Aug 28 14:25:31 2006 +0800
76520
76521 Fixed an OF-tree off-by-one bug when adding a new property name.
76522 This bug will cause the kernel booting to pause a long time.
76523
76524 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
76525 (cherry picked from 2f15776ccc6dc32377d8ba9652b8f58059c27c6d commit)
76526
76527 commit 9bff7a69a885adebbd2bd45990494ec4cf998a30
76528 Author: Jon Loeliger <jdl@freescale.com>
76529 Date: Tue Aug 29 11:05:09 2006 -0500
76530
76531 Remove trailing empty lines.
76532
76533 commit cd6d73d5b895a5935ac4fde0a356288142a584e0
76534 Author: Jon Loeliger <jdl@freescale.com>
76535 Date: Tue Aug 29 09:48:49 2006 -0500
76536
76537 Remove bogus msync and use volatile asm.
76538
76539 commit 778d45049ce5927b65b3ff1d8e6692b654bdd49e
76540 Author: Jon Loeliger <jdl@freescale.com>
76541 Date: Tue Aug 29 08:17:14 2006 -0500
76542
76543 Add myself as maintainer for MPC8641HPCN.
76544
76545 commit 2f15776ccc6dc32377d8ba9652b8f58059c27c6d
76546 Author: Zhang Wei <wei.zhang@freescale.com>
76547 Date: Mon Aug 28 14:25:31 2006 +0800
76548
76549 Fixed an OF-tree off-by-one bug when adding a new property name.
76550 This bug will cause the kernel booting to pause a long time.
76551
76552 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
76553
76554 commit 5567806b67d0ae83493aa8823ad3b6c914f581d7
76555 Author: Haiying Wang <haiying.wang@freescale.com>
76556 Date: Fri Aug 25 14:38:34 2006 -0400
76557
76558 Change ramdiskaddr and dtbaddr
76559 Remove PEX fluff commands.
76560
76561 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
76562 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76563
76564 commit b2b78421d9db49c21a821af8a19c21c1f7dfb29e
76565 Author: Matthew McClintock <msm@freescale.com>
76566 Date: Wed Aug 23 13:32:45 2006 -0500
76567
76568 * Another small fix for booting with disable_of
76569
76570 Signed-off-by: Matthew McClintock <msm@freescale.com>
76571
76572 commit 4a7cc0f21918e6ecf07ed57075d67df2c4a1299c
76573 Author: Jon Loeliger <jdl@freescale.com>
76574 Date: Wed Aug 23 11:04:43 2006 -0500
76575
76576 Cleanup and lindent new AHCI driver.
76577
76578 commit dabf9ef8c10b4dead5ef2106ef742b1c06b542de
76579 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
76580 Date: Wed Aug 23 19:15:12 2006 +0800
76581
76582 Add AHCI define and sata support for MPC8641HPCN board.
76583
76584 Signed-off-by:Jason Jin<jason.jin@freescale.com>
76585
76586 commit 4782ac80b02f0d01afd309e2200dd3c7037f2ba4
76587 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
76588 Date: Wed Aug 23 19:10:44 2006 +0800
76589
76590 Add AHCI support to u-boot
76591
76592 Add AHCI support in u-boot, enable the sata disk controllers which
76593 following the AHCI protocol.
76594
76595 Signed-off-by:Jason Jin<jason.jin@freescale.com>
76596
76597 commit d8ea2acf5f137cae99417df4f573d036ee384668
76598 Author: Zhang Wei <wei.zhang@freescale.com>
76599 Date: Wed Aug 23 17:54:32 2006 +0800
76600
76601 Add dtb boot-up parameter to default boot commands.
76602
76603 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
76604
76605 commit b93775c2036b99baa390ea425c4771895bbc63c4
76606 Author: Jon Loeliger <jdl@freescale.com>
76607 Date: Tue Aug 22 18:26:08 2006 -0500
76608
76609 Cleanup even more poorly introduced whitespace.
76610
76611 commit ae6241685cbcf0c79a3636530d2ceab1fb291a94
76612 Author: Jon Loeliger <jdl@freescale.com>
76613 Date: Tue Aug 22 18:07:00 2006 -0500
76614
76615 Cleanup more poorly introduced whitespace.
76616
76617 commit 2c33e8a1c535b3ae91cf0b284480600bf3f57c57
76618 Author: Jon Loeliger <jdl@freescale.com>
76619 Date: Tue Aug 22 17:54:05 2006 -0500
76620
76621 Cleanup poorly introduced whitespace.
76622
76623 commit 80e955c7dd98f4b4fd23c2113caf75ed2b77b5b3
76624 Author: Jon Loeliger <jdl@freescale.com>
76625 Date: Tue Aug 22 12:25:27 2006 -0500
76626
76627 General indent and whitespace cleanups.
76628
76629 commit ffff3ae56f5842ca3679e4ce7922b819a87aad9f
76630 Author: Jon Loeliger <jdl@freescale.com>
76631 Date: Tue Aug 22 12:06:18 2006 -0500
76632
76633 General indent and whitespace cleanups.
76634
76635 commit 41a0e8b304d3ff55fe27a230507aac79684016ac
76636 Author: Jon Loeliger <jdl@freescale.com>
76637 Date: Tue Aug 22 10:42:21 2006 -0500
76638
76639 Cleanup compiler warnings.
76640
76641 commit 5de62c47a8628b3da4d73f7c07027f32a3342d40
76642 Author: Matthew McClintock <msm@freescale.com>
76643 Date: Tue Aug 22 09:31:59 2006 -0500
76644
76645 Fix disable_of booting
76646
76647 Signed-off-by: Matthew McClintock <msm@freescale.com>
76648
76649 commit 87a449c8ac396420cb24260f717ea9e6faa82047
76650 Author: Matthew McClintock <msm@freescale.com>
76651 Date: Tue Aug 22 09:23:55 2006 -0500
76652
76653 Support for FDT in uImage format, error when using FDT from flash
76654
76655 Signed-off-by: Matthew McClintock <msm@freescale.com>
76656
76657 commit 75c299c38369d01addd5e054b8a16217b70f4a86
76658 Author: Haiying Wang <haiying.wang@freescale.com>
76659 Date: Tue Aug 15 15:12:55 2006 -0400
76660
76661 Unlock cache before kernel starts up for MPC86xx
76662
76663 commit 67256678f00c09b0a7f19e862e5c1847553d31bc
76664 Author: Haiying Wang <haiying.wang@freescale.com>
76665 Date: Tue Aug 15 15:13:15 2006 -0400
76666
76667 Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
76668
76669 commit 1c8f6d8fb028f156094d05f2d14298e6479364ac
76670 Author: Haiying Wang <haiying.wang@freescale.com>
76671 Date: Tue Aug 15 15:12:55 2006 -0400
76672
76673 Unlock cache before kernel starts up for MPC86xx
76674
76675 commit 0d9ccc55edf9a7f3c5b2b6263580a6ea8d702a04
76676 Author: Haiying Wang <haiying.wang@freescale.com>
76677 Date: Tue Aug 15 15:13:15 2006 -0400
76678
76679 Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
76680
76681 commit 86c8e17f25e972a7e272950a0735fad84e082b88
76682 Author: Matthew McClintock <msm@freescale.com>
76683 Date: Wed Aug 16 13:59:47 2006 -0500
76684
76685 * Fix disable_of booting
76686
76687 Signed-off-by: Matthew McClintock <msm@freescale.com>
76688
76689 commit 25c751e9adc86e22fe3b5b47cf2806379b575db7
76690 Author: Matthew McClintock <msm@freescale.com>
76691 Date: Wed Aug 16 10:54:09 2006 -0500
76692
76693 * Support for FDT in uImage format, error when using FDT from flash
76694
76695 Signed-off-by: Matthew McClintock <msm@freescale.com>
76696
76697 commit 899620c2d66d4eef3b2a0034d062e71d45d886c9
76698 Author: Stefan Roese <sr@denx.de>
76699 Date: Tue Aug 15 14:22:35 2006 +0200
76700
76701 Add initial support for the ALPR board from Prodrive
76702 NAND needs some additional testing
76703 Patch by Heiko Schocher, 15 Aug 2006
76704
76705 commit f0ff4692ff3372dec55074a8eb444943ab095abb
76706 Author: Stefan Roese <sr@denx.de>
76707 Date: Tue Aug 15 14:15:51 2006 +0200
76708
76709 Add FPGA Altera Cyclone 2 support
76710 Patch by Heiko Schocher, 15 Aug 2006
76711
76712 commit fecf1c7e4de1b2779edc18742b91c22bdc32b68b
76713 Author: Jon Loeliger <jdl@freescale.com>
76714 Date: Mon Aug 14 15:33:38 2006 -0500
76715
76716 Fix BAT0 to actually be cacheable, non-guarded as documented.
76717
76718 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76719
76720 commit 40bc83559db5745681909fd7382ae509567e116d
76721 Author: Jon Loeliger <jdl@freescale.com>
76722 Date: Wed Aug 9 15:32:16 2006 -0500
76723
76724 Removed MPC8641HPCN DTS source file from build.
76725 It is no longer linked into U-Boot; its sources are
76726 now located in the kernel tree.
76727
76728 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76729
76730 commit 34c3c0e01dbf1f8cc2bd08de92f2b89ba84921eb
76731 Author: Matthew McClintock <msm@freescale.com>
76732 Date: Wed Jun 28 10:47:03 2006 -0500
76733
76734 * Switched default PCI speed for 8540 ADS back to 33MHz
76735
76736 * Added comments and a printf to warn that PCI-X won't
76737 work at 33MHz
76738 Patch by Andy Fleming 17-Mar-2006
76739
76740 Signed-off-by: Andy Fleming <afleming@freescale.com>
76741
76742 commit b6c5e1373b6ea0bb37a18e4aeecec00613d1cd39
76743 Author: Matthew McClintock <msm@freescale.com>
76744 Date: Wed Jun 28 10:46:35 2006 -0500
76745
76746 * Fixed a bug where 8555 PCI code used the old variable and function names Patch by Andy Fleming 17-Mar-2006
76747
76748 Signed-off-by: Andy Fleming <afleming@freescale.com>
76749
76750 commit bf1dfffd8c26f8ecdd630a0ae4c834e751e4e452
76751 Author: Matthew McClintock <msm@freescale.com>
76752 Date: Wed Jun 28 10:46:13 2006 -0500
76753
76754 * Added VIA configuration table
76755
76756 * Added support for PCI2 on CDS
76757 Patch by Andy Fleming 17-Mar-2006
76758
76759 Signed-off-by: Andy Fleming <afleming@freescale.com>
76760
76761 commit c88f9fe66b64247e5b6a38410ba315ca25596d16
76762 Author: Matthew McClintock <msm@freescale.com>
76763 Date: Wed Jun 28 10:45:41 2006 -0500
76764
76765 * Fixed PCI memory definitions Patch by Andy Fleming 17-Mar-2006
76766
76767 Signed-off-by: Andy Fleming <afleming@freescale.com>
76768
76769 commit 97074ed9655309b64231bc2cee69fe85399f8055
76770 Author: Matthew McClintock <msm@freescale.com>
76771 Date: Wed Jun 28 10:45:17 2006 -0500
76772
76773 * Added support for initializing second PCI bus on 85xx Patch by Andy Fleming 17-Mar-2006
76774
76775 Signed-off-by: Andy Fleming <afleming@freescale.com>
76776
76777 commit f0e6f57f71b3c4fdd13028eb03c3f3e91926dda2
76778 Author: Matthew McClintock <msm@freescale.com>
76779 Date: Wed Jun 28 10:44:49 2006 -0500
76780
76781 * Added PCI-X #defines for PCI-X initialization Patch by Andy Fleming on 17-Mar-2006
76782
76783 Signed-off-by: Andy Fleming <afleming@freescale.com>
76784
76785 commit a4e11558b810ef2cddffdf7b9d86bc1130441960
76786 Author: Matthew McClintock <msm@freescale.com>
76787 Date: Wed Jun 28 10:44:23 2006 -0500
76788
76789 * 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
76790
76791 Signed-off-by: Andy Fleming <afleming@freescale.com>
76792
76793 commit 0e16387db1d4aacd5bf35cb6d7c1942765c0347b
76794 Author: Matthew McClintock <msm@freescale.com>
76795 Date: Wed Jun 28 10:43:36 2006 -0500
76796
76797 * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards Patch by Jon Loeliger 17-Jan-2006
76798
76799 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76800
76801 commit 855e6fb073f9d04fe4a7f06c107ecbac6344ddd4
76802 Author: Matthew McClintock <msm@freescale.com>
76803 Date: Wed Jun 28 10:43:00 2006 -0500
76804
76805 * 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
76806
76807 commit 5498d90312aad9f6bdbf047986027c35b03cd163
76808 Author: Matthew McClintock <msm@freescale.com>
76809 Date: Wed Jun 28 10:42:24 2006 -0500
76810
76811 * Patch to modify ft_build.c to update flat device trees in place Patch by Matthew McClintock 26-June-2006
76812
76813 commit 0267768eddc5ca7bc1865bc40c866829ac5efbfe
76814 Author: Matthew McClintock <msm@freescale.com>
76815 Date: Wed Jun 28 10:41:37 2006 -0500
76816
76817 * Modify bootm command to support booting with flat device trees Patch by Matthew McClintock 26-June-2006
76818
76819 commit 8fc8bd2cc479b6cd188fdede4010e0e052970b8a
76820 Author: John Traill <john.traill@freescale.com>
76821 Date: Wed Aug 9 14:33:50 2006 +0100
76822
76823 Add Rapidio support for the MPC8641HPCN
76824
76825 Signed-off-by: John Traill <john.traill@freescale.com>
76826
76827 commit 91a414c7d1fb0eac912592cd995b30c9f23045c9
76828 Author: John Traill <john.traill@freescale.com>
76829 Date: Tue Aug 8 11:32:43 2006 +0100
76830
76831 Fix caslat calculation
76832
76833 Signed-off-by: John Traill <john.traill@freescale.com>
76834
76835 commit 709d3073e74153278e7904a70819bbef7df50e1a
76836 Author: Jon Loeliger <jdl@freescale.com>
76837 Date: Thu Aug 3 16:17:56 2006 -0500
76838
76839 Convert to mac-address in ethernet nodes.
76840
76841 commit 71748af833ca1017edf1415be376366ff2937d17
76842 Author: Haiying Wang <haiying.wang@freescale.com>
76843 Date: Fri Jul 28 12:41:35 2006 -0400
76844
76845 Correct the irq value of DUART2
76846
76847 commit 9cb3e8816ae4d854e7dc22128c3eea3d70bb982c
76848 Author: Haiying Wang <haiying.wang@freescale.com>
76849 Date: Fri Jul 28 12:41:41 2006 -0400
76850
76851 Change the space size of PEX IO in README
76852
76853 commit 239db37c94f7a92941c4465feceb867c609241c5
76854 Author: Haiying Wang <haiying.wang@freescale.com>
76855 Date: Fri Jul 28 12:41:18 2006 -0400
76856
76857 Move get_board_sys_clk to board directory
76858
76859 commit 492900b985439fbce1a118afde1e35def870db03
76860 Author: John Traill <john.traill@freescale.com>
76861 Date: Fri Jul 28 09:03:54 2006 +0100
76862
76863 Fix 8641HPCN pollution
76864
76865 commit 515ab8a62e8574e2babc6e8dcc43544ad221c5b2
76866 Author: John Traill <john.traill@freescale.com>
76867 Date: Fri Jul 28 08:16:06 2006 +0100
76868
76869 Fix 8641HPCN timebase
76870
76871 commit c86360b830f1eecd7a72208575dde4f57879faea
76872 Author: Zhang Wei <wei.zhang@freescale.com>
76873 Date: Fri Jul 28 00:01:34 2006 +0800
76874
76875 Fixed OF device tree of mpc86xxhpcn board.
76876
76877 The changes works in with kernel irq mapping rework.
76878
76879 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
76880
76881 commit bea3f28d285942bf3f7ab339ce85178ded544225
76882 Author: Haiying Wang <haiying.wang@freescale.com>
76883 Date: Wed Jul 12 10:48:05 2006 -0400
76884
76885 Add support for reading and writing mac addresses to or from ID EEPROM.
76886
76887 Added code for reading and writing Mac addresses to/from ID EEPROM(0x57).
76888 With attached patch, we can use command "mac/mac read/mac save/"
76889 to read and write EEPROM under u-boot prompt.
76890
76891 U-boot will calculate the checksum of EEPROM while bootup,
76892 if it is right, then u-boot will check whether the mac address
76893 of eTSEC0/1/2/3 is availalbe (non-zero).
76894
76895 If there is mac address availabe in EEPROM, u-boot will use it,
76896 otherewise, u-boot will use the mac address defined in
76897 MPC8641HPCN.h. This matches the requirement to set unique mac address
76898 for each TSEC port.
76899
76900 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
76901 Signed-off-by: York Sun <yorksun@freescale.com>
76902
76903 commit fcb28e763415e0e4e66b0f45842d1557ae198e5e
76904 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
76905 Date: Thu Jul 13 10:35:10 2006 -0500
76906
76907 Fixed initrd issue by define big RAM
76908
76909 Signed-off-by:Jason Jin <Jason.jin@freescale.com>
76910
76911 commit e6cd2a1785d74ec3d30a86f1cb360be8de478151
76912 Author: Jason Jin <Jason.jin@freescale.com>
76913 Date: Fri Jul 7 10:01:45 2006 -0500
76914
76915 We made a u-boot patch to fix the hang up issue
76916 when booting filesystem from ramdisk.
76917
76918 Signed-off-by:Jason Jin <Jason.jin@freescale.com>
76919
76920 commit 38433ccc5850ee70549af0b2bc5b920355ef5388
76921 Author: Matthew McClintock <msm@freescale.com>
76922 Date: Wed Jun 28 10:47:03 2006 -0500
76923
76924 * Switched default PCI speed for 8540 ADS back to 33MHz
76925 * Added comments and a printf to warn that PCI-X won't
76926 work at 33MHz
76927 Patch by Andy Fleming 17-Mar-2006
76928
76929 Signed-off-by: Andy Fleming <afleming@freescale.com>
76930
76931 commit e4c2a0eb0c3e3ffbf824800184ee42bdc99d5b19
76932 Author: Matthew McClintock <msm@freescale.com>
76933 Date: Wed Jun 28 10:46:35 2006 -0500
76934
76935 * Fixed a bug where 8555 PCI code used the old variable and
76936 function names
76937 Patch by Andy Fleming 17-Mar-2006
76938
76939 Signed-off-by: Andy Fleming <afleming@freescale.com>
76940
76941 commit cbfc7ce756b88eb26e5537bc7b625c445c6dcfac
76942 Author: Matthew McClintock <msm@freescale.com>
76943 Date: Wed Jun 28 10:46:13 2006 -0500
76944
76945 * Added VIA configuration table
76946 * Added support for PCI2 on CDS
76947 Patch by Andy Fleming 17-Mar-2006
76948
76949 Signed-off-by: Andy Fleming <afleming@freescale.com>
76950
76951 commit 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc
76952 Author: Matthew McClintock <msm@freescale.com>
76953 Date: Wed Jun 28 10:45:41 2006 -0500
76954
76955 * Fixed PCI memory definitions
76956 Patch by Andy Fleming 17-Mar-2006
76957
76958 Signed-off-by: Andy Fleming <afleming@freescale.com>
76959
76960 commit 087454609e47295443af793a282cddcd91a5f49c
76961 Author: Matthew McClintock <msm@freescale.com>
76962 Date: Wed Jun 28 10:45:17 2006 -0500
76963
76964 * Added support for initializing second PCI bus on 85xx
76965 Patch by Andy Fleming 17-Mar-2006
76966
76967 Signed-off-by: Andy Fleming <afleming@freescale.com>
76968
76969 commit b636aaeb6fd516a442fb611bbeeddf3077a687fb
76970 Author: Matthew McClintock <msm@freescale.com>
76971 Date: Wed Jun 28 10:44:49 2006 -0500
76972
76973 * Added PCI-X #defines for PCI-X initialization
76974 Patch by Andy Fleming on 17-Mar-2006
76975
76976 Signed-off-by: Andy Fleming <afleming@freescale.com>
76977
76978 commit 20abbc6fffa115690107cc942c7abf84bdc03a1b
76979 Author: Matthew McClintock <msm@freescale.com>
76980 Date: Wed Jun 28 10:44:23 2006 -0500
76981
76982 * Made sure the code which disables prefetch for PCI devices
76983 sets the size of the prefetch region to 0
76984 Patch by Andy Fleming on 17-Mar-2006
76985
76986 Signed-off-by: Andy Fleming <afleming@freescale.com>
76987
76988 commit 40d5fa35d02df22580593bf0039ab173367e8ef0
76989 Author: Matthew McClintock <msm@freescale.com>
76990 Date: Wed Jun 28 10:43:36 2006 -0500
76991
76992 * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards
76993 Patch by Jon Loeliger 17-Jan-2006
76994
76995 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76996
76997 commit be7e8b0cb5a0c49dc180075b96df296a893bf146
76998 Author: Matthew McClintock <msm@freescale.com>
76999 Date: Wed Jun 28 10:43:00 2006 -0500
77000
77001 * Removed the oftree.dts for stxxtx in light of the changes
77002 to the flat device tree handling code
77003 Patch by Matthew McClintock 26-June-2006
77004
77005 commit 1b380ec225665e73959677f3893dc658c5925e05
77006 Author: Matthew McClintock <msm@freescale.com>
77007 Date: Wed Jun 28 10:42:24 2006 -0500
77008
77009 * Patch to modify ft_build.c to update flat device trees in place
77010 Patch by Matthew McClintock 26-June-2006
77011
77012 commit 98a9c4d468a942a09ebe8979bec508017f3e4462
77013 Author: Matthew McClintock <msm@freescale.com>
77014 Date: Wed Jun 28 10:41:37 2006 -0500
77015
77016 * Modify bootm command to support booting with flat device trees
77017 Patch by Matthew McClintock 26-June-2006
77018
77019 commit da012ab661fd4ab169dd7b9b32201a4df62cf34a
77020 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
77021 Date: Wed Jun 28 08:43:56 2006 -0500
77022
77023 Change Id to symbolic name for RTL8139
77024
77025 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
77026
77027 commit bc09cf3c2bfb8d54c659cbb332f79d0950982fd0
77028 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
77029 Date: Tue Jun 27 18:12:10 2006 +0800
77030
77031 Fix RTL8139 in big endian
77032
77033 signed-off-by: Jason Jin <Jason.Jin@freescale.com>
77034 signed-off-by: Wei Zhang <wei.zhang@freescale.com>
77035
77036 commit fcfb9a57947fc203b99fe81ab0578f7286261f9f
77037 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
77038 Date: Tue Jun 27 18:12:23 2006 +0800
77039
77040 Fix Tsec bug when no link
77041
77042 When tftp a non-exist file from the tftp server, u-boot will check
77043 the link of all eth port. The original file will return wrong link
77044 state on the no link ports.
77045
77046 signed-off-by: Jason Jin <Jason.Jin@freescale.com>
77047
77048 commit bd22c2b97514fbfb0e03bd9c72b3445e4dbd57e2
77049 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
77050 Date: Tue Jun 27 18:12:02 2006 +0800
77051
77052 Fix bug for io_bar size during pci scan
77053
77054 During the pci scan process, Some devices return bar_reponse with the
77055 highest bytes 0, such as the pci bridge in uli1575 return bar_response
77056 with 0xffffff, So the bar_size should be manually set under 64K.
77057
77058 Signed-off-by: Jason Jin <jason.jin@freescale.com>
77059
77060 commit fa7db9c377bc2353a17bf1d381d65a6c418728f0
77061 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
77062 Date: Tue Jun 27 18:11:54 2006 +0800
77063
77064 Enable PCIE1 for MPC8641HPCN board
77065
77066 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
77067
77068 commit 99d70e3a47affb9bae041a2caece7cd516e213b3
77069 Author: Wolfgang Denk <wd@pollux.denx.de>
77070 Date: Mon Jun 26 11:06:00 2006 +0200
77071
77072 More code cleanup
77073
77074 commit 684623ce92c5fd32e7db2d6e016945a67c5ffaba
77075 Author: Jon Loeliger <jdl@freescale.com>
77076 Date: Thu Jun 22 08:51:46 2006 -0500
77077
77078 Fix bug in 8641hpcn reset command with no args.
77079
77080 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
77081 Acked-by: Jon Loeliger <jdl@freescale.com>
77082
77083 commit 8be429a5ddbf0ebe2d94174ba58fcfc7a24285dc
77084 Author: Zhang Wei <wei.zhang@freescale.com>
77085 Date: Tue Jun 20 17:47:15 2006 +0800
77086
77087 Reworked IRQ mapping in OF-tree.
77088
77089 commit 0e4c2a17ca34001ed36d259f13cb88ada4611a8c
77090 Author: Jon Loeliger <jdl@freescale.com>
77091 Date: Thu Jun 15 21:33:37 2006 -0500
77092
77093 Do not enable address translation on secondary CPUs.
77094 Do not set up BATs on secondary CPUs. Let Linux do the nasty.
77095
77096 Signed-off-by: Jon Loeliger <jdl@freescale.com>
77097
77098 commit 386eda022473394ad8f36b86f2bdc9b4cb816291
77099 Author: Wolfgang Denk <wd@pollux.denx.de>
77100 Date: Wed Jun 14 18:14:56 2006 +0200
77101
77102 Code cleanup
77103
77104 commit 16c8d5e76ae0f78f39a60608574adfe0feb9cc70
77105 Author: Wolfgang Denk <wd@pollux.denx.de>
77106 Date: Wed Jun 14 17:45:53 2006 +0200
77107
77108 Various USB related patches
77109 - Add support for mpc8xx USB device.
77110 - Add support for Common Device Class - Abstract Control Model USB console.
77111 - Add support for flow control in USB slave devices.
77112 - Add support for switching between gserial and cdc_acm using environment.
77113 - Minor changes to usbdcore_omap1510.c usbdcore_omap1510.h
77114 - Update usbcore slightly to ease host enumeration.
77115 - Fix non-portable endian problems in usbdcore and usbdcore_ep0.
77116 - Add AdderUSB_config as a defconfig to enable usage of the USB console
77117 by default with the Adder87x U-Boot port.
77118 Patches by Bryan O'Donoghue <bodonoghue@codehermit.ie>, 29 May 2006
77119
77120 commit 8ecc971618f56029ad99d3516f8b297a6ed58971
77121 Author: Jon Loeliger <jdl@jdl.com>
77122 Date: Wed Jun 7 10:53:55 2006 -0500
77123
77124 Fix a get_board_sys_clk() use-before-def warning.
77125
77126 Signed-off-by: Jon Loeliger <jdl@jdl.com>
77127
77128 commit d9bf4858fca5aa4d651b283270f77da72ebadfd5
77129 Author: Jon Loeliger <jdl@jdl.com>
77130 Date: Wed Jun 7 10:52:49 2006 -0500
77131
77132 Allow DTC path to be passed in.
77133
77134 Signed-off-by: Jon Loeliger <jdl@jdl.com>
77135
77136 commit c83ae9ea6d93abbe751bf8a3396236a084e56f87
77137 Author: Haiying Wang <haiying.wang@freescale.com>
77138 Date: Tue Jun 6 16:54:29 2006 -0400
77139
77140 Modify the IRQ of DUART2
77141
77142 commit c934f655f9aeca70a5c5f88b465d9e9d57a8d22e
77143 Author: Jon Loeliger <jdl@jdl.com>
77144 Date: Wed May 31 13:55:35 2006 -0500
77145
77146 Review cleanups.
77147
77148 Signed-off-by: Jon Loeliger <jdl@freescale.com>
77149
77150 commit cb5965fb95b77a49f4e6af95248e0c849f4af03e
77151 Author: Jon Loeliger <jdl@jdl.com>
77152 Date: Wed May 31 12:44:44 2006 -0500
77153
77154 White space cleanup.
77155 Some 80-column cleanups.
77156 Convert printf() to puts() where possible.
77157 Use #include "spd_sdram.h" as needed.
77158 Enhanced reset command usage message a bit.
77159
77160 Signed-off-by: Jon Loeliger <jdl@freescale.com>
77161
77162 commit 3d5c5be547445dd3bd2eb7368d80df03ea437970
77163 Author: Jon Loeliger <jdl@jdl.com>
77164 Date: Wed May 31 11:39:34 2006 -0500
77165
77166 Removed unneeded local_bus_init() from 8641HPCN board.
77167
77168 Signed-off-by: Jon Loeliger <jdl@freescale.com>
77169
77170 commit 4d3d729c16c392d2982d3266b659d333c927697d
77171 Author: Jon Loeliger <jdl@jdl.com>
77172 Date: Wed May 31 11:24:28 2006 -0500
77173
77174 Moved mpc8641hpcn_board_reset() out of cpu/ into board/.
77175
77176 Signed-off-by: Jon Loeliger <jdl@freescale.com>
77177
77178 commit b2a941de060350ad15878d8219825f4950e9bb8e
77179 Author: Jon Loeliger <jdl@jdl.com>
77180 Date: Wed May 31 10:07:28 2006 -0500
77181
77182 Remove dead debug code.
77183
77184 Signed-off-by: Jon Loeliger <jdl@jdl.com>
77185
77186 commit 126aa70f10ba3d20e0a6f4d32328250513b77770
77187 Author: Jon Loeliger <jdl@freescale.com>
77188 Date: Tue May 30 17:47:00 2006 -0500
77189
77190 Move mpc86xx PIXIS code to board directory
77191
77192 First cut at moving the PIXIS platform code out of
77193 the 86xx cpu directory and into board/mpc8641hpcn
77194 where it belongs.
77195
77196 Signed-off-by: Jon Loeliger <jdl@freescale.com>
77197
77198 commit ddf83a2fcef1a670c45fc585119dcc1fe062c4a9
77199 Author: Markus Klotzbuecher <mk@denx.de>
77200 Date: Tue May 30 16:56:14 2006 +0200
77201
77202 Support generic OHCI support for the s3c24x0 cpu.
77203
77204 commit 38cee12dcfcc257371c901c7e13e58ecab0a35d8
77205 Author: Haiying Wang <Haiying.Wang@freescale.com>
77206 Date: Tue May 30 09:10:32 2006 -0500
77207
77208 Improve "reset" command's interaction with watchdog.
77209
77210 "reset altbank" will reset another bank WITHOUT watch dog timer enabled
77211 "reset altbank wd" will reset another bank WITH watch dog enabled
77212 "diswd" will disable watch dog after u-boot boots up successfully
77213
77214 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
77215
77216 commit 70205e5a6ddc8528b11db9eb4d3fa0209d9fce2a
77217 Author: Haiying Wang <Haiying.Wang@freescale.com>
77218 Date: Tue May 30 08:51:19 2006 -0500
77219
77220 Fix two SDRAM setup bugs.
77221
77222 Fix ECC setup bug.
77223 Enable 1T/2T based on number of DIMMs present.
77224
77225 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
77226
77227 commit d11fec5015334deb2010e36ce00bb118cc5429a5
77228 Author: Haiying Wang <Haiying.Wang@freescale.com>
77229 Date: Fri May 26 10:24:48 2006 -0500
77230
77231 Add first draft of the MPC8641HPCN doc/README.
77232
77233 Signed-off-by: Jon Loeliger <jdl@jdl.com>
77234
77235 commit ed45d6c930b5939718a87ee12e25cf9a05978d4a
77236 Author: Haiying Wang <Haiying.Wang@freescale.com>
77237 Date: Fri May 26 10:13:04 2006 -0500
77238
77239 Added pci@8000 block.
77240 Updated ethernet interrupt mappings (moved up 48).
77241 Cleaned up a few comments.
77242
77243 Signed-off-by: Jon Loeliger <jdl@jdl.com>
77244
77245 commit 3033ebb20fd7c372c7bca3c9955a4692bb2240b7
77246 Author: Haiying Wang <Haiying.Wang@freescale.com>
77247 Date: Fri May 26 10:01:16 2006 -0500
77248
77249 Allow args on reset command.
77250
77251 Signed-off-by: Jon Loeliger <jdl@jdl.com>
77252
77253 commit 301f1aa384d0edcae6a22fd9adb933ad71695ecc
77254 Author: Markus Klotzbuecher <mk@denx.de>
77255 Date: Tue May 23 13:38:35 2006 +0200
77256
77257 Changed the mp2usb (at91rm9200) board to use the generic OHCI driver. Some
77258 fixes to the latter.
77259
77260 commit 24e37645e7378b20fa8f20e2996c8fb8e90c70c9
77261 Author: Markus Klotzbuecher <mk@denx.de>
77262 Date: Tue May 23 10:33:11 2006 +0200
77263
77264 More cleanup for the delta board and the generic usb_ohci driver. Added
77265 CFG_USB_BOARD_INIT and CFG_USB_CPU_INIT for enabling board and cpu specific
77266 initialization and cleanup hooks respectively.
77267
77268 commit 3e326ece9eba8184f5d48aa4fb87760a8f6f0f10
77269 Author: Markus Klotzbuecher <mk@denx.de>
77270 Date: Mon May 22 16:33:54 2006 +0200
77271
77272 This patch adds USB storage support for the delta board. This is the first
77273 board to make use of a generic OHCI driver, that calls hooks for board
77274 dependant initialization.
77275
77276 commit 14e37081ff3cac7ebe6e93836523429853b6b292
77277 Author: Jon Loeliger <jdl@jdl.com>
77278 Date: Fri May 19 13:28:39 2006 -0500
77279
77280 Change arbitration to round-robin for SMP linux.
77281
77282 commit 9a655876e5995be80f49054e2509500e871e4d3a
77283 Author: Jon Loeliger <jdl@jdl.com>
77284 Date: Fri May 19 13:26:34 2006 -0500
77285
77286 Enable dual DDR controllers and interleaving.
77287
77288 commit 586d1d5abd3e525f1e1d9b81e5a61a4da6b2fa3c
77289 Author: Jon Loeliger <jdl@jdl.com>
77290 Date: Fri May 19 13:22:44 2006 -0500
77291
77292 Update 86xx address map and LAWBARs.
77293
77294 commit cccce5d0581bb0ba4602799a4b5112e58d1579cb
77295 Author: Jon Loeliger <jdl@jdl.com>
77296 Date: Fri May 19 13:14:15 2006 -0500
77297
77298 Remove L2 Cache invalidate polling.
77299
77300 commit f35ec68fb066cec0e36294bfe07dec2d4e8ad3a8
77301 Author: Jon Loeliger <jdl@jdl.com>
77302 Date: Fri May 19 12:33:09 2006 -0500
77303
77304 Enable 2nd CPU and I2C.
77305
77306 commit bf690dcb512d34c4fceec0eb1e5c0e88a9db5d54
77307 Author: Jon Loeliger <jdl@freescale.com>
77308 Date: Mon May 15 07:26:56 2006 -0500
77309
77310 Update interrupt mapping.
77311
77312 commit 6cfea33477b04b63ed47386ed1629529484c33ba
77313 Author: Haiying Wang <Haiying.Wang@freescale.com>
77314 Date: Wed May 10 09:38:06 2006 -0500
77315
77316 Remove unneeded INIT_RAM_LOCK cache twiddling.
77317 Correctly tracks r29 as global data pointer now.
77318
77319 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
77320
77321 commit d4dd317b58c126a2a7e73f4764ecc1a7c97f876c
77322 Author: Jon Loeliger <jdl@freescale.com>
77323 Date: Wed May 10 09:33:07 2006 -0500
77324
77325 Remove unnecessary flash.c file.
77326
77327 commit 18b6c8cd8af6cc7f35180cedc4adb3236cc1a1b8
77328 Author: Jon Loeliger <jdl@freescale.com>
77329 Date: Tue May 9 08:23:49 2006 -0500
77330
77331 Get MPC8641HPCN flash images working.
77332
77333 Enable the CFI driver.
77334 Remove bogus LAWBAR7 cruft.
77335 Use correct TEXT_BASE, Fixup load script.
77336 Enable SPD EEPROM during DDR setup.
77337 Use generic RFC 1918 IP addresses by default.
77338
77339 commit 5c9efb36a6b5431423f52888a0e3b4b515fe7eca
77340 Author: Jon Loeliger <jdl@freescale.com>
77341 Date: Thu Apr 27 10:15:16 2006 -0500
77342
77343 Cleanup whitespaces and style issues.
77344 Removed //-style comments.
77345 Use 80-column lines.
77346 Remove trailing whitespace.
77347 Remove dead code and debug cruft.
77348
77349 commit a2320a6bf8113a09544c42d160d10ac69d049a03
77350 Author: Jon Loeliger <jdl@freescale.com>
77351 Date: Thu Apr 27 08:22:39 2006 -0500
77352
77353 Revert bad PCI prefetch limit change.
77354
77355 commit debb7354d1ea4f694154818df5e5b523f5c1cc1d
77356 Author: Jon Loeliger <jdl@freescale.com>
77357 Date: Wed Apr 26 17:58:56 2006 -0500
77358
77359 Initial support for MPC8641 HPCN board.